/*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: 20px;}
		.font18{font-size: 14px;}
		.font16{font-size: 12px;}
		.text{font-size: 14px;}
	}
	.bgfff{background-color: #fff !important;}
	html{overflow-x: hidden;}
/*********************************/

body{
	width: 100%;
	background: #01266a;
}
.wrapper{
	max-width: 1230px;
	margin: 0 auto;
	padding: 0 15px;
}
.header{
	background: #0a156f;
	height: 60px;
	line-height: 60px;
	position: relative;
}
.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: #fff;
	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: #fff;
		-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{
		font-size: 16px;
		height: 36px !important;
		line-height: 36px !important;
	}
	
}

.index_one{
	width: 100%;
	height: 674px;
	background: url(../img/a1.jpg) no-repeat center;
	padding-top: 86px;
	text-align: center;
}
.index_one .logo2{
	display: block;
	width: 274px;
	height: 74px;
	margin: 0 auto;
}
.index_one .title{
	margin-top: 35px;
	margin-bottom: 10px;
}
.index_one .title1{
	color: #fff;
	font-size: 38px;
	font-weight: normal;
	line-height: 3em;
}
.index_one p{
	color: #fff;
	font-size: 30px;
	line-height: 2em;
}
.index_one ul{
	margin-top: 40px;
}
.index_one li{
	font-size: 24px;
	color: #ffffff;
	line-height: 65px;
	display: inline-block;
	margin: 0 20px;
	
}
.index_one li img{
	max-height: 65px;
	vertical-align: middle;
	margin-right: 10px;
}

@media only screen and (max-width:1400px ) {
	.index_one .title1{
		font-size: 36px;
	}
	.index_one p{
		font-size: 26px;
	}
	.index_one .title{
		height: 85px;
	}
	.index_one li img{
		max-height: 40px;
	}
	.index_one li{
		font-size: 16px;
	}
}
@media only screen and (max-width:1200px ) {
	.index_one .title1{
		font-size: 32px;
	}
	.index_one p{
		font-size: 24px;
	}
	.index_one .title{
		height: 60px;
	}
	.index_one{
		height: auto;
		padding: 40px 15px;
	}
	.index_one img{
		max-width: 100%;
	}
}
@media only screen and (max-width:768px ) {
	.index_one .title1{
		font-size: 18px;
	}
	.index_one p{
		font-size: 14px;
	}
	.index_one .title{
		height: auto;
		margin-top: 20px;
	}
	.index_one{
		height: auto;
		padding: 20px 15px;
	}
	.index_one .logo2{
		height: 30px;
	}
	.index_one .logo2 img{
		height: 100%;
	}
	.index_one li{
		line-height: 40px;
		margin: 0 10px 10px;
	}
	.index_one li img{
		height: 30px;
	}
	.index_one ul{
		margin-top: 20px;
	}
}
.index_two{
	width: 100%;
	height: 455px;
	background: url(../img/a2.jpg) no-repeat center;
	padding-top: 1px;
}
.index_two .word{
	max-width: 1192px;
	height: 305px;
	margin: 78px auto 0;
	color: #fff;
	background: url(../img/b6.png) no-repeat center top;
	font-size: 20px;
	padding: 95px 35px 0;
	line-height: 2em;
}

@media only screen and (max-width:1200px ) {
	.index_two .word{
		font-size: 18px;
	}
}
@media only screen and (max-width:960px ) {
	.index_two .word{
		font-size: 16px;
	}
}
@media only screen and (max-width:768px ) {
	.index_two .word{
		font-size: 16px;
	}
	.index_two .word{
		height: auto;
		margin-top: 0;
		padding: 40px 15px;
		background-size: auto 100% !important;
		-webkit-background-size: auto 100% !important;
	}
	.index_two{
		height: auto;
		padding: 20px 0;
	}
}

.index_three{
	width: 100%;
	height: 973px;
	background: url(../img/a3.jpg) no-repeat center;
}
.pubtit{
	max-width: 913px;
	height: 160px;
	line-height: 160px;
	margin: 0 auto;
	background: url(../img/b7.png) no-repeat center;
	text-align: center;
	font-size: 22px;
	color: #fff;
	font-weight: bold;
	padding-left: 15px;
	margin-bottom: 50px;
}
.index_three .inbox{
	max-width: 1195px;
	height: 725px;
	padding: 80px 35px 0;
	background: url(../img/b8.png) no-repeat center;
}
.index_three .inbox li{
	float: left;
	width: 24%;
	margin-left: 1.333%;
	padding: 10px;
	background: rgba(255,255,255,.1);
}
.index_three .inbox li:first-child{margin-left: 0;}
.index_three .inbox li a{
	width: 100%;
	padding-top: 134.83%;
	position: relative;
	display: block;
}
.index_three .inbox li a img{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.index_three .inbox .text{
	padding-top: 3%;
	color: #fff;
}
@media only screen and (max-width:1200px ) {
	.index_three{
		height: auto;
		margin-bottom: 3%;
	}
	.index_three .inbox{
		height: auto;
		padding: 40px 3%;
		background-size:100% 100%;
		-webkit-background-size:100% 100%;
	}
	.pubtit{
		font-size: 24px;
	}
}
@media only screen and (max-width:768px ) {
	.index_three .inbox li{
		width: 48%;
		margin: 0 1% 2% !important;
	}
	.pubtit{
		font-size: 20px;
		height: 80px;
		line-height: 80px;
		background-size:100% 100%;
		-webkit-background-size:100% 100%;
	}
}
@media only screen and (max-width:600px ) {
	.pubtit{
		font-size: 18px;
		height: auto;
		line-height: 30px;
		background: none;
		margin-bottom: 10px;
		margin-top: 10px;
		font-weight: normal;
	}
}

.index_four{
	width: 100%;
	height: 760px;
	background: url(../img/a4.jpg) no-repeat center;
}
.index_four .box1{
	position: relative;
	padding-top: 43px;
	margin-bottom: 3%;
}
.index_four .box1 .tit{
	color: #fff;
	text-align: center;
	position: absolute;
	left: 0;
	top: 10px;
	width: 100%;
	font-weight: normal;
	font-size: 22px;
	line-height: 2em;
}
.index_four .box1 .tit img{
	display: block;
	margin: 0 auto;
}
.index_four .box1 .word{
	max-width: 1191px;
	height: 284px;
	background: url(../img/b10.png) no-repeat center;
	position: relative;
}
.index_four .box1 .word .in{
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	padding: 80px 50px;
}
.index_four .box1 .text{
	font-size: 16px;
	color: #fff;
	max-height: 11.2em;
	overflow: hidden;
	width: 90%;
	padding-right: 3%;
}
.tablist{
	font-size: 0;
	text-align: center;
}
.tablist li{
	display: inline-block;
	width: 206px;
	height: 87px;
	background: url(../img/b11.png) no-repeat center;
	color: #fff;
	font-size: 18px;
	line-height: 87px;
	text-align: center;
	margin-left: 42.5px;
	margin-bottom: 3%;
	cursor: pointer;
}
.tablist li a{
	display: block;
	color: #fff;
}
.tablist li:first-child{
	margin: 0;
}
.tablist li i{
	display: inline-block;
	width: 40px;
	height: 40px;
	background: url(../img/b13.png) no-repeat;
	vertical-align: middle;
}
.tablist li:hover,.tablist li.on{
	background: url(../img/b12.png) no-repeat;
}
.index_five .box3 .tablist li i{
	background: url(../img/b16.png) no-repeat;
}
.tablist li i.i1{background-position:0 0 !important;}
.tablist li i.i2{background-position:0 -40px !important;;}
.tablist li i.i3{background-position:0 -80px !important;;}
.tablist li i.i4{background-position:0 -120px !important;;}
.tablist li i.i5{background-position:0 -160px !important;;}

.tablist li.on i.i1,.tablist li:hover i.i1{background-position:-40px 0 !important;;}
.tablist li.on i.i2,.tablist li:hover i.i2{background-position:-40px -40px !important;;}
.tablist li.on i.i3,.tablist li:hover i.i3{background-position:-40px -80px !important;;}
.tablist li.on i.i4,.tablist li:hover i.i4{background-position:-40px -120px !important;;}
.tablist li.on i.i5,.tablist li:hover i.i5{background-position:-40px -160px !important;;}

.tabtext{
	height: 11em;
	font-size: 16px;
	position: relative;
}
.tabtext .out{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.tabtext .content{
	max-height: 11em;
	overflow: hidden;
}
.tabtext .text{
	padding-right: 2%;
	font-size: 16px;
	display: none;
	text-align: left;
	line-height: 2.2em;
}
.tabtext .text:first-child{
	display: block;
}

@media only screen and (max-width: 1200px) {
	.index_four .box1 .text,.tabtext .text{
		font-size: 14px;
	}
}
@media only screen and (max-width:960px ) {
	.index_four{height: auto;padding-bottom: 3%;}
	.tablist li{
		width: 135px;
		height: 51px;
		font-size: 14px;
		background-size:100% 100% !important;
		-webkit-background-size:100% 100% !important;
		line-height: 51px;
		margin: 0 10px 15px !important;
	}
	.index_four .box1 .word .in{
		padding: 80px 20px;
	}
	.index_four .box1 .text{
		width: 100%;
	}
}
@media only screen and (max-width:768px ) {
	.tablist li{
		width: 120px;
		height: 38px;
		font-size: 14px;
		background-size:100% 100% !important;
		-webkit-background-size:100% 100% !important;
		line-height: 38px;
		margin: 0 10px 15px !important;
	}
	.tablist li i{
		width: 20px;
		height: 20px;
		background-size:40px 100px !important;
		-webkit-background-size:40px 100px !important;
	}
	.tablist li i.i1{background-position:0 0 !important;;}
	.tablist li i.i2{background-position:0 -20px !important;;}
	.tablist li i.i3{background-position:0 -40px !important;;}
	.tablist li i.i4{background-position:0 -60px !important;;}
	.tablist li i.i5{background-position:0 -80px !important;;}
	
	.tablist li.on i.i1,.tablist li:hover i.i1{background-position:-20px 0 !important;;}
	.tablist li.on i.i2,.tablist li:hover i.i2{background-position:-20px -20px !important;;}
	.tablist li.on i.i3,.tablist li:hover i.i3{background-position:-20px -40px !important;;}
	.tablist li.on i.i4,.tablist li:hover i.i4{background-position:-20px -60px !important;;}
	.tablist li.on i.i5,.tablist li:hover i.i5{background-position:-20px -80px !important;;}
	.index_four .box1 .tit{
		font-size: 18px;
	}
	.index_four .box1 .tit img{
		height: 20px;
	}
	.index_four .box1 .word .in{
		padding: 80px 10px 40px;
	}
	.index_four .box1{
		padding: 30px;
	}
	.index_four .box1 .text{
		height: 12.2em;
	}
	.index_four .box1{
		padding: 15px 0;
	}
	.index_four .box1 .word{
		height: 260px;
	}
}
.index_five{
	width: 100%;
	/*height: 1320px;*/
	padding-bottom: 5%;
	background: url(../img/a5.jpg) no-repeat center;
}
.index_five .box1{
	max-width: 1193px;
	height: 470px;
	margin: 0 auto;
	background: url(../img/b14.png) no-repeat center;
	padding: 10% 5% 30px 6%;
}
.index_five .box1 .text{
	max-height: 15.4em;
	overflow: hidden;
	padding-right: 10px;
}
.index_five .box1 .out{
	height: 15.4em;
	font-size: 2.2em;
	font-size: 16px;
	position: relative;
}
.index_five .box1 .out .in{
	position: absolute;
	width: 100%;
	height: 10%;
	top: 0;
	left: 0;
}
.index_five .box2{
	padding: 8% 0 5%;
}
.index_five .box2>div{
	width: 567px;
	height: 326px;
	background: url(../img/b15.png) no-repeat center;
	padding: 20px 60px;
}
.index_five .box2 .left{
	float: left;
}
.index_five .box2 .right{
	float: right;
}
.index_five .box2 .text h2{
	font-size: 20px;
	font-weight: normal;
}
.index_five .box2 .text{
	font-size: 16px;
	max-height: 17.8em;
}

@media only screen and (max-width: 1200px) {
	.index_five .box1{
		background-size:auto 100%;
		-webkit-background-size:auto 100%;
		height: auto;
	}
	.index_five .box2>div{
		width: 48%;
		background-size:100% 100%;
		-webkit-background-size:100% 100%;
		padding: 20px 50px;
	}
	.index_five .box2 .text{
		font-size: 14px;
	}
	.index_five .box2>div{
		padding-right: 30px;
	}
}
@media only screen and (max-width:960px ) {
	.index_five{
		height: auto;
		padding-bottom: 5%;
	}
}
@media only screen and (max-width: 768px) {
	.index_five .box2>div{
		width: 100%;
		background-size:100% 100%;
		-webkit-background-size:100% 100%;
		padding: 20px 50px;
		margin-bottom: 20px;
		height: auto;
		padding: 28px 20px 30px 30px;
	}
	.index_five .box1{
		padding: 5px;
		background: none;
		border-top: 4px solid #48dbde;
		border-bottom: 4px solid #48dbde;
	}
	.index_five .box2 .text{
		max-height: inherit;
	}
	.index_five .box2 .text h2{
		font-size: 18px;
	}
	.index_five .box1 .text {
		max-height: inherit;
	}
	.index_five .box1 .out .in{
		position: inherit;
	}
	.index_five .box1 .out{
		height: auto;
	}
}

.footer{
	padding: 35px 0;
	line-height: 2em;
	background-color:#002059 ;
	background-image: url(../img/a10.jpg);
	background-repeat: no-repeat;
	background-position:center top;
	color: #fff;
	font-size: 16px;
}
.footer ul{
	display: table;
	width: 100%;
}
.footer ul li{
	display: table-cell;
	width: 33.33%;
}
.footer ul li.li2{text-align: center;width: 30%;}
.footer ul li.li3{text-align: right;}

@media only screen and (max-width:1200px ) {
	.footer{
		font-size: 14px;
	}
	.footer ul li{
		width: auto;
	}
}
@media only screen and (max-width:960px ) {
	.footer{
		padding: 20px 3%;
	}
	.footer ul li{
		width: auto !important;
		display: block;
		text-align: center !important;
	}
}