body, button, dd, div, dl, form, h1, h2, h3, h4, h5, h6, html, img, input, li, ol, p, ul {
    margin: 0;
    padding: 0;
    border: 0
}

* {
    -webkit-tap-highlight-color: transparent
}

body {
   font-family: Arial, sans-serif, "Helvetica Neue", Helvetica, "PingFang SC", STHeiti, 宋体, arial;
    background-color: #ffffff;
    overflow-x: hidden;
}

button, input, textarea {
   font-family: Arial, sans-serif, "Helvetica Neue", Helvetica, "PingFang SC", STHeiti, 宋体, arial;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Arial, sans-serif, "Helvetica Neue", Helvetica, "PingFang SC", STHeiti, 宋体, arial;
    font-weight: normal
}

img {
    border: 0;
    max-width: 100%;
    vertical-align: middle;
}
.none{
	display:none;
}

.online_x{
	cursor:pointer;
}
button:hover,
input[type=submit]:hover {
    cursor: pointer
}

button:focus,
input:active,
input:focus,
textarea:focus {
   /* border: 0*/
  	outline: 0 none;
  	outline-color: transparent;
}

a {
    color: #333;
    display: inline-block;
}

a:link {
    text-decoration: none
}

a:visited {
    text-decoration: none
}

a:hover {
    text-decoration: none;
    cursor: pointer
}

a:active {
    text-decoration: none
}

li {
    list-style: none;
}

.clear {
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    visibility: hidden
}

.clearfix:after,
.clearfix:before {
    content: "";
    display: table
}

.clearfix:after {
    clear: both
}

.clearfix {
    zoom: 1
}


.conwidth{
	max-width: 1600px;
	width: 100%;
	margin: auto;
}
.recruit .box .welfare{
background-color: #f9f9f9;
}

/*header*/
.header{
	background-color: #FFFFFF;

}
.sy{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999;
	background-color: #FFFFFF;
	box-shadow: 0px 0px 10px rgba(0,0,0,.15);
}
.fixed{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999;
	/*border-bottom: #eeeeee solid 1px;*/
}
.header .box{
	text-align: center;
	height: 100px;
}
.header .box .h-logo{
	float: left;
	display: inline-block;
	line-height: 100px;
	height: 100px;
}
.header .box .h-logo img{
	width: 179px;
	/*height: 69px;*/
}
.header .box .nav{
	display: inline-block;
	margin: 0 auto;
}
.header .box .nav ul{
	float: left;
}
.header .box .nav ul li{
	position: relative;
	display: inline-block;
}
.header .box .nav ul li>a{
	position: relative;
	color: #444444;
	font-size: 20px;
	font-weight:600;
	line-height: 70px;
	height: 70px;
	margin: 20px 10px 10px;
	padding: 0px 15px;
}
.header .box .nav ul li:hover>a{
	position: relative;
	color: #009999;
}
.header .box .nav ul li:hover>a::before, .header .box .nav ul li.on>a::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	background-color: #009999;
	/*border-bottom: #009999 solid 3px;*/
}
.header .box .nav ul li .submenu{
	position: absolute;
	left: 0;
	top: 100px;
	z-index: 10;
	display: none;
	background-color: #ffffff;
	/*min-width: 140px;*/
}
.header.fixed .box .nav ul li .submenu{
	box-shadow: 0px 2px 10px rgba(0,0,0,.2);
}
.header .box .nav ul li .submenu a{
	/*display: inline-block;*/
	display: block;
	width: 100%;
	padding: 0px 30px;
	overflow: hidden;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	height: 60px;
	line-height: 60px;
	text-align: left;
	white-space: nowrap;
	border-bottom: #eeeeee solid 1px;
}
.header .box .nav ul li .submenu a:hover{
	color: #009999;
}
.menubtn{
	display: none;
}
.h-other{
	float: right;
}
.h-other .searchdiv{
	float: left;
}
.header .h-other .show-search-btn {
    display: block;
    height: 100px;
    line-height: 100px;
    transition-duration: .3s;
    text-align: center;
    color: #fff;
    overflow: hidden;
    cursor: pointer;
}
.show-search-btn img{
	cursor: pointer;
}
.search {
  	position: fixed;
 	z-index: 6;
  	top: 100px;
  	right: 0;
  	height: 100%;
  	max-height: 100vh;
  	overflow-y: scroll;
  	overflow-x: hidden;
  	-webkit-overflow-scrolling: touch;
  	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  	opacity: 0;
  	visibility: hidden;
  	transition-property: opacity,visibility;
  	transition-duration: .5s;
  	transition-delay: .5s;
}
.search.search-is-open{
  	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	opacity:1;
	visibility:visible;
	transition-delay:0s;}
.search.search-is-open .search__container{
	transform:translateY(0) translateZ(0);
}
.search__container{
  	position:relative;
  	z-index:2;
	background-color:#fff;
	transform:translateY(-100%) translateZ(0);
	transition:transform .75s cubic-bezier(.77,0,.175,1);
}
.search__overlay{
  	position:fixed;
  	z-index:1;
	top:0;
	right:0;
	width:100%;
	height:100%;
	/*background-color:#1d1d1d;*/
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=95)";
	opacity:.2;
}
.search,.search__overlay{
	left:0;
}
.search-header{
	position:relative;
  	padding-top: 90px;
	padding-bottom: 120px;
}
.row{
	position: relative;
}
.search-header .search-loader{
	position:absolute;
  	top:17px;
	left:2.6vw;
}
.search-header .search-btn-close{position:absolute;
  	top:0;
	right:0;
}
.search-header .search-input{
  	font-size:24px;
	width:100%;
	-webkit-appearance:none;
	-moz-appearance:none;
	border:0;
}
.search-header .search-input__wrapper:after{content:"";
	position:absolute;
	z-index:1;
	bottom:0;
	left:0;
	right:0;
	height:1px;
	background-color:#d9d9d9;
	width:100%;
}
.search-item{position:relative;
  	display:block;
	overflow:hidden;
	transition:background-color .2s,opacity .3s,color .3s;
	transform-origin:0 0;
	color:#1d1d1d;
}
.search-item:after{
	content:"";
	position:absolute;
	z-index:1;
	bottom:0;
	left:8.333%;
	right:8.333%;
	height:1px;
	background-color:#d9d9d9;
}
.search-item .solr-highlight{
	background-color:rgba(101,32,142,.2);
}
.search-close {
  	position: absolute;
  	display: block;
  	top: 0;
 	right: 0;
  	width: 28px;
  	height: 72px;
  	background: url(../images/close.png) no-repeat center;
  	background-size: 28px 28px;
  	cursor: pointer;
  	z-index: 6;
  	transition-duration: .5s; 
}
.search-close:hover {
  	transform: rotate(90deg); 
}
.search .submit0 {
  	position: absolute;
  	top: 0;
  	left: 0;
  	z-index: 5;
  	width: 28px;
  	height: 75px;
  	background: url(../images/searchf.png) no-repeat center;
  	border: none;
  	background-size: 28px 28px;
  	box-sizing: border-box;
  	display: block;
}
.search-header .search-input {
  	display: block;
  	text-indent: 80px;
 	line-height: 75px;
  	font-size: 24px;
  	color: #333;
  	width: 100%;
  	-webkit-appearance: none;
  	-moz-appearance: none;
  	border: 0;
  	border-bottom: 1px solid #d9d9d9;
}
.header .language{
	float: left;
	display: inline-block;
	min-width: 45px;
	/*
	background: url(../images/global1.png) left center no-repeat;
	background-size: 27px 27px;
	*/
	font-size: 16px;
	color: #444444;
	font-weight: bold;
	height: 100px;
	line-height: 100px;
	font-family: "思源黑体 CN";
	font-weight: lighter;
	position: relative;
	cursor: pointer; 
	z-index:998;
	text-align: left;
	padding-left: 20px;
	margin-left: 30px;
}
.header .language:before{
	position:absolute;
	left: 50%;
	top: 60px;
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	content: "";
	display: none;
	border-top: 10px transparent dashed;
	border-left: 6px transparent dashed;
	border-right: 6px transparent dashed;
	border-bottom: 6px #eee solid;
}
.header .language .top{
	color: #444444;
	font-size: 16px;
	padding-right: 12px;
	background: url(../images/l-down11.png) right center no-repeat;
	background-size: 12px 6px;
}
.header .language .drop-down{
	display: none;
	position: absolute;
	top: 75px;

	/*width: 100%;*/
	min-width: 60px;
	padding: 5px 15px;
	left: 50%;
	z-index: 100;
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border: 1px solid #eee;
	background: #fff;
}
.header .language .drop-down a{
	display: block;
	font-size: 14px;
	line-height: 30px;
	text-align: center;
	color: #444444;
	font-weight: bold;
}
.header .language .drop-down a:hover{
	color: #444444;
}
.header .language:hover:before{
	display: block;
}
.login{
	display: none;
	position: fixed;
	top: 100px;
	left: 0;
	width: 100%;
	height: -moz-calc(100% - 100px);
	height: -webkit-calc(100% - 100px);
	height: calc(100% - 100px);
	background: rgba(0,0,0,.8);
	z-index: 999;
}
.login .box{
	position: absolute;
	left: 50%;
	top: 50%;
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	max-width: 450px;
	width: 90%;
	margin: 0px auto;
}
.login .box .content{
	background: #ffffff;
	padding-bottom: 35px;
	border-radius: 15px;
	overflow: hidden;
}
.login .box .content .title{
	text-align: center;
	padding: 30px 10px;
	color: #FFFFFF;
	font-size: 26px;
	font-weight: bold;
	line-height: 40px;
	background:url(../images/img60.png) center top no-repeat;
	background-size: cover;
}
.login .box .content .con{
	padding: 2% 12.4% 0;
	overflow: hidden;
}
.login-li{
	position: relative;
	margin-top: 30px;
	padding-left: 40px;
	border-bottom: #e5e5e5 solid 1px;
	overflow: hidden;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
.login-li input{
	width: 100%;
	color: #444444;
	font-size: 14px;
	line-height: 45px;
	border: none;
	background: none;
	outline: none;
}
.login-li input::-webkit-input-placeholder {
    color: #afafaf;
}
.login-li input:-moz-placeholder {
	color: #afafaf;
}
.login-li input::-moz-placeholder {
	color: #afafaf;
}
.login-li input:-ms-input-placeholder {
	color: #afafaf;
}
.login-li i{
	position: absolute;
	left: 4px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 20px;
	height: 100%;
}
.login-li.icon1 i{
	background: url(../images/img61.png) center left no-repeat;
	background-size: 20px 21px;
}
.login-li.icon2 i{
	background: url(../images/img62.png) center left no-repeat;
	background-size: 20px 21px;
}
.login-btn{
	text-align: center;
	overflow: hidden;
	margin-top: 40px;
}
.login-btn input{
	color: #FFFFFF;
	font-size: 16px;
	background-color: #009999;
	height: 50px;
	width: 100%;
	border-radius: 25px;
}
.login-tips{
	color: #999999;
	font-size: 14px;
	text-align: center;
	margin-top: 30px;
}
.login-tips a{
	color: #009999;
}
.login .box .login-close{
	text-align: center;
	overflow: hidden;
	margin-top: 40px;
}
.login .box .login-close a{
	display: inline-block;
	margin: 0 auto;
}
.login .box .login-close a img{
	width: 50px;
	height: 50px;
}
/*footer*/
.footer{
	background-color: #f5f5f5;
}
.footer .box1{
	border-bottom: #e5e5e5 solid 1px;
}
.footer .box1 .f-logo{
	float: left;
	padding-top: 20px;
	padding-bottom: 25px;
}
.footer .box1 .f-logo img{
	width: 196px;
	/*height: 76px;*/
}
.contact-info{
	float: right;
	margin-top: 35px;
}
.contact-info-li{
	float: left;
	margin-right: 100px;
	margin-bottom: 30px;
}
.contact-info-li:last-child{
	margin-right: 0;
}
.contact-info-li .icon{
	float: left;
}
.contact-info-li .text{
	float: left;
	padding-left: 15px;
	margin-left: 15px;
	border-left: #dcdcdc solid 1px;
}
.contact-info-li .text .t1{
	margin-bottom: 7px;
	color: #666666;
	font-size: 14px;
	font-family: "思源黑体 CN light";
}
.contact-info-li .text .t2{
	color: #595757;
	font-size: 18px;
	font-family: "思源黑体 CN";
	line-height: 1;
}
.footer .box2{
	padding-top: 30px;
}
.footer .box2 .fmenu{
	float: left;
}
.footer .box2 .fmenu-li{
	float: left;
	min-width: 110px;
	margin-right: 70px;
}
.footer .box2 .fmenu-li:last-child{
	margin-right: 0;
}
.fmenu-li a{
	padding-left: 20px;
	display: block;
}
.fmenu-li>a{
	position: relative;
	color: #595757;
	font-size: 16px;
	margin-bottom: 12px;
}
.fmenu-li>a::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 10px;
	height: 2px;
	background-color: #02bda6;
}
.fmenu-ej{
	margin-bottom: 7px;
}
.fmenu-ej a{
	color: #666666;
	font-size: 14px;
	margin-bottom: 8px;
	font-family: "思源黑体 CN light";
}
.fmenu-ej a:hover, .fmenu-li>a:hover{
	color: #009999;
}
.qrcode{
	float: right;
	position: relative;
	padding-left: 60px;
}
.qrcode-zi{
	position: absolute;
	left: 0;
	bottom: 0;
	color: #666666;
	font-size: 12px;
	font-family: "思源黑体 CN light";
}
.qrcode-tu{
}
.footer .box3{
	background-color: #eeeeee;
}
.footer .box3 .f-info{
	float: left;
	padding: 20px 0px;
	color: #666666;
	font-size: 12px;
}
.footer .box3 .f-info a{
	display: inline-block;
	color: #666666;
	font-size: 12px;
	
}
.footer .box3 .f-info span{
	display: inline-block;
	color: #666666;
	font-size: 12px;
	margin: 0 12px;
}
.footer .box3 .share{
	float: right;
	padding: 16px 0px 0px;
}
.footer .box3 .share a{
	height: 30px;
	overflow: hidden;
	margin-right: 10px;
}
.footer .box3 .share a:last-child{
	margin-right: 0;
}
.footer .box3 .share a img{
	width: 30px;
	height: 30px;
}
.footer .box3 .share a .fimg2{
	display: none;
}
.footer .box3 .share a:hover .fimg1{
	display: none;
}
.footer .box3 .share a:hover .fimg2{
	display: block;
}

/*轮播图*/
.lunbotu{
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}
.lunbotu .swiper-container{
    width: 100%;
    height: 100%;
}
.lunbotu a{
	position: relative;
    width: 100%;
    height: 100%;
    display: block;
}
.lunbotu .swiper-slide{
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.lunbotu .swiper-slide .img{
	display: none;
}
.lunbotu .swiper-slide .img img{
	width: 100%;
}
.i-banner{
	position: absolute;
	left: 50%;
	top: 50%;
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 2;
}
.i-banner .line{
	margin-bottom: 35px;
}
.i-banner .t1{
	color: #ffffff;
	font-size: 60px;
	font-weight: bold;
	text-shadow: #000 1px 2px 5px;
	font-family: "思源黑体 CN";
	font-style:italic;
	line-height: 1.5;
}
.oimg2{
	display: none;
}
.lunbotu .swiper-button-next, .lunbotu .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 47px;
    height: 80px;
    margin-top: 0;
    z-index: 10;
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    -moz-background-size: 47px 80px;
    -webkit-background-size: 47px 80px;
    background-size: 47px 80px;
    background-position: center;
    background-repeat: no-repeat;
}
.lunbotu .swiper-button-next, .lunbotu .swiper-container-rtl .swiper-button-prev {
    background-image: url(../images/iconnext1.png);
    right: 0;
    left: auto;
}
.lunbotu .swiper-button-prev, .lunbotu .swiper-container-rtl .swiper-button-next {
    background-image: url(../images/iconprev1.png);
    left: 0;
    right: auto;
}
.lunbotu .swiper-button-next:hover, .lunbotu .swiper-container-rtl .swiper-button-prev{
    background-image: url(../images/iconnext2.png);
}
.lunbotu .swiper-button-prev:hover, .lunbotu .swiper-container-rtl .swiper-button-next {
    background-image: url(../images/iconprev2.png);
    left: 0;
    right: auto;
}
.lunbotu .swiper-button-next.swiper-button-disabled, .lunbotu .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
    cursor: auto;
    pointer-events: none;
}
.lunbotu.swiper-container-horizontal>.swiper-pagination-bullets, .lunbotu .swiper-pagination-custom, .lunbotu .swiper-pagination-fraction {
    bottom: 8%;
    left: 0;
    width: 100%;
}
.lunbotu.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 9px;
}
.lunbotu .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 100%;
    background: #ffffff;
    opacity: 1;
}
.lunbotu .swiper-pagination-bullet-active{
	width: 14px;
    height: 14px;
	position: relative;
    opacity: 1;
    background: transparent;
}
.lunbotu .swiper-pagination-bullet-active::before{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	/*left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;*/
	width: 5px;
	height: 5px;
	background-color: #ef7d00;
	border-radius: 50%;
}
.lunbotu .swiper-pagination-bullet-active::after{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: #ef7d00 solid 1px;
}
/**/
.obanner{
	position: relative;
	width: 100%;
	overflow: hidden;
	text-align: center;
}
.obanner img{
	width: 100%;
}
.bannerzi{
	position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%, -50%);
	-ms-transform:translate(-50%, -50%);	/* IE 9 */
	-moz-transform:translate(-50%, -50%); 	/* Firefox */
	-webkit-transform:translate(-50%, -50%); /* Safari ÃƒÆ’Ã‚Â¥ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢Ãƒâ€¦Ã¢â‚¬â„¢ Chrome */
	-o-transform:translate(-50%, -50%); 
    margin: auto;
    text-align: left;\n
}
.bannerzi .box{
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
}
.bannerzi1{
	color: #ffffff;
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 20px;
}
.bannerzi2{
	color: #ffffff;
	font-size: 28px;
}
/*首页标题*/
.i-title{
	text-align: center;
}
.i-title .t1{
	color: #595757;
	font-size: 36px;
	font-weight: bold;
	font-family: "思源黑体 CN";
}
.why .i-title{
	width: 100%;
	text-align: left;
}
/*首页我们的产品*/
.product{
	padding-top: 80px;
	padding-bottom: 60px;
}
.product.i-product{
	padding: 50px 0px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.i-product .box{
	margin-top: 40px;
}
.product .box ul{
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
}
.product .box ul{
	max-width: 1300px;
	margin-bottom: 30px;
}
.i-product.product .box ul{
	margin-bottom: 0;
}
/*.product .box ul li{
	float: left;
	width: -moz-calc((100% - 100px) / 3);
	width: -webkit-calc((100% - 100px) / 3);
	width: calc((100% - 100px) / 3);
	margin-right: 50px;
	margin-bottom: 20px;
}
.product .box ul li:nth-child(3n){
	margin-right: 0;
}*/
.product .box ul li{
	float: left;
	width: -moz-calc((100% - 90px) / 4);
	width: -webkit-calc((100% - 90px) / 4);
	width: calc((100% - 90px) / 4);
	margin-right: 30px;
	margin-bottom: 20px;
}
.product .box ul li:nth-child(4n){
	margin-right: 0;
}
.product .box ul li:last-child{
	width: 30%;
}
.product .box ul li a, .product .box ul li a.pro{
	display: inline-block;
	width: 100%;
}
.product .box ul li .img{
	width: 100%;
	background-color: #FFFFFF;
	border: #eeeeee solid 1px;
	overflow: hidden;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.product .box ul li .img img{
	width: 100%;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.product .box ul li .txt{
	background-color: #FFFFFF;

	padding: 20px 20px 0px;
	border-left: #eeeeee solid 1px;
	border-right: #eeeeee solid 1px;
	border-bottom: #eeeeee solid 1px;
	overflow: hidden;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.i-product.product .box ul li .txt{
	background: none;
	border: none;
	padding-left: 0;
	padding-right: 0;
}
.product .box ul li .txt .t1{
	color: #666666;
	font-size: 20px;
	text-align:center;
	font-weight: bold;
	margin-bottom: 5px;
}
.product .box ul li .txt .t2{
	color: #666666;
	font-size: 14px;
	line-height: 24px;
	height: 48px;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.product .box ul li:hover .txt .t1{
	color: #009999;
}
.product .box ul li:hover .img img{
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
/*产品详情*/
.bgcolor{
	background-color: #eeeeee;
}
.bgcolor1{
	background-color: #f2f2f2;
}
.product-details{
	padding-top: 70px;
	padding-bottom: 80px;
}
.product-details .box{
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
}
.product-details .box .left{
	float: left;
	width: 250px;
	padding-top: 10px;
	padding-bottom: 5px;
	margin-right: 40px;
	background-color: #FFFFFF;
}
.product-details .box .left ul li{
	border-bottom: #eeeeee solid 1px;
}
.product-details .box .left ul li:last-child{
	border-bottom: none;
}
.product-details .box .left ul li a{
	position: relative;
	display: inline-block;
	width: 100%;
	color: #444444;
	font-size: 16px;
	font-weight: bold;
	padding: 20px 30px;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.product-details .box .left ul li a i{
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 16px;
	height: 100%;
	background: url(../images/img25.png) center no-repeat;
	background-size: 5px 10px;
}
.product-details .box .left ul li a:hover, .product-details .box .left ul li.on a{
	color: #009999;
}
.product-details .box .right{
	float: right;
	width: -moz-calc(100% - 290px);
	width: -webkit-calc(100% - 290px);
	width: calc(100% - 290px);
}
.product-details .box .right .con1{
	margin-bottom:1%;
	overflow: hidden;
}
.product-details .box .right .con1 .img{
	float: left;
	width: 63.8%;
	background-color: #FFFFFF;
	margin-right: 1%;
}
.product-details .box .right .con1 .img img{
	width: 100%;
}
.product-details .box .right .con1 .txt{
	float: left;
	width: 35.2%;
	background-color: #FFFFFF;
	padding-top: 30px;
	padding-left: 3%;
	padding-right: 3%;
	min-height: 425px;
	overflow: hidden;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.product-details .box .right .con1 .txt .t1{
	color: #444444;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}
.product-details .box .right .con1 .txt .t2{
	color: #666666;
	font-size: 14px;
	line-height: 30px;
}
.product-details .box .right .con2{
	background-color: #FFFFFF;
}
.product-details .box .right .con2 a{
	text-decoration:underline;
}
.product-details .box .right .title{
	margin-bottom:10px;
	text-align:center;
	padding: 0 2%;
	color: #009999;
	background-color:#fff;
	font-size: 20px;
	font-weight: bold;
	line-height: 60px;
	height: 60px;
	overflow: hidden;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.product-details .box .right .con2 .txt{
	padding: 2%;
	overflow: hidden;
	color: #666666;
	font-size: 16px;
	line-height: 32px;
}
.product-details .box .right .con2 .txt .txtli{
	float: left;
	width: 50%;
	padding-right: 3%;
	margin-bottom: 50px;
	overflow: hidden;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	min-height: 128px;
}
/*分页*/
.page{
    width: 100%;
    text-align: center;
}
.page-list{
	display: inline-block;
	vertical-align: middle;
	margin-right: 30px;
}
.news .page-list{
	float: left;
}
.page-list a{
	float: left;
   	padding: 0px 15px;
   	height: 40px;
   	line-height: 38px;
   	margin-right: 10px;
    text-align: center;
    font-size: 14px;
    color: #666666;
    border: 1px solid #e5e5e5;
    overflow: hidden;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.page-list a:last-child{
	margin-right: 0;
}
.page-list a:hover,
.page-list a.on{
    color: #fff;
    background: #009999;
}
/*为什么选择我们*/
.why{
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center right;
    -webkit-background-size: cover;
    background-size: cover;
}
.why .box{
	display: flex;
	align-items: center;
	flex-flow: wrap;
	padding-top: 135px;
	padding-bottom: 90px;
}
.why .box .con{
	margin-top: 40px;
}
.why .box .con ul{
	display: inline-block;
	border: #eeeeee solid 1px;
}
.why .box .con ul li{
	position: relative;
	float: left;
	max-width: 250px;
	width: 25%;
	overflow: hidden;
	padding: 35px 0px 50px;
	background-color: #FFFFFF;
}
.why .box .con ul li:hover a{
	-o-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}
.why .box .con ul li:hover{
	background-color: #f9f9f9;
}
.why .box .con ul li::before{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background-color: #eeeeee;
}
.why .box .con ul li a{
	display: inline-block;
	width: 100%;
	-o-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s;
    transition: all ease .3s;
}
.why .box .con ul li .img{
	text-align: center;
	overflow: hidden;
	margin-bottom: 25px;
}
.why .box .con ul li .img img{
	width: 35px;
	height: 33px;
}
.why .box .con ul li .t1{
	color: #595757;
	font-size: 20px;
	font-weight: bold;
	font-family: "思源黑体 CN";
	text-align: center;
}
.why .box .con ul li .line{
	width: 15px;
	height: 2px;
	margin: 10px auto;
	background-color: #009999;
}
.why .box .con ul li .t2{
	color: #666666;
	font-size: 14px;
	line-height: 20px;
	padding: 0px 10px;
	margin-bottom: 20px;
	overflow: hidden;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	height: 280px;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 14;
	-webkit-box-orient: vertical;
}
.why .box .con ul li .icon{
	width: 100%;
	height: 18px;
	margin: 0 auto;
	background: url(../images/img14.png) center no-repeat;
	background-size: 6px 6px;
}
.why .box .con ul li:hover .icon{	
	background: url(../images/img13.png) center no-repeat;
	background-size: 42px 18px;
	/*-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;*/
}
.number{
	width: 100%;
	margin-top: 70px;
}
.number ul li{
	float: left;
	max-width: 300px;
	width: 33.33%;
	width: -moz-calc(100% / 3);
	width: -webkit-calc(100% / 3);
	width: calc(100% / 3);
}
.number ul li .t1{
	color: #595757;
	font-size: 16px;
	font-family: "思源黑体 CN light";
}
.number ul li .t1 span{
	color: #888888;
	font-size: 30px;
	font-weight: bold;
	font-family: 'a_AvanteLt';
}
@font-face {
    font-family: 'a_AvanteLt';
    src: url(../font/avant.ttf);
}
.number ul li .t1 .timer{
	color: #595757;
	font-size: 60px;
	font-weight: bold;
	font-family: 'a_AvanteLt';
	margin-right: 5px;
}
.number ul li .t2{
	color: #595757;
	font-size: 14px;
	line-height: 24px;
}

/*other*/
.other{
	background-color: #ffffff;
	border-top: #eeeeee solid 1px;
}
.other .box{
	position: relative;
	width: 100%;
	overflow: hidden;
}
.other .box .swiper-slide .boxli{
	 padding: 220px 50px 180px;
	border-right: #eeeeee solid 1px;
	overflow: hidden;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.other .box .swiper-slide .boxli>a{
	display: inline-block;
	width: 100%;
}
/*.other .box ul li{
	float: left;
	width: 33.33%;
	width: -moz-calc(100% / 3);
	width: -webkit-calc(100% / 3);
	width: calc(100% / 3);
	padding:10% 3% 0%;
	border-right: #eeeeee solid 1px;
	overflow: hidden;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.other .box ul li:nth-child(3n){
	border-right: 0;
}
.other .box ul li a{
	display: inline-block;
	width: 100%;
}*/
.other .boxli .img{
	width: 100%;
	overflow: hidden;
}
.other .boxli .img a{
	display: inline-block;
	width: 100%;
}
.other .boxli .img img{
	width: 100%;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;	
}
.other .boxli:hover .img img{
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.other .boxli .txt{
	padding-top: 30px;
	width: 100%;
	overflow: hidden;
}
.other .boxli .txt .t1{
	color: #595757;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 18px;
}
/*.other .boxli:hover .t1{
	color: #009999;
}*/
.other .boxli .txt .t2{
	color: #666666;
	font-size: 16px;
	line-height: 24px;
	font-family: "思源黑体 CN light";
	margin-bottom: 25px;
	height: 120px;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}
.other .boxli .txt .more{
	display: inline-block;
	padding: 0px 20px;
	height: 40px;
	line-height: 40px;
	border: #eeeeee solid 1px;
	color: #666666;
	font-size: 14px;
	font-family: "思源黑体 CN light";
}
.other .boxli:hover .txt .more{
	background-color: #ef7d00;
	color: #FFFFFF;
	-o-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;	
}
.other .boxli .txt .txtbox{
	margin-bottom: 25px;
	height: 120px;
	width: 100%;
}
.other .boxli .txt .txtbox a{
	display: inline-block;
	width: 100%;
	position: relative;
	padding-left: 20px;
	overflow: hidden;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.other .boxli .txt .txtbox a i{
	position: absolute;
	left: 6px;
	top: 10px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #ef7d00;
}
.other .boxli .txt .txtbox a .t3{
	float: left;
	width: 300px;
	width: -moz-calc(100% - 100px);
	width: -webkit-calc(100% - 100px);
	width: calc(100% - 100px);
	color: #333333;
	font-size: 16px;
	line-height: 24px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.other .boxli .txt .txtbox a .t4{
	float: right;
	width:85px;
	color: #999999;
	font-size: 14px;
	line-height: 24px;
}
.other .boxli .txt .txtbox a:hover .t3{
	color: #009999;
}
.other .box.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
	bottom: 3.5%;
}
.other .box .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    display: none;
    border-radius: 100%;
    background: #000;
    opacity: .2;
}
.other .box .swiper-pagination-bullet-active {
    opacity: 1;
    background: #009999;
}
.other .box.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
}
/**/
.tab{
	background-color: #FFFFFF;
	border-bottom: #eeeeee solid 1px;
}
.tab .conwidth .box{
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
}
.tab .conwidth ul{
	display: inline-block;
}
.tab .conwidth ul li{
	position: relative;
	display: inline-block;
	margin-right: 15px;
	padding: 0px 25px;
}
.tab .conwidth ul li a{
	height: 80px;
	line-height: 80px;
	color: #444444;
	font-size: 18px;
}
.tab .conwidth ul li.on a{
	color: #009999;
}
.tab .conwidth ul li.on::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	background-color: #009999;
}
.position{
	float: right;
	height: 80px;
	line-height: 80px;
}
.position a, .position span{
	display: inline-block;
	color: #999999;
	font-size: 14px;
}
.position a:hover, .position a.on{
	color: #009999;
}
/*产品视频*/
.video{
	padding-top: 60px;
	padding-bottom: 50px;
}
.video .box{
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
}
.video .box ul li{
	float: left;
	width: -moz-calc((100% - 100px) / 3);
	width: -webkit-calc((100% - 100px) / 3);
	width: calc((100% - 100px) / 3);
	margin-right: 50px;
	margin-bottom: 30px;
}
.video .box ul li:nth-child(3n){
	margin-right: 0;
}
.video .box ul li a{
	display: inline-block;
	width: 100%;
}
.video .box ul li a .img{
	position: relative;
	width: 100%;
	overflow: hidden;
	margin-bottom: 20px;
}
.video .box ul li a .img img{
	width: 100%;
}
.video .box ul li a .img .mark{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5) url(../images/img18.png) center no-repeat;
}
.video .box ul li a .txt{
}
.video .box ul li a .txt .t1{
	color: #444444;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}
.video .box ul li a .txt .t2{
	color: #666666;
	font-size: 14px;
}
.video .box ul li:hover a .txt .t1{
	color: #009999;
}
/*发展历程*/
.development{
	padding-top: 90px;
}
.development .box{
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
}
.development .box .title{
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
	color: #444444;
	font-size: 30px;
	font-weight: bold;
}
.pc-slide {
	width: 100%;
	margin: 40px auto;
}

.view{
	position: relative;
}
.view .swiper-container{
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
}
.view .arrow-left {
	background: url(../images/img27.png) no-repeat center;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: 0;
	width: 50px;
	height: 50px;
	z-index: 10;
	transition: .2s;
}
.view .arrow-left:hover{
	background: url(../images/img29.png) no-repeat center;
	-webkit-transform: translateX(-3px);
    transform: translateX(-3px);
}
.view .arrow-right {
	background: url(../images/img28.png) no-repeat center;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: 0;
	width: 50px;
	height: 50px;
	z-index: 10;
	transition: .2s;
}
.view .arrow-right:hover{
	background: url(../images/img30.png) no-repeat center;
	-webkit-transform: translateX(3px);
    transform: translateX(3px);
}
.view .swiper-slide .txt{
	float: left;
	width: 50%;
	overflow: hidden;
}
.view .swiper-slide .img{
	float: left;
	width: 50%;
	overflow: hidden;
	text-align: right;
}
.view .swiper-slide .img img{
	max-width: 100%;
}
.view .swiper-slide .timeline-year {
  	font-size: 40px;
  	font-weight: bold;
  	margin-bottom: 35px;
  	color: #009999;
}
.view .swiper-slide .timeline-title {
  	font-weight: 800;
  	font-size: 34px;
 	margin: 0 0 30px;
  	opacity: 0;
  	-webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  	transition: .2s ease .5s;
}
.view .swiper-slide .timeline-text {
	margin-top: 35px;
	color: #444444;
	font-size: 14px;
  	line-height: 1.5;
  	opacity: 0;
 	-webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  	transition: .2s ease .6s;
}
.view .swiper-slide .timeline-text .txtli{
	position: relative;
	width: 100%;
	color: #444444;
	font-size: 14px;
	line-height: 30px;
	margin-bottom: 25px;
	padding-left: 40px;
	padding-right: 40px;
	overflow: hidden;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.view .swiper-slide .timeline-text .txtli::before{
	content: '';
	position: absolute;
	left: 18px;
	top: 12px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #009999;
}
.view .swiper-slide-active .timeline-year {
  	opacity: 1;
  	-webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  	transition: .4s ease 1.6s;
}
.view .swiper-slide-active .timeline-title {
  	opacity: 1;
  	-webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  	transition: .4s ease 1.7s;
}
.view .swiper-slide-active .timeline-text {
  	opacity: 1;
  	-webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  	transition: .6s ease .8s;
}
.preview {
	width: 100%;
	margin-top: 80px;
	margin-bottom: 80px;
	position: relative;
}

.preview .swiper-container {
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
}
.preview .swiper-container.swiper-container-horizontal>.swiper-pagination-progress{
	top: 20px;
	height: 1px;
	background-color: #e5e5e5;
	z-index: 8;
}
.preview .swiper-container .swiper-pagination-progress .swiper-pagination-progressbar{
	height: 2px;
	background-color: #009999;
}
.preview::before{
	content: '';
	position: absolute;
	left: 0;
	top: 40px;
	width: 100%;
	height: 1px;
	background-color: #e5e5e5;
}
.preview .swiper-slide {
	width: 120px;
	cursor:pointer;
}
.preview .swiper-wrapper{
	z-index: 10;
}
.preview .swiper-slide .s1{
	display: block;
	width: 12px;
	height: 6px;
	margin: 0 auto 10px;
	opacity: 0;
	transition: .2s;
	background: url(../images/img32.png) center no-repeat;
}
.preview .swiper-slide.active-nav .s1{
	opacity: 1;
}
.preview .swiper-slide .s2{
	display: block;
	width: 8px;
  	height: 8px;
  	border-radius: 50%;
  	background-color: #b0b0b0;
  	-webkit-transform: scale(1);
    transform: scale(1);
  	transition: .2s;
  	margin:0px auto 12px;
}
.preview .swiper-slide.active-nav .s2{
	background-color: #009999;
  	-webkit-transform: scale(1.25);
    transform: scale(1.25);
}
.preview .swiper-slide .s3{
	display: block;
	color: #444444;
	font-size: 20px;
	text-align: center;
}
.preview .swiper-slide.active-nav .s3{
	font-weight: bold;
	color: #009999;
}
/*.preview .arrow-left {
	background: url(static/images/feel3.png) no-repeat left top;
	position: absolute;
	left: 10px;
	top: 50%;
	margin-top: -9px;
	width: 9px;
	height: 18px;
	z-index: 10;
}

.preview .arrow-right {
	background: url(static/images/feel4.png) no-repeat left bottom;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -9px;
	width: 9px;
	height: 18px;
	z-index: 10;
}*/

.preview img {
	padding: 1px;
}

.preview .active-nav img {
	padding: 0;
	border: 1px solid #F00;
}
/*公司地址*/
.address{
	padding-top: 80px;
	padding-bottom: 90px;
}
.address .box{
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
}
.address .box .left{
	float: left;
	width: 50%;
	padding-right: 3%;
	overflow: hidden;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.address .box .left .title{
	color: #444444;
	font-size: 24px;
	line-height: 70px;
	font-weight: bold;
	margin-bottom: 25px;
}
.address .box .left .txtli{
	position: relative;
	padding-left: 28px;
	margin-bottom: 25px;
	overflow: hidden;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.address .box .left .txtli i{
	position: absolute;
	left: 0;
	top: 4px;
	width: 18px;
	height: 20px;
}
.address .box .left .txtli .txt{
	color: #444444;
	font-size: 16px;
	line-height: 32px;
}
.address .box .right{
	float: left;
	width: 50%;
	overflow: hidden;
	text-align: center;
}
/*关于我们*/
.about{
	padding-top: 100px;
	background: url(../images/img39.png) 60px top no-repeat;
}
.about .box{
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
}
.about .box .who{
	margin-bottom: 40px;
}
.about .box .who .left{
	float: left;
	width: 50%;
	padding-right: 5%;
	overflow: hidden;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.about .box .title{
}
.about .box .title .t1{
	color: #444444;
	font-weight: bold;
	font-size: 30px;
	margin-bottom: 25px;
}
.about .box .title .line{
	text-align: left;
	overflow: hidden;
	margin-bottom: 25px;
}
.about .box .who .left .txt{
	color: #444444;
	font-size: 14px;
	line-height: 30px;
	text-align: justify;
}
.about .box .title .line img{
	max-width: 100%;
}
.about .box .who .right{
	float: left;
	width: 50%;
	overflow: hidden;
	text-align: right;
}
.about .box .who .right img{
	max-width: 100%;
	-o-transition: all .4s;
	-ms-transition: all .4s;
	-moz-transition: all .4s;
	-webkit-transition: all .4s;
	transition: all .4s;
}
.about .box .who:hover .right img{
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}
/*企业文化*/
.about .box .culture{
	padding-bottom: 50px;
}
.about .box .culture .con{
	position: relative;
	width: 100%;
	overflow: hidden;
	margin-top: 40px;
	padding-bottom: 40px;
}
.about .box .culture .con .conli{
	text-align: center;
}
.about .box .culture .con .conli .img{
	position: relative;
	display: inline-block;
	margin: 10px auto 20px;
}
.about .box .culture .con .conli .img img{
	object-fit: cover;
	width: 250px;
	height: 250px;
	border-radius: 50%;
	-o-transition: all .4s;
	-ms-transition: all .4s;
	-moz-transition: all .4s;
	-webkit-transition: all .4s;
	transition: all .4s;
}
.about .box .culture .con .conli:hover .img img{
	-o-transform: scale(1.03);
	-ms-transform: scale(1.03);
	-moz-transform: scale(1.03);
	-webkit-transform: scale(1.03);
	transform: scale(1.03);
}
.about .box .culture .con .conli .img .imgtxt{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 80px;
	height: 80px;
	line-height: 80px;
	border-radius: 50%;
	background-color: #ff7400;
	text-align: center;
	overflow: hidden;
	color: #ffffff;
	font-size: 20px;
	font-weight: bold;
	-o-transition: all .4s;
	-ms-transition: all .4s;
	-moz-transition: all .4s;
	-webkit-transition: all .4s;
	transition: all .4s;
}
.about .box .culture .con .conli:hover .img .imgtxt{
	-webkit-transform: translateX(-3px);
    transform: translateX(-3px);
}
.about .box .culture .con .conli .txt{
	color: #444444;
	font-size: 16px;
	line-height: 30px;
	text-align: center;
	padding: 0px 10px;
}
.about .box .culture .con .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    display: none;
    border-radius: 100%;
    background: #000;
    opacity: .2;
}
.about .box .culture .con .swiper-pagination-bullet-active {
    opacity: 1;
    background: #009999;
}
.about .box .culture .con.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
}
/*客户诉求*/
.demands{
	margin: 60px auto 70px;
}
.demands .box{
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
	background-color: #FFFFFF;
	padding: 2.3% 3.85% 3.5%;
	overflow: hidden;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.demands .box .title{
	padding: 0px 0px 25px;
	margin-bottom: 25px;
	border-bottom: #dcdcdc solid 1px;
}
.demands .box .title .t1{
	float: left;
	width: 50%;
	color: #444444;
	font-size: 24px;
	font-weight: bold;
}
.demands .box .title .t2{
	float: left;
	width: 50%;
	color: #444444;
	font-size: 14px;
	line-height: 24px;
}
.input-li{
	width: 100%;
	margin-bottom: 17px;
	overflow: hidden;
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.applyck{
	float: right;
	width: -moz-calc(100% - 170px);
	width: -webkit-calc(100% - 170px);
	width: calc(100% - 170px);
	margin-top: 10px;
	overflow: hidden;
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.ckbox{
	float: left;
	margin-right: 40px;
	cursor: pointer;
}
.ckbox:last-child{
	margin-right: 0px;
}
/*.applyck span{
	float: none;
}*/
.radio-name{
	margin-left: 8px;
	color: #444444;
	font-size: 16px;
}
.advice{
    height: 20px;
    width: 20px;
    display: inline-block;
    background-image: url('../images/dianquan.png');
    background-repeat: no-repeat;
    background-position: -20px 0px;
    vertical-align: middle;
}
.ckbox input[type="radio"]:checked + .advice{
    background-position: 0;
}
.input-li .part{
	float: left;
	width: 48%;
	margin-right: 4%;
}
.input-li .part:nth-child(2n){
	margin-right: 0;
}
.input-li .t1{
	float: left;
	text-align: left;
	color: #666666;
	font-size: 16px;
	line-height: 45px;
}
.input-li .t4{
	float: left;
	width: 105px;
	text-align: left;
	color: #666666;
	font-size: 16px;
	line-height: 45px;
}
.input-li .t3{
	float: left;
	width: 140x;
	text-align: left;
	color: #666666;
	font-size: 16px
}
.input-li .t3 .sp{
	color: #999999;
	font-size: 14px
}
.input-li .t1 .spa, .input-li .t3 .spa{
	float: left;
	width: 15px;
	height: 25px;
	color: #ed7a0d;
}
.input-li .t2{
	float: right;
	width: -moz-calc(100% - 250px);
	width: -webkit-calc(100% - 250px);
	width: calc(100% - 250px);
	color: #bfc0c1;
	font-size: 16px;
	line-height: 45px;
	border: #dcdcdc solid 1px;
}
.refer{
	text-align: center;
}
.r-btn{
	display: inline-block;
	width: 140px;
	height: 52px;
	text-align: center;
	margin: 40px 25px 0px;
}
.re-submit{
	width: 100%;
	height: 52px;
	line-height: 52px;
	background-color: #ed7a0d;
	color: #FFFFFF;
	font-size: 16px;
}
.re-reset{
	width: 100%;
	height: 52px;
	line-height: 52px;
	background-color: #434343;
	color: #FFFFFF;
	font-size: 16px;
}
.describe {
    padding: 0;
    border: 0;
    color: #666666;
    line-height: 18px;
    display: block;
    height: 140px;
    width: 100%;
    font-size: 16px;
    padding: 15px 20px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    resize: none;
    outline: none;
}
.re-input{
	width: 100%;
	border: none;
	background: none;
	outline: none;
	color: #666666;
	font-size: 16px;
	padding: 0px 20px;
	overflow: hidden;
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.input-li input::-webkit-input-placeholder {
    color: #bfc0c1;
}
.input-li input:-moz-placeholder {
	color: #bfc0c1;
}
.input-li input::-moz-placeholder {
	color: #bfc0c1;
}
.input-li input:-ms-input-placeholder {
	color: #bfc0c1;
}
/*人才招聘*/
.recruit{
	padding-top: 75px;
}
.recruit .box{
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
}
/*福利*/
.recruit .box .welfare{
}
.recruit .box .welfare .left{
	float: left;
	width: 66.5%;
	background-color: #f9f9f9;
}
.recruit .box .welfare .welfare-li{
}
.recruit .box .welfare .left .welfare-li .img{
	float: left;
	width: 50%;
	overflow: hidden;
}
.recruit .box .welfare .right .welfare-li .img{
	width: 100%;
	overflow: hidden;
}
.recruit .box .welfare .welfare-li .img img{
	width: 100%;
	max-height: 268px;
	/*width: 430px;
	height: 268px;*/
	-o-transition: all .4s;
	-ms-transition: all .4s;
	-moz-transition: all .4s;
	-webkit-transition: all .4s;
	transition: all .4s;
}
.recruit .box .welfare .welfare-li .txt{
	position: relative;
	margin-top: 50px;
	padding: 0px 30px 0px;
	overflow: hidden;
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.recruit .box .welfare .welfare-li .txt i{
	position: absolute;
}
.recruit .box .welfare .welfare-li.wli1 .txt i{
	left: 25px;
	top: 2px;
	width: 7px;
	height: 14px;
}
.recruit .box .welfare .welfare-li.wli2 .txt i{
	right: 25px;
	top: 2px;
	width: 7px;
	height: 14px;
}
.recruit .box .welfare .welfare-li.wli3 .txt{
	padding-top: 30px;
}
.recruit .box .welfare .welfare-li.wli3 .txt i{
	right: 60px;
	top: 0px;
	width: 14px;
	height: 7px;
}
.recruit .box .welfare .left .welfare-li .txt{
	float: left;
	width: 50%;
}
.recruit .box .welfare .right .welfare-li .txt{
	width: 100%;
}
.recruit .box .welfare .welfare-li .txt .t1{
	color: #444444;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 15px;
}
.recruit .box .welfare .welfare-li .txt .t2{
	color: #444444;
	font-size: 14px;
	line-height: 30px;
}
.recruit .box .welfare .right{
	float: left;
	width: 33.5%;
	background-color: #f9f9f9;
}
.recruit .box .welfare .welfare-li .txt.t-left{
	padding-left: 50px;
}
.recruit .box .welfare .welfare-li .txt.t-right{
	text-align: right;
	padding-right: 50px;
}
.recruit .box .welfare .welfare-li:hover .img img{
	-o-transform: scale(1.06);
	-ms-transform: scale(1.06);
	-moz-transform: scale(1.06);
	-webkit-transform: scale(1.06);
	transform: scale(1.06);
}
.recruit .box .welfare .welfare-li:hover .txt .t1{
	color: #009999;
}
/*职位招聘*/
.recruit .box .job{
	margin-top: 80px;
	padding-bottom: 50px;
}
.recruit .box .job .title{
	border-bottom: #dcdcdc solid 1px;
}
.recruit .box .job .title span{
	position: relative;
	display: inline-block;
	line-height: 70px;
	color: #444444;
	font-size: 30px;
	font-weight: bold;
}
.recruit .box .job .title span::before{
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #009999;
}
.recruit .box .job ul{
	margin-bottom: 50px;
}
.recruit .box .job ul li{
	position: relative;
	border-bottom: #eeeeee solid 1px;
	padding-top: 10px;
	padding-left: 3%;
	padding-bottom: 2.4%;
	cursor: pointer;
	overflow: hidden;
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.recruit .box .job ul li.on::before, .recruit .box .job ul li:hover::before{
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 12px;
	height: 12px;
	background: url(../images/img50.png) center no-repeat;
	background-size: 12px 12px;
}
.recruit .box .job ul li .headline{
	line-height: 50px;
	padding: 0px 0px 10px;
	overflow: hidden;
}
.recruit .box .job ul li .headline .tit{
	float: left;
	color: #444444;
	font-size: 16px;
	font-weight: bold;
}
.recruit .box .job ul li .headline .t1{
	width: 23.8%;
}
.recruit .box .job ul li.on .headline .t1, .recruit .box .job ul li:hover .headline .t1{
	color: #009999;
}
.recruit .box .job ul li .headline .t2{
	width: 23%;
}
.recruit .box .job ul li .headline .t3{
	width: 19%;
}
.recruit .box .job ul li .headline .t4{
	width: 14.2%;
}
.recruit .box .job ul li .headline .t5{
	float: right;
	position: relative;
	max-width: 20%;
	padding-right: 6%;
	overflow: hidden;
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.recruit .box .job ul li .headline .t5 i{
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 10px;
	height: 100%;
	background: url(../images/img51.png) center no-repeat;
	background-size: 10px 5px;
	-o-transition: all .4s;
	-ms-transition: all .4s;
	-moz-transition: all .4s;
	-webkit-transition: all .4s;
	transition: all .4s;
}
.recruit .box .job ul li.on .headline .t5 i{
	-o-transform: rotateX(180deg);
	-ms-transform: rotateX(180deg);
	-moz-transform: rotateX(180deg);
	-webkit-transform: rotateX(180deg);
	transform: rotateX(180deg);
}
.recruit .box .job ul li .txt{
}
.recruit .box .job ul li .txt .con1{
	padding-top: 5px;
	color: #666666;
	font-size: 14px;
	line-height: 24px;
}
.recruit .box .job ul li.on .txt .con1{
	display: none;
}
.recruit .box .job ul li .txt .con2{
	display: none;
	padding: 40px 25px 32px;
	background-color: #f7f8f8;
	color: #444444;
	font-size: 16px;
	line-height: 40px;
}
.recruit .box .job ul li .txt .con2 .tips{
	display:inline-block; 
	padding: 0px 20px; 
	font-size: 14px; 
	color: #ffffff; 
	font-weight: bold; 
	background: #009999;
	min-width: 400px;
	overflow: hidden;
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
/*说明书下载*/
.download{
	padding-top: 60px;
	padding-bottom: 70px;
}
.download .box{
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
}
.download .box .sousuo{
	width: 100%;
	overflow: hidden;
}
.s-txt{
	max-width: 300px;
	width: 71.4%;
    background: none;
    outline: none;
    color: #666666;
    font-size: 16px;
    border: #e5e5e5 solid 1px;
    padding: 0px 20px;
    height: 50px;
    line-height: 48px;
    overflow: hidden;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.s-btn{
	margin-left: 6px;
	max-width: 100px;
	width: 23.8%;
	height: 50px;
	line-height: 50px;
    border: none;
    background: none;
    outline: none;
    color: #FFFFFF;
    font-size: 16px;
    background-color: #09a3a3;
    overflow: hidden;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
/*下载列表*/
.dl-list{
	margin-top: 30px;
}
.dl-list ul li{
	float: left;
	width: 48.5%;
	margin-right: 3%;
	margin-bottom: 2.1%;
	padding: 0 2.1%;
	border: #eeeeee solid 1px;
	overflow: hidden;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.dl-list ul li:nth-child(2n){
	margin-right: 0;
}
.dl-list ul li:hover{
	background-color: #09a3a3;
	box-shadow: 0px 2px 20px rgba(45,44,44,.21);
}
.dl-list ul li a{
	position: relative;
	display: inline-block;
	width: 100%;
	padding-top: 18px;
	padding-bottom: 20px;
	padding-right: 12%;
	overflow: hidden;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.dl-list ul li a .t1{
	color: #222222;
	font-size: 16px;
	margin-bottom: 10px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.dl-list ul li a .t2{
	color: #999999;
	font-size: 12px;	
}
.dl-list ul li:hover a .t1, .dl-list ul li:hover a .t2{
	color: #FFFFFF;
}
.dl-list ul li:hover a .t1{
	font-weight: bold;
}
.dl-list ul li a .icon{
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 18px;
	height: 100%;
	background: url(../images/img52.png) center no-repeat;
	background-size: 18px 18px;
}
.dl-list ul li:hover a .icon{
	background: url(../images/img53.png) center no-repeat;
	background-size: 18px 18px;
}
/*新闻*/
.news{
	padding-top: 75px;
	padding-bottom: 75px;
}
.news .box{
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
}
.news .box .left{
	float: left;
	width: -moz-calc(100% - 350px);
	width: -webkit-calc(100% - 350px);
	width: calc(100% - 350px);
	padding-right: 4.2%;
	overflow: hidden;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.news .box .left ul{
	margin-bottom: 20px;
}
.news .box .left ul li{
	position: relative;
	margin-bottom: 35px;
	padding-bottom: 35px;
	border-bottom: #eeeeee solid 1px;
}
.news .box .left ul li::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background-color: #009999;
	-o-transition: all .4s;
	-ms-transition: all .4s;
	-moz-transition: all .4s;
	-webkit-transition: all .4s;
	transition: all .4s;
}
.news .box .left ul li:hover::before{
	width: 100%;
}
.news .box .left ul li a{
	display: flex;
	align-items: center;
	width: 100%;
}
.news .box .left ul li a .img{
	float: left;
	width: 28.08%;
	overflow: hidden;
}
.news .box .left ul li a .img img{
	width: 100%;
	-o-transition: all .4s;
	-ms-transition: all .4s;
	-moz-transition: all .4s;
	-webkit-transition: all .4s;
	transition: all .4s;
}
.news .box .left ul li a:hover .img img{
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}
.news .box .left ul li a .txt{
	float: left;
	width: 71.92%;
	padding-left: 40px;
	overflow: hidden;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.news .box .left ul li a .txtbox{
	width: 100%;
}
.news .box .left ul li a .t1{
	color: #999999;
	font-size: 14px;
	margin-bottom: 15px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.news .box .left ul li a .t1 .sp{
	color: #009999;
}
.news .box .left ul li a .t2{
	color: #444444;
	font-size: 24px;
	margin-bottom: 15px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.news .box .left ul li a:hover .t2{
	color: #009999;
}
.news .box .left ul li a .t3{
	color: #999999;
	font-size: 16px;
	line-height: 30px;
}
.news .box .right{
	float: left;
	width: 350px;
	background-color: #fafafa;
	padding: 30px 20px;
	overflow: hidden;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.news .box .right .newslist{
	border-top: #dcdcdc solid 1px;
}
.news .box .right .newslist .title{
	position: relative;
	margin-top: 16px;
	overflow: hidden;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.news .box .right .newslist .title .word{
	color: #333333;
	font-size: 16px;
	padding-left: 25px;
}
.news .box .right .newslist .title i{
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 16px;
	height: 100%;
	background: url(../images/img57.png) center no-repeat;
	background-size: 16px 18px;
}
.news .box .right .newslist ul{
}
.news .box .right .newslist ul li{
	position: relative;
	width: 100%;
	margin-top: 18px;
	padding-left: 25px;
	overflow: hidden;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.news .box .right .newslist ul li::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background-color: #009999;
	-o-transition: all .4s;
	-ms-transition: all .4s;
	-moz-transition: all .4s;
	-webkit-transition: all .4s;
	transition: all .4s;
}
.news .box .right .newslist ul li:hover::before{
	width: 100%;
}
.news .box .right .newslist ul li i{
	position: absolute;
	left: 2px;
	top: 6px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #009999;
}
.news .box .right .newslist ul li a{
	display: inline-block;
	width: 100%;
	border-bottom: #eeeeee solid 1px;
	padding-bottom: 18px;
}
.news .box .right .newslist ul li a .t1{
	color: #333333;
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 10px;
}
.news .box .right .newslist ul li a .t2{
	color: #999999;
	font-size: 12px;
}
.news .box .right .newslist ul li a:hover .t1{
	color: #009999;
}
/*新闻详情*/
.n-details{
	padding-top: 65px;
	padding-bottom: 65px;
}
.n-details .box{
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
}
.n-details .box .txtbox{
	padding: 4.6% 3.85% 5%;
	overflow: hidden;
	background-color: #FFFFFF;
}
.n-details .box .txtbox .title{
	border-bottom: #e5e5e5 solid 1px;
	padding-bottom: 25px;
}
.n-details .box .txtbox .title .t1{
	color: #444444;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}
.n-details .box .txtbox .title .t2{
	text-align: center;
	overflow: hidden;
}
.n-details .box .txtbox .title .t2 .sp{
	display: inline-block;
	margin-right: 3%;
	color: #666666;
	font-size: 14px;
}
.n-details .box .txtbox .title .t2 .sp:last-child{
	margin-right: 0;
}
.n-details .box .txtbox .txt{
	color: #444444;
	font-size: 16px;
	line-height: 32px;
	padding: 32px 0px;
	border-bottom: #e5e5e5 solid 1px;
}
.details-bottom{
	margin-top: 30px;
}
.n-details .box .txtbox .nextprev{
	float: left;
	width: -moz-calc(100% - 150px);
	width: -webkit-calc(100% - 150px);
	width: calc(100% - 150px);
}
.nextprev a{
	display: inline-block;
    width: 100%;
    overflow: hidden;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 4%;
    transition: all .3s;
	font-size: 16px;
	color: #444444;
	line-height: 32px;
}
.nextpage{}
.prevpage{}
.nextprev a:hover{
	color: #009999;
}
.n-details .box .txtbox .revert{
	float: right;
	width: 140px;
	height: 50px;
	line-height: 48px;
}
.n-details .box .txtbox .revert a{
	position: relative;
	display: inline-block;
	width: 100%;
	color: #444444;
	font-size: 16px;
	padding-right: 20px;
	border: #e5e5e5 solid 1px;
	text-align: center;
	overflow: hidden;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -o-transition: all .3s;
    -ms-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.n-details .box .txtbox .revert a i{
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 15px;
	height: 100%;
	background: url(../images/img58.png) center no-repeat;
	background-size: 15px 15px;
}
.n-details .box .txtbox .revert a:hover{
	border: #009999 solid 1px;
	background-color: #009999;
	color: #FFFFFF;
}
.n-details .box .txtbox .revert a:hover i{
	background: url(../images/img59.png) center no-repeat;
	background-size: 15px 15px;
}
/*公司资质*/
.qualifications{
	padding-top: 95px;
	padding-bottom: 60px;
}
.qualifications .box{
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
}
.qualifications .box ul li{
	position: relative;
	float: left;
	width: 300px;
	width: calc((100% - 99px) / 4);
	margin-right: 33px;
	margin-bottom: 30px;
}
.qualifications .box ul li:nth-child(4n){
	margin-right: 0;
}
.qualifications .box ul li .img{
	width: 100%;
	overflow: hidden;
	text-align: center;
}
.qualifications .box ul li .img img{
	width: 100%;
}
.qualifications .box ul li .txt{
	/*display: none;*/
	opacity: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	color: #ffffff;
	font-size: 16px;
	line-height: 30px;
	text-align: center;
	background: rgba(0,153,153,.9);
	padding: 4.5%;
	overflow: hidden;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.qualifications .box ul li:hover .txt{
	/*display: block;*/
	opacity: 1;
	-o-transition: all .4s;
	-ms-transition: all .4s;
	-moz-transition: all .4s;
	-webkit-transition: all .4s;
	transition: all .4s;
}
@media screen and (max-width: 1640px){
	.conwidth{
		padding-left: 3%;
		padding-right: 3%;
	    -moz-box-sizing: border-box;
	    -webkit-box-sizing: border-box;
	    -o-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	    box-sizing: border-box;
	}
	.lunbotu .conwidth{
		padding-left: 60px;
		padding-right: 60px;
	    -moz-box-sizing: border-box;
	    -webkit-box-sizing: border-box;
	    -o-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	    box-sizing: border-box;
	}
	.search-header{
		padding-top: 50px;
		padding-bottom: 70px;
	}
	/*底部*/
	.contact-info-li{
		margin-right: 50px;
	}
}
@media screen and (max-width: 1440px){
	.header .box .nav ul li>a{
		padding: 10px;
		font-size: 16px;
		margin: 10px;
	}
	.header .box .nav ul li .submenu a{
		font-size: 15px;
		height: 50px;
		line-height: 50px;
	}
	/*首页banner*/
	.i-banner .t1{
		font-size: 50px;
	}
	/*底部*/
	.contact-info{
		float: left;
	}
	.footer .box2 .fmenu-li{
		margin-right: 60px;
	}
}
@media screen and (max-width: 1366px){
	/*关于我们*/
	.about{
		padding-top: 70px;
	}
	/*客户诉求*/
	.demands .box .title .t1{
		width: 35%;
	}
	.demands .box .title .t2{
		width: 65%;
	}
}
@media screen and (max-width: 1280px){
	/*首页banner*/
	.i-banner .t1{
		font-size: 42px;
	}
	/*底部*/
	.footer .box2 .fmenu-li{
		margin-right: 50px;
	}
	.qrcode{
		padding-left: 0;
	}
	.qrcode-zi{
		position: static;
		text-align: center;
	}
}
@media screen and (max-width: 1220px){
	.menubtn{
		display: block;
	    float: right;
	    width: 50px;
	    height: 111px;
	    background: url(../images/menu-icon1.png) center center no-repeat;
	    background-size: 100%;
	}
	.header .menubtn.on {
	    background: url(../images/menu-icon2.png) center center no-repeat;
	    background-size: 100%;
	}
	.h-other{
		margin-right: 15px;
	}
	.header .box{
		height: auto;
	}
	.header .box .nav {
	    position: fixed;
	    right: 0;
	    top: 100px;
	    /* max-width: 350px; */
	    width: 100%;
	    height: -moz-calc(100% - 100px);
	    height: -webkit-calc(100% - 100px);
	    height: calc(100% - 100px);
	    background: #fff;
	    padding: 20px 0px;
	    display: none;
	    z-index: 99;    
    	overflow: auto;
    	box-shadow: inset 0 0.2rem 0.2rem -0.2rem rgba(45,44,44,0.2);
	}
	.header .box .nav ul{
		padding: 0px 20px;
		width: 100%;
		overflow: hidden;
		-moz-box-sizing: border-box;
	    -webkit-box-sizing: border-box;
	    -o-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	    box-sizing: border-box;
	}
	.header .box .nav ul li{
		width: 100%;
	}
	.header .box .nav ul li>a{
		width: 100%;
		height: 50px;
		line-height: 50px;
		color: #333333;
		font-size: 18px;
		text-align: left;
		margin: 0 auto;
		padding: 0px;
	}
	.header .box .nav>ul>li>a:hover{
		color: #009999;
	}
	.header .box .nav ul li:hover>a::before{
		background: transparent;
	}
	.header .box .nav ul li.on>a::before{
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 3px;
		background-color: #009999;
	}
	.header .box .nav ul li .submenu{
		position: static;
		padding: 15px 0px;
		box-shadow:0 0 10px rgba(0,0,0,0);
	}
	.header.fixed .box .nav ul li .submenu{
		box-shadow:0 0 10px rgba(0,0,0,0);
	}
	.header .box .nav ul li .submenu a{
		font-size: 16px;
		line-height: 45px;
		height: auto;
	}
	/*首页banner*/
	.i-banner .line{
		margin-bottom: 45px;
	}
	.i-banner .t1{
		font-size: 40px;
	}
	/*底部*/
	.footer .box2 .fmenu-li{
		margin-right: 20px;
	}
}
@media screen and (max-width: 1024px){
	/*首页banner*/
	.oimg1{
		display: none;
	}
	.oimg2{
		display: block;
	}
	/*header*/
	.header .language .top{
		font-size: 18px;
	}
	.header .language .drop-down a{
		font-size: 16px;
	}
	.search-header .search-input{
		font-size: 22px;
	}
	/*底部*/
	.footer .box1, .footer .box2{
		display: none;
	}
	.footer .box3 .share, .footer .box3 .f-info{
		float: none;
		text-align: center;
	}
	.footer .box3 .share{
		padding-top: 20px;
	}
	.footer .box3 .f-info{
		padding: 10px 0px 20px;
	}
	/*首页*/
	.i-title .t1{
		font-size: 32px;
	}
	.why .i-title .t1{
		color: #009999;
	}
	/*我们的产品*/
	.product{
		padding-top: 70px;
		padding-bottom: 50px;
	}
	.product.i-product{
		padding-top: 40px;
	}
	.i-product .box{
		margin-top: 30px;
	}
	.product .box ul li{
	    float: left;
	    width: -moz-calc((100% - 6%) / 2);
	    width: -webkit-calc((100% - 6%) / 2);
	    width: calc((100% - 6%) / 2);
	    margin-right: 6%;
	    margin-bottom: 20px;
	}
	.product .box ul li:nth-child(3n){
		 margin-right: 6%;
	}
	.product .box ul li:nth-child(2n){
		 margin-right: 0;
	}
	.product .box ul li .txt .t1{
		overflow: hidden;
		text-overflow:ellipsis;
		white-space: nowrap;
	}
	.product .box ul li .txt{
		padding-left: 5%;
		padding-right: 5%;
	}
	.product.i-product .box ul li .txt{
		padding-left: 0;
		padding-right: 0;
	}
	/*为什么选择我们*/
	.why .box{
		padding-top: 100px;
	}
	.why .box .con ul{
		border: none;
	}
	.why .box .con ul li{
		max-width: 48%;
		width: 48%;
		padding: 20px 0px 20px;
		margin-bottom: 3%;
		margin-right: 4%;
		box-shadow: 0px 0px 15px rgba(0,0,0,.2);
	}
	.why .box .con ul li:nth-child(2n){
		margin-right: 0;
	}
	.why .box .con ul li .t2{
		height: auto;
		min-height: 96px;
		-webkit-line-clamp: 4;
	}
	.number{
		margin-top: 30px;
		padding: 5% 0;
		background-color: #FFFFFF;
		box-shadow: 0px 0px 15px rgba(0,0,0,.2);
	}
	.number ul li{
		text-align: center;
		padding: 0 2%;
		overflow: hidden;
		-moz-box-sizing: border-box;
	    -webkit-box-sizing: border-box;
	    -o-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	    box-sizing: border-box;
	}
	.why .box .con ul li .t1{
		font-size: 18px;
	}
	/*首页other*/
	.other .box .swiper-slide .boxli{
		padding: 120px 40px 90px;
	}
	.other .box .swiper-pagination-bullet{
		display: inline-block;
	}
	/*tab*/
	.tab{
		border-bottom: none;
	}
	.tab .conwidth ul, .product-details .box .left ul{
		width: 100%;
		overflow-x: scroll;
	    overflow-y: hidden;
	    white-space: nowrap;
	    border-bottom: #eeeeee solid 1px;
	}
	.position{
		display: none;
	}
	.tab .conwidth ul::-webkit-scrollbar, .product-details .box .left ul::-webkit-scrollbar{
	    width:0px;
	    height:0px;
	}
	.tab .conwidth ul::-webkit-scrollbar-button, .product-details .box .left ul::-webkit-scrollbar-button{
	    background-color:rgba(0,0,0,0);
	}
	.tab .conwidth ul::-webkit-scrollbar-track, .product-details .box .left ul::-webkit-scrollbar-track{
	    background-color:rgba(0,0,0,0);
	}
	.tab .conwidth ul::-webkit-scrollbar-track-piece, .product-details .box .left ul::-webkit-scrollbar-track-piece{
	    background-color:rgba(0,0,0,0);
	}
	.tab .conwidth ul::-webkit-scrollbar-thumb, .product-details .box .left ul::-webkit-scrollbar-thumb{
	    background-color:rgba(0,0,0,0);
	}
	.tab .conwidth ul::-webkit-scrollbar-corner, .product-details .box .left ul::-webkit-scrollbar-corner{
	    background-color:rgba(0,0,0,0);
	}
	.tab .conwidth ul::-webkit-scrollbar-resizer, .product-details .box .left ul::-webkit-scrollbar-resizer{
	    background-color:rgba(0,0,0,0);
	}
	.tab .conwidth ul::-webkit-scrollbar, .product-details .box .left ul::-webkit-scrollbar{
	    width:0px;
	    height:0px;
	}
	.tab .conwidth ul li{
		padding: 0px 20px;
	}
	.tab .conwidth ul li a{
		height: 70px;
		line-height: 70px;
	}
	/*关于我们*/
	.about{
	    padding-top: 50px;
	}	
	.about .box .title .t1{
		font-size: 28px;
		margin-bottom: 15px
	}
	.about .box .title .line{
		margin-bottom: 15px;
	}
	.about .box .who .left .txt{
		line-height: 24px;
	}
	.about .box .culture{
		padding-bottom: 30px;
	}
	.about .box .culture .con .swiper-pagination-bullet{
		display: inline-block;
	}
	/*发展历程*/
	.development{
		padding-top: 50px;
	}
	.development .box .title{
		font-size: 28px;
	}
	.pc-slide{
		margin: 30px auto;
	}
	.view .swiper-slide .timeline-year{
		font-size: 36px;
		margin-bottom: 25px;
	}
	.view .swiper-slide-active .timeline-text{
		margin-top: 25px;
	}
	.view .swiper-slide .timeline-text .txtli{
		margin-bottom: 20px;
	}
	.preview{
		margin-top: 35px;
		margin-bottom: 50px;
	}
	/*产品详情*/
	.product-details .box .left{
		width: 100%;
		margin-right: 0;
		border-bottom: #EEEEEE solid 1px;
	}
	.product-details .box .left ul{
		border-bottom: none;
	}
	.product-details .box .left ul li{
		display: inline-block;
		border-bottom: 0;
		margin-left: 10px;
	}
	.product-details .box .left ul li a{
		padding: 0 15px;
		font-size: 20px;
	}
	.product-details .box .left ul li a i{
		display: none;
	}
	.product-details{
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.product-details .box .right .con1 .img{
		width: 100%;
		margin-bottom: 1%;
	}
	.product-details .box .right .con1 .txt{
		width: 100%;
		min-height: 1px;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.product-details .box .right .con2 .title{
		padding: 0 3%;
	}
	.product-details .box .right .con2 .txt{
		padding: 3%;
	}
	.product-details .box .right .con2 .txt .txtli{
		width: 100%;
		margin-bottom: 10px;
		min-height: 1px;
	}
	.product-details .box .right{
		width: 100%;
	}
	/*新闻*/
	.news{
		padding-top: 55px;
    	padding-bottom: 55px;
	}
	.news .box .right{
		display: none;
	}
	.news .box .left{
		width: 100%;
	}
	.news .page-list{
		float: none;
	}
	.news .box .left ul li{
		padding-bottom: 25px;
		margin-bottom: 25px;
	}
	.news .box .left ul li a .t1{
		font-size: 15px;
	}
	.news .box .left ul li a .t2{
		font-size: 22px;
	}
	.n-details .box .txtbox .nextprev{
		width: 100%;
	}
	.n-details .box .txtbox .revert{
		display: none;
	}
	/*产品详情*/
	.n-details{
		padding-top: 45px;
		padding-top: 45px;
	}
	.n-details .box .txtbox .title{
		padding-bottom: 20px;
	}
	.n-details .box .txtbox .title .t1{
		font-size: 28px;
		margin-bottom: 15px;
	}
	.n-details .box .txtbox .txt{
		font-size: 14px;
		/*line-height: 28px;*/
		padding: 25px 0px;
	}
	/*人才招聘*/
	.recruit{
		padding-top: 55px;
	}
	.recruit .box .job{
		margin-top: 40px;
		padding-bottom: 45px;
	}
	.recruit .box .job ul{
		margin-bottom: 45px;
	}
	/*福利*/
	.recruit .box .welfare .welfare-li .txt{
		padding: 0px 15px 0px;
		margin-top: 20px;
	}
	.recruit .box .welfare .welfare-li.wli3 .txt{
		padding-top: 10px
	}
	.recruit .box .welfare .welfare-li .txt.t-left{
		padding-left: 30px;
	}
	.recruit .box .welfare .welfare-li .txt.t-right{
		padding-right: 30px;
	}
	.recruit .box .welfare .welfare-li.wli1 .txt i{
		left: 15px;
		top: 0;
	}
	.recruit .box .welfare .welfare-li.wli2 .txt i{
		right: 15px;
		top: 0;
	}
	.recruit .box .welfare .welfare-li.wli3 .txt i{
		top: -9px;
	}
	.recruit .box .welfare .welfare-li .txt .t1{
		font-size: 18px;
	}
	.recruit .box .welfare .welfare-li .txt .t2{
		line-height: 28px;
		overflow : hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 4;
		-webkit-box-orient: vertical;
	}
	/*职位*/
	.recruit .box .job .title span{
		font-size: 28px;
		line-height: 60px;
	}
	.recruit .box .job ul li .txt .con2{
		padding: 30px 20px 22px;
	}
	/*公司地址*/
	.address{
		padding-top: 60px;
    	padding-bottom: 70px;
	}
	.address .box .left .title{
		line-height: 50px;
	}
	/*客户诉求*/
	.demands{
		margin: 50px auto 60px;
	}
	.demands .box .title .t1{
		width: 30%;
	}
	.demands .box .title .t2{
		width: 70%;
	}
	/*说明书下载*/
	.download{
		padding-top: 50px;
    	padding-bottom: 60px;
	}
	/*产品视频*/
	.video{
		padding-top: 50px;
    	padding-bottom: 40px;
	}
	.video .box ul li{
		width: 48%;
		margin-right: 4%;
	}
	.video .box ul li:nth-child(3n){
		margin-right: 4%;
	}
	.video .box ul li:nth-child(2n){
		margin-right: 0;
	}
	/*登录*/
	.login .box .content .title{
		font-size: 24px;
	}
	/*公司资质*/
	.qualifications{
		padding-top: 70px;
		padding-bottom: 40px;
	}
	.qualifications .box ul li{
		width: -moz-calc((100% - 99px) / 3);
		widows: -webkit-calc((100% - 99px) / 3);
		width: calc((100% - 99px) / 3);
	}
	.qualifications .box ul li:nth-child(4n){
		margin-right: 33px;
	}
	.qualifications .box ul li:nth-child(3n){
		margin-right: 0;
	}
	.qualifications .box ul li .txt{
		font-size: 15px;
		line-height: 30px;
	}
}
@media screen and (max-width: 768px){
	/*header*/
	.header .box .h-logo{
		height: 80px;
		line-height: 80px;
	}
	.header .box .h-logo img {
	    width: 160px;
	    /* height: 69px; */
	}
	.header .h-other .show-search-btn{
		height: 80px;
		line-height: 80px;
	}
	.header .language{
		height: 80px;
		line-height: 80px;
	}
	.search-header{
		padding-top: 25px;
		padding-bottom: 45px;
	}
	.search-header .search-input{
		font-size: 18px;
	}
	.search-close, .search .submit0{
		background-size: 25px 25px;
	}
	.search{
		top: 80px;
	}
	.menubtn{
		height: 80px;
		line-height: 80px;
		background-size: 84%;
	}
	.header .menubtn.on{
		background-size: 84%;
	}
	.header .box .nav{
		top: 79px;
		height: -moz-calc(100% - 80px);
		height: -webkit-calc(100% - 80px);
		height: calc(100% - 80px);
	}
	
	/*首页banner*/
	.i-banner .line{
		margin-bottom: 15px;
	}
	.i-banner .t1{
		font-size: 34px;
	}
	.lunbotu .swiper-button-next, .lunbotu .swiper-button-prev {
		width: 35px;
    	height: 60px;
		-moz-background-size: 35px 60px;
	    -webkit-background-size: 35px 60px;
	    background-size: 35px 60px;
	}
	/*首页标题*/
	.i-title .t1{
		font-size: 30px;
	}
	/*为什么选择我们*/
	.why .box {
	    padding-top: 70px;
	    padding-bottom: 60px;
	}
	.why .box .con{
		margin-top: 30px;
	}
	.number{
		margin-top: 20px;
	}
	.number ul li .t1 .timer{
		font-size: 40px;
	}
	.number ul li .t1 {
		font-size: 16px;
	}
	.why .box .con ul li .t1{
		font-size: 16px;
	}
	.why .box .con ul li .img{
		margin-bottom: 15px;
	}
	/*首页other*/
	.other .box .swiper-slide .boxli{
		padding: 90px 30px 60px;
	}
	.other .boxli .txt{
		padding-top: 20px;
	}
	.other .boxli .txt .t1{
		font-size: 18px;
		margin-bottom: 12px;
	}
	.other .boxli .txt .t2{
		margin-bottom: 20px;
	}
	.other .boxli .txt .more{
		height: 36px;
		line-height: 36px;
	}
	/*tab*/
	.tab .conwidth ul li a{
		font-size: 16px;
		height: 60px;
		line-height: 60px;
	}
	/*关于我们*/
	.about{
	    padding-top: 40px;
	}	
	.about .box .title .t1{
		font-size: 26px;
	}
	.about .box .who .left{
		width: 100%;
		padding-right: 0;
		margin-bottom: 20px;
	}
	.about .box .who .right{
		width: 100%;
	}
	.about .box .culture{
		padding-bottom: 30px;
	}
	/*发展历程*/
	.development{
		padding-top: 40px;
	}
	.development .box .title{
		font-size: 26px;
	}
	.pc-slide{
		margin: 25px auto;
	}
	.view .swiper-slide .timeline-year{
		font-size: 32px;
		margin-bottom: 15px
	}
	.view .swiper-slide-active .timeline-text{
		margin-top: 15px;
	}
	.view .swiper-slide .timeline-text .txtli{
		margin-bottom: 15px;
	}
	.preview{
		margin-top: 10px;
		margin-bottom: 40px;
	}
	.preview .swiper-slide .s3{
		font-size: 18px;
	}
	/*产品详情*/
	.product-details .box .left ul li a{
		font-size: 18px;
		height: 50px;
		line-height: 50px;
	}
	.product-details .box .right .con1 .txt .t1{
		font-size: 18px;
	}
	/*新闻*/
	.news{
		padding-top: 35px;
    	padding-bottom: 35px;
	}
	.news .box .right{
		display: none;
	}
	.news .box .left{
		width: 100%;
	}
	.news .page-list{
		float: none;
	}
	.news .box .left ul li a .t1{
		font-size: 14px;
	}
	.news .box .left ul li a .t2{
		font-size: 20px;
	}
	/*产品详情*/
	.n-details{
		padding-top: 35px;
		padding-bottom: 35px;
	}
	.n-details .box .txtbox .title{
		padding-bottom: 15px;
	}
	.n-details .box .txtbox .title .t1{
		font-size: 26px;
	}
	.n-details .box .txtbox .txt{
		font-size: 14px;
		line-height: 28px;
		padding: 20px 0px;
	}
	.nextprev a{
		font-size: 15px;
	}
	/*人才招聘*/
	.recruit{
		padding-top: 45px;
	}
	.recruit .box .job{
		margin-top: 30px;
		padding-bottom: 35px;
	}
	.recruit .box .job ul{
		margin-bottom: 35px;
	}
	/*福利*/
	.recruit .box .welfare .left{
		width: 100%;
	}
	.recruit .box .welfare .right{
		width: 100%;
	}
	.recruit .box .welfare .right .welfare-li .img, .recruit .box .welfare .welfare-li .txt.t-right{
		float: left;
		width: 50%;
	}
	.recruit .box .welfare .welfare-li .img img{
		max-height: 100%;
	}
	.recruit .box .welfare .welfare-li.wli3 .txt{
		padding-top: 0;
	}
	.recruit .box .welfare .welfare-li.wli3 .txt.t-right{
		text-align: left;
		padding-right: 0;
		padding-left: 30px;
	}
	.recruit .box .welfare .welfare-li.wli3 .txt i{
		right: auto;
		left: 10px;
		top: 0px;
		width: 14px;
		height: 14px;
	}
	.recruit .box .welfare .welfare-li.wli3 .txt i img{
		-moz-transform:rotate(-90deg);
		-webkit-transform:rotate(-90deg);
		-o-transform:rotate(-90deg);
		transform:rotate(-90deg); 
	}
	/*职位*/	
	.recruit .box .job .title span{
		font-size: 26px;
	}
	.recruit .box .job ul li .headline{
		padding-bottom: 0;
		line-height: 40px;
	}
	.recruit .box .job ul li .headline .tit{
		font-size: 15px;
	}
	.recruit .box .job ul li .txt .con2{
		font-size: 15px;
		padding: 0px 15px 15px;
		line-height: 32px;
	}
	/*公司地址*/
	.address{
		padding-top: 40px;
    	padding-bottom: 50px;
	}
	.address .box .left, .address .box .right{
		width: 100%;
	}
	.address .box .left{
		margin-bottom: 15px;
	}
	.address .box .left .title{
		margin-bottom: 20px;
	}
	.address .box .left .txtli{
		margin-bottom: 20px;
	}
	/*客户诉求*/
	.demands{
		margin: 40px auto 50px;
	}
	.demands .box{
		padding: 3% 3% 4%;
	}
	.demands .box .title{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	.demands .box .title .t1{
		width: 100%;
		margin-bottom: 12px;
	}
	.demands .box .title .t2{
		width: 100%;
	}
	.input-li .t1, .input-li .t2, .input-li .t3, .input-li .t4{
		font-size: 15px;
	}
	.re-input{
		font-size: 15px
	}
	.input-li .part{
		width: 100%;
		margin-bottom: 17px;
	}
	.input-li .part:last-child{
		margin-bottom: 0;
	}
	.radio-name{
		font-size: 15px;
	}
	.r-btn{
		margin-top: 15px;
		width: 120px;
		height: 45px;
	}
	.re-submit, .re-reset{
		height: 45px;
		line-height: 45px;
		font-size: 15px;
	}
	/*说明书下载*/
	.download{
		padding-top: 40px;
    	padding-bottom: 40px;
	}
	/*产品视频*/
	.video{
		padding-top: 40px;
    	padding-bottom: 30px;
	}
	/*登录*/
	.login{
		top: 80px;
	    height: -moz-calc(100% - 80px);
	    height: -webkit-calc(100% - 80px);
	    height: calc(100% - 80px);
	}
	.login .box .content .title{
		font-size: 22px;
	}
	/*公司资质*/
	.qualifications {
	    padding-top: 50px;
	    padding-bottom: 20px;
	}
	.qualifications .box ul li{
		width: -moz-calc((100% - 60px) / 3);
		width: -webkit-calc((100% - 60px) / 3);
		width: calc((100% - 60px) / 3);
		margin-right: 20px;
		margin-bottom: 20px;
	}
	.qualifications .box ul li:nth-child(4n){
		margin-right: 20px;
	}
	.qualifications .box ul li:nth-child(3n){
		margin-right: 0;
	}
}
@media screen and (max-width: 640px){
	/*header*/
	.search-header .search-input{
		font-size: 16px;
		line-height: 64px;
		text-indent: 50px;
	}
	.search .submit0{
		height: 64px;
	}
	.search-close, .search .submit0{
		background-size: 20px 20px;
	}
	.header .language{
		margin-left: 10px;
	}
	.header .language .top{
		font-size: 16px;
	}
	.header .language .drop-down a{
		font-size: 14px;
	}
	.header .box .h-logo img{
		width: 150px;
	}
	.header .box .nav ul li>a{
		font-size: 16px;
	}
	.header .box .nav ul li .submenu a{
		font-size: 15px;
	}
	/*首页banner*/
	.lunbotu .conwidth {
	    padding-left: 45px;
	    padding-right: 45px;
    }
    .i-banner .line{
    	margin-bottom: 10px;
    }
	.i-banner .line img{
		width: 30px;
	}
	.i-banner .t1{
		font-size: 28px;
	}
	/*内页banner*/
	.bannerzi1{
		font-size: 30px;
		margin-bottom: 18px;
	}
	.bannerzi2{
		font-size: 18px;
	}	
	/*标题*/
	.i-title .t1{
		font-size: 28px;
	}
	/*我们的产品*/
	.product{
		padding-top: 60px;
		padding-bottom: 40px;
	}
	.product.i-product{
		padding-top: 20px;
	}
	.i-product .box{
		margin-top: 20px;
	}
	.product .box ul{
		margin-bottom: 20px;
	}
	.product .box ul li{
	    float: left;
	    width: -moz-calc((100% - 4%) / 2);
	    width: -webkit-calc((100% - 4%) / 2);
	    width: calc((100% - 4%) / 2);
	    margin-right: 4%;
	    margin-bottom: 15px;
	}
	.product .box ul li:nth-child(3n){
		 margin-right: 4%;
	}
	.product .box ul li:nth-child(2n){
		 margin-right: 0;
	}
	.product .box ul li .txt{
		padding-top: 10px;
	}
	.product .box ul li .txt .t1{
		font-size: 18px;
	}
	.product .box ul li .txt .t2{
		height: auto;
		display: block;
		overflow: hidden;
		text-overflow:ellipsis;
		white-space: nowrap;
	}
	/*为什么选择我们*/
	.why .box {
	    padding-top: 50px;
	    padding-bottom: 40px;
	}
	.why .box .con{
		margin-top: 20px;
	}
	.why .box .con ul li{
		padding: 15px 0px;
	}
	.why .box .con ul li .img {
		margin-bottom: 10px;
	}
	.why .box .con ul li .line{
		margin: 5px auto;
	}
	.number{
		margin-top: 10px;
		padding: 3.5% 0;
	}
	.number ul li .t1 {
		font-size: 14px;
	}
	.number ul li .t1 .timer{
		font-size: 30px;
	}
	.why .box .con ul li:hover .icon{
		background-size: 30px 13px;
	}
	/*首页other*/
	.other .box .swiper-slide .boxli{
		padding: 60px 30px 40px;
		border-right: none;
	}
	.other .boxli .txt{
		padding-top: 25px;
	}
	.other .boxli .txt .t1{
		font-size: 16px;
		margin-bottom: 10px;
	}
	.other .boxli .txt .t2{
		margin-bottom: 15px;
	}
	.other .boxli .txt .more{
		height: 32px;
		line-height: 32px;
	}
	/*关于我们*/
	.about{
		padding-top: 30px;
	}
	.about .box .title .line{
		margin-bottom: 10px;
	}
	.about .box .title .t1{
		font-size: 24px;
		margin-bottom: 10px;
	}
	.about .box .culture{
		/*padding-bottom: 20px;*/
	}
	.about .box .culture .con{
		margin-top: 30px;
	}
	.tab .conwidth ul li{
		padding: 0px 15px;
		margin-right: 10px;
	}
	/*发展历程*/
	.development{
		padding-top: 30px;
	}
	.development .box .title{
		font-size: 24px;
	}
	.pc-slide{
		margin: 20px auto 15px;
	}
	.view .swiper-slide .timeline-year{
		font-size: 28px;
		margin-bottom: 10px
	}
	.view .swiper-slide .txt{
		width: 100%;
		margin-bottom: 20px;
	}
	.view .swiper-slide-active .timeline-text{
		margin-top: 10px;
		/*transform: none;*/
		transition: none;
	}
	.view .swiper-slide .timeline-text .txtli{
		margin-bottom: 10px;
	}
	.view .swiper-slide .img{
		width: 100%;
	}
	.preview{
		margin-top: 0px;
		margin-bottom: 30px;
	}
	.preview .swiper-slide{
		width: 100px;
	}
	.preview .swiper-slide .s3{
		font-size: 16px;
	}
	/*产品详情*/
	.product-details .box .left ul li a{
		font-size: 16px;
		height: 40px;
		line-height: 40px;
	}
	.product-details .box .right .con2 .txt{
		font-size: 14px;
	}
	.product-details .box .right .con1 .txt .t1{
		font-size: 16px;
	}
	/*新闻*/
	.news{
		padding-top: 30px;
    	padding-bottom: 30px;
	}
	.news .box .right{
		display: none;
	}
	.news .box .left{
		width: 100%;
	}
	.news .page-list{
		float: none;
	}
	.news .box .left ul li{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	.news .box .left ul li a .txt{
		padding-left: 20px;
	}
	.news .box .left ul li a .t2{
		font-size: 20px;
	}
	/*产品详情*/
	.n-details{
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.details-bottom{
		margin-top: 20px;
	}
	.n-details .box .txtbox .title .t1{
		font-size: 24px;
	}
	/*人才招聘*/
	/*福利*/
	.recruit .box .welfare .welfare-li{
		border-bottom: #eeeeee solid 1px;
	}
	.recruit .box .welfare .left .welfare-li .img{
		width: 100% !important;
	}
	.recruit .box .welfare .welfare-li .txt{
		width: 100% !important;
		margin: 20px auto;
	}
	.recruit .box .welfare .right .welfare-li .img, .recruit .box .welfare .welfare-li .txt.t-right{
		width: 100%;
	}
	/*职位*/
	.recruit .box .job .title span{
		font-size: 24px;
	}
	.recruit .box .job ul li .headline{
		line-height: 30px;
	}
	.recruit .box .job ul li .headline .tit{
		width: 33.33%;
	}
	.recruit .box .welfare .welfare-li .txt .t1{
		font-size: 16px;
	}
	.recruit .box .job ul li .headline .t5{
		float: left;
		/*width: auto;*/
		max-width: 33.33%;
	}	
	.recruit .box .job ul li .headline .t5 i{
		display: none;
	}
	.recruit .box .job ul li .txt .con2{
		font-size: 14px;
		padding-top: 15px;
		padding-bottom: 10px;
	}
	.recruit .box .job ul li .txt .con2 .tips{
		min-width: 1px;
		width: 100%;
		padding: 0px 10px;
		line-height: 28px;
	}
	/*公司地址*/
	.address{
		padding-top: 30px;
    	padding-bottom: 40px;
	}
	.address .box .left .title{
		font-size: 22px;
		margin-bottom: 15px;
	}
	.address .box .left .txtli{
		margin-bottom: 15px;
	}
	.address .box .left .txtli .txt{
		font-size: 15px;
		line-height: 30px;
	}
	/*客户诉求*/
	.demands{
		margin: 30px auto 40px;
	}
	.demands .box .title .t1{
		font-size: 22px;
	}
	.input-li.input-li1{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: nowrap;
	}
	.applyck{
		margin-top: 0;
	}
	.input-li .part{
		width: 100%;
		margin-right: 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.radio-name{
		font-size: 14px;
	}
	.input-li .t1, .input-li .t2, .input-li .t3, .input-li .t4{
		font-size: 14px;
	}
	.input-li .t1, .input-li .t4, .input-li .t3{
		display: inline-block;
		line-height: 1;
		text-align-last: auto;
	}
	.input-li .t1 .spa, .input-li .t3 .spa{
		float: none;
	}
	.input-li .t2{
		line-height: 40px;
		width: -moz-calc(100% - 155px);
	    width: -webkit-calc(100% - 155px);
	    width: calc(100% - 155px);
	}
	.ckbox{
		margin-right: 20px;
	}
	.r-btn{
		width: 110px;
		margin: 15px 15px 0px;
		height: 40px;
	}
	.re-submit, .re-reset{
		height: 40px;
		line-height: 40px;
		font-size: 14px;
	}
	.re-input{
		padding: 0 3%;
		font-size: 14px;
	}
	/*说明书下载*/
	.download{
		padding-top: 30px;
    	padding-bottom: 30px;
	}
	.s-txt{
		font-size: 15px;
		height: 45px;
		line-height: 43px;
	}
	.s-btn{
		height: 45px;
		line-height: 45px;
	}
	.dl-list{
		margin-top: 20px;
	}
	.dl-list ul li{
		width: 100%;
		margin-right: 0;
	}
	.dl-list ul li a{
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.dl-list ul li a .t1{
		font-size: 15px;
	}
	/*产品视频*/
	.video{
		padding-top: 30px;
    	padding-bottom: 20px;
	}
	.video .box ul li{
		margin-bottom: 20px;
	}
	.video .box ul li a .img{
		margin-bottom: 15px;
	}
	.video .box ul li a .txt .t1{
		font-size: 15px;
		margin-bottom: 5px;
	}	
	/*登录*/
	.login .box .content .title{
		padding: 20px 0px;
	}
	.login-li{
		margin-top: 20px;
	}
	.login-btn{
		margin-top: 30px;
	}
	.login-btn input{
		font-size: 15px;
		height: 40px;
		line-height: 40px;
	}	
	/*公司资质*/
	.qualifications {
	    padding-top: 40px;
	    padding-bottom: 20px;
	}
	.qualifications .box ul li{
		width: 48%;
		margin-right: 4%;
		margin-bottom: 4%;
	}
	.qualifications .box ul li:nth-child(4n){
		margin-right: 4%;
	}
	.qualifications .box ul li:nth-child(3n){
		margin-right: 4%;
	}
	.qualifications .box ul li:nth-child(2n){
		margin-right: 0;
	}
	.qualifications .box ul li .txt{
		font-size: 14px;
		line-height:28px;
	}
}
@media screen and (max-width: 414px){
	/*header*/
	.header .box .h-logo{
		height: 70px;
		line-height: 70px;
	}
	.header .h-other .show-search-btn{
		height: 70px;
		line-height: 70px;
	}
	.header .language{
		height: 70px;
		line-height: 70px;
	}
	.header .language .drop-down{
		top: 65px;
	}
	.header .box .h-logo img{
		width: 120px;
	}
	.search{
		top: 70px;
	}
	.menubtn{
		height: 70px;
		line-height: 70px;
		background-size: 78%;
	}
	.header .menubtn.on{
		background-size: 78%;
	}
	.header .box .nav{
		top: 69px;
		padding: 15px 0px;
	}
	/*首页banner*/
	.i-banner .line{
    	margin-bottom: 5px;
    }
	.i-banner .t1{
		font-size: 22px;
	}
	/*内页banner*/
	.bannerzi1{
		font-size: 25px;
		margin-bottom: 5px;
	}
	.bannerzi2{
		font-size: 16px;
	}	
	/*标题*/
	.i-title .t1{
		font-size: 22px;
	}
	/*我们的产品*/
	.product.i-product, .product{
		padding-top: 15px;
	}
	.i-product .box{
		margin-top: 15px;
	}
	.product .box ul li .txt .t1{
		font-size: 15px;
	}
	/*为什么选择我们*/
	.number ul li .t1 {
		font-size: 12px;
	}
	.number ul li .t1 .timer{
		font-size: 20px;
	}
	/*首页other*/
	.other .box .swiper-slide .boxli{
		padding: 50px 20px 40px;
	}
	/*关于我们*/
	.about .box .title .t1{
		font-size: 22px;
		margin-bottom: 10px;
	}
	.about .box .culture{
		padding-bottom: 20px;
	}
	/*发展历程*/
	.development .box .title{
		font-size: 22px;
	}
	.view .swiper-slide .timeline-year{
		font-size: 26px;
	}
	.view .swiper-slide .timeline-text .txtli{
		margin-bottom: 0;
	}
	.preview .swiper-slide{
		width: 90px;
	}
	/*分页*/
	.page-list a{
		padding: 0px 12px;
		height: 35px;
		line-height: 33px;
	}
	/*新闻*/
	.news .box .left ul li{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	.news .box .left ul li a .txt{
		padding-left: 15px;
	}
	.news .box .left ul li a .t1{
		margin-bottom: 10px;
	}
	.news .box .left ul li a .t2{
		font-size: 16px;
		margin-bottom: 5px;
	}
	.news .box .left ul li a .t3{
		font-size: 14px;
		line-height: 24px;
	}
	/*产品详情*/
	.n-details .box .txtbox .title .t1{
		font-size: 20px;
	}
	/*人才招聘*/
	.recruit .box .job .title span{
		font-size: 20px;
	}
	/*公司地址*/
	.address{
		padding-top: 20px;
    	padding-bottom: 30px;
	}
	.address .box .left .title{
		font-size: 20px;
		margin-bottom: 10px;
	}
	.address .box .left .txtli{
		margin-bottom: 10px;
	}
	/*客户诉求*/
	.demands{
		margin: 25px auto 30px;
	}
	.demands .box .title .t1{
		font-size: 22px;
	}
	.applyck{
		margin-top: 0;
	}
	.input-li .t1, .input-li .t2{
		line-height: 36px;
	}
	.r-btn{
		min-width: 100px;
		width: auto;
		height: 36px;
	}
	.re-submit, .re-reset{
		height: 36px;
		line-height: 36px;
	}
	/*说明书下载*/
	.download{
		padding-top: 20px;
    	padding-bottom: 20px;
	}
	.s-txt{
		height: 40px;
		line-height: 38px;
	}
	.s-btn{
		height: 40px;
		line-height: 40px;
	}
	/*产品视频*/
	.video .box ul li a .img .mark{
		background-size: 40px 40px;
	}
	/*登录*/
	.login{
		top: 70px;
	    height: -moz-calc(100% - 70px);
	    height: -webkit-calc(100% - 70px);
	    height: calc(100% - 70px);
	}
	.login .box .content{
		padding-bottom: 30px;
	}
	.login .box .content .title{
		font-size: 20px;
		padding: 15px 0px;
	}
	.login-li{
		margin-top: 10px;
	}
	.login-btn{
		margin-top: 20px;
	}
	.login-tips{
		margin-top: 20px;
	}
	.login .box .login-close{
		margin-top: 30px;
	}
	/*公司资质*/
	.qualifications {
	    padding-top: 30px;
	    padding-bottom: 15px;
	}
}
/*视频弹窗样式*/
.bigPicLayer {
    display: none;
    width: 1000px;
    height: 556px;
    position: fixed;
    z-index: 111;
    top: 40% !important;
    margin-top: -180px;
    padding: 10px;
}

.bigPicLayer .close {
    display: block;
    width: 38px;
    height: 38px;
    background: url(../images/m5_off.png?v=11221) no-repeat;
    right: -50px;
    top: -50px;
    position: relative;
    position: absolute;
    z-index: 222;
}

.bigPicLayer .close em {
    width: 1px;
    height: 50px;
    background: #009690;
    display: none;
    position: absolute;
    left: 50%;
    margin-left: -0.5px;
    top: 100%;
}

.bigPicLayer .imgDiv {
    text-align: center;
}

.bigPicLayer .imgDiv img {
    width: 100%;
}

.bigPicLayer .imgDiv span {
    display: block;
    text-align: center;
    font-size: 18px;
    margin-top: 16px;
    color: #fff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
}

@media screen and (max-width: 1540px) {
    .bigPicLayer {
        display: none;
        width: 700px;
        height: 400px;
        position: fixed;
        z-index: 111;
        top: 40% !important;
        margin-top: -100px;
        padding: 10px;
    }

    .bigPicLayer .close {
        display: block;
        width: 38px;
        height: 38px;
        background: url(../images/m5_off.png?v=11221) no-repeat;
        right: -50px;
        top: -30px;
        position: relative;
        position: absolute;
        z-index: 222;
    }

    .bigPicLayer .close em {
        width: 1px;
        height: 50px;
        background: #0a448d;
        display: none;
        position: absolute;
        left: 50%;
        margin-left: -0.5px;
        top: 100%;
    }

    .bigPicLayer .imgDiv {
        text-align: center;
    }

    .bigPicLayer .imgDiv img {
        width: 100%;
    }

    .bigPicLayer .imgDiv span {
        display: block;
        text-align: center;
        font-size: 18px;
        margin-top: 16px;
        color: #fff;
        font-weight: bold;
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
    }

}

@media screen and (max-width: 1440px) {
    .bigPicLayer {
        display: none;
        width: 600px;
        height: 350px;
        position: fixed;
        z-index: 111;
        top: 40% !important;
        margin-top: -100px;
        padding: 10px;
    }

    .bigPicLayer .close {
        display: block;
        width: 38px;
        height: 38px;
        background: url(../images/m5_off.png?v=11221) no-repeat;
        right: -50px;
        top: -50px;
        position: relative;
        position: absolute;
        z-index: 222;
    }

    .bigPicLayer .close em {
        width: 1px;
        height: 50px;
        background: #0a448d;
        display: none;
        position: absolute;
        left: 50%;
        margin-left: -0.5px;
        top: 100%;
    }

    .bigPicLayer .imgDiv {
        text-align: center;
    }

    .bigPicLayer .imgDiv img {
        width: 100%;
    }

    .bigPicLayer .imgDiv span {
        display: block;
        text-align: center;
        font-size: 18px;
        margin-top: 16px;
        color: #fff;
        font-weight: bold;
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
    }

}


@media screen and (max-width: 1004px) {
    .bigPicLayer {
        width: 300px;
        height: auto;
        padding: 0px;
        margin-top: -150px;
    }

    .bigPicLayer .close {
        display: block;
        width: 38px;
        height: 38px;
        background: url(../images/m5_off.png?v=11221) no-repeat;
        right: -50px;
        top: -50px;
        position: relative;
        position: absolute;
        z-index: 222;
    }

    .bigPicLayer .close em {
        width: 1px;
        height: 20px;
        background: #0a448d;
        display: none;
        position: absolute;
        left: 50%;
        margin-left: -0.5px;
        top: 100%;
    }

    .bigPicLayer .imgDiv {
        height: 169px;
    }

}


/*搜索页面*/
.x-sousuo{
	margin-top: 60px;
	margin-bottom: 60px;
}
.x-sousuo .box{
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
}
.x-sousuo .box .title{
	overflow: hidden;
}
.x-sousuo .box .title .t1{
	float: left;
	color: #009999;
	font-size: 36px;
	line-height: 40px;
}
.x-sousuo .box .x-tab{
	float: right;
}
.x-sousuo .box .x-tab a{
	float: left;
	padding: 0px 15px;
	/*height: 40px;*/
	line-height: 40px;
	color: #333333;
	font-size: 16px;
	text-align: center;
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	border-left: 1px solid rgba(0, 0, 0, 0.2);
}
.x-sousuo .box .x-tab a:last-child {
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.x-sousuo .box .x-tab a.on{
	color: #FFFFFF;
	background-color: #009999;
	border-top: 1px solid  #009999;
	border-bottom: 1px solid  #009999;
	border-left: 1px solid  #009999;
}

.sslist{
	margin-top: 60px;
}
.sslist ul li{
	width: 100%;
	margin: 0 auto;
    padding-bottom: 1rem;
}
.sslist ul li a{
	position: relative;
    display: block;
    border: 1px solid #eee;
    border-left-width: 5px;
    margin-bottom: 10px;
    line-height: 30px;
    padding: 18px 200px 18px 32px;
    color: #333;
    background: #fff;
    transition: background-color .2s,opacity .3s,color .3s;
    transform-origin: 0 0;
}
.sslist ul li a:after {
    top: 50%;
    left: 0;
   /* right: 100%;*/
    display: block;
    width: 5px;
    height: 0;
    background: #009999;
    content: "";
    position: absolute;
    transition-duration: .3s;
}
.sslist ul li a:hover {
    color: #04287e;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.sslist ul li a:hover:after {
	/*left: 0;*/
    top: 0;
    height: 100%;
}
.sslist ul li a .t1{
	height: 30px;
    font-size: 18px;
    transition-duration: .3s;
}
.sslist ul li a:hover .t1, .sslist ul li a:hover .t2{
	color: #009999;
}
.sslist ul li a .t2{
	top: 50%;
    right: 0;
    margin-top: -15px;
    position: absolute;
    display: block;
    width: 144px;
    text-align: center;
    border-left: 1px solid #ececec;
    font-size: 14px;
    transition-duration: .3s;
}
@media screen and (max-width: 1640px){
	.x-sousuo .box .title .t1{
		font-size: 28px;
	}
	.x-sousuo .box .x-tab a{
		font-size: 16px;
	}
}
@media (max-width: 1023px){
	.x-sousuo{
		margin-top: 35px;
		margin-bottom: 35px
	}
	.x-sousuo .box .title .t1{
		line-height: inherit;
		float: none;
		width: 100%;
	}
	.x-sousuo .box .x-tab{
		margin-top: 20px;
		float: none;
		width: 100%;
	}
	.x-sousuo .box .x-tab a{
	    font-size: 14px;
	    line-height: 36px;
    }
    .sslist{
    	margin-top: 40px;
    }
    .sslist ul li a{
    	line-height: 24px;
	    padding: 10px;
	    border-left-width: 2px;
	    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    }
    .sslist ul li a .t1{
    	font-size: 16px;
    	height: auto;
    }
    .sslist ul li a .t2{
    	position: static;
	    font-size: 12px;
	    display: inline-block;
	    width: 100%;
	    font-size: 12px;
	    margin-top: 5px;
	    text-align: left;
	    border: none;
    }
    .sslist ul li a:after {
	    width: 2px;
	    height: 100%;
	    top: 0;
	}
}
@media (max-width: 767px){
	.x-sousuo{
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.sslist{
    	margin-top: 30px;
    }
	.x-sousuo .box .title .t1{
		font-size: 18px;		
	}
}
@media (max-width: 414px){
	.sslist ul li a .t1{
		font-size: 15px;		
	}
}

.msg_error{
	margin-top:10px;
	color:#F00;
	font-size:12px;
}

/*2020.9.3*/
#dowebok .page1 .lunbotu, #dowebok .page2 .product.i-product{
	padding-top: 100px;
	overflow: hidden;
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.index-menu{
    position: fixed;
    z-index: 999;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
}
.index-menu li{
    width: 13px;
    height: 13px;
    box-sizing: border-box;
    border: 1px solid #009999;
    border-radius: 50%;
    margin: 12px 0;
    position: relative;
}
.index-menu li a{
    width: 100%;
    height: 100%;
    display: block;
    color: #009999;
    font-size: 14px;
}
.index-menu li a span{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    display: none;
}
.index-menu li.active{
    /*border: none;*/
	background: #ef7d00;
	border: #ef7d00 solid 1px;
}
/*.index-menu li.active a span{
    display: block;
}*/
.section.page2{
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.section.page3{
	/*background-attachment: fixed;*/
    background-repeat: no-repeat;
    background-position: center right;
    -webkit-background-size: cover;
    background-size: cover;
}
.section.page3.fp-tableCell{
	display: block !important; 
}
.settionbox{
	width: 100%;
	height: 100%;
}
.i-title, .i-product .box, .why .box .con, .number, .other .box .swiper-slide .boxli{
	opacity: 0;
}
@media screen and (max-width: 1600px){
	.index-menu{
		right: 20px;
	}
}
@media screen and (max-width: 1024px){
	.section.page1{
		height: auto !important;
	}
	.index-menu{
		display: none;
	}
	.settionbox{
		height: auto;
	}
	.header{
		position: static;
	}
	.header.fixed{
		position: fixed;
	}
	.lunbotu .swiper-slide{
		background: none;
		height: auto;
	}
	.lunbotu a{
		height: auto;
	}
	.lunbotu .swiper-slide .img{
		display: block;
	}
	.lunbotu.swiper-container-horizontal>.swiper-pagination-bullets, .lunbotu .swiper-pagination-custom, .lunbotu .swiper-pagination-fraction{
		bottom: 5%;
	}
	.other .box .swiper-slide .boxli .con{
		opacity: 1;
		padding: 0;
	}
}

@media screen and (max-width: 1024px){
	.index-menu{
		display: none;
	}
	.i-title, .i-product .box, .why .box .con, .number, .other .box .swiper-slide .boxli{
		opacity: 1;
	}
}


.product.product ul{
	text-align: center;
}
.product.product ul li{
	float: none;
	display: inline-block;
}
.product.product ul li .txt{
	text-align: left;
}
.product.product ul li:last-child{
	margin-right: 0;
}

/*2020.9.7*/
.xinimgbox{
	position: relative;
	width: 100%;
	overflow: hidden;
}
.xinimgbox .imgli{
	width: 100%;
	overflow: hidden;
}
.xinimgbox .imgli img{
	width: 100%;
}
.xinimgbox .swiper-pagination-bullet-active {
    opacity: 1;
    background: #009999;
}


/*2020.12.16发展历程*/
.development .content{
	margin-top: 30px;
	padding-bottom: 100px;
}
.development .history-list{
	position: relative;
	float: left;
	width: 54.6%;
	overflow: hidden;
	padding-top: 45px;
}
.development .history-list .t-line{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	margin: auto;
	width: 1px;
	height: 100%;
	background-color: #dcdcdc;
}
.development .history-list .t-line::before{
	content: '';
	position: absolute;
	left: -2px;
	top: 4px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #d2d2d2;
	z-index: 3;
}
.development .history-list::before, .development .history-list:before{
	content: '';
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	margin: auto;
	z-index: 2;
	width: 9px;
	height: 9px;
	background-color: #FFFFFF;
	border: #d2d2d2 solid 2px;
	border-radius: 50%;
}
.development .history-list::after, .development .history-list:after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 1px;
	height: 60px;
	background: #ffffff url(../images/x1.png) center top no-repeat;
}
.development .history-list ul li{
	margin-bottom: 30px;
	overflow: hidden;
}
.development .history-list ul li .txtbox{
	position: relative;
	width: 50%;
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.development .history-list ul li:nth-child(odd) .txtbox{
	float: left;
	text-align: right;
	padding-right: 50px;
}
.development .history-list ul li:nth-child(even) .txtbox{
	float: right;
	text-align: left;
	/*padding-right: 30px;*/
	padding-left: 50px;
}
.development .history-list ul li .txtbox::before, .development .history-list ul li .txtbox:before{
	content: '';
	position: absolute;
	top: 8px;
	width: 8px;
	height: 8px;
	border: #dcdcdc solid 2px;
	background-color: #FFFFFF;
	border-radius: 50%;
	z-index: 3;
}
.development .history-list ul li:nth-child(odd) .txtbox::before, .development .history-list ul li:nth-child(odd) .txtbox:before{
	right: -6px;
}
.development .history-list ul li:nth-child(even) .txtbox::before, .development .history-list ul li:nth-child(even) .txtbox:before{
	left: -6px;
}
.development .history-list ul li .txtbox .t1{
	font-size: 16px;
	font-weight: bold;
}
.development .history-list ul li .txtbox .t1 span{
	display: inline-block;
	margin-right: 3px;
	font-family: arial;
	color: #444444;
	font-size: 28px;
}
.development .history-list ul li .txtbox .t2{
	line-height: 1.7;
	font-size: 14px;
	color: #888888;
	margin-top: 10px;
}

.development .imgbox{
	float: right;
	width: 34.6%;
	overflow: hidden;
}
.development .imgbox img{
	width: 100%;
}
/*产品中心详情*/
.newimgbox{
	width: 100%;
	overflow: hidden;
}
.newimgbox img{
	width: 100%;
}
@media screen and (max-width: 1024px){
	.development .content{
		padding-bottom: 70px;
	}
	.development .history-list ul li .txtbox .t1{
		font-size: 15px;
	}
	.development .history-list ul li .txtbox .t1 span{
		font-size: 24px;
	}
}
@media screen and (max-width: 768px){
	.development .content{
		padding-bottom: 50px;
	}
	.development .imgbox{
		float: none;
		width: 100%;
	}
	.development .history-list{
		float: none;
		width: 100%;
		margin-top: 30px;
	}
	.development .history-list ul li:nth-child(odd) .txtbox{
		padding-right: 40px;
	}
	.development .history-list ul li:nth-child(even) .txtbox{
		padding-left: 40px;
	}
}
@media screen and (max-width: 640px){
	.development .content{
		padding-bottom: 40px;
	}
	.development .history-list ul li{
		margin-bottom: 20px;
	}
	.development .history-list ul li:nth-child(odd) .txtbox{
		padding-right: 30px;
	}
	.development .history-list ul li:nth-child(even) .txtbox{
		padding-left: 30px;
	}
}
@media screen and (max-width: 600px){
	.development .history-list::before, .development .history-list:before{
		left: 4px;
		right: auto;
	}
	.development .history-list::after, .development .history-list:after{
		left: 10px;
		right: auto;
	}
	.development .history-list .t-line{
		left: 10px;
		right: auto;
	}
	.development .history-list ul li:nth-child(odd) .txtbox, .development .history-list ul li:nth-child(even) .txtbox{
		float: none;
		width: 100%;
		text-align: left;
		padding-left: 30px;
		padding-right: 0;
	}
	.development .history-list ul li .txtbox::before, .development .history-list ul li .txtbox:before{
		right: auto !important;
		left: 4px !important;
	}
	
	
}