ul{list-style:none;}
li{ list-style:none;}
a:link{
text-decoration:none;
}
a:hover{
text-decoration:none;
}
a{text-decoration:none;}
.ysj{width:1300px; margin:0 auto;}
@font-face {
  font-family: '../font/iconfont';
  src: url('../font/iconfont.eot');
  src: url('../font/iconfont.eot?#iefix') format('embedded-opentype'),
      url('../font/iconfont.woff2') format('woff2'),
      url('../font/iconfont.woff') format('woff'),
      url('../font/iconfont.ttf') format('truetype'),
      url('../font/iconfont.svg#iconfont') format('svg');
}
.iconfont {
  font-family: "../font/iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*banner背景图片动画*/
@-webkit-keyframes scale-bg{
	from{
		-webkit-transform:scale(1.2);
		transform:scale(1.2);
	}
	to{
		-webkit-transform:scale(1);
		transform:scale(1);
	}
}
@keyframes scale-bg{
	from{
		-webkit-transform:scale(1.2);
		transform:scale(1.2);
	}
	to{
		-webkit-transform:scale(1);
		transform:scale(1);
	}
}
/*banner */
.index_main{
	background: #f7f7f7;
}
.index_main .section1{
	position: relative;
}
.index_main .section1 .index_banner .item{
	background-size: cover;
	-webkit-background-size:cover;
	background-position: center;
	background-repeat: no-repeat;
	height:100vh;
	position: relative;
}
.index_main .section1 .index_banner .item.slick-current .scaleBg{
	visibility: visible; 
	-webkit-animation:scale-bg 6s linear forwards;
	animation:scale-bg 6s linear forwards;
}
.index_main .section1 .index_banner .items{
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.index_main .section1 .index_banner .items:after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.4);
}
.index_main .section1 .index_banner .item .inner .block_txt{
	position: absolute;
	top: 44%;
	right: 10px;
	left:10px;
	opacity: 0; 
	transform: translateY(40px);
	-webkit-transform: translateY(40px); 
	-webkit-transition: all 500ms ease; 
	transition: all 500ms ease;
}
.index_main .section1 .index_banner .item.active .inner .block_txt{
	opacity: 1; 
	-webkit-transform: translateY(0); 
	transform: translateY(0); 
	-webkit-transition-delay: 100ms; 
	transition-delay: 100ms;
}
.index_main .section1 .index_banner .item .inner .block_txt h4{
	font-size: 30px;
	color: #fff;
	text-align: center;
	font-family: 'COCO';
}
.index_main .section1 .index_banner .item .inner .block_txt h2{
	color: #fff;
	font-size: 70px;
	font-weight: bold;
	text-align:center;
	letter-spacing:5px;
}
.index_main .section1 .index_banner .item .inner .block_txt h2 span{
	color: #f5c920;
	display: inline-block;
	letter-spacing: 5px;
}
.index_main .section1 .index_banner .item .inner .block_txt h3{
	color: #fff;
	font-size: 22px;
	text-align:center;
	margin-top: 10px;
	letter-spacing: 3px;
}
.index_main .section1 .slick_txt{
	width:30%;
	height: 100%;
	background-color: transparent;
	transition: all 500ms ease;
	-webkit-transition:all 500ms ease; 
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	font-size: 0;
	outline: none;
	border:0;
}
.index_main .section1 .left{
	left: 0;
}
.index_main .section1 .right{
	right:0;
}
.index_main .section1 .slick_txt:hover .slick_arrow{
	opacity: 1;
	visibility: visible;
}
.index_main .section1 .slick_txt .slick_arrow{
	width: 20px;
	height: 36px;
	background-repeat: no-repeat;
	background-position: center;
	margin-top: -18px;
	position: absolute;
	top: 50%;
	cursor: pointer;
	transition: all 500ms ease;
	-webkit-transition:all 500ms ease;
	opacity: 0;
	visibility: hidden;
}
.index_main .section1 .slick_txt .prev{
	background-image:url(../image/ban_prev.png);
	left:60px;
}
.index_main .section1 .slick_txt .next{
	background-image:url(../image/ban_next.png);
	right:60px;
}
.index_main .section1 .slick_txt .prev:hover{
	background-image:url(../image/ban_prev_hover.png);
}
.index_main .section1 .slick_txt .next:hover{
	background-image:url(../image/ban_next_hover.png);
}
.index_main .section1 .number{
	position: absolute;
	bottom:8%;
	left: 50%;
	padding-bottom: 5px;
	display: table;
	padding: 0 20px;
	width: auto;
	text-align: center;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}
.index_main .section1 .number span{
	font-family: "Myriad Pro","Microsoft YaHei";
	font-size: 14px;
	color: #fff;
	margin-right:100px;
	display: inline-block;
	cursor: pointer;
	position: relative;
	transition: all 500ms ease;
	-webkit-transition:all 500ms ease;
}
.index_main .section1 .number span:last-child{
	margin-right: 0;
}
.index_main .section1 .number span:after{
	content: "";
	display: inline-block;
	width: 0;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	bottom:-20px;
	opacity: 0;
	visibility: hidden;
	transition: all 500ms ease;
	-webkit-transition:all 500ms ease;
}
.index_main .section1 .number span.active:after{
	width: 100%;
	opacity: 1;
	visibility: visible;
}

.index_main .section2{
	width: 100%;
	height: 100%;
	background: url(../images/banbj1.jpg) no-repeat;
	background-size: 100% 100%;
}
.index_main .section2_nr h3{
	text-align: center; color:#fff; font-size:54px; font-weight:bold;
}
.index_main .section2_nr .section2_sk{ text-align:center;}
.index_main .section2_nr .section2_sk i{ font-size:40px; display:block; padding-top:16px;}
.index_main .section2_nr .section2_sk a{width:120px; height:120px; margin:0 2%; display:inline-block;-moz-border-radius:100px; -webkit-border-radius:100px;border-radius:100px; text-align:center; color:#fff; background:#4c5699; font-size:16px;}
.index_main .section2_nr .section2_sk a:hover{ background:#da251c;}

.index_main .section2 h3{
	text-align: center;
}
.section2_t{width:70%; margin:0 auto; color:#fff; text-align:center; padding:20px 0;}
.index_main .section3{
	width: 100%;
	height: 100%;
	background: url(../images/banner3.jpg) no-repeat;
	background-size: 100% 100%;
}
.index_main .section3 h3 img{ max-width:100%;}
.index_main .section3 h3{text-align: center;}
.xw_nr_rt{width:625px; float:right;  height:400px;}
.xw_nr_rt dl{ font-size:30px; font-weight:bold;}
.xw_nr_rt ul{ padding:20px 35px;background:#4d5796;}
.xw_nr_rt ul li a{ border-bottom:1px dashed #38427f; overflow:hidden; padding:22px 0; display:block;}
.xw_nr_rt ul li a:hover{ background:#d9251c;}
.xw_nr_rt ul li a:hover .xw_nr_rt_lt p,.xw_nr_rt ul li a:hover .xw_nr_rt_lt span{ color:#fff;}
.xw_nr_rt ul li .xw_nr_rt_lt{ float:left;width:65px; padding-top:10px;}
.xw_nr_rt ul li .xw_nr_rt_lt p{ background:url(../images/hx.jpg) no-repeat left center; text-align:right; line-height:24px; font-size:30px; font-weight:bold; color:#f9bf3c;}
.xw_nr_rt ul li .xw_nr_rt_lt span{ font-size:15px; color:#f9bf3c; line-height:20px; text-align:right; display:block;}
.xw_nr_rt ul li .xw_nr_rt_rt{ float:right;width:460px;}
.xw_nr_rt ul li .xw_nr_rt_rt p{ font-size:14px; font-weight:bold; color:#fff;}
.xw_nr_rt ul li .xw_nr_rt_rt span{ color:#fff; font-size:13px; line-height:20px;}
.xw_ltbj{width:50%; background:url(../images/xw_ltbj.jpg) no-repeat; background-size:100%;top:0; float:left; position:absolute;left:0; height:100%;background-position:100% 100%; z-index:1;}
.xw_rtbj{width:50%; background:url(../images/xw_rtbj.jpg) no-repeat; background-size:100%; top:0; float:right; position:absolute;right:0; height:100%;background-position:100% 100%; z-index:1;}
.section4 .xw_ltbj{ animation-direction: reverse; animation-duration: 1.5s; animation-delay:0s;}
.section4.active .xw_ltbj{animation-name: slideInLeft; animation-direction: normal; animation-duration: 1.5s; animation-delay:.5s;}
.section4 .xw_rtbj{ animation-direction: reverse; animation-duration: 1.5s; animation-delay:0s;}
.section4.active .xw_rtbj{animation-name: slideInRight; animation-direction: normal; animation-duration: 1.5s; animation-delay:.5s;}


.index_main .section4{
	width: 100%;
	height: 100%;
	background: url(../images/banner6.jpg) no-repeat;
	background-size: 100% 100%;
}
.index_main .section4 h3{
	text-align: center; color:#fff; font-weight:bold; font-size:54px;
}
.index_main .section4_nr a{width:150px; height:38px; background:#4c5699; text-align: center; font-size:16px; color:#fff; display:block; line-height:38px; margin:0 auto;-moz-border-radius:14px; -webkit-border-radius:14px;border-radius:14px;}
.index_main .section4_nr a:hover{ background:#da251c;}
.index_main .section5{
	width: 100%;
	height: 100%;
	background: url(../images/banner4.jpg) no-repeat;
	background-size: 100% 100%;
}
.index_main .section5 h3{
	text-align: center;
}
.index_main .section7_dt{ text-align:right;}
.index_main .section7{
	width: 100%;
	height: 100%;
	background: url(../images/banner8.jpg) no-repeat;
	background-size: 100% 100%;
}
.index_main .section7 h3{ font-size:16px; line-height:40px;
	text-align:right;
}
.index_main .section7_nr{
	}
.index_main .section6{
	width: 100%;
	height: 100%;
	background: url(../images/banner7.jpg) no-repeat;
	background-size: 100% 100%;
}
.index_main .section6 h3{
	font-size:36px; font-weight:bold; text-align:right; line-height:60px;
}
.index_main .section6 .section6_wz{ text-align:right; font-size:16px; line-height:26px;}
.index_main .section6 a{width:160px; height:38px; background:#4d5796; float:right; margin-top:20px; text-align: center; font-size:16px; color:#fff; display:block; line-height:38px;-moz-border-radius:14px; -webkit-border-radius:14px;border-radius:14px;}
.index_main .section6 a:hover{ background:#da251c;}

@media only screen and (max-width: 1600px){
	.index_main .section1 .index_banner .item .inner .block_txt h4{
		font-size: 28px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h2{
		font-size: 60px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h3{
		font-size: 20px;
	}
}
@media only screen and (max-width: 1440px){
	.index_main .section1 .index_banner .item .inner .block_txt h4{
		font-size: 24px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h2{
		font-size: 40px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h3{
		font-size: 18px;
		margin-top: 5px;
	}
}
@media only screen and (max-width: 1366px){
	.index_main .section1 .index_banner .item .inner .block_txt h4{
		font-size: 20px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h2{
		font-size: 26px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h3{
		font-size: 16px;
	}
	.index_main .section1 .index_banner .slick-arrow{
		background-size: auto 30px;
	}
}
@media only screen and (max-width: 1300px){

}
@media only screen and (max-width: 1199px){
	.index_main .section1 .index_banner .item .inner .block_txt h4{
		font-size: 18px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h2{
		font-size: 22px;
		}
	.index_main .section1 .index_banner .item .inner .block_txt h3{
		font-size: 14px;
	}
}
@media only screen and (max-width: 992px){
	.index_main .section1 .index_banner .item{
		height: 100vh;
	}
	.index_main .section1 .index_banner .item .inner .block_txt{
		left: 0;
		right:0;
		margin: 0 auto;
		padding: 0 20px;
		top: 42%;
	}
	.index_main .section1 .index_banner .slick-arrow{
		display: none !important;
	}
    .index_main .section1 .index_banner .slick-dots{
    	position: absolute;
    	bottom: 12px;
    }
    .index_main .section1 .index_banner .slick-dots li{
    	width: 12px;
    	height: 12px;
    	border-radius: 50%;
    	border:2px solid #fff;
    }
    .index_main .section1 .index_banner .slick-dots li button{
    	display: none;
    }
    .index_main .section1 .index_banner .slick-dots li.slick-active{
    	background: #fff;
    }
	.index_main .section1 .number{
		bottom: 12%;
		display: none;
	}
	.index_main .section1 .number span{
		margin-right: 22px;
	}
	.index_main .section1 .number span:after{
		bottom: -14px;
	}

}
@media only screen and (max-width: 767px){
    
}
@media only screen and (max-width: 340px){
 
}
@media only screen and (max-width: 320px){
	
}