/*By-石-QQ-1174188215*/
/*----通用初始化----*/
	body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,hr,button,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,img{margin:0;padding:0}ul,li,ol,dl,dt,dd{list-style: none;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {display:block;}table{border-collapse:collapse;border-spacing:0}audio,canvas,video {display: inline-block;*display: inline;*zoom: 1;}	input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;*font-size:100%}a{text-decoration: none;color: #666;-webkit-tap-highlight-color: rgba(0,0,0,0);-webkit-tap-highlight-color: transparent;}a:hover{text-decoration:none;cursor: pointer;}img{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;border:0}html,body{font-family: "arial" ,'Microsoft Yahei';*font-family: "微软雅黑";*font-family: "Microsoft Yahei";color: #666;}@media screen and (max-width: 767px){input[type="button"],input[type="submit"],input[type="reset"],textarea,select{-webkit-appearance: none;-webkit-tap-highlight-color:transparent;}}*{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-tap-highlight-color:transparent}body{position: relative;overflow-x: hidden;}*::-moz-selection{background:#333;color:#fff;}*::selection{background:#333;color:#fff;}*::-moz-selection{background:#333;color:#fff;}*::-webkit-selection{background:#333;color:#fff;}.after:after{content: "";display: block;height: 0;clear: both;visibility: hidden;}.clear{clear: both;}
	/*间距*/
	.mt3{margin-top    : 3% !important;}
	.mb3{margin-bottom : 3% !important;}
	.mb5{margin-bottom : 5% !important;}
	.ml3{margin-left   : 3% !important;}
	.mr3{margin-right  : 3% !important;}
	.pt3{padding-top   : 3% !important;}
	.pb3{padding-bottom: 3% !important;}
	.pl3{padding-left  : 3% !important;}
	.pr3{padding-right : 3% !important;}
	.pl5{padding-left  : 5% !important;}
	.pr5{padding-right : 5% !important;}
	.pt5{padding-top   : 5% !important;}
	.pb5{padding-bottom: 5% !important;}
	.mt0{margin-top    : 0% !important;}
	.mb0{margin-bottom : 0% !important;}
	.ml0{margin-left   : 0% !important;}
	.mr0{margin-right  : 0% !important;}
	.pt0{padding-top   : 0% !important;}
	.pb0{padding-bottom: 0% !important;}
	.pl0{padding-left  : 0% !important;}
	.pr0{padding-right : 0% !important;}
	/*字号*/
	.font24{font-weight:normal;font-size: 24px;color: #333;line-height: 2em;}
	.font18{font-weight:normal;font-size: 18px;color: #666;line-height: 2em;}
	.font16{font-weight:normal;font-size: 16px;color: #999;line-height: 2em;}
	/*编辑器*/
	.text{text-align:justify;font-size: 18px;color: #fff;line-height: 2.2em;word-wrap: break-word;word-break: normal;}
	.text:after{content: "";display: block;height: 0;clear: both;visibility: hidden;}
	.text *{max-width: 100%;}
	@media screen and (max-width: 1200px){
		.font24{font-size: 18px;}
		.font18{font-size: 16px;}
		.font16{font-size: 14px;}
		.text{font-size: 14px;}
	}
	.bgfff{background-color: #fff !important;}
	html{overflow-x: hidden;}
/*********************************/

body{
	width: 100%;
	background: #01328f;
}
.wrapper{
	max-width: 1310px;
	margin: 0 auto;
	padding: 0 2%;
}
.header{
	background: #fff;
	height: 60px;
	line-height: 60px;
	position: relative;
	z-index: 100;
}
.header .logo{
	float: left;
	height: 40px;
	margin-top: 10px;
}
.header .logo img{
	height: 100%;
}
.nav{
	float: right;
}
.nav li{
	float: left;
	margin-left: 25px;
}
.nav li a{
	font-size: 14px;
	color: #333333;
	display: block;
}
.nav li a:hover{
	color: #2860c6;
}
@media only screen and (max-width:1200px ) {
	.menu_btn{
		float: right;
		display: block;
		width: 40px;
		height: 40px;
		position: relative;
		margin-left: 10px;
		margin-top: 10px;
	}
	.menu_btn:before,
	.menu_btn:after{
		content: "";
		position: absolute;
		right: 0;
		width: 26px;
		height: 2px;
		background: #333;
		-webkit-transition: all .3s ease-out 0s;
		-moz-transition: all .3s ease-out 0s;
		transition: all .3s ease-out 0s;
	}
	.menu_btn:before{
		top: 13px;
	}
	.menu_btn:after{
		bottom: 13px;
	}
	.menu_btn.on:before{
	    -webkit-transform: rotate(45deg);
	    -moz-transform: rotate(45deg);
	     -ms-transform: rotate(45deg);
	         transform: rotate(45deg);
	    top: 50%;
	}
	.menu_btn.on:after{
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		 -ms-transform: rotate(-45deg);
		     transform: rotate(-45deg);
		top: 50%;
	}
	
	.header .nav{
		position: absolute;
		right: 0;
		top: 110%;
		width: 260px;
		background: rgba(0,0,0,0.8);
		padding: 10px 0;
		opacity: 0;
		visibility: hidden;
		-webkit-transition: all .3s ease-in-out 0s;
		-moz-transition: all .3s ease-in-out 0s;
		transition: all .3s ease-in-out 0s;
	}
	.header .nav.on{
		opacity: 1;
		visibility: visible;
		top: 100%;
	}
	.header .nav li{
		width: 100%;
		float: none;
	}
	.header .nav li>a{
		color: #fff;
		font-size: 16px;
		height: 36px !important;
		line-height: 36px !important;
	}
	
}

.banner{
	position: relative;
}
.banner img{
	display: block;
	margin: 0 auto;
	width: 100%;
}
.banner .word{
	position: absolute;
	max-width: 1310px;
	padding: 0 15px;
	left: 50%;
	margin-left: -650px;
	bottom: -10%;
}
.banner .word .outline{
	padding: 20px;
	position: relative;
}
.banner .word .outline:before{
	content: '';
	position: absolute;
	width: 40px;
	height: 40px;
	left: 10px;
	top: 10px;
	border-left: 3px solid #00ffff;
	border-top: 3px solid #00ffff;
}
.banner .word .line{
	position: absolute;
	width: 90%;
	height: 86%;
	border: 1px solid #00ffff;
	bottom: 0;
	right: 0;
}
.banner .word .line:before{
	content: '';
	width: 80px;
	height: 9px;
	position: absolute;
	bottom: -5px;
	left: 8%;
	background: #00ffff;
}
.banner .word .in{
	padding: 3%;
	background-color:#0a2187;
	background-image:url(../img/a2.jpg);
	background-repeat:no-repeat ;
	background-position:center ;
	background-size:100% auto;
	-webkit-background-size:100% auto;
	border: 2px solid #00ffff;
	position: relative;
	z-index: 2;
	text-indent: 2em;
	color: #fff;
	position: relative;
	line-height: 2.4em;
}
.banner .word .in:before{
	content: '';
	width: 8em;
	height: 9px;
	position: absolute;
	top: -5px;
	left: 50%;
	margin-left: -4em;
	background: #00ffff;
}
.titImg{
	max-width: 100%;
	margin-bottom: 2%;
}
.contentBox{
	background: url(../img/a3.jpg) repeat-y top center;
	background-size:100% auto;
	-webkit-background-size:100% auto;
	margin-top: 8%;
}
@media only screen and (max-width:1400px ){
	.banner .word{
		bottom:0;
	}
	.banner{
		padding-bottom: 100px;
	}
}
@media only screen and (max-width:1260px ) {
	.banner{
		padding-bottom: 0;
	}
	.banner .word{
		width: 100%;
		left: 0;
		margin-left: 0;
		position: initial;
		bottom: 0;
	}
	.banner .word,.banner .word .outline{
		padding: 10px;
	}
	.contentBox{
		margin-top: 3%;
	}
}
.box_one{
	padding: 3% 5%;
	background: url(../img/b2.png) no-repeat center;
	background-size:100% 100%;
}
.box_one .box1{
	display: table;
	table-layout: fixed;
}
.box_one .box1 img{
	float: left;
	width: 162px;
	margin-right: 20px;
}
.box_one .box1 .text{
	display: table-cell;
	vertical-align: middle;
	text-indent: 2em;
	width: 100%;
}
.more{
	color: #00f9ff;
	padding-left: 10px;
}
.box_one .box2 li{
	float: left;
	width: 32.33%;
	margin-left: 1.5%;
	position: relative;
}
.box_one .box2 li:first-child{
	margin-left: 0;
}
.box_one .box2 .img{
	width: 100%;
	padding-top: 54.05%;
	position: relative;
}
.box_one .box2 .img img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.box_one .box2 .word{
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	padding:0 10px;
	background: rgba(0,0,0,.3);
	color: #fff;
}
.box_one .box2 .word p{
	font-size: 14px;
	color: #fff;
	line-height: 2em;
	height: 4em;
	overflow : hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	word-break: normal; 
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.box_one .box3{
	background: url(../img/b4.png) no-repeat right center;
	background-size:50% auto;
	-webkit-background-size:50% auto;
}
.box_one .box3 li{
	margin-bottom: 2%;
	padding-left: 35px;
	background: url(../img/b5.png) no-repeat left center;
}
.box_one .box3 li a{
	font-size: 16px;
	color: #fff;
	line-height: 1.5em;
	display: block;
}
@media only screen and (max-width:1200px ) {
	.box_one .box1 img{
		width: 80px;
		margin-left: 10px;
	}
}
@media only screen and (max-width:768px ) {
	.box_one .box1 img{
		display: none;
	}
	.box_one .box2 li{
		width: 100%;
		margin: 0 0 2%;
	}
	.box_one .box3 li{
		padding-left: 20px;
		background-size:10px auto;
		-webkit-background-size:10px auto;
	}
	.box_one .box3 li a{
		font-size: 14px;
	}
	.box_one .box3{
		background: none;
	}
	.box_one {
		padding-bottom: 30px !important;
		padding-top: 40px !important;
	}
}
.shadowBox{
	padding: 10px;
	position: relative;
}
.shadowBox .inner{
	padding:50px 2% 3%;
	box-shadow: inset 0 0 30px #00ffff;
}
.shadowBox>i:before,.shadowBox>i:after{
	position: absolute;
	content: '';
	width: 100px;
	height: 100px;
}
.shadowBox>i.linet:before{
	border-top: 2px solid #00ffff;
	border-left: 2px solid #00ffff;
	top: 0;
	left: 0;
}
.shadowBox>i.linet:after{
	border-top: 2px solid #00ffff;
	border-right: 2px solid #00ffff;
	top: 0;
	right: 0;
}
.shadowBox>i.lineb:before{
	border-bottom: 2px solid #00ffff;
	border-left: 2px solid #00ffff;
	bottom: 0;
	left: 0;
}
.shadowBox>i.lineb:after{
	border-bottom: 2px solid #00ffff;
	border-right: 2px solid #00ffff;
	bottom: 0;
	right: 0;
}
.shadowBox .title{
	position: absolute;
	width: 100%;
	height: 67px;
	line-height: 50px;
	background: url(../img/b7.png) no-repeat center;
	color: #ffffff;
	font-size: 20px;
	top: -15px;
	left: 0;
	text-align: center;
}
.shadowBox .inner{
	width: 100%;
	font-size: 0;
}
.shadowBox.box1 .inner .cellBox{
	float: left;
	font-size: 16px;
	color: #ffffff;
	line-height: 1.5em;
}
.shadowBox.box1 .inner img{
	display: block;
	margin: 0 auto;
	max-width: 100%;
}
.shadowBox.box1 .inner .img{
	position: relative;
	margin-bottom: 70px;
}
.shadowBox.box1 .inner p{
	position: absolute;
	width: 148px;
	height: 148px;
	left: 50%;
	margin-left: -74px;
	background: url(../img/b11.png) no-repeat center;
	text-align: center;
	padding-top: 50px;
	bottom: -74px;
}
.shadowBox.box1 .inner .cell2 p{
	bottom: auto;
	top: -74px;
}
.shadowBox.box1 .inner .cell2 .img{
	margin-top: 70px;
	margin-bottom: 10px;
}
.shadowBox .inner li{
	margin-bottom: 10px;
}
.shadowBox .inner li a{
	color: #fff;
	padding-left: 15px;
	display: block;
	line-height: 2em;
	font-size: 14px;
	position: relative;
	width: 100%;
	height: 2em;
	overflow: hidden;
	white-space:nowrap; 
	text-overflow:ellipsis;
	-o-text-overflow:ellipsis;
}
.shadowBox .inner li a:before{
	width: 4px;
	height: 4px;
	border-radius: 4px;
	content: '';
	background: #fff;
	position: absolute;
	left: 0;
	top: .8em;
}
.shadowBox.box1 .inner .cellBox{
	width: 30%;
}
.shadowBox.box1 .inner .cell2{
	width: 40%;
	padding: 0 10px;
}
.shadowBox{
	margin-bottom: 50px;
}
.shadowBox.box2 .wordLeft{
	font-size: 20px;
	color: #00ffff;
	line-height: 2em;
	float: left;
	width: 55%;
}
.shadowBox.box2 .wordLeft img{
	vertical-align: middle;
	margin-bottom: 10px;
}
.shadowBox.box2 ul{
	float: right;
	width: 40%;
	margin-left: 5%;
}
@media only screen and (max-width:1500px ) {
	.shadowBox.box2 .wordLeft{
		font-size: 18px;
	}
}
@media only screen and (max-width:768px) {
	.shadowBox .title{
		font-size: 16px;
		height: 30px;
		line-height: 30px;
		background: #00a2ea;
		top: 10px;
		width: 90%;
		margin-left: -45%;
		left: 50%;
	}
	.shadowBox.box1 .inner .cellBox{
		float: none;
		width: 100%;
		padding: 0;
	}
	.shadowBox.box1 .inner img{
		width: 80%;
	}
	.shadowBox.box1 .inner p{
		font-size: 14px;
		width: 120px;
		height: 120px;
		padding-top: 40px;
		background-size:100% 100%;
		-webkit-background-size:100% 100%;
		bottom: -20px;
		margin-left: -60px;
	}
	.shadowBox.box1 .inner .cell2 p{
		top: auto;
		bottom: -20px;
	}
	.shadowBox.box1 .inner .img{
		margin-bottom: 30px;
	}
	.shadowBox.box1 .inner .cell2 .img{
		margin-bottom: 30px;
		margin-top: 0;
	}
	.shadowBox{
		padding: 5px;
	}
	.shadowBox>i:before, .shadowBox>i:after{
		width: 40px;
		height: 40px;
	}
	.shadowBox.box2 .wordLeft{
		font-size: 16px;
		width: 100%;
		margin-bottom: 2%;
	}
	.shadowBox.box2 ul{
		width: 100%;
		margin-left: 0;
	}
	.shadowBox .inner{
		padding:50px 2% 3%;
		box-shadow: inset 0 0 10px #00ffff;
	}
}
.box_three{
	background-color: #21429b;
}
.box_three>div{
	background-image:url(../img/a9.jpg) ;
	background-repeat:no-repeat ;
	background-position: right center ;
}
.box_three .box1>img,.box_three .box1 .text{
	display: inline-block;
	vertical-align: middle;
}
.box_three .box1{
	font-size: 0;
}
.box_three .box1>img{
	width: 46%;
} 
.box_three .box1 .text{
	width: 54%;
	padding-left: 5%;
	text-indent: 2em;
}
.box_three .box2{
	position: relative;
}
.box_three .box2 ul{
	width: 48%;
}
.box_three .box2 li{
	padding: 10px;
	border-bottom: 1px dashed #00F9FF;
}
.box_three .box2 li a{
	display: block;
	color: #00f9ff;
	line-height: 2em;
	height: 2em;
	padding-left: 20px;
	background: url(../img/b14.png) no-repeat left center;
	overflow: hidden;
	white-space:nowrap; 
	text-overflow:ellipsis;
	-o-text-overflow:ellipsis;
}
.box_three .box2 ul.left{float: left;}
.box_three .box2 ul.right{float: right;}
.box_three .swiper-container{
	position: relative;
}
.box_three .in{
	padding-bottom: 60px;
	position: relative;
}
.box_three .pagination{
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	text-align: center;
	z-index: 5;
}
.box_three .pagination span{
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 10px;
	margin: 0 10px;
	background: #fff;
	cursor: initial;
}
.box_three .pagination span.swiper-active-switch{
	background: #2cebf5;
}
.box_three .box3{
	position: relative;
	padding:50px 2% 3%;
	box-shadow: inset 0 0 30px #00ffff;
	margin-top: 30px;
}
.box_three .box3 .title{
	position: absolute;
	width: 100%;
	height: 67px;
	line-height: 50px;
	background: url(../img/b7.png) no-repeat center;
	color: #ffffff;
	font-size: 20px;
	top: -30px;
	left: 0;
	text-align: center;
}
.box_three .box3 .boxl, 
.box_three .box3 .boxr{
	position: relative;
	width: 500px;
	height: 412px;
}
.box_three .box3 .boxl{
	float: left;
	background: url(../img/b15.png) no-repeat center;
}
.box_three .box3 .boxr{
	float: right;
	background: url(../img/b16.png) no-repeat center;
}
.box_three .box3 .tit{
	position: absolute;
	color: #ffffff;
	font-size: 20px;
	line-height: 52px;
	width: 100%;
	text-align: center;
	font-weight: normal;
}
.box_three .box3 .boxl .tit{
	top: 35px;
	left: 0;
}
.box_three .box3 .boxr .tit{
	bottom: 35px;
	right: 0;
}
.box_three .box3 .text{
	position: absolute;
	width: 430px;
	line-height: 2em;
	height: 12em;
	font-size: 16px;
	left: 50%;
	margin-left: -215px;
}
.box_three .box3 .text img{
	margin-right: 10px;
	margin-bottom: -2px;
}
.box_three .box3 .boxl .text{
	top: 210px;
}
.box_three .box3 .boxr .text{
	bottom: 210px;
}
@media only screen and (max-width:1200px){
	.box_three .box3 .boxl, 
	.box_three .box3 .boxr{
		width: 100%;
		margin-bottom: 10px;
	}
	.box_three .box3 .title{
		font-size: 16px;
	}
} 
@media only screen and (max-width:768px) {
	.box_three .box2 ul{
		width: 100%;
	}
	.box_three .box2 li a{
		font-size: 14px;
	}
	.box_three .box1>img{
		width: 100%;
	}
	.box_three .box1 .text{
		width: 100%;
		padding: 0;
	}
	.box_three .in{
		padding-bottom: 30px;
	}
	.box_three .pagination span{
		margin: 0 5px;
	}
	.box_three .box3 .boxl, .box_three .box3 .boxr{
		background: none;
		height: auto;
	}
	.box_three .box3 .tit{
		position: initial;
		margin: auto;
		font-size: 16px;
		background: #00A2EA;
		line-height: 30px;
		height: 30px;
		position: initial;
		margin-bottom: 10px;
	}
	.box_three .box3 .text{
		width: 100%;
		font-size: 14px;
		position: initial;
		margin: auto;
		left: auto;
	}
	.box_three .box3 .text{
		height: auto;
		top: auto;
	}
	.box_three .box3{
		box-shadow: inset 0 0 10px #00ffff;
	}
}
.box_four{
	background: url(../img/a10.jpg) no-repeat center;
	background-size:100% 100%;
	-webkit-background-size:100% 100%;
	padding: 80px 60px;
}
.box_four dl{
	position: relative;
	min-height: 310px;
	font-size: 0;
	padding-top: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dashed #a4a7b9;
}
.box_four dl dt{
	font-size: 14px;
	color: #00ffff;
	line-height: 1.5em;
	padding:0 5px;
	border: 1px solid #00F9FF;
	width: 224px;
	height: 290px;
	position: absolute;
	padding-top: 240px;
	text-align: center;
}
.box_four dl.left{
	padding-left: 310px;
}
.box_four dl.right{
	padding-right: 310px;
}
.box_four dl.left dt{
	top: 40px;
	left: 25px;
}
.box_four dl.right dt{
	top: 40px;
	right: 25px;
}
.box_four dl.left dt .img{
	left: -25px;
	top: -20px;
	position: absolute;
}
.box_four dl.right dt .img{
	right: -25px;
	top: -20px;
	position: absolute;
}
.box_four dl dd.max{
	width: 100%;
	color: #fff;
	display: inline-block;
	vertical-align: middle;
	font-size: 16px;
	color: #fff;
}
.box_four dl dd.min{
	height: 310px;
	display: inline-block;
	vertical-align: middle;
	width: 0;
}
.box_four dl dd h2{
	font-size: 20px;
	color: #fff;
	display: inline-block;
	padding: 0 15px;
	line-height: 54px;
	background: #00a2ea;
	font-weight: normal;
	margin-bottom: 15px;
}
.box_four dl dd h2 a{
	color: #fff;
}
.box_four dl dd p{
	line-height: 2em;
	font-size: 16px;
}
.fourout{
	background: #01328f;
}
.box_four .boxlist ul{
	width: 48%;
}
.box_four .boxlist li{
	padding: 10px;
	border-bottom: 1px dashed #00F9FF;
}
.box_four .boxlist li a{
	display: block;
	color: #00f9ff;
	line-height: 2em;
	height: 2em;
	padding-left: 20px;
	background: url(../img/b19.png) no-repeat left center;
	overflow: hidden;
	white-space:nowrap; 
	text-overflow:ellipsis;
	-o-text-overflow:ellipsis;
}
.box_four .boxlist ul.left{float: left;}
.box_four .boxlist ul.right{float: right;}
.footer{
	background: #062177;
	color: #fff;
	font-size: 16px;
	text-align: center;
}
@media only screen and (max-width:1500px ) {
	.box_four dl.left{
		padding-left: 280px;
	}
	.box_four dl.right{
		padding-right: 280px;
	}
}
@media only screen and (max-width:1200px ) {
	.box_four dl dd h2{
		font-size: 16px;
		height: 30px;
		line-height: 30px;
	}
	.box_four dl dd p{
		font-size: 14px;
	}
	.box_four{
		padding: 40px 30px;
	}
}
@media only screen and (max-width:768px ) {
	.box_four{
		padding: 10px 0;
		background: none;
	}
	.box_four dl dt{
		position: initial;
		margin: 0 auto;
		padding: 0 !important;
		top: initial !important;
		margin-bottom: 15px;
	}
	.box_four dl{
		padding: 0 !important;
		margin-bottom: 15px;
	}
	.box_four dl dt .img{
		left: 0 !important;
		position: initial !important;
		top: initial !important;
	}
	.box_four dl dt .img img{
		max-width: 100%;
	}
	.box_four dl dt{
		width: auto;
		padding:10px;
		height: auto;
	}
	.box_four dl dd.min{
		display: none;
	}
	.box_four dl dd h2{
		height: auto;
		text-align: center;
		width: 100%;
		line-height: 1.6em;
		padding: 10px;
	}
	.box_four .boxlist ul{
		width: 100% !important;
	}
	.footer{
		font-size: 12px;
		padding: 30px 10px;
	}
	.box_four .boxlist li a{
		font-size: 14px;
	}
}
