﻿@charset "UTF-8";
/*header*/
.header{
	position: fixed;
	top:0;
	left: 0;
	z-index: 500;
	width: 100%;
	height: 101px;
	border-bottom: 1px solid rgba(255,255,255,.3);
	-webkit-transition: background .3s cubic-bezier(.215,.61,.355,1) 0s,height .3s cubic-bezier(.25,.46,.45,.94);
	-o-transition: background .3s cubic-bezier(.215,.61,.355,1) 0s,height .3s cubic-bezier(.25,.46,.45,.94);
	transition: background .3s cubic-bezier(.215,.61,.355,1) 0s,height .3s cubic-bezier(.25,.46,.45,.94);
}
.header.header-fixed,.header.set-color{
	background-color: #f8f8f8;
	border-bottom: none;
	height: 100px;
}
.header.header-fixed{
	-webkit-box-shadow: 0 4px 4px rgba(0,0,0,.08);
	        box-shadow: 0 4px 4px rgba(0,0,0,.08);
}
.header .logo{
	float: left;
	width: 217px;
	height: 58px;
	margin-top: 21px;
}
.header .logo img{width: 100%;}
.language{
	float: right;
	line-height: 100px;
}
.language a{
	color: #fff;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.header.header-fixed .language a,
.header.set-color .language a{color: #777;}
.language span{color: rgba(255,255,255,.3);padding:0 5px;}
.header.header-fixed .language span,
.header.set-color .language span{color: #ccc;}
.language a:hover,.header.header-fixed .language a:hover, .header.set-color .language a:hover{color: #212088;}
.nav-search{
	float: right;
	width: 40px;
	height: 40px;
	margin-top: 30px;
	background:url(../images/icon-search01.png) no-repeat center;
	cursor: pointer;
	margin-right: 15px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.header.header-fixed .nav-search,
.header.set-color .nav-search{
	background:url(../images/icon-search02.png) no-repeat center;
}
.nav-search:hover{opacity: 0.6;}
.navbar{float: right;margin-right:52px;}
.nav-item{float: left;margin:0 15px;position: relative;}
.category{
	display: block;
	padding:0 10px;
	font-size: 16px;
	color: #fff;
	line-height: 100px;
	position: relative;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.header.header-fixed .category,
.header.set-color .category{color: #333;}
.category::after{
	content: '';
	width:0;
	height: 2px;
	background-color: #212088;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	z-index: 2;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}
.dropdown-menu{
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 200;
    height: auto;
    background: #fff;
    padding:10px 0 5px;
    -webkit-box-shadow: 0 13px 42px 11px rgba(0,0,0,.05);
            box-shadow: 0 13px 42px 11px rgba(0,0,0,.05);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: all .36s ease;
    -o-transition: all .36s ease;
    transition: all .36s ease;
}
.nav-item:hover .dropdown-menu{
    opacity: 1;
    visibility: visible;
}
.nav-item:hover .category,
.nav-item.active .category{color: #212088;}
.nav-item.active .category::after,
.nav-item:hover .category::after{width: 100%;}
.dropdown-menu li a{
	display: block;
	white-space: nowrap;
	padding:0 30px;
	line-height: 36px;
	background:url(../images/icon-nav01.png) no-repeat 17px center;
	border-top: 1px solid #dbdbdb;
	color: #999;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.dropdown-menu li:first-child a{border-top: none;}
.dropdown-menu li a:hover{color: #212088;background-image:url(../images/icon-nav02.png);}
.search-stage{
    position: fixed;
    top:0;
    left: 0;
    z-index: 480;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.9);
    display: none;
}
.form-inner{position: relative;}
.search-from{
	width: 650px;
	margin:0 auto;
	padding: 250px 0 20px 0;
	-webkit-animation: searchOpen .5s cubic-bezier(.215,.61,.355,1);
	        animation: searchOpen .5s cubic-bezier(.215,.61,.355,1);
}
@-webkit-keyframes searchOpen {
	0% {
		top: 20px;
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
		-webkit-filter: blur(30px);
		        filter: blur(30px)
	}
	100% {
		top: 0;
		-webkit-transform: scale(1);
		        transform: scale(1);
		-webkit-filter: blur(0);
		        filter: blur(0)
	}
}
@keyframes searchOpen {
	0% {
		top: 20px;
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
		-webkit-filter: blur(30px);
		        filter: blur(30px)
	}
	100% {
		top: 0;
		-webkit-transform: scale(1);
		        transform: scale(1);
		-webkit-filter: blur(0);
		        filter: blur(0)
	}
}
.search-input{
	width: 100%;
	height: 96px;
	line-height: 96px;
	padding-right: 60px;
	border-bottom: 1px solid #e4e4e4;
	font-size: 28px;
    font-weight: 500;
    color: #fff;
}
.search-submit{
	position: absolute;
    top:28px;
    right: 0;
    z-index: 10;
    width:40px;
    height:40px;
    cursor: pointer;
    font-size: 22px;
    color: #fff;
    text-align: right;
    line-height: 40px;
    background: url(../images/icon-search03.png) no-repeat right center;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
.search-submit:hover{opacity: .5;}
.dialog-hide .nav-search{
	background: url(../images/icon-close.png) no-repeat center;
}
@media (max-width: 1430px){
  .nav-item{margin:0 10px;}
}
/*内页导航间距*/
.page-header{overflow: hidden;height:100px;width:100%;background-color: #fff;}
/*footer*/
.footer{width: 100%;overflow: hidden;background-color:#191a1e;position: relative;z-index: 2;}
.footer-top{padding:70px 0 64px;}
.footer-contact{
	float: right;
	width: 213px;
	text-align: right;
}
.footer-fir{color: #fff;font-size: 16px;line-height: 18px;margin-bottom: 15px;}
.footer-sec{color: #d80000;font-size: 23px;font-weight: bold;line-height:25px;}
.footer-thr{
	line-height: 24px;
	color: rgba(255,255,255,.6);
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255,255,255,.1);
	margin-bottom: 20px;
}
.footer-thr a{color: rgba(255,255,255,.6);}
.footer .share .bdsharebuttonbox{float: right;}
.share .bdsharebuttonbox a{
	display: inline-block;
	width:30px;
	height: 30px;
	border-radius: 50%;
	overflow: hidden;
	padding:0;
	margin:0 0 0 6px;
	background: url(../images/share.png) no-repeat #333;
	opacity: 1;
	vertical-align: middle;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}
.share .bdsharebuttonbox a.bds_weixin{
	background-position:-60px 0;
}
.share .bdsharebuttonbox a.bds_tsina{
	background-position:-30px 0;
}
.share .bdsharebuttonbox a.bds_sqq{
	background-position:0 0;
}
.share .bdsharebuttonbox a:hover{
	background-color:#212088;
}
.share .text{float: right;color: #fff;line-height:30px;}
.footer-nav{float: left;width: 1100px;overflow: hidden;}
.footer-item{float: left;width: 21%;text-align: center;position: relative;padding-bottom:26px;}
.footer-item::before{
	content: '';
	width: 1px;
	height: 300px;
	background-color: rgba(50,52,60,.6);
	position: absolute;
	left: 0;
	top:0;
}
.footer-item::after{
	content: '';
	width: 1px;
	height: 300px;
	background-color: rgba(0,0,0,.6);
	position: absolute;
	left: 0;
	top:0;
	margin-left: 1px;
}
.footer-item.first{text-align: left;width: 16%;}
.footer-item.first::before,.footer-item.first::after{display: none;}
.footer-item dt{margin-bottom: 15px;}
.footer-item dt a{font-size: 16px;line-height: 18px;color: #fff;}
.footer-item dd a{line-height: 24px;color: rgba(255,255,255,.6);}
.footer-friends{padding-bottom: 17px;border-bottom: 1px solid rgba(50,52,60,.6);}
.friends-text{line-height: 24px;color: rgba(255,255,255,.6);float: left;}
.friends-link{margin-left:150px;}
.friends-link a{
	line-height: 24px;
	color: rgba(255,255,255,.6);
	float: left;
	margin-right:78px;
	position: relative;
}
.friends-link a::after{
	content: '';
	width: 1px;
	height: 12px;
	background-color: rgba(255,255,255,.2);
	position: absolute;
	right:-39px;
	top:50%;
	margin-top: -6px;
}
.footer-bottom{
	border-top: 1px solid rgba(0,0,0,.6);
	color: rgba(255,255,255,.6);
	padding: 16.5px 0;
}
.footer-bottom a{color: rgba(255,255,255,.6);}
.footer-bottom .copyright{margin-right: 240px;}
.footer a{-webkit-transition: all .3s;-o-transition: all .3s;transition: all .3s;}
.footer a:hover{color: #212088;}
@media (max-width: 1430px){
  .footer-nav{width:914px;}
}
/*内页banner*/
.sec-subbanner{
	height: 300px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}
.sub-banner{
	height:300px;
	padding-bottom: 40px;
}
.subb-title h3{
	font-size: 46px;
	color: #fff;
	line-height: 1;
	text-transform: uppercase;
}
.subb-title h4{
	font-size: 26px;
	color: #fff;
	line-height: 33px;
}
.subb-title .hr{
	width: 36px;
	height: 2px;
	background-color: rgba(255,255,255,.6);
	margin-top: 5px;
}
.subb-des{
	width: 476px;
	font-size: 14px;
	line-height: 24px;
	color: #fff;
	margin-top: 15px;
}
/*面包屑*/
.breadcrumb{
	width: 100%;
	height: 40px;
	background-color:rgba(0,0,0,.2);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 5;
}
.dqwz{
	display: inline-block;
	font-size: 14px;
	color: rgba(255,255,255,.66);
}
.breadcrumb i,
.breadcrumb a,
.breadcrumb span{
	font-size: 14px;
	line-height: 40px;
	display: inline-block;
	vertical-align: middle;
	color: rgba(255,255,255,.66);
}
.breadcrumb i{padding: 0 5px;font-style: normal;}
.crumb-home{padding-left: 22px;background: url(../images/crumbhome.png) no-repeat left center;color: rgba(222,222,222,.66);}
.breadcrumb a{-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s;}
.breadcrumb a:hover{color:#212088;}
/*sub-nav*/
.sec-subnav{text-align: center;padding:50px 0 20px;}
.btn-default{
	display: inline-block;
	font-size: 16px;
	line-height: 38px;
	text-align: center;
	padding:0 37px;
	border:1px solid #dedede;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
	margin:0 10px;
}
.btn-default span{
	position: relative;
	z-index: 2;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}
.btn-default i {
    position: absolute;
    width: 0;
    height: 100%;
    top:0;
    left: 0;
    background-color: #212088;
    z-index: -1;
    -webkit-transition:all .4s ease;
    -o-transition:all .4s ease;
    transition:all .4s ease;
}
.btn-default:hover i,
.btn-default.active i{
    width: 100%;
}
.btn-default:hover,
.btn-default.active{
	color: #fff;
}
/*news-list*/
.sec-news{padding-bottom: 70px;}
.news-item{
	display: block;
	padding:20px 0;
	border-bottom: 1px solid #dedede;
}
.news-item .m-pic{
	float: left;
	width: 380px;
	height: 224px;
	overflow: hidden;
}
.news-item .m-pic img{
	width: 100%;
	height: 100%;
	-webkit-transition: all .8s;
	-o-transition: all .8s;
	transition: all .8s;
}
.news-item .m-cont{
	margin-left: 430px;
	padding-top: 6px;
}
.news-item .m-tit{
	font-size: 20px;
	font-weight: lighter;
	white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.news-item .m-time{
	color: #999;
}
.news-item .m-des{
	font-size: 14px;
	line-height: 24px;
	color: #777;
	margin:10px 0;
	height: 96px;
	display: -webkit-box;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}
.news-item .m-more{text-align: right;}
.btn-more{
	display: inline-block;
	font-size: 13px;
	line-height: 34px;
	text-align: center;
	padding:0 25px;
	border:1px solid #dedede;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}
.btn-more span{
	position: relative;
	z-index: 2;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}
.btn-more i {
    position: absolute;
    width: 0;
    height: 100%;
    top:0;
    left: 0;
    background-color: #212088;
    z-index: -1;
    -webkit-transition:all .4s ease;
    -o-transition:all .4s ease;
    transition:all .4s ease;
}
.news-item:hover .btn-more i {
    width: 100%;
}
.news-item:hover .btn-more{
	color: #fff;
}
.news-item:hover .m-tit{color: #212088;}
.news-item:hover .m-pic img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
/*分页*/
.pagination{
	text-align: center;margin-top: 50px;
}
.pagination-cont{
	display: inline-block;
	position: relative;
	z-index: 1;
}
.pagination-cont::before,.pagination-cont::after{
	content: '';
	left: 20px;
	right: 20px;
	height: 1px;
	background-color: #dedede;
	position: absolute;
	z-index: -1;
}
.pagination-cont::before{
	top:0;
}
.pagination-cont::after{
	bottom:0;
}
.pagination a{
	display: inline-block;
	font-size: 14px;
	color: #666;
	line-height: 38px;
	width: 40px;
	height: 40px;
	margin:0 3px;
	vertical-align: middle;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.pagination a.prev{
	background:url(../images/arrow_01.png) no-repeat center #dedede;
	margin:0 24px 0 0;
	border-radius: 50%;
}
.pagination a.next{
	background:url(../images/arrow_02.png) no-repeat center #dedede;
	margin:0 0 0 24px;
	border-radius: 50%;
}
.pagination a:hover{color: #212088;}
.pagination a.prev:hover,.pagination a.next:hover{
	background-color: #212088;
}
/*news-detail*/
.sec-newsDetail{padding:66px 0 70px;background:#f8f8f8;}
.news-title{text-align:center;font-size: 24px;line-height: 30px;}
.news-time{color: #a6acae;text-align: center;}
.news-share{text-align: center;position: relative;margin-top: 25px;z-index: 1;font-size: 0;}
.news-share::after{
	content: '';
	width: 100%;
	height: 1px;
	background-color: #dedede;
	position: absolute;
	top:50%;
	left: 0;
	z-index: -1;
}
.news-share .share{display: inline-block;}
.news-share .bdsharebuttonbox a{margin:0 5px;}
.news-detail{padding:44px 0 65px;color: #777;line-height: 1.714285714285714;}
.news-detail img{max-width: 100%;}
.page-detail span{
	float: left;
	font-size: 16px;
	color: #999;
	text-align: center;
	line-height: 56px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.page-detail span a{
	font-size: 16px;
	color: #999;
}
.page-detail span.prev,.page-detail span.next{
	width: 310px;
	height: 58px;
}
.page-detail span.prev{
	border: 1px solid #dedede;
}
.page-detail span.next{
	border: 1px solid #dedede;
}
.page-detail span.prev i,.page-detail span.next i{
	width: 38px;
	height:16px;
	display: inline-block;
	vertical-align: middle;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.page-detail span.prev i{
	background:url(../images/left_01.png) no-repeat center;
}
.page-detail span.next i{
	background:url(../images/right_01.png) no-repeat center;
}
.page-detail span.back{
	width: 580px;
	height: 58px;
	border-top: 1px solid #dedede;
	border-bottom: 1px solid #dedede;
}
.page-detail span.back:hover{color: #212088;}
.page-detail span.prev:hover,.page-detail span.next:hover{
	color: #fff;
	background-color: #212088;
	border-color:#212088;
}
.page-detail span.prev:hover a,.page-detail span.next:hover a{
	color: #fff;
}
.page-detail span.prev:hover i{
	background:url(../images/left_02.png) no-repeat center;
}
.page-detail span.next:hover i{
	background:url(../images/right_02.png) no-repeat center;
}
/*组织架构*/
/*组织架构*/
.sec-zzjg{padding:50px 0 70px;}
.zzjg-box{text-align: center;}
/*联系我们*/
.sec-contact{background:#f8f8f8;}
.contact-title{text-align: center;margin-top: 63px;}
.contact-title .m-tit{font-size: 24px;}
.contact-title .hr{
	width: 28px;
	height: 2px;
	background-color: #212088;
	margin: 3px auto 0 auto;
}
.zzImg img{max-width: 100%; height: auto !important;}
.zzImg{text-align: unset !important;}
.zzImg p{line-height:24px;}
.describe{color: #777;text-align: center;margin:20px 0 50px;line-height: 24px;padding:0 70px;}
.describe span{color: #212088;}
.form-row{margin-left: -30px;}
.form-group{
	width: 380px;
	float: left;
	margin-left: 30px;
	margin-bottom: 30px;
}
.form-group input{
	width: 100%;
	height: 40px;
	background: #fff;
	font-size: 14px;
	line-height: 30px;
	padding:4px 20px;
	border:1px solid #dedede;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.form-group textarea{
	width: 1200px;
	height: 208px;
	background: #fff;
	font-size: 14px;
	line-height: 30px;
	padding:4px 20px;
	border:1px solid #dedede;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.btn-submit{
	width: 100%;
	height: 48px;
	border:1px solid #dedede;
	background:#fff;
	font-size: 16px;
	text-align: center;
	line-height: 30px;
	padding:9px 20px;
	cursor: pointer;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.form-group input:focus,
.form-group textarea:focus,
.btn-submit:hover{
	border-color: #333333;
}
/*分区联系地址*/
.sec-address{background-color: #f8f8f8;padding-bottom: 90px;}
.address-box{margin:50px -15px 0 -15px;}
.address-box li{
	width: 380px;
	height: 446px;
	float: left;
	background:#fff;
	margin: 15px;
	-webkit-transition: all .6s;
	-o-transition: all .6s;
	transition: all .6s;
}
.address-box li.second{
	-webkit-transform: translateY(30px);
	    -ms-transform: translateY(30px);
	        transform: translateY(30px);
}
.address-box .m-pic{
	width: 100%;
	height: 224px;
	overflow: hidden;
}
.address-box .m-pic img{
	width: 100%;
	height: 100%;
	-webkit-transition: all .8s;
	-o-transition: all .8s;
	transition: all .8s;
}
.address-box .m-cont{
	padding:27px 50px 27px 50px;
}
.address-box .m-tit{
	font-size: 20px;
	font-weight: lighter;
	margin-bottom: 8px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.address-box li:hover .m-tit{color:#212088;}
.address-box .m-des{
	line-height: 24px;
}
.address-box .m-le{float: left;}
.address-box .m-ri{margin-left: 42px;color:#777;}
.address-box a{color: #777;-webkit-transition: all .3s;-o-transition: all .3s;transition: all .3s;}
.address-box a:hover{color: #212088;}
.address-box .scrollbar{
	max-height: 158px;
	padding-right: 10px;
}
.address-box li:hover .m-pic img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.address-box li:hover{
	-webkit-box-shadow:0 15px 24px 4px rgba(218,37,29,.07);
	        box-shadow:0 15px 24px 4px rgba(218,37,29,.07);
	-webkit-transform: translateY(-20px);
	    -ms-transform: translateY(-20px);
	        transform: translateY(-20px);
}
.address-box li.second:hover{
	-webkit-transform: translateY(10px);
	    -ms-transform: translateY(10px);
	        transform: translateY(10px);
}
/*服务支持-品质管理*/
.sec-service{padding-bottom: 50px;position: relative;}
.service-list{margin:0 -15px;}
.service-item{
	float: left;
	width: 380px;
	margin:0 15px;
}
.service-item .m-pic{
	width: 100%;
	height: 190px;
	overflow: hidden;
}
.service-item .m-pic img{
	width: 100%;
	height: 100%;
	-webkit-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;
}
.service-item .m-tit{
	font-size: 20px;
	font-weight: lighter;
	text-align: center;
	padding:15px;
}
.service-item:hover .m-pic img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
/*服务支持-质量检查*/
.sec-zljc{background:url(../images/service_04.jpg) no-repeat center;background-size: cover;padding-bottom: 70px;position: relative;}
.zljc-box{
	margin:0 78.75px;
	background:url(../images/service_06.png) no-repeat center;
}
.zljc-item{
	float: left;
	width: 158px;
	height: 158px;
	background:url(../images/service_08.png) no-repeat center;
	margin:0 51.25px;
	padding:10px;
	position: relative;
}
.zljc-item:first-child{
	background:url(../images/service_09.png) no-repeat center;
}
.zljc-item:last-child{
	background:url(../images/service_10.png) no-repeat center;
}
.zljc-item::after{
	content: '';
	width: 102.5px;
	height: 100%;
	background:url(../images/service_05.png) no-repeat center;
	position: absolute;
	left: 100%;
	top:0;
	z-index: 2;
}
.zljc-item:last-child::after{display: none;}
.zljc-item .m-cont{
	text-align: center;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	font-size: 20px;
	line-height: 32px;
	font-weight: lighter;
	padding:37px 0;
}
.zljc-item:hover .m-cont{
	background:#212088;
	color: #fff;
}
/*服务支持-质检过程*/
.sec-zjgc{padding-bottom: 70px;}
.zjgc-box{margin:0 -25px}
.zjgc-item{
	float: left;
	margin: 0 25px;
	width: 262px;
	text-align: center;
	position: relative;
}
.zjgc-item::after{
	content:'';
	width: 50px;
	height: 100%;
	background:url(../images/service_07.png) no-repeat center;
	position: absolute;
	left: 100%;
	top:0;
	z-index: 2;
}
.zjgc-item:last-child::after{
	display: none;
}
.zjgc-top{background-color: #212088;color: #fff;font-size: 20px;height: 176px;font-weight: lighter;padding: 10px;}
.zjgc-top p{font-size: 16px;}
.zjgc-bottom{background-color: #f5881f;color: #fff;height: 176px;font-size: 18px;margin-top: 10px;font-weight: lighter;padding: 10px;}
/*售后保证*/
.sec-aftersale{padding-bottom: 70px;}
.aftersale-box{margin:50px -15px 0 -15px;}
.after-item{
	float: left;
	width: 297px;
	margin:0 5px;
	position: relative;
	overflow: hidden;
}
.after-item .m-pic{
	width: 100%;
	height: 276px;
	overflow: hidden;
}
.after-item .m-pic img{
	width: 100%;
	height: 100%;
	-webkit-transition: all .8s;
	-o-transition: all .8s;
	transition: all .8s;
}
.after-item .m-cont{
	height: 88px;
	background-color:#333;
	text-align: center;
	padding:20px 10px;
}
.after-item .m-tit{
	font-size: 20px;
	line-height: 28px;
	color: #fff;
}
.after-item .m-cont p{
	font-size: 12px;
	color: #999;
}
.after-item .m-caption{
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left: 0;
	-webkit-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
    overflow: hidden;
    color: #fff;
    padding:10px 15px 10px 25px;
    text-align: center;
    background-color: rgba(33,32,136,.9);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-transform: translate3d(0,-100%,0);
            transform: translate3d(0,-100%,0);
}
.after-item .m-caption .m-tit{
	opacity: 0;
	-webkit-transform: translateY(-150px);
	    -ms-transform: translateY(-150px);
	        transform: translateY(-150px);
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}
.after-item .m-des{
	margin-top: 10px;
	line-height: 24px;
	color: #fff;
	opacity: 0;
	-webkit-transform: translateY(-150px);
	    -ms-transform: translateY(-150px);
	        transform: translateY(-150px);
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}
.after-item .scrollbar{
	height: 344px;
	padding-right: 10px;
}
.after-item .scrollbar::-webkit-scrollbar-thumb {
  background-color:#333;
}
.after-item:hover .m-caption{
	-webkit-transform: translate3d(0,0,0);
	        transform: translate3d(0,0,0);
}
.after-item:hover .m-caption .m-tit,
.after-item:hover .m-des{
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	opacity: 1;
}
/*物流保证*/
.sec-wlbz{
	background: url(../images/service_14.jpg) repeat-x;
	padding-bottom:60px;
	position: relative;
}
.absol{
	position: absolute;
	top:-100px;
	left: 0;
}
.wlbz-box{margin:40px -15px 0 -15px;}
.wlbz-item{
	float: left;
	width: 615px;
	margin:10px 15px;
	overflow: hidden;
	position: relative;
}
.wlbz-item.it-1{
	width: 555px;
	height: 508px;
}
.wlbz-item.it-2{
	width: 615px;
	height: 270px;
}
.wlbz-item.it-3{
	width: 615px;
	height: 218px;
}
.wlbz-item img{
	width: 100%;
	height: 100%;
}
.wlbz-item .m-mark{
	position: absolute;
	left: 0;
	top:0;
	width: 100%;
	height: 100%;
	background-color:rgba(33,32,136,.9);
	color: #fff;
	text-align: center;
	padding:15px 110px 15px 120px;
	-webkit-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	        transform: translateY(-100%);
	-webkit-transition: all .6s;
	-o-transition: all .6s;
	transition: all .6s;
}
.wlbz-item .m-tit{font-size: 20px;font-weight: lighter;}
.wlbz-item .m-des{line-height: 24px;margin-top: 10px;}
.wlbz-item .scrollbar{
	height: 100%;
	padding-right: 10px;
}
.wlbz-item .scrollbar::-webkit-scrollbar-thumb {
  background-color:#333;
}
.wlbz-item:hover .m-mark{
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}
/*代理品牌*/
.sec-brand{padding-bottom: 70px;}
.brand-list{margin:0 -15px;}
.brand-item{
	float: left;
	width: 380px;
	height: 235px;
	margin:15px;
	position: relative;
}
.brand-item .m-pic{
	width: 100%;
	height: 100%;
	overflow: hidden;
	border:1px solid #dedede;
}
.brand-item .m-pic img{
	width: 100%;
	height: 100%;
	-webkit-transition: all .8s;
	-o-transition: all .8s;
	transition: all .8s;
}
.brand-item .m-mark{
	width: 410px;
	height: 100%;
	background-color: #212088;
	position: absolute;
	left: 100%;
	top:0;
	z-index: 2;
	padding:24px 20px;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.brand-item .m-mark::after{
	content: '';
	width: 17px;
	height: 20px;
	background:url(../images/sjx.png) no-repeat center;
	position: absolute;
	right: 100%;
	top:50%;
	margin-top: -10px;
	z-index: 3;
}
.brand-item.it-l .m-mark{
	left: auto;
	right: 100%;
}
.brand-item.it-l .m-mark::after{
	right: auto;
	left: 100%;
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}
.brand-item .m-tit{font-size: 16px;color: #fff;}
.brand-item .m-tit span{font-size: 20px;}
.brand-item .m-des{
	line-height: 24px;
	color: rgba(255,255,255,.8);
	margin-top: 10px;
}
.brand-item .scrollbar{
	height: 100%;
	padding-right: 10px;
}
.brand-item .scrollbar::-webkit-scrollbar-thumb {
  background-color:#333;
}
.brand-item:hover .m-mark{visibility: visible;opacity: 1;}
.brand-item:hover .m-pic img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
/*解决方案*/
.sec-solution{
	height: 430px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-top: 50px;
}
.sec-solution .container{
	position: relative;
	height: 100%;
}
.sec-solution .figure{
	margin-left: 85px;
	margin-top: 44px;
	width: 445px;
	height: 360px;
}
.sec-solution .figure img{
	max-height: 100%;
}
.sec-solution .m-cont{
	position: absolute;
	top: 150px;
	right: 80px;
	width: 520px;
}
.sec-solution .m-tit{font-size: 24px;}
.sec-solution .m-des{
	line-height: 24px;
	color: #777;
	margin-top: 20px;
}
/*产品对应新品*/
.sec-product{padding-bottom: 60px;}
.product-list{margin:35px -15px 0 -15px;}
.product-item{
	float: left;
	width: 380px;
	height: 294px;
	margin:15px;
	border: 1px solid #dedede;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.product-item a{display: block;width: 100%;height: 100%;}
.product-item .m-pic{
	width: 100%;
	height: 234px;
	overflow: hidden;
}
.product-item .m-pic img{
	width: 100%;
	height: 100%;
	-webkit-transition: all .8s;
	-o-transition: all .8s;
	transition: all .8s;
}
.product-item  .m-tit{
	font-size: 20px;
	font-weight: lighter;
	text-align: center;
	padding:15px;
	height: 60px;
	-o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    _zoom: 1;
}
.product-item:hover{
	-webkit-box-shadow: 0 8px 24px rgba(226,10,0,.1);
	        box-shadow: 0 8px 24px rgba(226,10,0,.1);
}
.product-item:hover .m-pic img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
/*about*/
.sec-about{padding:30px 0 10px;position: relative;}
.about-pic{
	float: left;
	padding-left: 25px;
	padding-top: 85px;
	position: relative;
	z-index: 1;
}
.about-pic::before{
	content: '';
	width: 566px;
	height: 325px;
	border: 2px solid #212088;
	position: absolute;
	left: -1px;
	top: 46px;
	z-index: -1;
}
.about-pic .m-pic{
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.about-pic .m-pic img{
	width: 100%;
	height: 100%;
	-webkit-transition: all .8s;
	-o-transition: all .8s;
	transition: all .8s;
}
.about-pic:hover .m-pic img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.about-cont{
	float: right;
	width: 585px;
	padding-top:40px;
}
.about-cont .m-tit{font-size: 24px;}
.about-cont .hr{
	width: 34px;
	height: 2px;
	background-color: #212088;
	margin:14px 0 24px;
}
.about-cont .m-des{
	line-height: 24px;
	color: #777;
}
.about-cont .scrollbar{
	height: 312px;
	padding-right:36px;
}
/*企业文化*/
.sec-culture{
	background:#f5f5f5;
	padding-bottom: 55px;
	position: relative;
}
.culture-box{margin:35px -15px 0 -15px;}
.culture-item{
	float: left;
	width: 585px;
	margin:15px;
	overflow: hidden;
	position: relative;
	height: 314px;
}
.culture-item .m-pic{
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.culture-item .m-pic img{
	width: 100%;
	height: 100%;
	-webkit-transition: all .8s;
	-o-transition: all .8s;
	transition: all .8s;
}
.culture-item .m-cont{
	background: #fff;
	text-align: center;
	font-size: 20px;
	font-weight: lighter;
	padding:23px 10px;
	width: 100%;
	height: 76px;
	-o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    _zoom: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.culture-item .mark{
	width: 100%;
	height: 100%;
	background:rgba(230,1,21,.6);
	color: #fff;
	text-align: center;
	padding:10px 50px 10px 60px;
	position: absolute;
	top:0;
	left: 0;
	z-index: 3;
	-webkit-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	        transform: translateY(-100%);
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.culture-item .m-tit{font-size: 20px;}
.culture-item .m-des{
	color: rgba(255,255,255,8);
	line-height: 24px;
	margin-top: 8px;
}
.culture-item .scrollbar{
	height:100%;
	padding-right: 10px;
}
.culture-item .scrollbar::-webkit-scrollbar-thumb {
  background-color:#333;
}
.culture-item:hover .mark{
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}
.culture-item:hover .m-cont{
	-webkit-transform: translateY(100%);
	    -ms-transform: translateY(100%);
	        transform: translateY(100%);
}
/*合作客户*/
.sec-partner{padding-bottom: 70px;position: relative;}
.partnerSlide{position:relative;margin-top: 50px;}
.partner-list ul li{
	float: left;
	width: 300px;
	height: 156px;
}
.partner-list ul li a{
	width: 100%;
	height: 100%;
	display: block;
	border-left: 1px solid #dedede;
	border-top: 1px solid #dedede;
	overflow: hidden;
}
.partner-list ul li:nth-of-type(4n),
.partner-list ul li:nth-last-of-type(1){
	border-right: 1px solid #dedede;
}
.partner-list ul li:nth-last-of-type(4),
.partner-list ul li:nth-last-of-type(3),
.partner-list ul li:nth-last-of-type(2),
.partner-list ul li:nth-last-of-type(1){
	border-bottom: 1px solid #dedede;
}
.partner-list ul li img{
	width:100%;
	height:100%;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.partner-page{
	width:100%;
	margin-top: 50px;
	font-size: 0;
}
.partner-page ul{
	text-align: center;
}
.partner-page ul li{
	display: inline-block;
	width:54px;
	height:6px;
	border-radius:3px;
	background:rgba(51,51,51,.3);
	-webkit-transition:all .3s;
	-o-transition:all .3s;
	transition:all .3s;
	margin:0 10px;
	text-indent: -9999px;
	cursor: pointer;
}
.partner-page ul li.on{background:#212088;}
.partner-list li:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
/*人才招聘*/
.sec-join{background-color: #f8f8f8;padding:70px 0;}
.rcln-box{
	width: 100%;
	height: 376px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.rcln-box .m-cont{
	width: 594px;
	text-align: center;
	color:#fff;
	margin:0 auto;
}
.rcln-box .m-tit{font-size: 24px;}
.rcln-box .m-des{
	line-height: 24px;
	margin-top: 7px;
}
.join-list{margin-top: 40px;margin-left: -30px;}
.join-item{
	float: left;
	width: 380px;
	height: 360px;
	padding:25px;
	margin-top: 30px;
	margin-left: 30px;
	background-color: #fff;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.join-item .m-time{color: #999;}
.join-item .m-tit{font-size: 20px;-webkit-transition: all .3s;-o-transition: all .3s;transition: all .3s;}
.join-item .m-cont{margin:20px 0 10px;}
.join-item .m-cont dt{
	margin-bottom: 12px;
}
.join-item .m-cont dd{
	line-height: 24px;
	color: #777;
}
.join-item .scrollbar{height: 177px;padding-right: 10px;}
.join-item .btn-default{
	font-size: 14px;
	padding:0 24px;
	line-height: 34px;
	border-radius: 18px;
	margin:0;
}
.join-item:hover .m-tit{color: #212088;}
.join-item:hover{
	-webkit-transform: translateY(-10px);
	    -ms-transform: translateY(-10px);
	        transform: translateY(-10px);
	-webkit-box-shadow: 0 8px 24px rgba(226,10,0,.1);
	        box-shadow: 0 8px 24px rgba(226,10,0,.1);
}
/*home-banner*/
.sec-banner{height: 1080px;}
#banner{
	position: fixed;
    width: 100%;
    height:100%;
    top:0;
    left: 0;
}
.banner-video {
    position: relative;
    width: 100%;
    height: 100%;
}
.banner-wrap{ position:relative; width:100%; height: 100%;}
.sec-banner .content{
	color: #fff;
	text-align: left;
}
.sec-banner .content .hr{
	width: 100px;
	height: 2px;
	background-color: #fff;
	margin-bottom: 20px;
}
.sec-banner .content .text{
	font-size: 40px;
	font-weight: bold;
	line-height: 63px;
}
.sec-banner .content span{color: #212088;}
.sec-banner .content p{
	font-size: 46px;
	line-height: 60px;
}
.vidbacking-active-block-back,.vidbacking-active-body-back{min-width:100%;min-height:100%;z-index:-100;top:50%;left:50%;transform:translateX(-50%) translateY(-50%)}.vidbacking-active-body-back{position:fixed;background-size:cover;overflow:hidden;opacity:1;transition:2s opacity}.vidbacking-active-block-back{position:absolute;height:auto;width:auto}.vidbacking{display:none}
.vidmask-block-back{opacity:1;position:absolute;height:auto;width:auto}
/*我们能解决*/
.sec-solve{background-color: #f6f6f6;padding-bottom: 80px;position: relative;z-index: 2;}
.section-title{text-align: center;padding:65px 0 5px;position: relative;}
.section-title h4{
	font-size: 32px;
	line-height: 40px;
}
.section-title p{
	font-size: 16px;
	color: rgba(51,51,51,.3);
	font-family: Open Sans,Arial;
}
.section-title::before{
	content:"";
	width: 345px;
	height: 1px;
	background:rgba(35,37,46,.1);
	position: absolute;
	bottom: 2px;
	left: 50%;
	margin-left: -172.5px;
	z-index: 1;
}
.section-title::after{
	content: '';
	width: 33px;
	height: 4px;
	background:#212088;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -16.5px;
	z-index: 2;
}
.home-des{
	width: 685px;
	text-align: center;
	color: #777;
	line-height: 24px;
	margin: 13px auto 0 auto;
}
.solve-box{margin:53px -5px 0 -5px;}
.solve-box .m-col{
	float: left;
	width: 33.3333333%;
	padding:0 5px;
}
.solve-item{
	display: block;
	width: 100%;
	overflow: hidden;
	position: relative; 
}
.solve-item .m-img{
	width: 100%;
}
.solve-item .mark{
	width: 100%;
	height:100%;
	background:#f6f6f6;
	text-align: center;
	padding:55px 75px;
	position: absolute;
	top:440px;
	left: 0;
	z-index: 2;
	-webkit-transition: all .6s;
	-o-transition: all .6s;
	transition: all .6s;
}
.solve-item .m-cont{
	-webkit-transform: translateY(-112px);
	    -ms-transform: translateY(-112px);
	        transform: translateY(-112px);
	-webkit-transition: all .6s;
	-o-transition: all .6s;
	transition: all .6s;
}
.solve-item .m-index{
	font-family: "impact";
	font-size: 50px;
	line-height: 1;
	color: rgba(51,51,51,.1);
	-webkit-transition: all .6s;
	-o-transition: all .6s;
	transition: all .6s;
}
.solve-item .m-hr{
	width: 20px;
	height: 2px;
	background:#212088;
	margin:16px auto 14px auto;
	-webkit-transition: all .6s;
	-o-transition: all .6s;
	transition: all .6s;
}
.solve-item .m-tit{
	font-size: 22px;
	height: 33px;
	-o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    _zoom: 1;
	-webkit-transition: all .6s;
	-o-transition: all .6s;
	transition: all .6s;
}
.solve-item .m-des{
	line-height: 24px;
	color: rgba(255,255,255,.6);
	margin-top: 27px;
	height: 96px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.solve-item .m-more{
	margin-top:40px;
}
.solve-item:hover .mark{
	top:0;
	background:rgba(33,32,136,.9);
}
.solve-item:hover .m-cont{
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}
.solve-item:hover .m-index,
.solve-item:hover .m-tit{color: #fff;}
.solve-item:hover .m-hr{background:#fff;}
@media (max-width: 1430px){
	.solve-item .mark{padding: 45px 65px;top: 376px;}
	.solve-item .m-cont{
		-webkit-transform: translateY(-74px);
		    -ms-transform: translateY(-74px);
		        transform: translateY(-74px);
	}
}
/*我们是谁*/
.sec-we{background:#fff;position: relative;z-index: 2;}
.we-box{margin-top: 30px;}
.we-box li{
	float: left;
	width: 20%;
	height: 505px;
	border-left: 1px solid #e5e5e5;
	position: relative;
	text-align: center;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.we-box li:first-child{border-left: none;}
.we-box a{
	display: block;
	width: 100%;height: 100%;
	padding: 150px 20px 0 20px;
}
.we-box li .m-icon{
	width: 80px;
	height: 80px;
	position: absolute;
	left: 50%;
	margin-left: -40px;
	text-align: center;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.we-box li.it01 .m-icon{
	top:30px;
}
.we-box li.it02 .m-icon{
	bottom: 108px;
}
.we-box .m-icon img,
.we-box .m-more img{
	display: block;
	width: 100%;
	height: 100%;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.we-box .aft{
	position: absolute;
	top:0;
	left: 0;
	z-index: 2;
	opacity: 0;
}
.we-box .m-cont{
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.we-box .m-tit{
	font-size: 22px;
	font-weight: lighter;
	padding:0 10px;
	white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.we-box .m-hr{
	width: 22px;
	height: 2px;
	background-color: #212088;
	margin:15px auto 24px auto;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.we-box .m-des{
	line-height: 24px;
	color: #777;
	height: 72px;
	padding:0 10px;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.we-box li .m-more{
	position: absolute;
	left: 50%;
	margin-left: -25.5px;
	width: 51px;
	height: 51px;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.we-box li.it01 .m-more{
	bottom: 108px;
}
.we-box li.it02 .m-more{
	top: 30px;
}
.we-box li:hover{
	background: #212088;
}
.we-box li:hover .m-tit{color: #fff;}
.we-box li:hover .m-hr{background: #fff;}
.we-box li:hover .m-des{color:rgba(255,255,255,.6);}
.we-box li:hover .bef{opacity: 0;}
.we-box li:hover .aft{opacity: 1;}
.we-box li:hover .m-cont{-webkit-transform: translateY(38px);-ms-transform: translateY(38px);transform: translateY(38px);}
.we-box li:hover .m-icon,
.we-box li:hover .m-more{
	-webkit-transform: translateY(38px);
	    -ms-transform: translateY(38px);
	        transform: translateY(38px);
}





.we-boxab{margin-top: 30px;}
.we-boxab li{
	float: left;
	width: 20%;
	height: 480px;
	border-left: 1px solid #e5e5e5;
	position: relative;
	text-align: center;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.boxhe li{height: 690px;}
.we-boxab li:first-child{border-left: none;}
.we-boxab a{
	display: block;
	width: 100%;height: 100%;
	padding: 0 20px;
}
.we-boxab li .m-icon{
	width: 100%;
	/*position: absolute;*/
	/*left:0;*/
	text-align: center;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.we-boxab li.it01 .m-icon{
	top:30px;
}
.we-boxab li.it02 .m-icon{
	bottom: 108px;
}
.we-boxab .m-icon img,
.we-boxab .m-more img{
	display: block;
	width: 100%;
	height: 100%;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.we-boxab .aft{
	position: absolute;
	top:0;
	left: 0;
	z-index: 2;
	opacity: 0;
}
.we-boxab .m-cont{
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.we-boxab .m-tit{
    margin-top:10px;
	font-size: 22px;
	font-weight: lighter;
	padding:0 10px;
	white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.we-boxab .m-hr{
	width: 22px;
	height: 2px;
	background-color: #212088;
	margin:15px auto 24px auto;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.we-boxab .m-des{
	line-height: 24px;
	color: #777;
	/*height: 72px;*/
	padding:0 10px;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.we-boxab li .m-more{
	position: absolute;
	left: 50%;
	margin-left: -25.5px;
	width: 51px;
	height: 51px;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.we-boxab li.it01 .m-more{
	bottom: 108px;
}
.we-boxab li.it02 .m-more{
	top: 30px;
}
.we-boxab li:hover{
	background: #212088;
}
.we-boxab li:hover .m-tit{color: #fff;}
.we-boxab li:hover .m-hr{background: #fff;}
.we-boxab li:hover .m-des{color:rgba(255,255,255,.6);}
.we-boxab li:hover .bef{opacity: 0;}
.we-boxab li:hover .aft{opacity: 1;}
.we-boxab li:hover .m-cont{-webkit-transform: translateY(38px);-ms-transform: translateY(38px);transform: translateY(38px);}
.we-boxab li:hover .m-icon,
.we-boxab li:hover .m-more{
	-webkit-transform: translateY(38px);
	    -ms-transform: translateY(38px);
	        transform: translateY(38px);
}











/*应用行业*/
.sec-application{
	padding-bottom: 82px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: #fff;
	position: relative;
	z-index: 2;
}
.sec-application .section-title h4{color: #fff;}
.sec-application .section-title p{color: rgba(255,255,255,.3);}
.sec-application .section-title::before{background:rgba(255,255,255,.1);}
.sec-application .home-des{color: rgba(255,255,255,.6)}
.appbox{
	width: 100%;
	height: 868px;
	overflow: hidden;
	position: relative;
	margin-top: 66px;
}
.appbox .app-bd {
	position: relative;
	float: left;
	width: 1024px;
	height: 650px;
	padding:4px 0;
	overflow: hidden;
}	
.appbox .app-bd a{
	display: block;
	position: relative;
	width: 1024px;
	height: 642px;
}
.appbox .app-bd img {
	display: block;
	width: 100%;
	height: 100%;
}
.appbox .app-bd .m-cont{
	position: absolute;
	top:0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 2;
	background: rgba(0,0,0,.6);
	text-align: center;
}
.appbox .app-bd .m-tit{
	font-size: 28px;
	color: #fff;
	font-weight: lighter;
}
.appbox .app-bd .m-hr{
	width: 40px;
	height: 2px;
	background-color: #212088;
	margin:12px auto 16px auto;
}
.appbox .app-bd .m-des{
	font-size: 16px;
	color: rgba(255,255,255,.6);
}
.appbox .app-hd {
	position: relative;
	width:100%;
	float: right;
	z-index: 1;
}
.appbox .app-hd ul {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.appbox .app-hd li {
	width: 50%;
	height: 218px;
	padding:4px 0 4px 16px;
	overflow: hidden;
	float: left;
}
.appbox .app-hd a{
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}
.appbox .app-hd a::after{
	content: '';
	width: 100%;
	height: 100%;
	background:rgba(33,32,136,.7);
	position: absolute;
	top:0;
	left: 0;
	z-index: 2;
	opacity: 0;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
/*.appbox .app-hd a::before{*/
/*	content: '';*/
/*	width: 16px;*/
/*	height: 19px;*/
/*	background:url(../images/home_17.png) no-repeat;*/
/*	position: absolute;*/
/*	right: 100%;*/
/*	top:50%;*/
/*	margin-top: -10px;*/
/*	z-index: 2;*/
/*	opacity: 0;*/
/*	-webkit-transition: all .5s;*/
/*	-o-transition: all .5s;*/
/*	transition: all .5s;*/
/*}*/
.appbox .app-hd li.on a::after,
.appbox .app-hd li.on a::before{opacity: 1;}
.appbox .app-hd img {
	width: 100%;
	height:100%;
	display: block;
}
.appbox .app-hd .m-tit{
	font-size: 22px;
	font-weight: lighter;
	color: #fff;
	line-height: 30px;
	position: absolute;
	top:30px;
	left: 30px;
	width: 100%;
	
	z-index: 3;
}
@media (max-width: 1430px){
	.appbox{height: 550px;}
	.appbox .app-bd{
		width: 877px;
		height: 550px;
	}
	.appbox .app-bd a{
		width: 877px;
		height: 542px;
	}
	.appbox .app-hd{width: 306px;}
	.appbox .app-hd li{height: 110px;}
	.appbox .app-hd .m-tit{top:36px;}
}
/*home-合作客户*/
.sec-cooperation{background:#f6f6f6;padding-bottom: 80px;position: relative;z-index: 2;}
.cooperation-box{position: relative;margin-top: 66px;}
.cooperation-box .coop-list ul{margin-left: -20px;}
.cooperation-box .coop-list li{
	float: left;
	width: 264px;
	height: 137px;
	margin-left: 20px;
	margin-bottom: 10px;
}
.cooperation-box .coop-list li a{
	display: block;
	width: 100%;
	height: 100%;
	border:1px solid #e2e2e2;
	background:#fff;
	overflow: hidden;
}
.cooperation-box .coop-list li img{
	width: 100%;
	height: 100%;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.cooperation-box .coop-list li:hover img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.cooperation-box .coop-hd{
	width:100%;
	margin-top: 70px;
	font-size: 0;
}
.slide-page{
	text-align: center;
}
.slide-page li{
	display: inline-block;
	width:54px;
	height:6px;
	border-radius:3px;
	background:rgba(51,51,51,.3);
	-webkit-transition:all .3s;
	-o-transition:all .3s;
	transition:all .3s;
	margin:0 10px;
	text-indent: -9999px;
	cursor: pointer;
}
.slide-page li.on{background:#212088;}
@media (max-width: 1430px){
	.cooperation-box .coop-list li{
		width: 224px;
		height: 126px;
	}
}
/*品牌分销商*/
.sec-distributor{padding-bottom: 72px;position: relative;z-index: 2;background:#fff;}
.distributor-box{margin-top: 67px;position: relative;}
.distr-list{overflow: hidden;}
.distr-list li{
	float: left;
	width: 280px !important;
	height: 138px;
	border-top:1px solid #eaeaea;
	border-bottom:1px solid #eaeaea;
	border-left:1px solid #eaeaea;
}
.distr-list li:nth-of-type(5n),
.distr-list li:last-child{
	border-right:1px solid #eaeaea;
}
.distr-list li a{
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	overflow: hidden;
	position: relative;
}
.distr-list li img{
	display: block;
	width: 100%;
	height: 100%;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.distr-list li .aft{
	position: absolute;
	top:0;
	left: 0;
	z-index: 2;
	opacity: 0;
}
.distr-list li .bef{opacity: .5;}
.distr-hd{margin-top: 80px;}
.distr-list li:hover .bef{opacity: 0;}
.distr-list li:hover .aft{opacity: 1;}
@media (max-width: 1430px){
	.distr-list li{
		width: 240px !important;
		height: 118px;
	}
}
/*品质保证*/
.sec-quality{background:#f6f6f6;padding-bottom: 80px;position: relative;z-index: 2;}
.quality-box{margin:67px -5px 0 -5px;}
.quality-box .m-col{
	width: 33.333333333%;
	float: left;
	padding:0 5px;
}
.quality-item{
	display: block;
	width: 100%;
	height: 326px;
	position: relative;
	overflow: hidden;
}
.quality-item .m-pic{
	width: 100%;
	height: 100%;
}
.quality-item  .m-pic img{
	width: 100%;
	height: 100%;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.quality-item .mark{
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left: 0;
	z-index: 3;
	text-align: center;
	background:rgba(0,0,0,.6);
	padding:20px 10px;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.quality-item .scrollbar{padding:0 10px;width: 100%;height: 100%;}
.quality-item .m-tit{
	font-size: 22px;
	color: #fff;
	line-height: 28px;
}
.quality-item .m-des{
	line-height: 24px;
	color: rgba(255,255,255,.6);
}
.quality-item .m-more{
	color: #fff;
	margin-top: 21px;
	opacity: 0;
	-webkit-transform: translateY(30px);
	    -ms-transform: translateY(30px);
	        transform: translateY(30px);
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.quality-item:hover .mark{
	background:rgba(33,32,136,.85);
}
.quality-item:hover .m-more{
	opacity: 1;
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}
@media (max-width: 1430px){
	.quality-item{height: 278px;}
}
/*加载*/
.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/preloader.gif);
}
/*客服*/
.kf {
	z-index:600;
	background-color: #fff;
	position: fixed;
	bottom: 100px;
	right: 20px;
	width: 62px;
	border-radius: 5px;
	display: none;
	-webkit-transition:all .8s;
	-o-transition:all .8s;
	transition:all .8s;
}
.kf span {
	z-index:602;
	-webkit-transition:all .5s;
	-o-transition:all .5s;
	transition:all .5s;
	cursor: pointer;
	position: relative;
	display: block;
	width: 62px;
	height: 62px;
	border-bottom: 1px solid #e3e3e3;
	background:url(../images/kefu_j.png) no-repeat center #fff;
}
.kf span:hover{background-color:#212088;}
.kf .zx {border-radius: 5px 5px 0 0;background-position: 0 0;}
.kf .zx:hover {background-position: 0 -62px;}
.kf .freetel {background-position:-62px 0;}
.kf .freetel:hover {background-position:-62px -62px;}
.kf .act {background-position:-186px 0;}
.kf .act:hover{background-position:-186px -62px;}
.kf .zxlya {background-position:-124px 0;}
.kf .zxlya:hover{background-position:-124px -62px;}
.kf .back_top {
	border-radius: 0 0 5px 5px;
	border: none;
	background-position:-248px 0;
}
.kf .back_top:hover {background-position:-248px -62px;}
.kf span div {
	display: none;
	background-color: #fff;
	border-radius: 5px;
	position: absolute;
	right: 75px;
	padding: 20px;
	font-size: 14px;
	color: #f4474c;
	bottom:2px;
}
.kf span div input {
	text-indent: .5em;
	display: block;
	margin: 15px 0;
	line-height: 28px;
	color: #696969;
	font-size: 12px;
	width: 140px;
	border: 1px solid #d1d1d1;
	border-radius: 2px;
	height: 28px;
}
.kf span div a {
	-o-transition: .5s;
	transition: .5s;
	-webkit-transition: .5s;
	display: block;
	background: #f4474c;
	border-radius: 2px;
	color: #fff;
	line-height: 26px;
	font-size: 12px;
	text-align: center;
	width: 79px;
	height: 26px;
}
.kf span div a:hover {
	background: #f4474c;
}
.kfimgr{
	position: absolute;
	bottom:23px;
	right: -9px;
}
.kf span div i {
	display: block;
	position: absolute;
	width: 15px;
	height: 200px;
	right: -15px;
	top: 0;
}
.kf .zx div, .kf .freetel div,
.kf .zxlya div, .kf span:nth-child(4) div {
	text-align: center;
	min-width: 148px;
	font-size: 14px;
	color: #666;
}
.kf span:nth-child(4) div {
	white-space: nowrap;
}
.kf a{
	display:block;
	height: 100%;
	position:absolute;top:0;right:0;
	width: 100%;
}
.kf span div, .kf {
	-webkit-box-shadow: 0 2px 13px rgba(0, 0, 0, 0.25);
	box-shadow: 0 2px 13px rgba(0, 0, 0, 0.25);
}
.nav_center div, .index_nav_center div, .shou, .zhan {
	-webkit-box-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
	box-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}
.shou {
	z-index:601;
	cursor: pointer;
	width: 30px;
	height: 40px;
	top: 50%;
	margin-top: -15px;
	border-radius: 5px 0 0 5px;
	right: 62px;
	background: url("../images/kefu_j.png") no-repeat -310px 0 #fff;
	position: absolute;
}
.shou.on {background-position: -310px -40px;}
.pagination-cont .page-num-current{color:#212088}
.bd_weixin_popup{box-sizing: content-box;} 

