/*初始化样式*/
*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

html{
	margin: 0;
	padding: 0;
	border: 0;
	overflow-x: hidden;
}

body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
p,
blockquote,
pre,
a,
address,
code,
b,
em,
img,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
footer,
header,
hgroup,
navs,
section{
	margin: 0;
	padding: 0;
	border: 0;
}

body{
	background: #fff;
	color: #333;
	position: relative;
	font: 14px/1.5 Microsoft YaHei, arial, 宋体, sans-serif;
	vertical-align: baseline;
	width: 100%;
	overflow-x: hidden;
}

a{
	text-decoration: none;
	outline: none;
	color: #333;
}

a:hover,
a:active,
a:focus{
	text-decoration: none;
	outline: none;
	color: #02428a;
}

input{
	padding: 0;
	margin: 0;
	font-family: 'Microsoft YaHei';
}

img{
	border: none;
	background: none;
	vertical-align: middle;
	max-width: 100%;
}

ul,
ol,
li{
	list-style-type: none;
}

select,
input,
img,
select{
	vertical-align: middle;
}

table{
	border-collapse: collapse;
	border-spacing: 0;
}

table,
th,
td{
	vertical-align: middle;
}

.clearfix:after{
	content: ".";
	display: block;
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
}

.clearfix{
	zoom: 1
}

.clearboth{
	height: 0px;
	line-height: 0px;
	overflow: hidden;
	clear: both;
	font-size: 0px;
}

h1,
h2{
	font-weight: bold;
}

hr{
	border: 0;
	border-top: 1px solid #ccc;
	height: 0;
}

h3,
h4,
h5,
h6{
	font-weight: normal;
}

p{
	margin: 0;
}

/*----- Common css ------*/
.fl{
	float: left;
}

.fr{
	float: right;
}

/*flex布局*/
.flex_wrap{
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

/*flex布局上下对齐*/
.flex_alise{
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-align-content: space-between;
	-moz-align-content: space-between;
	-ms-align-content: space-between;
	-o-align-content: space-between;
	align-content: space-between;
}

/*flex布局上下居中*/
.flex_alice{
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-align-content: center;
	-o-align-content: center;
	align-content: center;
}

.flex_con_alice{
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

/*flex布局左右对齐*/
.flex_con{
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

/*flex布局左右居中*/
.flex_con_cen{
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

/**/
.max1200{
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
}

.page_con_zhuti{
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
}

@media(max-width:1280px){
	.max1200{
		padding: 0 30px;
	}

	.page_con_zhuti{
		padding: 0 30px;
	}
}

@media(max-width:991px){
	.max1200{
		padding: 0 20px;
	}

	.page_con_zhuti{
		padding: 0 20px;
	}

	body{
		padding-top: 61px;
	}
}

@media(max-width:768px){
	.max1200{
		padding: 0 15px;
	}

	.page_con_zhuti{
		padding: 0 15px;
	}
}

/*pc头部*/
.pc_header{
	height: 145px;
	background: #fff;
}

.pc_header_con{
	overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_header_fl{
	width: 68%;
	font-size: 0;
	line-height: 145px;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_logo{
	display: inline-block;
	max-width: 210px;
	padding-right: 2%;
	position: relative;
	z-index: 5;
}

.pc_logo::before{
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 1px;
	height: 60px;
	background: #ccc;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.pc_logo img{
	max-width: 100%;
	max-height: 100px;
}

.pc_logo_wz{
	display: inline-block;
	vertical-align: middle;
}

.pc_logo_wz{
	width: 98%;
	padding-left: 210px;
	margin-left: -210px;
}

.pc_logo_wz h3{
	font-size: 1.1rem;
	font-weight: bold;
	line-height: 1.5;
	color: #333;
}

.pc_logo_wz h4{
	font-size: 18px;
	line-height: 1.5;
	color: #333;
	margin-top: 0;
}

.pc_header_fr{
	max-width: 30%;
	overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_header_fr_ewm{
	width: 100px;
	text-align: center;
	position: relative;
	z-index: 9;
}

.pc_header_fr_ewm img{
	width: 100%;
}

.pc_header_fr_ewm .wz{
	font-size: 15px;
	line-height: 1.5;
	color: #666;
}

.pc_dianhua{
	width: 100%;
	padding-left: 100px;
	margin-left: -100px;
	font-size: 1.2rem;
	line-height: 1.25;
	color: #333;
	font-weight: bold;
}

.pc_dianhua_nn{
	padding-left: 1.5rem;
	position: relative;
}

.pc_dianhua_nn_li h3{
	font-size: 16px;
	line-height: 1.5;
	color: #666;
}

.pc_dianhua_nn_li h4{
	font-size: 1.2rem;
	line-height: 1.25;
	color: #333;
	font-weight: bold;
}

.pc_nav{
	background: #02428a;
}

.ss{
	display: none;
	position: absolute;
	right: 0;
	top: 86px;
	width: 250px;
	z-index: 999;
	background: #02428a;
}

.ss input{
	outline: none;
	line-height: 45px;
	width: 36px;
	background: none;
	border: 0;
	background: #0662af;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.28);
	float: left;
}

.ss #s_btn{
	background: url(../images/img/sousuo.png) no-repeat center;
}

.ss #keyword{
	padding-left: 13px;
	line-height: 45px;
	width: calc(100% - 36px);
	background: none;
	border: 0;
	outline: none;
	font-size: 13px;
	color: rgba(255, 255, 255, 1);
	float: left;
}

.ss #keyword:-webkit-autofill{
	-webkit-text-fill-color: rgba(255, 255, 255, 1) !important;
	transition: background-color 5000s ease-in-out 0s;
}

.ss #keyword::placeholder{
	color: rgba(255, 255, 255, 1);
}


/* 导航样式 */
.x-menu{
	width: 100%;
	float: none;
}

.x-menu>li{
	width: 14.28571428571428%;
	margin: 0;
	text-align: center;
	float: none;
	position: relative;
	font-size: 0;
	border-right: 1px solid #ccc;
}

.x-menu>li:last-child{
	border-right-color: rgba(0,0,0,0);
}

.x-menu>li>a{
	font-size: 16px;
	color: #fff;
	max-width: 100%;
	line-height: 60px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: relative;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.x-menu>li>a:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	width: 0;
	background: #02428a;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.x-menu>li:hover>a,
.x-menu>li.active>a{
	background: #da231b;
}

.x-menu{
	-webkit-flex-wrap: nowrap;
	-moz-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	-o-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

.x-menu>li:hover .x-sub-menu{
	background: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, .2);
}

.x-sub-menu{
	position: absolute;
	z-index: 999;
	width: 170px;
	left: 50%;
	top: 100%;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-transform: translate(-50%, 20px);
	-moz-transform: translate(-50%, 20px);
	-ms-transform: translate(-50%, 20px);
	-o-transform: translate(-50%, 20px);
	transform: translate(-50%, 20px);
}

.x-menu>li:hover .x-sub-menu{
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

.x-sub-menu>li>a{
	display: block;
	text-align: center;
	font-size: 15px;
	color: #333;
	line-height: 2;
	padding: .5em;
	/*overflow: hidden;*/
	/*text-overflow: ellipsis;*/
	/*white-space: nowrap;*/
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.x-sub-menu>li>a:hover{
	background: #02428a;
	color: #fff;
}
@media(max-width:1200px){
	.pc_logo{
		max-width: 160px;
	}

	.pc_logo_wz{
		padding-left: 160px;
		margin-left: -160px;
	}

	.pc_logo_wz h4{
		font-size: 17px;
	}
}

@media(max-width:1080px){
	.pc_header_fl{
		width: 63%;
	}

	.pc_logo_wz h3{
		font-size: 17px;
	}

	.pc_logo_wz h4{
		font-size: 16px;
	}

	.pc_header_fr{
		max-width: 35%;
	}

	.pc_dianhua_nn_li h3{
		font-size: 15px;
	}

	.pc_dianhua_nn_li h4{
		font-size: 18px;
	}
}

@media(max-width:991px){
	.pc_header{
		display: none;
	}

	.pc_nav{
		display: none;
	}
}

/*首页banner*/
.shipinshouye{
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: cover;
	display: block;
}

.index_banner{}

.index_banner .wz{
	position: absolute;
	left: 0;
	z-index: 9;
	top: 60%;
	width: 100%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_banner .wz h3{
	font-size: 2.2rem;
	line-height: 1;
	color: #fff;
	font-weight: bold;
	opacity: 0;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;

	-webkit-transform: translateY(60px);
	-moz-transform: translateY(60px);
	-ms-transform: translateY(60px);
	-o-transform: translateY(60px);
	transform: translateY(60px);
}

.index_banner .wz h4{
	font-size: 1.1rem;
	line-height: 1;
	color: rgba(255, 255, 255, .9);
	margin: 3% 0;
	opacity: 0;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;

	-webkit-transform: translateY(30px);
	-moz-transform: translateY(30px);
	-ms-transform: translateY(30px);
	-o-transform: translateY(30px);
	transform: translateY(30px);
}

.index_banner_tansuogengduo{
	display: inline-block;
	font-size: 16px;
	line-height: 2;
	color: #fff !important;
	background: #02428a;
	border-radius: 25px;
	padding: 5px 1.5rem;
	opacity: 0;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;

	-webkit-transform: translateY(30px);
	-moz-transform: translateY(30px);
	-ms-transform: translateY(30px);
	-o-transform: translateY(30px);
	transform: translateY(30px);
}

.index_banner1 li.swiper-slide-active .wz h3{
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

.index_banner1 li.swiper-slide-active .wz h4{
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

.index_banner1 li.swiper-slide-active .wz .index_banner_tansuogengduo{
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}


.bannershipin1:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
	background: rgba(0, 0, 0, .2);
}

.index_banner{
	position: relative;
}

.index_banner img{
	width: 100%;
}

.banneryd1{
	font-size: 0;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 5% !important;
	z-index: 99;
}

.banneryd1 span{
	width: 4rem;
	height: 3px;
	background: rgba(255, 255, 255, 0.6);
	opacity: 1;
	border-radius: 0 !important;
	margin: 0 5px !important;
	position: relative;
	overflow: hidden;
}

.banneryd1 span::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	background: #fff;
	z-index: 10;
}

.banneryd1 span.swiper-pagination-bullet-active::before{
	width: 100%;
	-webkit-animation: width1 5s linear;
	-moz-animation: width1 5s linear;
	-ms-animation: width1 5s linear;
	-o-animation: width1 5s linear;
	animation: width1 5s linear;
}

@-webkit-keyframes width1{
	0%{
		width: 0;
	}

	100%{
		width: 100%;
	}
}

@-moz-keyframes width1{
	0%{
		width: 0;
	}

	100%{
		width: 100%;
	}
}

@-o-keyframes width1{
	0%{
		width: 0;
	}

	100%{
		width: 100%;
	}
}

@keyframes width1{
	0%{
		width: 0;
	}

	100%{
		width: 100%;
	}
}

@media(max-width:1366px){
	.index_banner1_btnl{
		bottom: 70px;
	}

	.index_banner1_btnr{
		bottom: 10px;
	}
}

@media(max-width:991px){
	.index_banner{
		margin-top: 0;
	}
}

@media(max-width:768px){
	.banneryd{
		bottom: 10px !important;
	}

	.banneryd span{
		width: 30px;
		height: 2px;
		margin: 0 3px !important;
	}
}

/*热门搜索*/
.index_remensousuo{
	height: 80px;
	border-bottom: 1px solid #ddd;
	background: #fff;
}

.index_remensousuo_fl{
	width: 100%;
	padding-right: 250px;
	margin-right: -250px;
	margin-top: 17px;
	font-size: 16px;
	line-height: 45px;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_remensousuo_fl a{
	color: #666;
	margin: 0 3px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.index_remensousuo_fl a::after{
	content: ',';
	font-weight: normal;
	color: #666;
}

.index_remensousuo_fl a:last-child::after{
	content: '';
}

.index_remensousuo_fl a:hover{
	color: #02428a;
	/*font-weight: bold;*/
}

.index_remensousuo_fl h3{
	font-size: 16px;
	line-height: 80px;
	color: #333;
}

.index_remensousuo_fl h3 a{
	color: #666;
	font-size: 15px;
	font-weight: normal;
	margin-right: 15px;
}

.index_remensousuo_fl h3 a:hover{
	color: #333;
}

.index_remensousuo_fl h3 a:last-child{
	margin-right: 0;
}

.index_remensousuo_fr{
	width: 240px;
	background: #02428a;
	border-radius: 25px;
	overflow: hidden;
	margin-top: 17px;
}

.index_remensousuo_fr_shuru{
	outline: none;
	line-height: 45px;
	width: 36px;
	background: none;
	border: 0;
	background: #0662af;
	font-size: 13px;
	color: #fff;
	float: left;
}

.index_remensousuo_fr_tijiao{
	width: 45px;
	height: 45px;
	background: url(../images/img/nav_sousuo.png) no-repeat center;
	background-size: 18px;
	border: 0;
	outline: none;
	position: relative;
}

.index_remensousuo_fr_tijiao:before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 1px;
	height: 30px;
	background: #666;
}

.index_remensousuo_fr_shuru{
	padding-left: 25px;
	line-height: 45px;
	width: calc(100% - 45px);
	background: none;
	border: 0;
	outline: none;
	font-size: 14px;
	color: #fff;
	float: left;
}

.index_remensousuo_fr_shuru:-webkit-autofill{
	-webkit-text-fill-color: #fff !important;
	transition: background-color 5000s ease-in-out 0s;
}

.index_remensousuo_fr_shuru::placeholder{
	color: #fff;
}

/*搜索导航*/
.index_remensousuo_fl_nav_yiji{
	width: 20%;
	float: left;
	text-align: center;
	position: relative;
}

.index_remensousuo_fl_nav_yiji>a{
	font-size: 16px;
	color: #333;
	display: block;
	line-height: 80px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_remensousuo_fl_nav_yiji:hover>a{
	background: #02428a;
	color: #fff;
}

.index_remensousuo_fl_nav_erji{
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, .12);
	display: none;
	z-index: 99;
	background: #fff;
}

.index_remensousuo_fl_nav_yiji:hover .index_remensousuo_fl_nav_erji{
	display: block;
}

.index_remensousuo_fl_nav_erji a{
	font-size: 15px;
	line-height: 60px;
	color: #333;
	border-top: 1px solid #ddd;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_remensousuo_fl_nav_erji a:hover{
	color: #02428a;
}

.index_remensousuo_fl_nav_erji_li:nth-child(1) a{
	border-top: 0;
}

@media(max-width:991px){
	.index_remensousuo{
		display: none;
	}
}

/*公司简介*/
.index_gsjj{
	padding: 3.5% 0;
}

.index_gsjj_ft{
	overflow: hidden;
}

.index_gsjj_ft_fl{
	width: 51%;
	position: relative;
	min-height: 15rem;
}

.index_gsjj_ft_fl a{
	height: 100%;
	width: 100%;
	display: block;
}

.index_gsjj_ft_fl .img{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 9;
	background: rgba(0, 0, 0, .1);

}

.index_gsjj_ft_fl .img:before{
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	top: 0;
	height: 100%;
	background: url(../images/img/index_bofangkongjian.png) no-repeat center;
	background-size: 70px;
}

.index_gsjj_ft_fl video{
	outline: none;
	display: block;
	width: 100%;
	height: 100%;
}

.index_gsjj_ft_fl .shouliceshiyongdetupian{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	opacity: 0;
}

.index_gsjj_ft_fr{
	width: 46%;
}

.index_gsjj_ft_fr_ft h3{
	font-size: 1.1rem;
	line-height: 1.6;
	color: #333;
}

.index_gsjj_ft_fr_ft h4{
	font-size: 1.4rem;
	line-height: 1.5;
	font-weight: bold;
	color: #333;
	margin-top: 10px;
}

.index_gsjj_ft_fr_fc{
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	margin: 3% 0 4%;
	text-indent: 2em;
}

.index_gsjj_ft_fr_fb{
	font-size: 0;
}

.index_gsjj_ft_fr_fb a{
	font-size: 16px;
	line-height: 2;
	color: #fff;
	padding: 7px 1.7rem;
	background: #02428a;
	display: inline-block;
	border-radius: 5px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.index_gsjj_ft_fr_fb a:hover{
	background: #da231b;
	color: #fff;
}

.index_gsjj_fb{
	margin-top: 3%;
}

.index_gsjj_fb ul{
	font-size: 0;
}

.index_gsjj_fb li{
	width: 25%;
	display: inline-block;
	vertical-align: bottom;
	text-align: center;
	position: relative;
}

.index_gsjj_fb li::before{
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 1px;
	height: 90%;
	background: #ccc;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_gsjj_fb li::after{
	content: '';
	position: absolute;
	right: -2px;
	top: 50%;
	width: 5px;
	height: 50%;
	background: #02428a;
	border-radius: 7px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_gsjj_fb li:nth-child(4n)::before,
.index_gsjj_fb li:nth-child(4n)::after{
	display: none;
}

.index_gsjj_fb li h3{
	font-size: 0;
}

.index_gsjj_fb li h3 .shuzi{
	font-size: 2.8rem;
	line-height: .9;
	color: #02428a;
}

.index_gsjj_fb li h3 .yuan{
	display: inline-block;
	vertical-align: bottom;
	font-size: 15px;
	line-height: 28px;
	color: #fff;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	margin-left: 5px;
	background: #da231b;
}

.index_gsjj_fb li h4{
	font-size: 16px;
	line-height: 2;
	color: #666;
	margin-top: 10px;
}

@media(max-width:1280px){
	.index_gsjj_ft_fr_ft h3{
		font-size: 18px;
	}

	.index_gsjj_ft_fr_fb a{
		padding: 6px 1.8rem;
	}
}

@media(max-width:991px){
	.index_gsjj_ft_fl{
		width: 100%;
		min-height: auto;
	}

	.index_gsjj_ft_fl .shouliceshiyongdetupian{
		position: static;
		height: auto;
	}

	.index_gsjj_ft_fr{
		width: 100%;
		padding: 0;
		margin-top: 20px;
	}

	.index_gsjj_ft_fr_ft h3{
		font-size: 17px;
	}

	.index_gsjj_ft_fr_ft h4{
		font-size: 22px;
		margin-top: 10px;
	}

	.index_gsjj_ft_fr_fc{
		margin: 10px 0 15px;
	}

	.index_gsjj_ft_fr_fb a{
		padding: 5px 25px;
	}

	.index_gsjj_fb{
		margin-top: 20px;
	}
}

@media(max-width:768px){
	.index_gsjj{
		padding: 30px 0;
	}

	.index_gsjj_fb li{
		width: 50%;
		margin: 5px 0;
	}

	.index_gsjj_fb{
		margin-top: 15px;
	}

	.index_gsjj_fb li:nth-child(2n)::before,
	.index_gsjj_fb li:nth-child(2n)::after{
		display: none;
	}

	.index_gsjj_fb li h3 .yuan{
		width: 26px;
		height: 26px;
		line-height: 26px;
		font-size: 13px;
	}
}

@media(max-width:468px){
	.index_gsjj{
		padding: 25px 0;
	}

	.index_gsjj_ft_fr_ft h3{
		font-size: 16px;
	}

	.index_gsjj_ft_fr_ft h4{
		font-size: 18px;
	}
}

/*产品优势*/
.index_cpys{
	padding: 3.5% 0;
	background: #f0f0f0;
}

.index_cpys_fb{
	margin-top: 3%;
}

.index_cpys_fb li{
	width: 48%;
	padding: 2.5% 2%;
	margin-right: 4%;
	background: #fff;
	border-radius: 0 15px 0 15px;
	box-shadow: 0 3px 10px 3px rgba(0, 0, 0, 0.1);
	margin-top: 3%;
}

.index_cpys_fb li:nth-child(1){
	margin-top: 0;
}

.index_cpys_fb li:nth-child(2){
	margin-top: 0;
}

.index_cpys_fb li:nth-child(2n){
	margin-right: 0;
}

.index_cpys_fb li .img{
	width: 28%;
	text-align: center;

	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;

	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.index_cpys_fb li .img img{
	width: 80%;
	max-width: 100px;
}

.index_cpys_fb li .wz{
	width: 68%;
}

.index_cpys_fb li .wz h3{
	font-size: 1.2rem;
	line-height: 1.5;
	color: #333;
	font-weight: bold;
}

.index_cpys_fb li .wz h4{
	font-size: 16px;
	line-height: 2;
	color: #666;
	text-align: justify;
	margin-top: 5px;
}

@media(max-width:1080px){
	.index_cpys_fb li .wz h3{
		font-size: 18px;
	}
}

@media(max-width:768px){
	.index_cpys{
		padding: 30px 0;
	}

	.index_cpys_fb{
		margin-top: 20px;
	}

	.index_cpys_fb li{
		width: 100%;
		margin-right: 0;
		margin-top: 15px;
		padding: 15px;
	}

	.index_cpys_fb li:nth-child(2){
		margin-top: 15px;
	}
}

@media(max-width:468px){
	.index_cpys{
		padding: 25px 0;
	}

	.index_cpys_fb{
		margin-top: 15px;
	}

	.index_cpys_fb li .img{
		width: 100%;
	}

	.index_cpys_fb li .img img{
		max-width: 70px;
		width: 100%;
	}

	.index_cpys_fb li .wz{
		width: 100%;
		text-align: center;
		margin-top: 10px;
	}
}

/*产品展示*/
.index_cpzs{
	padding: 3.5% 0;
}

.index_cpzs_ft{
	overflow: hidden;
}

.index_cpzx_fb{
	margin-top: 3%;
}

.index_cpzx_fb_fl{
	width: 270px;
	border: 6px solid #02428a;
	background: #02428a;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

.index_cpzx_fb_fl_ft{
	text-align: center;
	padding: 1rem 0;
	background: #02428a;
}

.index_cpzx_fb_fl_ft h3{
	font-size: 1.3rem;
	line-height: 1.5;
	color: #fff;
	font-weight: bold;
}

.index_cpzx_fb_fl_ft h4{
	font-size: 15px;
	line-height: 1.5;
	color: rgba(255, 255, 255, .5);
	margin-top: .5rem;
}

.index_cpzx_fb_fl_fc{
	padding: .5rem 0;
}

.index_cpzx_fb_fl_fc li{
	margin: 0 15px;
	position: relative;
}

.index_cpzx_fb_fl_fc li:last-child a{
	border-bottom: 0;
}

.index_cpzx_fb_fl_ft{
	width: 100%;
}

.index_cpzx_fb_fl_fc{
	width: 100%;
	background: #fff;
}

.index_cpzx_fb_fl_fb{
	width: 100%;
}

.index_cpzx_fb_fl_fc a{
	display: block;
	position: relative;
	color: #333;
	font-size: 18px;
	line-height: 2.9rem;
	padding-left: 20px;
	border-bottom: 1px solid #cecece;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.index_cpzx_fb_fl_fc a:hover,
.index_cpzx_fb_fl_fc li.on a{
	color: #02428a;
	font-weight: bold;
}

.index_cpzx_fb_fl_fc a:hover:before,
.index_cpzx_fb_fl_fc li.on a:before{
	border-left: 8px solid #02428a;
}

.index_cpzx_fb_fl_fc a:before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 0;
	height: 0;
	border-left: 8px solid #ccc;
	border-top: 6px solid rgba(0, 0, 0, 0);
	border-bottom: 6px solid rgba(0, 0, 0, 0);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.index_cpzx_fb_fl_fb{
	background: #02428a;
	text-align: center;
	padding: 1rem 0;
}

.index_cpzx_fb_fl_fb h3{
	font-size: 18px;
	line-height: 2;
	color: #fff;
}

.index_cpzx_fb_fl_fb h3 span{
	width: 30px;
	display: inline-block;
	height: 30px;
	vertical-align: middle;
	background: url(../images/img/index_tel_cp.png) no-repeat center;
	background-size: 30px;
	margin-right: 5px;
}

.index_cpzx_fb_fl_fb h4{
	font-size: 1.3rem;
	line-height: 1.5;
	color: #fff;
	font-weight: bold;
}

.index_cpzx_fb_fr{
	width: calc(97% - 280px);
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

.index_cpzx_fb_fr_ft_ft{
	background: #e3e3e3;
	padding: 13px 20px;
	width: 100%;
	position: relative;
	z-index: 10;
}

.index_cpzx_fb_fr_ft_ft_fl{
	font-size: 20px;
	line-height: 20px;
	color: #333;
	font-weight: bold;
	padding-left: 15px;
	position: relative;
}

.index_cpzx_fb_fr_ft_ft_fl::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 3px;
	height: 100%;
	background: #02428a;
}

.index_cpzx_fb_fr_ft_ft_fr{
	font-size: 16px;
	line-height: 2;
	color: #333 !important;
	padding: 0 10px;
	border: 1px solid #aaa;
}

.index_cpzx_fb_fr_ft_fb ul{
	position: relative;
	z-index: 990;
	height: 100%;
}

.index_cpzx_fb_fr_ft_yuandian{
	font-size: 0;
	position: absolute;
	width: 62%;
	left: 0;
	text-align: center;
	bottom: 5%;
	z-index: 990;
}

.index_cpzx_fb_fr_ft_yuandian span{
	width: 10px;
	height: 10px;
	border-radius: 50%;
	opacity: 1;
	background: #02428a;
	margin: 0 5px;
	opacity: .7;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.index_cpzx_fb_fr_ft_yuandian span.swiper-pagination-bullet-active{
	background: #da231b;
	opacity: 1;
}

.index_cpzx_fb_fr_fb_ft{
	background: #e3e3e3;
	padding: 10px 20px;
}

.index_cpzx_fb_fr_fb_ft_fl{
	font-size: 20px;
	line-height: 1;
	color: #333;
	font-weight: bold;
	padding-left: 15px;
	position: relative;
}

.index_cpzx_fb_fr_fb_ft_fl::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 3px;
	height: 100%;
	background: #02428a;
}

.index_cpzx_fb_fr_fb_ft_fr{
	font-size: 16px;
	line-height: 2;
	color: #333 !important;
	padding: 0 10px;
	border: 1px solid #aaa;
}

.index_cpzx_fb_fr_ft{
	height: 100%;
	border: 1px solid #e3e3e3;
	-webkit-align-content: space-between;
	-moz-align-content: space-between;
	-o-align-content: space-between;
	-ms-align-content: space-between;
	align-content: space-between;
}

.index_cpzx_fb_fr_ft_fb{
	width: 100%;
	height: 100%;
	padding-top: 60px;
	margin-top: -60px;
}

.index_cpzx_fb_fr_ft_fb li{
	cursor: pointer;
}

.index_cpzx_fb_fr_ft_fb li .img{
	width: 62%;
	height: 100%;
	overflow: hidden;
	/*background: #f0f0f0;*/
	font-size: 0;
	-webkit-align-items: center;
	-moz-align-items: center;
	-o-align-items: center;
	-ms-align-items: center;
	align-items: center;
	border-right: 1px solid #e3e3e3;
}


.index_cpzx_fb_fr_ft_fb li .img img{
	width: 100%;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
}

.index_cpzx_fb_fr_ft_fb li:hover img{
	-webkit-transform: scale(1.02);
	-moz-transform: scale(1.02);
	-o-transform: scale(1.02);
	-ms-transform: scale(1.02);
	transform: scale(1.02);
}

.index_cpzx_fb_fr_ft_fb li .wz{
	width: 32%;
	margin-right: 3%;
	padding: 15px 0;
}

.index_cpzx_fb_fr_ft_fb li .wz_ft h3{
	font-size: 20px;
	line-height: 2;
	font-weight: bold;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_cpzx_fb_fr_ft_fb li .wz_ft h5{
	font-size: 15px;
	line-height: 2;
	color: #666;
}

.index_cpzx_fb_fr_ft_fb li .wz_ft h4{
	font-size: 16px;
	line-height: 1.7;
	color: #666;
	text-align: justify;
	margin: 6% 0 8%;
	height: 6.8em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.index_cpzx_fb_fr_ft_fb li .wz_fb a{
	width: 45%;
	font-size: 16px;
	line-height: 2;
	color: #fff;
	display: block;
	background: #02428a;
	text-align: center;
	padding: 5px 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.index_cpzx_fb_fr_ft_fb li .wz_fb a:hover{
	background: #02428a;
}

.index_cpzx_fb_fr_fb{
	margin-top: 2.5%;
}

.index_cpzx_fb_fr_ft_fb_nn{
	overflow: hidden;
	height: 100%;
}

.index_cpzx_fb_fr_ft_fb_li_nn{
	height: 100%;
}

.index_cpzx_fb_fr_fb_fb{
	overflow: hidden;
	margin-top: 15px;
	padding: 0 2px;
}

.index_cpzx_fb_fr_fb_fb li{
	position: relative;
	border: 1px solid #ddd;
}

.index_cpzx_fb_fr_fb_fb li .img{
	overflow: hidden;
}

.index_cpzx_fb_fr_fb_fb li img{
	width: 100%;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
}

.index_cpzx_fb_fr_fb_fb li:hover img{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.index_cpzx_fb_fr_fb_fb li .wz{
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 5;
	width: 100%;
	background: rgba(0, 0, 0, 0.5);
	font-size: 14px;
	line-height: 2;
	color: #fff;
	text-align: center;
	padding: 5px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_cpzx_fb_fr_fb_fb li:hover .wz{
	background: #02428a;
}

@media(max-width:1280px){
	.index_cpzx_fb_fl_fc a{
		font-size: 16px;
	}
}

@media(max-width:1080px){
	.index_cpzx_fb_fl_ft{
		padding: .8rem 0;
	}

	.index_cpzx_fb_fl_fc a{
		line-height: 2.8rem;
	}

	.index_cpzx_fb_fl_fb{
		padding: .8rem 0;
	}

	.index_cpzx_fb_fr_ft_fb li .wz_fb a{
		font-size: 14px;
	}

	.index_cpzx_fb_fr_ft_fb li .wz{
		padding: 10px 0;
	}

	.index_cpzx_fb_fr_ft_fb li .wz_ft h4{
		margin: 3% 0 4%;
	}
}

@media(max-width:991px){
	.index_cpzx_fb{
		margin-top: 25px;
	}

	.index_cpzx_fb_fl{
		width: 100%;
		display: none;
	}

	.index_cpzx_fb_fl_ft{
		padding: 10px 0;
	}

	.index_cpzx_fb_fl_ft h3{
		font-size: 20px;
	}

	.index_cpzx_fb_fl_ft h4{
		margin-top: 5px;
	}

	.index_cpzx_fb_fl_fc{
		height: auto;
		padding: 10px 0;
	}

	.index_cpzx_fb_fl_fc a{
		line-height: 2.5;
		font-size: 16px;
	}

	.index_cpzx_fb_fl_fb{
		padding: 15px 0;
		display: none;
	}

	.index_cpzx_fb_fl_fb h4{
		font-size: 20px;
		line-height: 1.2;
	}

	.index_cpzx_fb_fl_fb h3{
		font-size: 17px;
	}


	.index_cpzx_fb_fr{
		width: 100%;
		/*margin-top: 15px;*/
		margin-top: 0;
	}

	.index_cpzx_fb_fr_ft_ft{
		padding: 15px 20px;
	}

	.index_cpzx_fb_fr_ft_fb{
		padding-top: 50px;
		margin-top: -50px;
	}

	.index_cpzx_fb_fr_fb_ft{
		padding: 10px 20px;
	}

	.index_cpzx_fb_fr_fb{
		margin-top: 15px;
	}

	.index_cpzx_fb_fr_ft_fb li .img{
		width: 60%;
	}

	.index_cpzx_fb_fr_ft_fb li .wz{
		width: 33%;
	}
}

@media(max-width:768px){
	.index_cpzs{
		padding: 30px 0;
	}

	.index_cpzx_fb_fr_ft_ft{
		padding: 15px;
	}

	.index_cpzx_fb_fr_ft{
		height: auto;
	}

	.index_cpzx_fb_fr_ft_fb li .img{
		width: 100%;
		height: auto;
		border-right: 0;
	}

	.index_cpzx_fb_fr_ft_fb{
		height: auto;
		padding-top: 0;
		margin-top: 0;
	}

	.index_cpzx_fb_fr_ft_fb ul{
		height: auto;
	}

	.index_cpzx_fb_fr_ft_fb_nn{
		height: auto;
	}

	.index_cpzx_fb_fr_ft_fb_li_nn{
		height: auto;
	}

	.index_cpzx_fb_fr_ft_fb li .wz{
		width: 100%;
		margin-right: 0;
		padding-left: 15px;
		padding-right: 15px;
	}

	.index_cpzx_fb_fr_ft_fb li .wz_ft h3{
		line-height: 1.5;
		font-size: 18px;
	}

	.index_cpzx_fb_fr_ft_fb li .wz_ft h4{
		margin: 5px 0 15px;
		line-height: 1.8;
		height: 5.4em;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.index_cpzx_fb_fr_ft_yuandian{
		display: none;
	}

	.index_cpzx_fb{
		margin-top: 20px;
	}
}

@media(max-width:468px){
	.index_cpzs{
		padding: 25px 0;
	}

	.index_cpzx_fb{
		margin-top: 15px;
	}

	.index_cpzx_fb_fr_ft_fb li .img{
		width: 100%;
	}

	.index_cpzx_fb_fr_ft_fb li .wz{
		width: 100%;
		padding: 15px;
		margin-right: 0;
	}

	.index_cpzx_fb_fr_ft_fb li .wz_fb a{
		width: 120px;
	}

	.index_cpzx_fb_fr_ft_yuandian{
		display: none;
	}

	.index_cpzx_fb_fl_fb{
		display: none;
	}

	.index_cpzx_fb_fr_ft_ft_fl{
		font-size: 18px;
	}

	.index_cpzx_fb_fl_ft h3{
		font-size: 18px;
	}

	.index_cpzx_fb_fl_ft h4{
		font-size: 14px;
		margin-top: 0;
	}
}

/*产品中心*/
@media(min-width:992px){
	.index_cpzx_fb_fl_fc li:hover .index_cpzx_fb_fl_fc_erji{
		display: block;
	}

	.index_cpzx_fb_fl_fc_erji{
		padding: 0 10px;
		position: absolute;
		z-index: 999;
		left: 100%;
		top: 0;
		background: #fff;
		width: 100%;
		box-shadow: 0 3px 10px 3px rgba(0,0,0,0.1);
		display: none;
	}

	.index_cpzx_fb_fl_fc_erji .index_cpzx_fb_fl_fc_erji_li:last-child a{
		border-bottom: 0;
	}

	.index_cpzx_fb_fl_fc li:hover > a{
		color: #0568b7;
		font-weight: bold;
	}

	.index_cpzx_fb_fl_fc li:hover >a::before{
		border-left: 8px solid #0568b7;
	}
}

@media(max-width:991px){
	.index_cpzx_fb_fl_fc_erji{
		position: static;
		display: none;
		margin: 0 20px;
	}

	.index_cpzx_fb_fl_fc li.on > a{
		color: #0568b7;
		font-weight: bold;
	}

	.index_cpzx_fb_fl_fc li.on >a::before{
		border-left: 6px solid #0568b7;
	}
}

/*对比*/
.index_contrast{
	background: #f0f0f0;
	padding: 3.5% 0;
}

.index_contrast_fb{
	margin-top: 3.5%;
	background: #fff;
	border: 1px solid #dfdfdf;
}

.index_contrast_fb_fl{
	width: 30%;
}

.index_contrast_fb_fl li{
	font-size: 17px;
	line-height: 1.5;
	color: #666;
	padding: 10px;
	border-right: 1px solid #dfdfdf;
	text-align: center;
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_contrast_fb_fl li span{
	width:100%;
}

.index_contrast_fb_fl li,.index_contrast_fb_fc li,.index_contrast_fb_fr li{
	background: #f6f6f6;
}

.index_contrast_fb_fl li:nth-child(1),.index_contrast_fb_fc li:nth-child(1),.index_contrast_fb_fr li:nth-child(1){
	background: #02428a;
	color: #fff;
}

.index_contrast_fb_fl li:nth-child(2n),.index_contrast_fb_fc li:nth-child(2n),.index_contrast_fb_fr li:nth-child(2n){
	background: #fff;
}

.index_contrast_fb_fl li:nth-child(n+2){
	border-top: 1px solid #dfdfdf;
}

.index_contrast_fb_fc,.index_contrast_fb_fr{
	width: 35%;
}

.index_contrast_fb_fc li{
	border-right: 1px solid #dfdfdf;
}

.index_contrast_fb_fr li{
	border-right: 1px solid rgba(0,0,0,0);
}

.index_contrast_fb_fc li,.index_contrast_fb_fr li{
	font-size: 16px;
	line-height: 1.5;
	color: #666;
	padding: 12px;
	text-align: center;
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_contrast_fb_fc li span,.index_contrast_fb_fr li span{
	width: 100%;
}

.index_contrast_fb_fc li:nth-child(n+2),.index_contrast_fb_fr li:nth-child(n+2){
	border-top: 1px solid #dfdfdf;
}

.index_contrast_fb_fc li .img,.index_contrast_fb_fr li .img{
	font-size: 0;
	line-height: 0;
	text-align: center;
}

.index_contrast_fb_fc li img,.index_contrast_fb_fr li img{
	width: 100%;
}

.index_contrast_fb_fc li:nth-child(2) .img,.index_contrast_fb_fr li:nth-child(2) .img{
	position: relative;
	width: 100%;
	padding-top: 100%;
}

.index_contrast_fb_fc li:nth-child(2) .img img,.index_contrast_fb_fr li:nth-child(2) .img img{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.index_contrast_fb_fc li:nth-child(6) .img,.index_contrast_fb_fr li:nth-child(6) .img{
	position: relative;
	width: 100%;
	padding-top: 83.3333333333333333%;
}

.index_contrast_fb_fc li:nth-child(6) .img img,.index_contrast_fb_fr li:nth-child(6) .img img{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

@media(max-width:768px){
	.index_contrast{
		padding: 30px 0;
	}

	.index_contrast_fb{
		margin-top: 20px;
	}

	.index_contrast_fb_fl{
		width: 80px;
	}

	.index_contrast_fb_fl li{
		padding: 5px;
		font-size: 16px;
	}

	.index_contrast_fb_fc, .index_contrast_fb_fr{
		width: calc(50% - 40px);
	}

	.index_contrast_fb_fc li, .index_contrast_fb_fr li{
		padding: 5px;
		font-size: 15px;
	}
}

@media(max-width:768px){
	.index_contrast{
		padding: 25px 0;
	}

	.index_contrast_fb{
		margin-top: 15px;
	}

	.index_contrast_fb_fl{
		width: 74px;
	}

	.index_contrast_fb_fl li{
		font-size: 15px;
	}

	.index_contrast_fb_fc, .index_contrast_fb_fr{
		width: calc(50% - 37px);
	}
}

/*对比修改*/
.index_contrast_xiugai_fb_fl{
    width: 49%;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}
.index_contrast_xiugai_fb_fl_fl{
    overflow: hidden;
    width: 56%;
    position: relative;
}
.index_contrast_xiugai_fb_fl_fl_li img{
    width: 100%;
}
.index_contrast_xiugai_fb_fl_fl_btn{
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
}
.index_contrast_xiugai_fb_fl_fr{
    width: 40%;
}
.index_contrast_xiugai_fb_fl_fr_li:nth-child(n+2){
    margin-top: 4%;
}
.index_contrast_xiugai_fb_fl_fr_li h3{
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    color: #333;
}
.index_contrast_xiugai_fb_fl_fr_li h4{
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin-top: 5px;
}
.index_contrast_xiugai_fb_fr{
    width: 48%;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	-o-flex-direction: row-reverse;
	flex-direction: row-reverse;
}



/*核心优势*/
.index_hxys{
	padding: 3.5% 0;
	background: #f0f0f0;
}

.index_hxys_fc{
	margin: 2% 0;
}

.index_hxys_fc ul{
	font-size: 0;
}

.index_hxys_fc li{
	width: 25%;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	position: relative;
	cursor: pointer;
}

.index_hxys_fc li:nth-child(4n):before{
	display: none;
}

.index_hxys_fc li:before{
	content: '';
	position: absolute;
	right: 0;
	width: 1px;
	height: 50%;
	background: #ccc;
	top: 25%;
}

.index_hxys_fc li .img{
	width: 60px;
	height: 60px;
	overflow: hidden;
	display: inline-block;
	vertical-align: middle;
}

.index_hxys_fc li .img img{
	width: 100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.index_hxys_fc li.on .img img{
	margin-top: -60px;
}

.index_hxys_fc li .wz{
	display: inline-block;
	vertical-align: middle;
	margin-left: 1rem;
}

.index_hxys_fc li .wz h3{
	font-size: 1.3rem;
	line-height: 1.5;
	color: #333;
	text-align: left;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.index_hxys_fc li .wz h4{
	font-size: 18px;
	line-height: 1.5;
	color: rgba(0, 0, 0, .7);
	text-align: left;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.index_hxys_fc li.on .wz h3{
	color: #02428a;
	font-weight: bold;
}

.index_hxys_fc li.on .wz h4{
	color: #02428a;
}

.index_hxys_fb{
	margin-top: -4%;
	position: relative;
	z-index: 5;
}

.index_hxys_fb li{
	position: relative;
}

.index_hxys_fb li .img{
	width: 100%;
}

.index_hxys_fb li .img img{
	width: 100%;
}

.index_hxys_fb li .wz{
	width: 95%;
	position: absolute;
	left: 2.5%;
	bottom: 0;
	background: rgba(255, 255, 255, .8);
	font-size: 0;
}

.index_hxys_fb li .wz .wz_fl{
	width: 30%;
	position: relative;
	background: #02428a;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_hxys_fb li .wz .wz_fl h3{
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.5;
	color: #fff;
	text-align: center;
	width: 100%;
}

.index_hxys_fb li .wz .wz_fl h4{
	font-size: 16px;
	line-height: 2;
	color: #666;
	text-align: left;
}

.index_hxys_fb li .wz .wz_fr{
	width: 70%;
	padding: 2% 3%;
}

.index_hxys_fb li .wz .wz_fr h3{
	font-size: 1.2rem;
	color: #333;
	line-height: 1.5;
	font-weight: bold;
}

.index_hxys_fb li .wz .wz_fr h4{
	font-size: 16px;
	color: #666;
	line-height: 2;
	margin-top: 10px;
}

.index_hxys_fb li .wz .wz_fr p{
	font-size: 16px;
	line-height: 2;
	color: #666;
	position: relative;
	padding-left: 15px;
	margin: 5px 0;
}

.index_hxys_fb li .wz .wz_fr p:before{
	content: '';
	position: absolute;
	left: 0;
	width: 6px;
	height: 6px;
	background: #02428a;
	border-radius: 50%;
	top: 11px;
}

@media(max-width:991px){
	.index_hxys_fc li .img{
		width: 40px;
		height: 40px;
	}

	.index_hxys_fc li.on .img img{
		margin-top: -40px;
	}

	.index_hxys_fc li .wz{
		margin-left: 10px;
	}

	.index_hxys_fc li .wz h3{
		font-size: 18px;
	}

	.index_hxys_fc li .wz h4{
		font-size: 16px;
	}

	.index_hxys_fc li .wz h4{
		font-size: 14px;
	}

	.index_hxys_fb li .wz .wz_fl h3{
		font-size: 18px;
	}

	.index_hxys_fb li .wz .wz_fl h4{
		font-size: 14px;
	}

	.index_hxys_fb li .wz .wz_fr p{
		font-size: 14px;
		margin: 0;
	}

	.index_hxys_fb li .wz .wz_fr p:before{
		top: 10px;
	}

	.index_hxys_fb li .wz .wz_fr h3{
		font-size: 18px;
	}
}

@media(max-width:768px){
	.index_hxys{
		padding: 30px 0;
	}

	.index_hxys_fc{
		margin: 15px 0;
	}

	.index_hxys_fc li{
		width: 50%;
		margin: 5px 0;
	}

	.index_hxys_fc li:nth-child(2n):before{
		display: none;
	}

	.index_hxys_fb li .wz{
		position: static;
		width: 100%;
		background: #FAFAFD;
	}

	.index_hxys_fb li .wz .wz_fl{
		width: 100%;
		display: none;
	}

	.index_hxys_fb li .wz .wz_fr{
		width: 100%;
		padding: 15px;
	}
}

@media(max-width:468px){
	.index_hxys{
		padding: 25px 0;
	}
}

.index_hxys_fc_gai{
	margin-top: 3%;
	position: relative;
	z-index: 9;
}

.index_hxys_fc_gai ul{
	font-size: 0;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-o-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

.index_hxys_fc_gai li{
	width: 16.666666666%;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
}

.index_hxys_fc_gai li .index_hxys_fc_gai_nn{
	width: 95px;
	height: 106px;
	margin: 0 auto;
	background: url(../images/img/index_youshi_hei.png) no-repeat center;
	background-size: cover;
}

.index_hxys_fc_gai li.on .index_hxys_fc_gai_nn{
	background: url(../images/img/index_youshi_lan.png) no-repeat center;
	background-size: cover;
}

.index_hxys_fc_gai li .img{
	width: 30px;
	margin: 0 auto;
	line-height: 30px;
	text-align: center;
	padding-top: 23px;
}

.index_hxys_fc_gai li .img img{
	width: 100%;
}

.index_hxys_fc_gai li .wz h3{
	font-size: 17px;
	line-height: 1.3;
	color: #fff;
	font-weight: bold;
	text-align: center;
	margin-top: 5px;
}

.index_hxys_fb_nn{
	overflow: hidden;
	cursor: pointer;
}

.index_hxys_fb .wz1{
	position: absolute;
	left: 5%;
	top: 50%;
	width: 50%;
	padding: 2.5%;
	overflow: hidden;
	background: rgba(255, 255, 255, 1);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_hxys_fb .wz1 h3{
	font-size: 2.8rem;
	line-height: .78;
	color: #02428a;
	font-weight: bold;
	position: relative;
	font-family: Arial;
}

.index_hxys_fb .wz1 h3::before{
	content: '';
	position: absolute;
	left: 2.7rem;
	bottom: 0;
	width: 100%;
	height: 1.2rem;
	background: rgba(255, 255, 255, 1);
	-webkit-transform: skew(-24deg);
	-moz-transform: skew(-24deg);
	-ms-transform: skew(-24deg);
	-o-transform: skew(-24deg);
	transform: skew(-24deg);
}

.index_hxys_fb .wz1 h4{
	font-size: 1.3rem;
	line-height: 1.5;
	color: #333;
	font-weight: bold;
	margin: 3% 0;
}

.index_hxys_fb .wz1 h5{
	font-size: 15px;
	line-height: 28px;
	color: #333;
	margin: 0;
}

.index_hxys_fb .wz1 h5 p{
	margin: 5px 0;
	padding-left: 15px;
	position: relative;
}

.index_hxys_fb .wz1 h5 p::before{
	content: '';
	position: absolute;
	left: 0;
	top: 11px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #02428a;
}

@media(max-width:991px){
	.index_hxys_fb .wz1{
		width: 70%;
	}

	.index_hxys_fb .wz1 h4{
		font-size: 18px;
	}
}

@media(max-width:768px){
	.index_hxys_fc_gai{
		margin-top: 15px;
	}

	.index_hxys_fc_gai li{
		width: 33.3333%;
		margin: 5px 0;
	}

	.index_hxys_fc_gai li .wz h3{
		font-size: 16px;
		margin-top: 5px;
	}

	.index_hxys_fb{
		margin-top: 15px;
	}

	.index_hxys_fb li{
		background: #fff;
		height: auto;
	}

	.index_hxys_fb .wz1{
		width: 100%;
		left: 0;
		position: static;
		padding: 15px;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}

	.index_hxys_fb .wz1 h3{
		font-size: 36px;
	}

	.index_hxys_fb .wz1 h3::before{
		left: 34px;
		height: 16px;
	}

	.index_hxys_fb .wz1 h4{
		font-size: 18px;
		margin: 10px 0;
	}

	.index_hxys_fc_gai li .index_hxys_fc_gai_nn{
		width: 80px;
		height: 89px;
	}

	.index_hxys_fc_gai li .img{
		width: 25px;
		padding-top: 16px;
	}
}

@media(max-width:468px){
	.index_hxys_fb .wz1 h3{
		font-size: 30px;
	}

	.index_hxys_fb .wz1 h3::before{
		left: 30px;
		height: 13px;
	}
}

/*客户案例*/
.index_khal{
	padding: 3% 0;
}

.index_hzkh_fc{
	margin: 2.8% 0;
}

.index_hzkh_fc ul{
	font-size: 0;
	text-align: center;
}

.index_hzkh_fc li{
	padding: 0 1.5%;
	display: inline-block;
	position: relative;
}

.index_hzkh_fc li:before{
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 1px;
	height: 16px;
	background: #999;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_hzkh_fc li a{
	display: inline-block;
	max-width: 100%;
	font-size: 17px;
	line-height: 2;
	color: #666;
	padding: 5px 0px;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.index_hzkh_fc li a:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: #02428a;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.index_hzkh_fc li:last-child:before{
	display: none;
}

.index_hzkh_fc li.on a{
	color: #02428a;
	font-weight: bold;
}

.index_hzkh_fc li.on a:after{
	width: 100%;
}

@media(max-width:991px){
	.index_hzkh_fc li a{
		font-size: 16px;
	}
}

@media(max-width:768px){
	.index_khal{
		padding: 30px 0;
	}

	.index_hzkh_fc{
		margin: 10px 0;
	}

	.index_hzkh_fc li{
		width: 50%;
	}

	.index_hzkh_fc li:before{
		height: 18px;
	}

	.index_hzkh_fc li:nth-child(2n):before{
		display: none;
	}
}

@media(max-width:468px){
	.index_hzkh_fc li a{
		font-size: 15px;
		line-height: 1.8;
	}
}

/*应用行业*/
.yingyionglingyu{
	background: #fff;
	padding: 3.5% 0;
}

/*.yingyionglingyu_index_1{*/
/*	background: #f0f0f0;*/
/*}*/

.yingyionglingyu_index_2{
	background: #f0f0f0;
}

.yingyionglingyu_fc{
	margin: 3% 0;
}

.yingyionglingyu_fc ul{
	font-size: 0;
	text-align: center;
}

.yingyionglingyu_fc li{
	display: inline-block;
	vertical-align: middle;
	width: 20%;
	position: relative;
	text-align: center;
	max-width: 150px;
}

.yingyionglingyu_fc li a{
	font-size: 18px;
	line-height: 2;
	color: #666;
	padding: 0 5px;
	max-width: 100%;
	display: inline-block;
	position: relative;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.yingyionglingyu_fc li a:before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #02428a;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.yingyionglingyu_fc li.on a:before{
	width: 100%;
}

.yingyionglingyu_fc li.on a{
	color: #02428a;
	font-weight: bold;
}

.yingyionglingyu_fc li:before{
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 1px;
	height: 20px;
	background: #666;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.yingyionglingyu_fc li:nth-child(5n){
	margin-right: 0;
}

.yingyionglingyu_fc li:nth-child(5n):before{
	display: none;
}

.yingyionglingyu_fb_fl{
	width: 65%;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 3px 5px 3px rgba(0, 0, 0, 0.1);
}

.yingyionglingyu_fb_fl_nnn{
	height: 100%;
}

.yingyionglingyu_fb_fl li{
	position: relative;
	height: auto;
}

.yingyionglingyu_fb_fl li a{
	height: 100%;
	display: block;
}

.yingyionglingyu_fb_fl li .img{
	overflow: hidden;
}

.yingyionglingyu_fb_fl li .img img{
	width: 100%;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
}

.yingyionglingyu_fb_fl li:hover .img img{
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.yingyionglingyu_fb_fl li .wz{
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 99;
	width: 100%;
	background: #fff;
	padding: 3% 20% 3% 5%;
	background: #fff url(../images/img/gengduo_h.png) no-repeat 87% center;
	background-size: 35px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
}

.yingyionglingyu_fb_fl li .wz h3{
	font-size: 1.1rem;
	line-height: 2;
	color: #333;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
}

.yingyionglingyu_fb_fl li .wz h4{
	font-size: 15px;
	line-height: 2;
	color: #666;
	/*display: none;*/
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
}

.yingyionglingyu_fb_fl li:hover .wz h3{
	color: #02428a;
}

.yingyionglingyu_fb_fl li:hover .wz h4{
	color: #02428a;
}

.yingyionglingyu_fb_fl li:hover .wz{
	background: #fff url(../images/img/gengduo.png) no-repeat 87% center;
	background-size: 35px;
}

.yingyionglingyu_fb_fr{
	width: 31.5%;
	border-top: 2px solid #333;
	border-bottom: 2px solid #333;
	padding-top: 2%;
}

.yingyionglingyu_fb_fr_ft{
	width: 100%;
}

.yingyionglingyu_fb_fr_ft h3{
	font-size: 1.5rem;
	line-height: 1.2;
	color: #02428a;
	font-weight: bold;
}

.yingyionglingyu_fb_fr_ft h4{
	font-size: 1.4rem;
	line-height: 1.2;
	color: #333;
	font-weight: bold;
}

.yingyionglingyu_fb_fr_fb{
	font-size: 0;
	width: 130%;
	margin-left: -30%;
	margin-top: 15px;
	position: relative;
	z-index: 990;
}

.yingyionglingyu_fb_fr_fb li{
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.yingyionglingyu_fb_fr_fb li a{
	display: block;
	padding: 4.5% 3% 4.5% 0;
	padding-left: 23%;
}

.yingyionglingyu_fb_fr_fb .wz{
	width: 60%;
	margin-right: 3%;
	display: inline-block;
	vertical-align: middle;
}

.yingyionglingyu_fb_fr_fb .wz h3{
	font-size: 18px;
	line-height: 1.5;
	color: #333;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.yingyionglingyu_fb_fr_fb .wz h4{
	font-size: 15px;
	line-height: 2;
	color: #666;
	/*display: none;*/
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.yingyionglingyu_fb_fr_fb .img{
	width: 37%;
	display: inline-block;
	vertical-align: middle;
	overflow: hidden;
}

.yingyionglingyu_fb_fr_fb .img img{
	width: 100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.yingyionglingyu_fb_fr_fb li:hover .img img{
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.yingyionglingyu_fb_fr_fb li.on{
	background: #02428a;
}

.yingyionglingyu_fb_fr_fb li.on .wz h3{
	color: #fff;
}

.yingyionglingyu_fb_fr_fb li.on .wz h4{
	color: #fff;
}

@media(max-width:1280px){
	.yingyionglingyu_fb_fl li .wz h3{
		font-size: 18px;
	}
}

@media(max-width:991px){
	.yingyionglingyu_fb_fl{
		width: 100%;
	}

	.yingyionglingyu_fb_fr{
		width: 100%;
		display: none;
	}

	.yingyionglingyu_fb_fr_fb{
		width: 100%;
		margin-left: 0;
		margin-bottom: 0;
	}

	.yingyionglingyu_fb_fr_fb li a{
		padding: 3%;
	}

	.yingyionglingyu_fb_fr_ft h3{
		font-size: 24px;
	}

	.yingyionglingyu_fb_fr_ft h4{
		font-size: 24px;
	}
}

@media(max-width:768px){
	.yingyionglingyu{
		padding: 30px 0;
	}

	.yingyionglingyu_fc li a{
		font-size: 16px;
	}

	.yingyionglingyu_fb_fr{
		padding-top: 20px;
	}

	.yingyionglingyu_fc{
		margin: 15px 0;
	}

	.yingyionglingyu_fb_fr_ft h3{
		font-size: 22px;
	}

	.yingyionglingyu_fb_fr_ft h4{
		font-size: 22px;
	}
}

@media(max-width:468px){
	.yingyionglingyu{
		padding: 25px 0;
	}

	.yingyionglingyu_fc ul{
		text-align: left;
	}

	.yingyionglingyu_fc li{
		width: 50%;
		max-width: 100%;
	}

	.yingyionglingyu_fc li:nth-child(2n):before{
		display: none;
	}

	.yingyionglingyu_fb_fl li .wz{
		position: static;
		padding-right: 40px;
		background: #fff url(../images/img/gengduo_h.png) no-repeat right 10px center;
		background-size: 25px;
	}

	.yingyionglingyu_fb_fl li:hover .wz{
		background: #fff url(../images/img/gengduo.png) no-repeat right 10px center;
		background-size: 25px;
	}

	.yingyionglingyu_fb_fr_fb li a{
		padding: 15px !important;
	}

	.yingyionglingyu_fb_fl li .wz h3{
		font-size: 17px;
		line-height: 1.6;
	}

	.yingyionglingyu_fb_fl li .wz h4{
		line-height: 1.6;
	}

	.yingyionglingyu_fb_fl li .wz{
		padding: 10px 40px 10px 15px;
	}

	.yingyionglingyu_fb_fr_fb .wz h3{
		font-size: 17px;
	}
}

/*合作客户*/
.index_hzkh{
	/*background-color: #fff;*/
	padding: 3.5% 0;
	background: #f0f0f0;
}

.index_hzkh_ft{
	text-align: center;
	overflow: hidden;
}

.index_hzkh_ft h3{
	font-size: 2rem;
	line-height: 1.5;
	color: #222;
	font-weight: bold;
	position: relative;
}

.index_hzkh_ft h4 .biaoti_fl,
.index_hzkh_ft h4 .biaoti_fr{
	display: inline-block;
	vertical-align: middle;
	margin-right: .8rem;
	position: relative;
}

.index_hzkh_ft h4 .biaoti_fr{
	margin-right: 0;
	margin-left: .8rem;
}

.index_hzkh_ft h4 .biaoti_fl::after,
.index_hzkh_ft h4 .biaoti_fr::after{
	content: '';
	display: block;
	width: 3.5rem;
	height: 4px;
	background: #02428a;
	z-index: 5;
	position: relative;
}


.index_hzkh_ft h4 .biaoti_fl.baiseyanse::after,
.index_hzkh_ft h4 .biaoti_fr.baiseyanse::after{
	background: #fff;
}

.index_hzkh_ft h4 .biaoti_fl::before,
.index_hzkh_ft h4 .biaoti_fr::before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	z-index: 3;
	width: 1000px;
	height: 1px;
	background: #ccc;

	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_hzkh_ft h4 .biaoti_fl.baiseyanse::before,
.index_hzkh_ft h4 .biaoti_fr.baiseyanse::before{
	background: #fff;
}

.index_hzkh_ft h4 .biaoti_fl::before{
	left: auto;
	right: 0;
}

.index_hzkh_ft h3 span{
	color: #02428a;
}

.index_hzkh_ft h4{
	font-size: 1.2rem;
	line-height: 1.5;
	color: #222;
	position: relative;
	margin-top: 3px;
}

.index_hzkh_fb{
	margin-top: 3%;
	position: relative;
}

.index_hzkh_fb_con{
	overflow: hidden;
	padding: 1px;
}

.index_hzkh_fb .index_hzkh_fb_li_ww{
	cursor: pointer;
}

.index_hzkh_fb li{
	width: 20%;
}

.index_hzkh_fb li .img{
	overflow: hidden;
	background: #fff;
}

.index_hzkh_fb li .img img{
	width: 100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.index_hzkh_fb li:hover .img img{
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
}

.index_hzkh_fb li .wz{
	font-size: 16px;
	line-height: 2;
	color: #666;
	text-align: center;
	padding: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_hzkh_fb li:hover .wz{
	font-weight: bold;
}

.index_hzkh_fb li a{
	margin-bottom: -1px;
	margin-right: -1px;
}

.index_hzkh_fb li a{
	display: block;
	border: 1px solid #ccc;
}

.index_hzkh_fb li:hover{
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.index_hzkh_fb_btnl,
.index_hzkh_fb_btnr{
	position: absolute;
	width: 38px;
	height: 38px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.index_hzkh_fb_btnl{
	left: -40px;
}

.index_hzkh_fb_btnr{
	right: -40px;
}

.index_hzkh_fb_btnl:before,
.index_hzkh_fb_btnr:before{
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	border-left: 3px solid #333;
	border-top: 3px solid #333;
	position: absolute;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	-ms-transform: rotate(315deg);
	-o-transform: rotate(315deg);
	transform: rotate(315deg);
	top: 50%;
	left: 50%;
	margin: -10px 0 0 -10px;
	cursor: pointer;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.index_hzkh_fb_btnr:before{
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	margin: -10px 0 0 -10px;
}

.index_hzkh_fb_btnl:hover:before,
.index_hzkh_fb_btnr:hover:before{
	border-color: #02428a;
}

.index_hzkh_fb_btnl.swiper-button-disabled,
.index_hzkh_fb_btnr.swiper-button-disabled{
	opacity: .6;
}

@media(max-width:1400px){

	.index_hzkh_fb_btnl,
	.index_hzkh_fb_btnr{
		display: none;
	}
}

@media(max-width:991px){
	.index_hzkh_ft h4{
		font-size: 18px;
	}

	.index_hzkh_ft h4 .biaoti_fl::after,
	.index_hzkh_ft h4 .biaoti_fr::after{
		width: 2.8rem;
	}

	.index_hzkh_ft h4 .biaoti_fl{
		margin-right: 10px;
	}

	.index_hzkh_ft h4 .biaoti_fr{
		margin-left: 10px;
	}
}

@media(max-width:768px){
	.index_hzkh{
		padding: 30px 0;
	}

	.index_hzkh_ft h3{
		font-size: 24px;
	}

	.index_hzkh_ft h4{
		font-size: 17px;
	}

	.index_hzkh_ft h4 .biaoti_fl::after,
	.index_hzkh_ft h4 .biaoti_fr::after{
		width: 25px;
	}

	.index_hzkh_fb{
		margin-top: 20px;
	}

	.index_hzkh_fb li{
		width: 33.33333%;
	}
}

@media(max-width:468px){
	.index_hzkh{
		padding: 25px 0;
	}

	.index_hzkh_ft h3{
		font-size: 22px;
	}

	.index_hzkh_ft h4{
		font-size: 16px;
	}

	.index_hzkh_ft h4 .biaoti_fl,
	.index_hzkh_ft h4 .biaoti_fr{
		display: none;
	}

	.index_hzkh_fb{
		margin-top: 15px;
	}

	.index_hzkh_fb li{
		width: 50%;
	}
}

/*服务流程*/
.index_fwlc{
	padding: 3.5% 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.index_fwlc_fb{
	margin: 2.8% 0;
}

.index_fwlc_fb ul{
	font-size: 0;
	overflow: hidden;
}

.index_fwlc_fb li{
	width: 78px;
	display: inline-block;
	float: left;
	cursor: pointer;
	position: relative;
}

.index_fwlc_fb li:before{
	content: '';
	position: absolute;
	right: -2.1rem;
	width: 20px;
	height: 16px;
	background: url(../images/img/index_fwlc_jt.png) no-repeat center;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_fwlc_fb li:nth-child(9){
	margin-right: 0;
}

.index_fwlc_fb li:nth-child(9):before{
	opacity: 0;
}

.index_fwlc_fb li .imgw{
	overflow: hidden;
	width: 74px;
	position: relative;
	margin: 0 auto;
}

.index_fwlc_fb li .img{
	display: inline-block;
}

.index_fwlc_fb li .imgw .img img{
	width: 100%;
}

.index_fwlc_fb li .img1{
	-webkit-transform: translateX(0) rotate(0);
	transform: translateX(0) rotate(0);
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.index_fwlc_fb li .img2{
	background: #da231b;
	border-radius: 50%;
	opacity: 0;
	transform: scale(0);
	transition: .5s;
	position: absolute;
	left: 0;
	top: 0;
}

.index_fwlc_fb li.on .img1{
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateX(100%) rotate(180deg);
	transform: translateX(100%) rotate(180deg);
}

.index_fwlc_fb li.on .img2{
	opacity: 1;
	transform: scale(1);
}

.index_fwlc_fb li .wz{
	margin: 0 auto;
	font-size: 16px;
	line-height: 2;
	color: #fff;
	text-align: center;
	margin-top: 5px;
}

.index_fwlc_fb li.on .wz{
	color: #fff;
}

@media(max-width:1280px){
	.index_fwlc_fb li{
		width: 66px;
	}

	.index_fwlc_fb li .imgw{
		width: 66px;
	}
}

@media(max-width:991px){
	.index_fwlc_fb li{
		width: 33.333333333333%;
		margin: 5px 0;
		margin-right: 0;
	}

	.index_fwlc_fb li:nth-child(3n){
		margin-right: 0;
	}

	.index_fwlc_fb li:nth-child(3n):before{
		opacity: 0;
	}

	.index_fwlc_fb li .wz{
		width: 74px;
	}

	.index_fwlc_fb li:before{
		right: -10px;
	}
}

@media(max-width:768px){
	.index_fwlc{
		padding: 30px 0;
	}

	.index_fwlc_fb{
		margin: 15px 0;
	}
}

@media(max-width:468px){
	.index_fwlc{
		padding: 25px 0;
	}

	.index_fwlc_fb li:before{
		width: 16px;
		height: 13px;
		background-size: cover;
	}

	.index_fwlc_fb li:before{
		right: -8px;
	}

	.index_fwlc_fb li .imgw{
		width: 60px;
	}

	.index_fwlc_fb li .wz{
		font-size: 15px;
	}
}

.index_fwlc_fb1{
	text-align: center;
	overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_fwlc_fb1 h3{
	font-size: 1.2rem;
	color: #fff;
	line-height: 1.5;
	width: 100%;
	padding-right: 150px;
	margin-right: -150px;
	text-align: left;
}

.index_fwlc_fb1 h4{
	font-size: 1.2rem;
	color: #fff;
	line-height: 1.5;
	margin: 2% 0;
}

.index_fwlc_fb1 a{
	display: block;
	width: 110px;
	padding: 5px 3px;
	font-size: 16px;
	color: #333;
	line-height: 2;
	background: #fff;
	border-radius: 30px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.index_fwlc_fb1 a:hover{
	background: #da231b;
	color: #fff;
}

@media(max-width:1080px){
	.index_fwlc_fb1 h3{
		font-size: 18px;
	}

	.index_fwlc_fb1 h4{
		font-size: 18px;
	}
}

@media(max-width:991px){
	.index_fwlc_fb1 h3{
		padding-right: 0;
		margin-right: 0;
		text-align: center;
	}

	.index_fwlc_fb1{
		-webkit-justify-content: center;
		-moz-justify-content: center;
		-ms-justify-content: center;
		-o-justify-content: center;
		justify-content: center;
	}

	.index_fwlc_fb1 a{
		margin-top: 15px;
	}
}

@media(max-width:768px){
	.index_fwlc_fb1 h3{
		font-size: 17px;
	}

	.index_fwlc_fb1 h4{
		margin: 10px 0;
	}
}

@media(max-width:468px){
	.index_fwlc_fb1 h3{
		font-size: 17px;
	}

	.index_fwlc_fb1 h3 span{
		display: block;
		margin-top: 10px;
	}
}

/*新闻动态*/
.index_xwdt{
	padding: 3.5% 0;
}

.index_xwdt_ft{
	text-align: center;
}

.index_xwdt_ft h3{
	font-size: 2.2rem;
	line-height: 1.5;
	color: #333;
	font-weight: bold;
}

.index_xwdt_ft h3 span{
	color: #02428a;
}

.index_xwdt_ft h4{
	font-size: 20px;
	line-height: 1.5;
	color: #333;
}

.index_xwdt_fc{
	margin-top: 3%;
}

.index_xwdt_fc_ft{
	overflow: hidden;
	margin-bottom: 15px;
}

.index_xwdt_fc_ft_fl_ww{
	overflow: hidden;
	width: 48.75%;
}

.index_xwdt_fc_ft_fl_wwnn{
	overflow: hidden;
}

.index_xwdt_fc_ft_fr_ww{
	overflow: hidden;
	width: 45%;
}

.index_xwdt_fc_fb_fr_nn{
	overflow: hidden;
	min-height: 20rem;
	height: calc(100% - 45px);
}

.index_xwdt_fc_ft_fl{
	font-size: 20px;
	color: #333;
	line-height: 1.5;
	font-weight: bold;
}

.index_xwdt_fc_ft_fl span{
	font-size: 14px;
	text-transform: uppercase;
	font-weight: normal;
}

.index_xwdt_fc_ft_fr{
	font-size: 14px;
	color: #333;
	line-height: 30px;
}

.index_xwdt_fc_ft_fr:hover{
	color: #02428a;
}

.index_xwdt_fc_fb{
	overflow: hidden;
	position: relative;
}

.index_xwdt_fc_fb_fl{
	width: 48.75%;
}

.index_xwdt_fc_fb_fl .img{
	overflow: hidden;
}

.index_xwdt_fc_fb_fl .img img{
	width: 100%;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
}

.index_xwdt_fc_fb_fl:hover .img img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
}

.index_xwdt_fc_fb_fl .wz{
	margin-top: 10px;
}

.index_xwdt_fc_fb_fl .wz .rq{
	font-size: 16px;
	color: #333;
	line-height: 2;
	font-weight: bold;
}

.index_xwdt_fc_fb_fl .wz .biaoti{
	font-size: 16px;
	color: #333;
	line-height: 2;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_xwdt_fc_fb_fl:hover .wz .biaoti{
	color: #02428a;
}

.index_xwdt_fc_fb_fl .wz .miaoshu{
	font-size: 15px;
	color: #666;
	line-height: 2;
	height: 56px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.index_xwdt_fc_fb_fr{
	width: 45%;
	overflow: hidden;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
}

.index_xwdt_fc_fb_fr li{
	border-bottom: #e4e4e4 1px solid;
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-align-content: center;
	-o-align-content: center;
	align-content: center;
}

.index_xwdt_fc_fb_fr li a{
	width: 100%;
	position: relative;
}

.index_xwdt_fc_fb_fr li .jiantou{
	position: absolute;
	right: 0;
	z-index: 990;
	bottom: 8px;
	width: 35px;
	height: 35px;
	background: url(../images/img/index_xw_jthei.png) no-repeat left center;
	background-size: 35px;
}

.index_xwdt_fc_fb_fr li:hover .jiantou{
	background: url(../images/img/index_xw_jtlan.png) no-repeat left center;
	background-size: 35px;
}

.index_xwdt_fc_fb_fr li h3{
	font-size: 15px;
	line-height: 2;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: bold;
}

.index_xwdt_fc_fb_fr li h4{
	font-size: 17px;
	line-height: 1.8;
	color: #666;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_xwdt_fc_fb_fr li h5{
	font-size: 15px;
	line-height: 1.8;
	color: #666;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_xwdt_fc_fb_fr li a:hover h4{
	color: #02428a;
	font-weight: bold;
}

.index_xwdt_fb{
	margin-top: 3%;
	overflow: hidden;
}

.index_xwdt_fb_fb{
	overflow: hidden;
	margin-top: 15px;
}

.index_xwdt_fb_ft{
	overflow: hidden;
}

.index_xwdt_fb_fb li h3{
	font-size: 16px;
	line-height: 2;
	font-weight: bold;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_xwdt_fb_fb li h4{
	font-size: 16px;
	line-height: 2;
	color: #666;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_xwdt_fb_fb li:hover h3{
	color: #02428a;
}

@media(max-width:991px){
	.index_xwdt_ft h4{
		font-size: 18px;
	}
}

@media(max-width:768px){
	.index_xwdt{
		padding: 30px 0;
	}

	.index_xwdt_ft h3{
		font-size: 24px;
	}

	.index_xwdt_ft h4{
		font-size: 16px;
	}

	.index_xwdt_fc{
		margin-top: 20px;
	}

	.index_xwdt_fc_fb{
		margin-top: 20px;
	}

	.index_xwdt_fc_fb_fl{
		width: 100%;
	}

	.index_xwdt_fc_fb_fr{
		width: 100%;
		position: static;
		margin-top: 15px;
	}

	.index_xwdt_fb{
		margin-top: 15px;
	}

	.index_xwdt_fb_fb{
		margin-top: 15px;
	}

	.index_xwdt_fc_ft_fl{
		font-size: 18px;
	}

	.index_xwdt_fc_fb_fl .wz{
		margin-top: 10px;
	}

	.index_xwdt_fc_fb_fl .wz .biaoti{
		margin-top: 5px;
	}

	.index_xwdt_fc_fb_fl .wz .miaoshu{
		margin-top: 5px;
	}

	.index_xwdt_fc_fb_fr_nn{
		height: 320px;
		min-height: 320px;
	}
}

@media(max-width:468px){
	.index_xwdt{
		padding: 25px 0;
	}

	.index_xwdt_fc{
		margin-top: 15px;
	}

	.index_xwdt_fc_fb{
		margin-top: 15px;
	}

	.index_xwdt_fb_fb{
		margin-top: 10px;
	}
}

/*footer*/
.pc_footer_1{
	padding: 3% 0;
	background: #333;
}

.pc_footer_1_fl{
	width: 42%;
}

.pc_footer_1_fl_fl{
	position: relative;
	z-index: 5;
}

.pc_footer_1_fl_fl_ewm{
	max-width: 120px;
	text-align: center;
}

.pc_footer_1_fl_fl_ewm .img img{
	width: 100%;
}

.pc_footer_1_fl_fl_ewm .wz{
	font-size: 16px;
	line-height: 3;
	color: rgba(255, 255, 255, 0.7);
}

.pc_footer_1_fl_fr{
	width: 93%;
	padding-left: 120px;
	margin-left: -120px;
}

.pc_footer_1_fl_fr h3{
	font-size: 20px;
	line-height: 1;
	color: #fff;
	font-weight: bold;
}

.pc_footer_1_fl_fr h4{
	font-size: 16px;
	line-height: 2;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 15px;
}

.pc_footer_1_fr{
	width: 56%;
}

.pc_footer_1_fr ul{
	overflow: hidden;
}

.pc_footer_1_fr li{
	max-width: 32%;
	margin-right: 2%;
	float: left;
}

.pc_footer_1_fr li:nth-child(3n){
	margin-right: 0;
}

.pc_footer_1_fr li h3{
	font-size: 20px;
	line-height: 1;
	color: #fff;
	font-weight: bold;
}

.pc_footer_1_fr li h3 a{
	color: #fff;
}

.pc_footer_1_fr_nav_er{
	margin-top: 15px;
}

.pc_footer_1_fr .pc_footer_1_fr_nav_er_li a{
	font-size: 16px;
	line-height: 2;
	color: rgba(255, 255, 255, 0.7);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.pc_footer_1_fr .pc_footer_1_fr_nav_er_li a:hover{
	color: rgba(255, 255, 255, 1);
}

.pc_footer_2{
	padding: 20px 0;
	background: #fff;
	font-size: 16px;
	line-height: 2;
	color: #333;
}

.pc_footer_2 a{
	color: #333;
}

.pc_footer_2 a:hover{
	color: #02428a;
}

@media(max-width:1080px){
	.pc_footer_1_fl_fr{
		width: 96%;
	}
}

@media(max-width:991px){
	.pc_footer_1_fl{
		width: 100%;
	}

	.pc_footer_1_fl_fr h3{
		font-size: 18px;
	}

	.pc_footer_1_fr{
		display: none;
	}
}

@media(max-width:768px){
	.pc_footer_1{
		padding: 30px 0 20px;
	}

	.pc_footer_1_fl_fr h4,.pc_footer_1_fr .pc_footer_1_fr_nav_er_li a{
		line-height: 2;
	}

	.pc_footer_2{
		padding: 15px 0;
	}
}

@media(max-width:468px){
	.pc_footer_1_fl_fl{
		overflow: hidden;
		width: 100%;
	}

	.pc_footer_1_fl_fl_ewm{
		float: left;
	}

	.pc_footer_1_fl_fl_ewm1{
		float: right;
	}

	.pc_footer_1_fl_fl_ewm .wz{
		margin-top: 5px;
		line-height: 2;
	}

	.pc_footer_1_fl_fr{
		width: 100%;
		padding-left: 0;
		margin-left: 0;
		margin-top: 8px;
	}

	.pc_footer_1_fl_fr h4{
		margin-top: 5px;
	}
}

/*公司简介--主营产品*/
.ny_page_about_2_fb{
	margin-top: 3%;
}

.ny_page_about_2_fb li{
	width: 23.5%;
	margin-right: 2%;
	text-align: center;
	cursor: pointer;
}

.ny_page_about_2_fb li:nth-child(4n){
	margin-right: 0;
}

.ny_page_about_2_fb li:nth-child(n+5){
	margin-top: 15px;
}

.ny_page_about_2_fb li .img{
	overflow: hidden;
	border-radius: 10px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
	border: 1px solid #dfdfdf;
}

.ny_page_about_2_fb li .img img{
	width: 100%;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
}

.ny_page_about_2_fb li .wz{
	font-size: 16px;
	line-height: 20px;
	margin-top: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
}

.ny_page_about_2_fb li:hover .img{
	border-color: #02428a;
}

.ny_page_about_2_fb li:hover img{
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.ny_page_about_2_fb li:hover .wz{
	color: #02428a;
}

@media(max-width:768px){
	.ny_page_about_2_fb{
		margin-top: 15px;
	}

	.ny_page_about_2_fb li{
		width: 49%;
	}

	.ny_page_about_2_fb li:nth-child(2n){
		margin-right: 0;
	}

	.ny_page_about_2_fb li:nth-child(n+3){
		margin-top: 10px;
	}

	.ny_page_about_2_fb li .wz{
		margin-top: 10px;
	}
}

@media(max-width:468px){
	.ny_page_about_2_fb li{
		width: 100%;
		margin-right: 0!important;
	}

	.ny_page_about_2_fb li:nth-child(n+2){
		margin-top: 10px;
	}
}