﻿@charset "utf-8";
/*全局*/
.banner {
  width: 100%;
  height: 100%;
}
.banner a{
  display: block;
  width: 100%;
  height: 100%;
}
/*背景图片*/
.banner-bg{
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
}

.banner .slides {
    position: relative;
    list-style: none;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    }
   
.banner .slides li {
    -webkit-backface-visibility: hidden;
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    }
   
.banner .slides li:first-child {
    position: relative;
    display: block;
    float: left;
    }


/*翻页按钮*/
.banner .slides_nav {
  position: absolute;
  width: 66px;
  height: 66px;
  z-index: 1;
  left: 0px;
  text-indent:-99em;
  overflow: hidden;
  top: 50%;
  margin-top: -33px;
  background: url(../../img/banner_previous_btn.png) no-repeat ;
  opacity: 0.1;
  z-index: 8;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;    
}
.banner .slides_nav.next{
  left: auto;
  right: 0px;
  background: url(../../img/banner_next_btn.png) no-repeat;
}

.banner:hover .prev{
  left: 30px;
}
.banner:hover .next{
  right: 30px;
}
.banner:hover .prev,
.banner:hover .next{
  opacity: 0.4;
}

.banner .slides_nav.prev:hover,
.banner .slides_nav.next:hover{
  opacity: 0.9;
}


/*当前页码*/
.banner .slides_tabs{
  display: none;
  position: absolute; 
  text-align: center;
  left: 0;
  width: 100%;
  height: 8px;
  bottom: 10px; 
  z-index: 999;
  padding:0;
}
.banner .slides_tabs ul{
  padding: 0;
}
.banner .slides_tabs li{
  list-style-type: none;
  display: inline-block;
}  
.banner .slides_tabs li a{
  display: block;
  text-indent: -999em;
  width: 8px; 
  height: 8px;
  margin:0 2px;
  background: #fff; 
  cursor: pointer;
  opacity: 0.5;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.banner .slides_tabs li.slides_here a{
   opacity: 0.9;
   width: 16px;
}



/*图片内容*/
.banner .slides li .banner-con{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.banner .slides li .picCon{
  width: 1200px;
  margin:0 auto;
  height: 100%;
  position: relative;
}
.banner .slides li .picCon img{
  position: relative;
  bottom: -150px;
}

/*文本内容*/
.banner-con .textCon{
  width: 100%;
  min-width: 1200px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-right: 32%;
  top: 32%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;  
}
@media screen and (max-width: 1500px) {
	.banner-con .textCon{
	  min-width: 1200px;
	  max-width: 1200px;
	}
}

.banner-con .textCon h1{
  font-size: 60px;
  font-weight: normal;
  display: block;
  line-height: 60px;
  color: #fff;
  padding: 20px 0 40px;
  letter-spacing:5px;
}
.banner-con .textCon h2{
  font-size: 45px;
  font-weight: bold;
  display: block;
  line-height: 60px;
  color: #fff;
  padding-left: 0px;
  letter-spacing:5px;
  text-shadow:0 2px 8px rgba(0,63,170,0.4);
  text-align: center;
}
.banner-con .textCon h3{
  color: #fff;
  font-size: 12px;
  padding: 5px 5px;
  line-height: 12px;
  display: inline-block;
  background-color: #fff;
  font-weight: normal;
  letter-spacing: 1px;
} 
.banner-con .textCon h4{
  color: #fff;
  font-size: 18px;
  padding-left: 2px;
  font-weight: normal;
  letter-spacing: 3px;
}     
.banner-con .textCon p{
  color: #fff;
  font-size: 1.1em;
  padding-left: 5px;
  font-weight: normal;
  letter-spacing: 1px;
  margin-bottom: 15px;
}   

/*更多按钮*/
.more_btn{
  margin-top: 50px;
  width: 130px;
  height: 42px;
  border:1px solid #fff;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;  
}
.more_btn:hover{
  border-color: #fff;
  background: #fff;
}
.more_btn .icon_more{
  display: block;
  position: absolute;
  top: 10px;
  left: 12px;
  width: 20px;
  height: 20px;
  background: url(../../img/icon_more.png) no-repeat center center;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;  
}
.more_btn:hover .icon_more{
  left: 90px;
  background-image: url(../../img/icon_more_2.png);
}
.more_btn .text_more{
  color: #fff;
  line-height: 38px;
  padding-left: 45px;
  font-size: 16px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;  
}
.more_btn:hover .text_more{
  color: #496565;
  padding-left: 20px;
}


.banner-con .textCon.text-blue h1{
  color: #0336ad;
}
.banner-con .textCon.text-blue h4{
  color: #0336ad;
} 
.banner-con .textCon.text-blue h3{
  background-color: #0336ad;
}
.banner-con .textCon.text-blue .more_btn{
  border:1px solid #029aeb;
}
.banner-con .textCon.text-blue .more_btn .icon_more{
  background: url(../../img/icon_more_blue.png);
}
.banner-con .textCon.text-blue .more_btn:hover .icon_more{
  background: url(../../img/next_btn.png);
  background-size: cover;
}
.banner-con .textCon.text-blue .more_btn:hover{
  border-color: #0336ad;
  background: #0336ad;
}
.banner-con .textCon.text-blue .more_btn .text_more{
  color: #0336ad;
}
.banner-con .textCon.text-blue .more_btn:hover .text_more{
  color: #fff;
}