@charset "utf-8";

input[type="button"], input[type="submit"], input[type="reset"] {
	-webkit-appearance: none;
}
textarea {
	-webkit-appearance: none;
}

body{font-family:"思源黑体","Montserrat";}

a{ margin:0px; padding:0px; border:0px; text-decoration:none; color:#555555; font-size:13px;transition: color 0.3s ease 0s;
	-webkit-transform: color 0.3s ease 0s;  -webkit-tap-highlight-color: transparent; outline: none;}
a:hover{ text-decoration:none;transition: color 0.3s ease 0s; -webkit-transform: color 0.3s ease 0s;}
*{ padding:0px; margin:0px; border:0px; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; outline: none;}
/* background:rgba(0,0,0,0);filter:progid:DXImageTransform.Microsoft.gradient(startcolorstr=#7F000000,endcolorstr=#7F000000);*/
li{ list-style:none;}
.clear:after{content: "";display: block;height: 0;clear: both;visibility: hidden;}
.clear{zoom: 1;}/* 触发 hasLayout */
img{ vertical-align: middle;}
input:focus{ outline: none;}/*去除按钮选中的高亮标签*/
textarea:focus{ outline: none;}/*去除文本框选中的高亮标签*/
button:focus{ outline: none;}/*去除按钮选中的高亮标签*/
select:focus{ outline: none;}/*去除下拉框选中的高亮标签*/
img{vertical-align: middle;}
div,p,table,td,ul,li,span,a,ol,input,label{ padding:0px; margin:0px; border:0px;}
input::-ms-input-placeholder{ /* Internet Explorer 10+ */ color:#999999; font-size:13px;}
input::-webkit-input-placeholder{ /* WebKit browsers */ color:#999999; font-size:13px;}
input::-moz-placeholder{ /* Mozilla Firefox 4 to 18 */  color:#999999; font-size:13px;}
input::-moz-placeholder{ /* Mozilla Firefox 19+ */ color:#999999; font-size:13px;}
input::-moz-placeholder{ /* Mozilla Firefox 19+ */ color:#999999; font-size:13px;}
textarea::-webkit-input-placeholder{color:#999999; font-size:14px; font-family:"思源黑体","Montserrat";}

.coverbox{position:relative;display:block;overflow:hidden}
.coverbox .coverimg{width:100%;height:100%;position:absolute;left:0;top:0;background-repeat:no-repeat;background-size:contain;background-position:center;z-index:1;transition:transform .6s ease 0s}
.coverbox .coverimg.cover{background-size:cover}
.coverbox ._bg{width:100%;visibility:hidden;display:block}

.search input::-ms-input-placeholder{ /* Internet Explorer 10+ */ color:#89a4d5; font-size:13px;}
.search input::-webkit-input-placeholder{ /* WebKit browsers */ color:#89a4d5; font-size:13px;}
.search input::-moz-placeholder{ /* Mozilla Firefox 4 to 18 */  color:#89a4d5; font-size:13px;}
.search input::-moz-placeholder{ /* Mozilla Firefox 19+ */ color:#89a4d5; font-size:13px;}
.search input::-moz-placeholder{ /* Mozilla Firefox 19+ */ color:#89a4d5; font-size:13px;}



video::-internal-media-controls-download-button {
	display:none;
}
video::-webkit-media-controls-enclosure {
	overflow:hidden;
}
video::-webkit-media-controls-panel {
	width: calc(100% + 30px);
}


input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px white inset;
}


.fl{ float:left;}
.fr{ float:right;}
/*渐变从左向右*/
.jianbian2{
	height: 200px;
	background: -webkit-linear-gradient(to right,blue, yellow); /* Safari 5.1 - 6.0 */
	background: -o-linear-gradient(to right,blue, yellow); /* Opera 11.1 - 12.0 */
	background: -moz-linear-gradient(to right,blue, yellow); /* Firefox 3.6 - 15 */
	background: linear-gradient(to right,white, yellow); /* 标准的语法（必须放在最后） */
}

/*黑白照片*/
.gray {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray;
}

.gray:hover {
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	filter: grayscale(0%);
	filter: gray;
}
/*圆角5px*/
.radius5{
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	-ms-border-radius:5px;
	-o-border-radius:5px;
	border-radius:5px;
}
/*圆角10px*/
.radius10{
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	-ms-border-radius:10px;
	-o-border-radius:10px;
	border-radius:10px;
}
/*图片变大*/
.tra{
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	filter: scale(1);
	filter: transform;
	transition: all 0.5s ease 0s;
	-webkit-transform: all 0.5s ease 0s;
	cursor:pointer;

}
.tra:hover{
	-webkit-transform: scale(1.15);
	-moz-transform: scale(1.15);
	-ms-transform: scale(1.15);
	-o-transform: scale(1.15);
	filter: scale(1.15);
	filter: transform;
	transition: all 0.5s ease 0s;
	-webkit-transform: all 0.5s ease 0s;
	cursor:pointer;


}
/*透明度50%*/
.opacity5{ filter:alpha(opacity=50);-moz-opacity:0.5; -khtml-opacity:0.5;opacity: 0.5;}


.shadow1{
	-webkit-box-shadow:rgba(0,0,0,0.1) 0px 0px 5px;
	-moz-box-shadow:rgba(0,0,0,0.1) 0px 0px 5px;
	-ms-box-shadow:rgba(0,0,0,0.1) 0px 0px 5px;
	-o-box-shadow:rgba(0,0,0,0.1) 0px 0px 5px;
	box-shadow:rgba(0,0,0,0.1) 0px 0px 5px;
}
.shadow2{transition: all 0.3s ease 0s;
	-webkit-transform: all 0.3s ease 0s; }
.shadow2:hover{
	-webkit-box-shadow:rgba(0,0,0,0.1) 0px 0px 15px;
	-moz-box-shadow:rgba(0,0,0,0.1) 0px 0px 15px;
	-ms-box-shadow:rgba(0,0,0,0.1) 0px 0px 15px;
	-o-box-shadow:rgba(0,0,0,0.1) 0px 0px 15px;
	box-shadow:rgba(0,0,0,0.1) 0px 0px 15px;transition: all 0.3s ease 0s;
	-webkit-transform: all 0.3s ease 0s;
}


/*投影*/
.shadow5{
	transition: all 0.3s ease 0s;
	-webkit-transform: all 0.3s ease 0s;
}

.shadow7{
	transition: all 0.3s ease 0s;
	-webkit-transform: all 0.3s ease 0s;
}
.shadow7:hover{
	-webkit-box-shadow:rgba(0,0,0,0.5) 0px 0px 5px;
	-moz-box-shadow:rgba(0,0,0,0.5) 0px 0px 5px;
	-ms-box-shadow:rgba(0,0,0,0.5) 0px 0px 5px;
	-o-box-shadow:rgba(0,0,0,0.5) 0px 0px 5px;
	box-shadow:rgba(0,0,0,0.5) 0px 0px 5px;
	transition: all 0.3s ease 0s;
	-webkit-transform: all 0.3s ease 0s;
}


.shadow1_1{
	-webkit-box-shadow:rgba(0,0,0,0.5) 0px 0px 5px;
	-moz-box-shadow:rgba(0,0,0,0.5) 0px 0px 5px;
	-ms-box-shadow:rgba(0,0,0,0.5) 0px 0px 5px;
	-o-box-shadow:rgba(0,0,0,0.5) 0px 0px 5px;
	box-shadow:rgba(0,0,0,0.5) 0px 0px 5px;
	transition: all 0.3s ease 0s;
	-webkit-transform: all 0.3s ease 0s;
}


.shadow5:hover{
	-webkit-box-shadow:rgba(0,0,0,0.08) 0px 0px 15px;
	-moz-box-shadow:rgba(0,0,0,0.08) 0px 0px 15px;
	-ms-box-shadow:rgba(0,0,0,0.08) 0px 0px 15px;
	-o-box-shadow:rgba(0,0,0,0.08) 0px 0px 15px;
	box-shadow:rgba(0,0,0,0.08) 0px 0px 15px;
	transition: all 0.3s ease 0s; -webkit-transform: all 0.3s ease 0s;
}

.shadow8{
	-webkit-box-shadow:rgba(0,0,0,0.05) 5px 5px 5px;
	-moz-box-shadow:rgba(0,0,0,0.05) 5px 5px 5px;
	-ms-box-shadow:rgba(0,0,0,0.05) 5px 5px 5px;
	-o-box-shadow:rgba(0,0,0,0.05) 5px 5px 5px;
	box-shadow:rgba(0,0,0,0.05) 5px 5px 5px;
	transition: all 0.5s ease 0s;
	-webkit-transform: all 0.5s ease 0s;
}


.shadow6{
	-webkit-box-shadow:rgba(0,0,0,0.3) 5px 5px 60px;
	-moz-box-shadow:rgba(0,0,0,0.3) 5px 5px 60px;
	-ms-box-shadow:rgba(0,0,0,0.3) 5px 5px 60px;
	-o-box-shadow:rgba(0,0,0,0.3) 5px 5px 60px;
	box-shadow:rgba(0,0,0,0.3) 5px 5px 60px;
	transition: all 0.5s ease 0s;
	-webkit-transform: all 0.5s ease 0s;
}

/*投影*/
.shadow10{
	-webkit-box-shadow:rgba(0,0,0,0.13) 0px 0px 10px;
	-moz-box-shadow:rgba(0,0,0,0.13) 0px 0px 10px;
	-ms-box-shadow:rgba(0,0,0,0.13) 0px 0px 10px;
	-o-box-shadow:rgba(0,0,0,0.13) 0px 0px 10px;
	box-shadow:rgba(0,0,0,0.13) 0px 0px 10px;
}
/*图片居中*/
.center{
	-webkit-align-items: center;
	display: -webkit-flex;
	-webkit-justify-content: star;
}

/*图片居中2*/
.vertical{
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-moz-flex;
	display:-ms-flexbox;
	display:flex;
	/* 水平居中*/
	-webkit-box-align:center;
	-moz-box-align:center;
	-ms-flex-pack:center;
	/* IE 10 */
	-webkit-justify-content:center;
	-moz-justify-content:center;
	justify-content:center;
	/* IE 11+,Firefox 22+,Chrome 29+,Opera 12.1*/
	/* 垂直居中 */
	-webkit-box-pack:center;
	-ms-flex-align:center;
	-moz-box-pack:center;
	/* IE 10 */
	-webkit-align-items:center;
	-moz-align-items:center;
	align-items:center;

}






/*图片翻转*/
.flip{
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: all 0.5s ease;
	-webkit-transform: all 0.5s ease;
}
.flip:hover{
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);
	transition: all 0.5s ease; -webkit-transform: all 0.5s ease;
	cursor:pointer;
}


.layui-laypage{display:flex;font-size:14px;color:#333;align-items:center;justify-content:center;}
.layui-laypage a{font-size:14px;color:#333;transition: all .35s;line-height: 30px;padding:0 13px;background:#fff;text-align:center;border:#f5f5f5 solid 1px;margin:0 10px;}
.layui-laypage em{font-style:normal;}
.layui-laypage a, .layui-laypage span{border: 1px solid #e2e2e2;}
.layui-laypage a, .layui-laypage span:last-child{border: none;}
.layui-laypage .layui-laypage-curr .layui-laypage-em{background:#0356c8}
.layui-laypage-curr{background:#0356c8;font-size:14px;color:#fff;line-height: 30px;padding:0 13px;text-align:center;margin:0 10px}
.layui-laypage-disabled em{font-style:inherit;color: #aaa;}
.layui-laypage-curr em{color: #fff;}
.layui-laypage-curr:hover{background:#0356c8;color:#fff}
.layui-laypage .layui-laypage-limits{border: none;}
.layui-laypage .layui-laypage-count{border: none;}
.layui-laypage-limits select{background:#fff;height:35px;font-size:14px;color:#333;line-height: 30px;padding:0 13px;text-align:center;border:#f5f5f5 solid 1px;margin:0 10px;background:#f5f5f5}
#goPageId{background:#f5f5f5;width:50px;font-size:1px;color:#333;line-height: 30px;padding:0 13px;text-align:center;border:#f5f5f5 solid 1px;margin:0 10px}
.layui-laypage-btn{background:#f5f5f5;font-size:14px;color:#333;transition: all .35s;line-height: 30px;padding:0 13px;text-align:center;border:#fff solid 1px;margin:0 10px}
.layui-laypage-btn:hover{background:#0356c8;color:#fff}
.layui-laypage-disabled{font-size:14px;color:#333;line-height: 30px;padding:0 13px;text-align:center;margin:0 10px;background:#f5f5f5;border:none;}
.layui-laypage a:hover{background:#0356c8;color:#fff}
.layui-laypage-limits{display: none;}
.layui-laypage a:nth-child(6){display: none;}
.layui-laypage a:nth-child(7){display: none;}
.layui-laypage a:nth-child(8){display: none;}



/* 公共样式 */
.clearfloat{display: block;clear: both; height: 0px;margin: 0px;padding: 0px; border: 0px;}
.m-header-nav{display: none;}
.publicdv{margin: 60px auto;}
.container{width: 1400px;margin: 0 auto;}
.swiper-button-next:after, .swiper-button-prev:after{display: none;}

/*分页*/
.paging{display: flex; justify-content: space-around; align-items: center;}

/***************************************首页 Start*******************************************************/

/* 导航 */
header{width:100%;height:95px;transition:.6s;position:fixed!important;left:0;right:0;top:0;z-index:99;border-bottom: 1px solid #ffffff61;position:relative;background:#fff}

header .containers{height:95px;padding:0 35px;display:flex;justify-content:space-between;align-items:center}
header .hdtop_logo{height:95px;display:flex;align-items:center;width: 20%;}
header .logo{flex:1;height:100%;background:url(../images/logo.png) no-repeat left center;background-size:contain;display:block;transition:.6s}
header .hdtop_logo a{display:block}
header .hdtop_logo a img{}

header .hdtop-nav{height:100%;display:flex;align-items:center;justify-content:space-between}
header .hdtop-nav nav{height:100%;display:flex;align-items:center;margin-right:5px}
header .hdtop-nav nav ul{height:100%;display:flex;align-items:center}
header .hdtop-nav nav ul li{transition: all .35s; -o-transition: all .35s; -ms-transition: all .35s; -moz-transition: all .35s; -webkit-transition: all .35s;}
header .hdtop-nav nav ul li{height:100%;display:flex;align-items:center;padding:0 35px;position: relative;}
header .hdtop-nav nav ul li:hover a{color: #ff6a00;}
header .hdtop-nav nav ul li a{height:100%;font-size:16px;color:white;display:flex;align-items:center}

header .hdtop-nav .header_nac::after{content:'';display:block;width:20px;height:2px;background:#fff;position:absolute;left:50%;transform:translateX(-50%);z-index:5;bottom:20px;width:0;transition:.6s}
header .hdtop-nav .active .header_nac::after,header .hdtop-nav nav ul li:hover a:after{width:20px;}
header.active .header_nac::after,header .hdtop-nav nav ul li:hover a::after{background-color:#ce2520}
header .hdtop-nav nav ul li:hover .twolevel{display: flex!important;}
header .hdtop-nav nav ul li .twolevel{display: none;width: 180px;z-index: 999999999;overflow: hidden;position: absolute;top: 95px;right: -24px;background-color: #fff;align-items: center;height: auto;flex-wrap: wrap;flex-direction: column;justify-content: flex-start;align-content: center;}

header .hdtop-nav nav ul li .twolevel li{display: block;text-align: center;padding: 0;width: 100%;}
header .hdtop-nav nav ul li .twolevel li a:hover{background-color: #ce2520;color:#fff;}
header .hdtop-nav nav ul li .twolevel li a{color: #666;display: block;padding: 12px 0;width: 100%;transition: all 0.35s;-webkit-transform: all 0.35s;font-size: 14px;line-height: unset;}
header .hdtop-nav nav ul li a:before{background:#333333!important;}
header .hdtop-nav .separator{width: 1px;height: 16px;color: #ffffff61;background-color: #ffffff61;}
header .hdtop-nav .language{display:flex;align-items:center;padding:0 18px;position: relative;height: 100%;}
header .hdtop-nav .language span{color: white;font-size: 16px;margin-right: 5px;padding-right: 20px;background:url(../images/sjxicon.png) no-repeat right;background-size: 25px;}
header .hdtop-nav .language img{height: auto;width: 25px;}
header .hdtop-nav .language .lang-list{position: absolute; top: 95px; left: 7px; background-color: #fff; }
header .hdtop-nav .language .lang-list:before{content: ""; display: inline-block; transition: all 0s; width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-bottom: 10px solid #ce2520; position: absolute; top: -10px; left: -5px; right: 0; margin: 0 auto; }
header .hdtop-nav .language .lang-list li{}
header .hdtop-nav .language .lang-list li a{font-size: 13px; color:#333; display: block; padding: 10px 20px;transition: background-color 0.5s;}
header .hdtop-nav .language .lang-list li a:hover{background-color: #ce2520; color: #fff;}
header .hdtop-nav .language .lang-list:hover:before{border-bottom: #007AFF;}


header .hdtop-nav .search{height:100%;display:flex;align-items:center;cursor: pointer;}
header .hdtop-nav .search a{display:flex;align-items:center;width: 22px;height: 22px;background:url(../images/search.png) no-repeat center;background-size: 22px; }
header .hdtop-nav .search a img{width:22px;height:auto}
header.transparent:not(.bgf){background:0 0}
header.transparent:not(.bgf) .header_nac{color:#fff}
header.bgf .hdtop-nav,header:hover .header_nac{color:#333}
header.bgf .hdtop-nav nav ul li a,header.bgf .hdtop-nav .language span{color:#333}
header.bgf .logo{background-image:url(../images/logo2.png)}
header.bgf  .hdtop-nav .header_nac::after{background: #ce2520;}
header.bgf .hdtop-nav .language span{background:url(../images/sjxicon2.png) no-repeat right;background-size: 25px;}
header.bgf .hdtop-nav .search a{background:url(../images/search2.png) no-repeat center;background-size: 22px; }
/* 搜索框 */
#search{position:fixed; width:100%; height:100%; left:0; top: 0; right:0; background:rgba(0,0,0,.5); display:none; align-items:center; justify-content:center; z-index:50;}
#search.on{display:flex;}
#search .search_content{ width:50%;}
#search .search_content .search_content_top{ position:relative; }
#search .search_content .search_content_top .search_close{ position:absolute; right:0; top:-60px; color:#fff; font-size:30px;}
#search .search_content .search_content_bottom{ display:flex; align-items:center; justify-content:center;}
#search .search_content input[type="search"]{ width:80%; background:#fff; height:60px; font-size:16px; color:#333; padding:0px 20px;}
#search .search_content input[type="submit"]{ width:20%; background:#0357c9; height:60px; font-size:16px; color:white; cursor:pointer;}


/* 轮播图 */
.indexbanner{ position:relative;width: 100%;}
.indexbanner .hdbanners{width: 100%;}
.indexbanner .hdbanners .banner_list .banner_list_img img{ width:100%; height:890px;}
.indexbanner .hdbanners .banner_list .banner_list_txt{text-align:center;position:absolute;max-width: 80%;left:0;right:0;margin:0 auto;top:0;display:flex;flex-direction:column;justify-content:center;height: calc(100%);}
.indexbanner .hdbanners .banner_list .banner_list_txt dd{font-size: 28px;font-weight: 500;color: #ffffff;margin-bottom: 40px;text-transform: uppercase;letter-spacing: -1px;}
.indexbanner .hdbanners .banner_list .banner_list_txt dt{font-size: 52px;font-weight: bold;color: #fff;line-height: 68px;margin-bottom: 30px;width:100%;padding: 0;display: inline-block;}
.indexbanner .hdbanners .banner_list .banner_list_txt a{ font-size:14px; color:#fff;margin: 0 auto; border: 1px solid #ffffff61;display:flex; align-items:center; justify-content:center; width:160px; height:45px;}
.indexbanner .hdbanners .banner_list .banner_list_txt a:hover{background: #0159b2; color: #fff;border: 1px solid #0159b2;}
.indexbanner .hdbanners .banner_list .banner_list_txt a img{width: 22px;height: auto;}

.indexbanner .hdbanners .swiper-pagination{bottom:50px;}
.indexbanner .swiper_pnext::after{font-size:20px;color:#980201}
.indexbanner .swiper_pnext:hover{background-color:#980201}
.indexbanner .swiper_pnext:hover::after{color:#fff}
.indexbanner .swiper-button-prev{position: absolute; left: 50px; top:45%; margin-top: .5rem; width: 50px; height:50px;z-index:9;outline: none;}
.indexbanner .swiper-button-next{position: absolute; right: 50px; top: 45%; margin-top: .5rem; width: 50px; height: 50px; z-index:9;outline: none;}
.indexbanner:hover .swiper-button-prev{opacity:1;background: url(../images/banner_left.png) no-repeat center;background-size: 50px; }
.indexbanner:hover .swiper-button-next{opacity:1;background: url(../images/banner_right.png) no-repeat center;background-size: 50px;} 

.indexbanner .hdbanners .swiper-pagination .swiper-pagination-bullet{background:0 0;opacity:1;width:40px;height:40px;margin:0 7px!important;position:relative;transition:.6s}
.indexbanner .hdbanners .swiper-pagination .swiper-pagination-bullet::before{content:'';display:block;border:1px solid transparent;width:6px;height:6px;position:absolute;left:50%;top:50%;transform:translateX(-50%) translateY(-50%);z-index:5;border-radius:50%;transition:.6s}
.indexbanner .hdbanners .swiper-pagination .swiper-pagination-bullet::after{content:'';display:block;width:6px;height:6px;background:#fff;border-radius:50%;position:absolute;left:50%;top:50%;transform:translateX(-50%) translateY(-50%);z-index:5}
.indexbanner .hdbanners .swiper-pagination .swiper-pagination-bullet-active{background:0 0!important}
.indexbanner .hdbanners .swiper-pagination .swiper-pagination-bullet-active::before{border-color:#fff;content:'';display:block;position:absolute;width:20px;height:20px;}
.indexbanner .swiper-button-prev:hover,.indexbanner:hover .swiper-button-next:hover{background-color:#0159b2}
/* 关于我们 */

@media (min-width:992px){
.index_company{display:flex;align-items:stretch}
.index_company .content,.index_company .imgbox{width:50%}
.index_company .content{padding:50px 6vw 50px 100px}
}
@media (min-width:992px) and (max-width:1360px){.index_company .content{padding:80px 6vw 80px 100px}
}
.index_company .imgbox{background:url(../images/logo_lg.jpg) no-repeat center center;background-size:cover}
.index_company h2{font-size:36px;margin-bottom:32px;color:#fff}
@media (max-width:992px){.index_company h2{font-size:24px}
.wapnone{display:none;}
}
@media (max-width:768px){.index_company h2{font-size:22px}
}
.index_company .content{background:url(../images/logo_bg.jpg) no-repeat center center;background-size:cover;color:#fff;text-align:left}
@media (max-width:991px){.index_company .content{padding:100px 8vw}
}
.index_company .content .desc{font-size:16px;line-height:1.8}
@media (max-width:640px){.index_company .content .desc{font-size:14px}
}
.index_company .inner{max-width:666px}
.index_company .datas{font-size:16px;display:-webkit-flex;display:flex;display:-webkit-box;display:box;-webkit-align-items:center;align-items:center;-webkit-box-align:center;box-align:center;-webkit-box-pack:justify;box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;margin:60px 0 80px}
.index_company .datas .item{min-width:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-shrink:1;-ms-flex-negative:1;flex-shrink:1}
.index_company .datas b{font-size:60px;font-family:dinpro;font-weight:400}
.round{width:80px;height:80px;border-radius:50%;border:1px dotted #fff;text-align:center;color:#fff;transition:.6s;display:inline-block}
.round .iconfont{font-size:35px;line-height:80px;}
.round:hover{background:#fff;color:#0058b2}
@media (max-width:768px){.index_company .datas{font-size:14px}
.index_company .datas b{font-size:30px}
}


/* 产品展示 */
.indexproduct{padding:114px 0;}
.indexproduct .pdt-topbox{padding-bottom:30px;border-bottom: 1.5px solid #2b2b2b61;display:flex;justify-content:space-between;align-items:flex-end;}
.indexproduct .pdt-topbox .left-title{}
.indexproduct .pdt-topbox .left-title h1{font-size:34px;color:#333;font-weight:500}
.indexproduct .pdt-topbox .right-tnav{}
.indexproduct .pdt-topbox .right-tnav ul{display:flex}
.indexproduct .pdt-topbox .right-tnav ul li{display:block;position: relative;margin:0 10px;}
.indexproduct .pdt-topbox .right-tnav ul li.active:after{position:absolute;content:"";bottom:-32px;left:0px;width:100%;height:2px;border-radius: 50px;background:#FFFFFF;transition:all .3s}
.indexproduct .pdt-topbox .right-tnav ul li:nth-child(1){margin-left:0}
.indexproduct .pdt-topbox .right-tnav ul li.on:after{position:absolute;content:"";bottom:-32px;left:0px;width:100%;height:2px;background:#000000;transition:all .3s}
.indexproduct .pdt-topbox .right-tnav ul li:after{position:absolute;content:"";bottom:-32px;left:0px;width:0px;height:2px;background:#FFFFFF;transition:all .3s}
.indexproduct .pdt-topbox .right-tnav ul li:hover:after{width:100%;transition:all .35s;-o-transition:all .35s;-ms-transition:all .35s;-moz-transition:all .35s;-webkit-transition:all .35s}
.indexproduct .pdt-topbox .right-tnav ul li a{color:#333;font-size:16px;display:block;padding:10px;}
.indexproduct .pdt-topbox .right-tnav ul li:last-child{margin-right: 0;}
.indexproduct .pdt-bottombox{}
.indexproduct .pdt-bottombox{}

.indexproduct .pdt-bottombox{margin-top:50px;position: relative;}
.indexproduct .pdt-bottombox .pdtlistbanner{}

.indexproduct .pdt-bottombox ul{}
.indexproduct .pdt-bottombox ul li{position: relative;}
.indexproduct .pdt-bottombox .pdtbanners{}
.indexproduct .pdt-bottombox .pdtbanners .product-img{height: 296px;}
.indexproduct .pdt-bottombox .pdtbanners .product-img img{width: 100%;height: 100%;}
.indexproduct .pdt-bottombox .pdtbanners .product-infos{padding: 40px 30px;background-color: #1362b9;}
.indexproduct .pdt-bottombox .pdtbanners .product-infos .pdtinfo-title{margin-bottom: 20px;}
.indexproduct .pdt-bottombox .pdtbanners .product-infos .pdtinfo-title h1{font-size: 20px;font-weight: 500;color: #ffffffbf;text-align: center;}
.indexproduct .pdt-bottombox .pdtbanners .product-infos .pdtinfo-desc{}
.indexproduct .pdt-bottombox .pdtbanners .product-infos .pdtinfo-desc p{font-size: 16px;line-height: 30px;color: #ffffffbf;overflow: hidden; text-overflow: ellipsis; display: -webkit-box; line-clamp: 3;-webkit-line-clamp: 3; -webkit-box-orient: vertical; display: -moz-box; -moz-line-clamp: 3; -moz-box-orient: vertical; word-wrap: break-word; word-break: break-all; white-space: normal;}


/* 案例展示 */
.indexCase{padding:40px 0 50px;background:#1362b9;color:#fff;text-align:center}
.indexCase .splitlist { line-height: 50px; white-space: pre-wrap; }
.indexCase .ititle h5 { font-size: 34px; font-weight: 500;margin-top: 30px; }
.indexCase .ititle h6 { font-size: 60px; font-weight: 700; text-transform: uppercase; }

.indexCase .swiper-case{position:relative;margin-top:50px;overflow:hidden}
.indexCase .swiper-case .casenext,.indexCase .swiper-case .caseprev{position:absolute;z-index:3;font-size:40px;cursor:pointer;-webkit-transition:.5s;transition:.5s;-webkit-transform:translateY(-.18rem);transform:translateY(-.18rem)}
.indexCase .swiper-case .casenext{left:50%;margin-left:600px;top: 164.5px;}
.indexCase .swiper-case .casenext:hover{left:50.5%}
.indexCase .swiper-case .caseprev{right:50%;margin-right:600px;top: 164.5px;}
.indexCase .swiper-case .caseprev:hover{right:50.5%}
.indexCase .swiper-case .swiper-casepag{position:absolute;line-height:0;font-size:0;bottom: auto;top: 420px;height:3px;z-index:99}
.indexCase .swiper-case .swiper-casepag section{cursor:pointer;width:20px;height:3px;-webkit-transition:.5s;transition:.5s;opacity:.3;border-radius:0;background:#fff}
.indexCase .swiper-case .swiper-casepag section.swiper-pagination-bullet-active{width:60px;opacity:.5}
.indexCase .swiper-case .swiper-wrapper .swiper-slide{position:relative}
.indexCase .swiper-case .swiper-wrapper .swiper-slide.swiper-slide-active a{display:block}
.indexCase .swiper-case .swiper-wrapper .swiper-slide.swiper-slide-active:hover figure img{-webkit-transform:scale(1.1);transform:scale(1.1)}
.indexCase .swiper-case .swiper-wrapper .swiper-slide.swiper-slide-active figure{opacity:1}
.indexCase .swiper-case .swiper-wrapper .swiper-slide.swiper-slide-active .font{opacity:1}
.indexCase .swiper-case .swiper-wrapper .swiper-slide a{display:none}
.indexCase .swiper-case .swiper-wrapper .swiper-slide figure{opacity:.15;-webkit-transition:opacity .5s;transition:opacity .5s;overflow:hidden}
.indexCase .swiper-case .swiper-wrapper .swiper-slide figure img{-webkit-transition:.5s;transition:.5s}
.indexCase .swiper-case .swiper-wrapper .swiper-slide .font{opacity:0;-webkit-transition:opacity .5s;transition:opacity .5s}
.indexCase .swiper-case .swiper-wrapper .swiper-slide .font h5{margin:70px 0 20px;font-size:24px;}
.indexCase .swiper-case .swiper-wrapper .swiper-slide .font p{opacity:.45;width:90%;margin-left:auto;margin-right:auto}

@media screen and (max-width:768px){
    .indexCase{padding:20px 0px;}
    .indexCase .ititle h6{font-size:18px}
    .indexCase .ititle h5{font-size:1.6rem;margin:0px;}
    .indexCase .swiper-case{margin-top:20px;}
    .indexCase .swiper-case .swiper-wrapper .swiper-slide .font h5{font-size:18px;}
    .indexCase .swiper-case .swiper-casepag{top: 310px;}
}

/* 合作伙伴 */
.ilogos{text-align:center;padding:70px 0 120px;width:88vw;margin:0 auto;max-width:1800px}
.ilogos h2{font-size:30px;margin-bottom:56px}
.ilogos span{ font-size: 16px;color: #0058b2;font-weight: 500;}
@media (max-width:640px){.ilogos h2{font-size:1.6rem}
}
.ilogos h2::after{content:'';display:block;width:48px;height:3px;background:#999;margin:15px auto 0}
.ilogos .bd{padding-left:6%;padding-right:6%;width:100%;overflow:visible;margin-bottom:80px;position:relative}
.ilogos .swiper{width:100%;max-width:1400px;margin-left:auto;margin-right:auto}
.ilogos .swiper .swiper-wrapper{white-space:nowrap}
.ilogos .swiper .swiper-slide{width:18%;margin:0 1%;}
.ilogos .swiper .swiper-slide img{width:100%;}
@media (max-width:1400px){.ilogos .swiper .swiper-slide{width:20%}
}
@media (max-width:992px){.ilogos .swiper .swiper-slide{width:33.3%}
}
@media (max-width:768px){.ilogos .swiper .swiper-slide{width:50%}
}
.ilogos .sbtn .iconfont{color:#999;font-size:36px;outline:0}
.ilogos .sbtn .left{transform: rotate(180deg);}
.ilogos .sbtn:hover .iconfont{color:#1261b9}
.ilogos .swiper-button-prev{left:2vw}
.ilogos .swiper-button-next{right:2vw}
.ilogos .link{width:180px;line-height:48px;display:inline-block;font-size:16px;margin:0 12px;box-sizing:content-box}
.ilogos .btn_bg{border:1px solid #1261b9;background:#1261b9;color:#fff;transition:all .4s ease 0s}
.ilogos .btn_bg:hover{color:#fff;}
.ilogos .btn_bor{border:1px solid #1261b9;color:#1261b9;transition:all .4s ease 0s}
.ilogos .btn_bor:hover{background:#1261b9;color:#fff;}

/* 新闻中心 */
.indexnews{padding:114px 0;background-color: #f0f4f7;}
.indexnews .news-topbox{padding-bottom:30px;border-bottom: 1.5px solid #dcdcdc;display:flex;justify-content:space-between;align-items:flex-end;}
.indexnews .news-topbox .left-title{}
.indexnews .news-topbox .left-title h1{font-size:34px;color:#333333;font-weight:500}
.indexnews .news-topbox .right-tnav{}
.indexnews .news-topbox .right-tnav ul{display:flex}
.indexnews .news-topbox .right-tnav ul li{display:block;position: relative;margin:0 10px;}
.indexnews .news-topbox .right-tnav ul li.active:after{position:absolute;content:"";bottom:-31px;left:0px;width:100%;height:2px;border-radius: 50px;background:#FFFFFF;transition:all .3s}
.indexnews .news-topbox .right-tnav ul li:nth-child(1){margin-left:0}
.indexnews .news-topbox .right-tnav ul li.on:after{position:absolute;content:"";bottom:-31px;left:0px;width:100%;height:2px;background:#2174bb;transition:all .3s}
.indexnews .news-topbox .right-tnav ul li:after{position:absolute;content:"";bottom:-31px;left:0px;width:0px;height:2px;background:#2174bb;transition:all .3s}
.indexnews .news-topbox .right-tnav ul li:hover:after{width:100%;transition:all .35s;-o-transition:all .35s;-ms-transition:all .35s;-moz-transition:all .35s;-webkit-transition:all .35s}
.indexnews .news-topbox .right-tnav ul li a{color:#333333;font-size:16px;display:block;padding:10px;}
.indexnews .news-topbox .right-tnav ul li.active a{color:#2174bb;}
.indexnews .news-topbox .right-tnav ul li:hover a{color:#2174bb;}
.indexnews .news-topbox .right-tnav ul li:last-child a{margin-right: 0;}

.indexnews .news-bottombox{margin-top: 70px;}
.indexnews .news-bottombox .newsbanners{}
.indexnews .news-bottombox .newsbanners .bd{}
.indexnews .news-bottombox ul{}
.indexnews .news-bottombox li{width: 32%; margin-right: 2%;padding: 30px;margin-bottom: 33px;float: left;background-color: white;position: relative;}
.indexnews .news-bottombox li:first-child{width: 440px;padding: 0;}
.indexnews .news-bottombox li:first-child .newslist{width: 440px;padding:10px 30px;position: absolute;top: 75%;z-index: 9999999999;}
.indexnews .news-bottombox li:first-child img{width: 100%;} 
.indexnews .news-bottombox li:first-child .newslist .news-desc{display: none;}
.indexnews .news-bottombox li:first-child .newslist .news-title h1{color: white;}
.indexnews .news-bottombox li:first-child .newslist .news-time time{color: white;}
.indexnews .news-bottombox li:nth-child(3){margin-right: 0;}
.indexnews .news-bottombox li:nth-child(5){margin-right: 0;}
.indexnews .news-bottombox li a .news-img{display: none;}
.indexnews .news-bottombox li:first-child .news-img{height: 500px;display: block;position: relative;}
.indexnews .news-bottombox li:first-child .news-img img{width: 100%; height: 100%; object-fit: cover; }
.indexnews .news-bottombox li a{position: relative;display: block}
.indexnews .news-bottombox li a .news-img img{}
.indexnews .news-bottombox li a .news-title{}
.indexnews .news-bottombox li a .news-title h1{font-size: 18px;margin-bottom: 20px;color: #222222;font-weight: 500;white-space: nowrap; text-overflow: ellipsis; overflow: hidden; word-break: break-all;}
.indexnews .news-bottombox li a .news-desc{height: 110px;}
.indexnews .news-bottombox li a .news-desc p{font-size: 15px;line-height: 28px;margin-bottom: 25px;color: #666666;overflow: hidden; text-overflow: ellipsis; display: -webkit-box; line-clamp: 3;-webkit-line-clamp: 3; -webkit-box-orient: vertical; display: -moz-box; -moz-line-clamp: 3; -moz-box-orient: vertical; word-wrap: break-word; word-break: break-all; white-space: normal;}
.indexnews .news-bottombox li a .news-time{}
.indexnews .news-bottombox li a .news-time time{font-size: 16px;color: #999999;}


/* 底部导航 */

.Join2{display:flex;align-items:center;border-bottom:.052vw solid #313131}
.Join2 .Join2_left,.Join2 .Join2_right{width:50%;height:7.658vw;display:flex;align-items:center;padding-left:8vw}
.Join2 .Join2_left{background:#1a1a1a}
.Join2 .Join2_left img{width: 260px;}
.Join2 .Join2_right{background:#0058b2;font-size:1.667vw;color:#fff;position:relative;padding-left:7.815vw}
.Join2 .Join2_right::before{content:"";display:inline-block;width:15.6821vw;height:100%;position:absolute;left:0;top:0;background:url(../images/bn4.png) no-repeat 50%/cover}
.Join2 .Join2_right span{position:relative;z-index:3}

.Footer{width:100%;background:#1a1a1a;padding-bottom:4.48vw;clear: both;}
.Footer .Footer_top{padding:4.949vw 0;display:flex;justify-content:space-between; border-bottom: 1px solid #313131;}
.Footer .Footer_top .Footer_top_left{display:flex}
.Footer .Footer_top .Footer_top_left .top_left_list{margin-right:2vw}
.Footer .Footer_top .Footer_top_left .footnava{width: 13%;}
.Footer .Footer_top .Footer_top_left .footnava2{width: 45%;}
.Footer .Footer_top .Footer_top_left .top_left_list .left_list_dd{margin-bottom:2.865vw}
.Footer .Footer_top .Footer_top_left .top_left_list .left_list_dd a{font-size:1.042vw;color:#fff}
.Footer .Footer_top .Footer_top_left .top_left_list .left_list_dt p{margin-bottom:.625vw;font-size:.833vw;color:#999;}
.Footer .Footer_top .Footer_top_left .top_left_list .left_list_dt p:last-child{margin-bottom:0}
.Footer .Footer_top .Footer_top_left .top_left_list .left_list_dt p a{font-size:.833vw;color:#999}
.Footer .Footer_top .Footer_top_left .top_left_list .left_list_dt p span{float:left;line-height:23px;width:50%;font-style: normal;}
.Footer .Footer_top .Footer_top_left .top_left_list .left_list_dt p span em{font-style:initial;padding-left:5em;}
.Footer .Footer_top .Footer_top_left .top_left_list .left_list_dt p img{margin-right:.833vw}
.Footer .Footer_top .Footer_top_right .top_right_dd{font-size:16px; text-align: center;color:#fff;margin-bottom:2.865vw}
.Footer .Footer_top .Footer_top_right .top_right_dt{text-align:right}
.Footer .Footer_top .Footer_top_right .top_right_dt img{width:130px}
.Footer .Footer_bottom{display:flex;align-items:center;justify-content:space-between;font-size:14px;color:#444;line-height:38px;}
.Footer .Footer_bottom a{font-size:14px;color:#444;margin-left:.781vw}

/******************************************首页 End*****************************************************/



/****************************************关于我们页 Start************************************************/
.header-banner{position:relative;width:100%}
.header-banner-banner.baner-img{width:100%}
.header-banner .baner-img img{width:100%}
.header-banner .banner-infos{position:absolute;top:30%;left:10%;display:block;width:auto;height:35%;width:80%;}
.header-banner .banner-infos .font-bjimg{height: 56px;margin-bottom:30px;display: block;}
.header-banner .banner-infos h2{font-size:36px; color:#fff;line-height:80px;font-weight: 500;}
.header-banner .banner-infos .separator{width:80px;height:3px;margin-bottom:15px;background-color:#fff;}
.header-banner .banner-infos .page-title{margin-bottom:15px}
.header-banner .banner-infos .page-title span{font-size:42px;color:white}
.header-banner .banner-infos .page-nav{float: right;padding-top:6%;}
.header-banner .banner-infos .page-nav ul{display:flex;align-items:center;justify-content:flex-start;color:white}
.header-banner .banner-infos .page-nav ul a{font-size:14px;color:white;padding: 0px 10px;}
.header-banner .banner-infos .page-nav ul i{font-size:15px;color:white;padding-right:10px;}
@media (max-width:768px){
.header-banner .banner-infos h2{font-size: 15px;line-height: 30px;font-weight: normal;}
.Footer .Footer_top .Footer_top_left .top_left_list .left_list_dt p span{width:100%;}    
}
.aboutushdbanner .banner-infos .font-bjimg{background: url(../images/about/fontbjimg.png) no-repeat left;}

.main{}
.main .column-nav{height: 75px;background-color: #f5f5f5;}
.main .column-nav ul{display: flex; justify-content: left; align-items: left;}
.main .column-nav ul li{width: 290px;height: 75px;border: 1px solid #dbdbdb;position: relative;display: flex; justify-content: center; align-items: center;border-right: none;}
.main .column-nav ul li.on{background-color: white;}
.main .column-nav ul li.on:before{content:"";display:inline-block;transition:all 0s;width:0;height:0;border-left:10px solid transparent;border-right:10px solid transparent;border-bottom:10px solid transparent;border-top:10px solid #0058b2;position:absolute;top:-1px;left:0;right:0;margin:0 auto;}
.main .column-nav ul li a{font-size: 15px; width: 100%; height: 100%; color: #555555;display: flex; align-items: center; justify-content: center;}
.main .column-nav ul li a:hover{color:#fff;background:#0058b2;border: 1px solid #0058b2;}
.main .column-nav ul li:last-child{border-right:1px solid #dbdbdb}

.aboutusmain .companyprofile{padding:105px 0}
.aboutusmain .companyprofile .container{}
.aboutusmain .companyprofile .column-title{}
.aboutusmain .companyprofile .column-title span{font-size:16px;color:#0058b2;font-weight:500}
.aboutusmain .companyprofile .column-title h1{font-size:35px;margin-top:5px;margin-bottom:15px;font-weight:500}
.aboutusmain .companyprofile .column-title .separator{width:75px;height:3px;background-color:#0058b2}

.aboutusmain .companyprofile .content-box{}
.aboutusmain .companyprofile .content-box .info-list{width:100%;margin-bottom:55px;display:flex;align-items:center;justify-content:space-between}
.aboutusmain .companyprofile .content-box .info-list .content-text{width:53%}
.aboutusmain .companyprofile .content-box .info-list .content-text p{margin:10px 0;font-size:16px;line-height:30px;color:#898989;text-indent: 2em;}
.aboutusmain .companyprofile .content-box .info-list .content-img{width:45%}
.aboutusmain .companyprofile .content-box .info-list .content-img img{width: 100%;}


.aboutusmain .honorqualification{padding: 100px 0;background-color: #e7e8ea;}
.aboutusmain .honorqualification .container{position: relative;}
.aboutusmain .honorqualification .column-title{}
.aboutusmain .honorqualification .column-title span{font-size:16px;color:#0058b2;font-weight:500}
.aboutusmain .honorqualification .column-title h1{font-size:35px;margin-top:5px;margin-bottom:15px;font-weight:500}

.aboutusmain .honorqualification .honorbanners{margin-top: 55px;}
.aboutusmain .honorqualification .honorbanners .swiper-slide{background-color:white;padding:15px 15px 10px 15px}
.aboutusmain .honorqualification .honorbanners .honor-img{width:auto;height:200px;overflow:hidden;display:flex;justify-content:center;align-items:center;padding-bottom:20px;}
.aboutusmain .honorqualification .honorbanners .partner-img{width:auto;overflow:hidden;display:flex;justify-content:center;align-items:center;padding-bottom:20px;}
.aboutusmain .honorbanners .partner-img img{width: auto; height: 100%; object-fit: cover;}
.aboutusmain .honorbanners .honor-img img{width: auto; height: 100%; object-fit: cover;}
.aboutusmain .honorbanners .honor-title{padding:10px;text-align:center}
.aboutusmain .honorbanners .honor-title span{font-size:16px;font-weight:500;white-space: nowrap; text-overflow: ellipsis; overflow: hidden; word-break: break-all;}
.aboutusmain .honorqualification .container .swiper-button-prev{position: absolute;top: -75px;left: 90%;width: auto;height: auto;padding: 0px 12px;background-color: #f3f5f7;}
.aboutusmain .honorqualification .container .swiper-button-prev img{width: 37px;}
.aboutusmain .honorqualification .container .swiper-button-next{position: absolute;top: -75px;right: 0px;width: auto;height: auto;padding: 0px 12px;background-color: #f3f5f7;}
.aboutusmain .honorqualification .container .swiper-button-next img{width: 37px;}
.listhonor {width:100%; overflow:hidden;background-color: #e7e8ea;}
.listhonor .swiper-slide{    width: 23.5%;float:left; box-shadow: 0px 0px 4px rgba(0,0,0,.1);background: #fff;margin-bottom: 2%;margin-right:1.5%;}
.listhonor .honor-img img{width:100%;}
.listhonor .honor-title{border-top: 1px solid #e5e5e5;}
.listhonor .honorqualification{padding: 30px 0;overflow:hidden;height:auto;}
.aboutusmain .propagandavideo{padding: 100px 0;}
.aboutusmain .propagandavideo .columnnav-list{margin-bottom:55px;}
.aboutusmain .propagandavideo .column-title{}
.aboutusmain .propagandavideo .column-title span{font-size:16px;color:#0058b2;font-weight:500}
.aboutusmain .propagandavideo .column-title h1{font-size:35px;margin-top:5px;margin-bottom:15px;font-weight:500}


.aboutusmain .propagandavideo .propagandavideolist{position: relative;}
.aboutusmain .propagandabanners .propaganda-video{width:100%;height: 260px;overflow:hidden;display:flex;justify-content:center;align-items:center}
.aboutusmain .propagandabanners .propaganda-video img{}
.aboutusmain .propagandabanners .propaganda-video video{width: 100%;height: auto;}

.aboutusmain .propagandabanners .propaganda-infos{width:100%;padding: 33px 30px;background-color: #f9f9f9;}
.aboutusmain .propagandabanners .propaganda-infos .info--top-title{margin-bottom: 28px;}
.aboutusmain .propagandabanners .propaganda-infos .info--top-title span{font-size:17px;font-weight:500;white-space: nowrap; text-overflow: ellipsis; overflow: hidden; word-break: break-all;}
.aboutusmain .propagandabanners .propaganda-infos .info-bottom-box{display: flex; align-items: center; justify-content: space-between;}
.aboutusmain .propagandabanners .propaganda-infos .info-bottom-box .box-list{}
.aboutusmain .propagandabanners .propaganda-infos .info-bottom-box .box-list img{width: 20px;}
.aboutusmain .propagandabanners .propaganda-infos .info-bottom-box .box-list time{font-size: 14px;color: #666666;}
.aboutusmain .propagandabanners .propaganda-infos .info-bottom-box .box-list span{font-size: 14px;color: #666666;}

.aboutusmain .propagandavideo .container .swiper-button-prev{position: absolute;top: -75px;left: 90%;width: auto;height: auto;padding: 0px 12px;background-color: #f3f5f7;}
.aboutusmain .propagandavideo .container .swiper-button-prev img{width: 37px;}
.aboutusmain .propagandavideo .container .swiper-button-next{position: absolute;top: -75px;right: 0px;width: auto;height: auto;padding: 0px 12px;background-color: #f3f5f7;}
.aboutusmain .propagandavideo .container .swiper-button-next img{width: 37px;}


/****************************************企业文化**************************************************/
.about-3{ padding:1rem 0 .33rem; background: url(../images/about-a-bg2.jpg) no-repeat; background-size: cover;}
.about-3-r{max-width: 50%; text-align: justify; }
.about-3-list {position: relative; padding-top: .4rem; flex-wrap: wrap; justify-content: space-between;}
.about-3-list::after{width: 29%; position: absolute; content: '';}
.about-3-list .item{width: 29%; margin-bottom: .89rem; cursor: pointer; padding: .43rem .4rem; border-radius: .2rem;overflow: hidden; background: #FFFFFF;}
.about-3-list .item .item-icon{position: relative; width: .64rem; height: .64rem; overflow: hidden;}
.about-3-list .item .item-icon img{position: absolute; left: 0; top: 0; width: .64rem; height: .64rem;}
.about-3-list .item .item-icon img:nth-child(1){opacity: 1; visibility: visible; }
.about-3-list .item .item-icon img:nth-child(2){opacity: 0; visibility: hidden; }
.about-3-list .item .item-txt{ margin-top: .9rem;}
.about-3-list .item .item-txt .item-txt-p1{font-weight: bold; font-size: 24px;line-height: 33px;color: #212121;}
.about-3-list .item .item-txt .item-txt-p2{ font-size: 16px;line-height: 24px;}


/****************************************关于我们页 End**************************************************/
.pagination{text-align:center;margin-top:30px;clear:both;display: flex;align-items: center;justify-content: center;}
.pagination li{margin:0 5px;float: left;}
@media (max-width:480px){.pagination li{margin:0 2px}
.pagination li>*{padding:5px 12px}
}
.pagination .page-num-current{background:#0058b2;color:#fff;border:0}
.pagination li>a,.pagination li>span{float:none;display:inline-block;cursor:pointer;color:#333;border-radius:0!important;border:0;background:#fdfdfd;padding:10px 15px}


/****************************************产品与服务页 Start***********************************************/
.producthdbanner .banner-infos .font-bjimg{background: url(../images/bjfontimg.png) no-repeat left;}
.productmain {padding: 100px 0;}
.productmain .pdts-list{display: flex;justify-content: space-between;}
.productmain .pdts-list .pdt-sort{width: 340px;}
.productmain .pdts-list .pdt-sort .sort-title{width: 100%; height: 186px; background: url(../images/pdtsortbj.jpg) no-repeat center; align-items: center; justify-content: center; text-align: center; display: flex; flex-direction: column;border-bottom:1px #ffffff6b solid;}
.productmain .pdts-list .pdt-sort .sort-title h1{font-size: 30px;margin: 7px 0;font-weight: 500;color:white;;}
.productmain .pdts-list .pdt-sort .sort-title h3{font-size: 16px;margin: 7px 0;font-weight: 500;color:white;}

.productmain .pdts-list .sort-list{}
.productmain .pdts-list .sort-list .sort-nav{height: 100%;background:#f8f8f8;transition: all .3s;}
.productmain .pdts-list .sort-list .sort-nav .onelevel{display: flex; justify-content: space-between; align-items: center;}
.productmain .pdts-list .sort-list .sort-nav a{font-size: 16px;  display: block;width: 80%;padding: 20px 0;overflow: hidden; color: #ABB1B7;}
.productmain .pdts-list .sort-list .sort-nav a span{margin-left: 30px;color: #323232;display: block;}
.productmain .pdts-list .sort-list .sort-nav .iconfont{position: absolute; right: 20px;top: 50%;transform: translateY(-50%);font-size: 80%;}
.productmain .pdts-list .sort-list .nav-item{position: relative;border-bottom: 1px solid #eaeaea;}
.productmain .pdts-list .sort-list .nav-item.nav-show{}
.productmain .pdts-list .sort-list .nav-item ul{display: none;background:#f8f8f8;}
.productmain .pdts-list .sort-list .sort-nav ul li{border-bottom: 1px solid #eaeaea;}
.productmain .pdts-list .sort-list .sort-nav .twolevel li a{padding: 8px 0;display: block;width: 100%;}
.productmain .pdts-list .sort-list .sort-nav .twolevel li a span{color: #a2a2a2;font-size: 15px;display: block;}
.productmain .pdts-list .sort-list .sort-nav .twolevel li:hover a span{ color:#fff;}
.productmain .pdts-list .sort-list .nav-item  ul.on{display: block;padding-bottom: 10px;}
.productmain .pdts-list .sort-list .nav-more{width: 50px;transition: transform .3s;padding: 15px;}
.productmain .pdts-list .sort-list .nav-show .nav-more{transform:rotate(90deg);}
.productmain .pdts-list .sort-list .nav-show,.nav-item>a:hover{color: #FFF;background:#0159b2;}
.productmain .pdts-list .sort-list .nav-show>a:before,.nav-item>a:hover:before{opacity:1;}
.productmain .pdts-list .sort-list .nav-item li:hover a{color: #FFF;background: #0159b2;}

.productmain .pdts-list .pdt-info{display: inline-block;width: 1010px;}
.productmain .pdts-list .pdt-info .infolist{width: 100%;display: flex;flex-wrap: wrap;}
.productmain .pdts-list .pdt-info .infolist li{width: 31%;background-color: #f8f8f8;margin-right: 3%;display: inline-block;margin-bottom: 3%;}
.productmain .pdts-list .pdt-info .infolist li:nth-child(3n){margin-right: 0;}
.productmain .pdts-list .pdt-info .infolist li{transition: all .35s;-o-transition: all .35s;-ms-transition: all .35s;-moz-transition: all .35s;-webkit-transition: all .35s;}
.productmain .pdts-list .pdt-info .infolist li:hover{box-shadow: 0 0 1px 1px #0058b2;}
.productmain .pdts-list .pdt-info .infolist li:hover span{background: #0058b2;color:#0058b2;}
.productmain .pdts-list .pdt-info .infolist li a{display: block;}
.productmain .pdts-list .pdt-info .infolist li a .pdt-img{margin: 0 auto;text-align: center;width: 100%;height: 194px;}
.productmain .pdts-list .pdt-info .infolist li a .pdt-img img{width: 100%;height: 100%;}
.productmain .pdts-list .pdt-info .infolist li a .title{margin-top: 0;text-align: center;}
.productmain .pdts-list .pdt-info .infolist li a .title span{transition: all .35s;-o-transition: all .35s;-ms-transition: all .35s;-moz-transition: all .35s;-webkit-transition: all .35s;}
.productmain .pdts-list .pdt-info .infolist li a .title span{padding: 18px 5px; font-size: 17px; display: block;font-weight: 500;background-color:#f8f8f8;white-space: nowrap; text-overflow: ellipsis; overflow: hidden; word-break: break-all;}
.productmain .pdts-list .sort-list .sort-nav .nav-show span{color:#fff;}
.productmain .pdts-list .sort-list .nav-item:hover{background-color: #0058b2;}
.productmain .pdts-list .sort-list .nav-item:hover a span,.productmain .pdts-list .sort-list .nav-item:hover .iconfont{color:#fff;}
/****************************************产品与服务页 End*************************************************/



/****************************************产品与服务详情页 Start*******************************************/
.goods_box{padding-top:60px;width:100%;}
.goods_box h2{font-size:36px;margin-bottom:20px}
@media (max-width:992px){.goods_box h2{font-size:24px}
}
@media (max-width:768px){.goods_box h2{font-size:22px}

}
.goods_box_swiper .bd{position:relative;line-height: 30px;color: #333;}
.goods_box_swiper .pnext{margin-top:-50px;color:#333}
.goods_box_swiper .pnext::after{font-size:30px}
.goods_box_swiper .pnext:hover{color:#0058b2}
.goods_box_swiper .swiper-button-prev{left:-90px}
.goods_box_swiper .swiper-button-next{right:-90px}
@media (max-width:1680px){.goods_box_swiper .swiper-button-prev{left:-50px}
.goods_box_swiper .swiper-button-next{right:-50px}
}
.goods_box_swiper .iconfont{color:#999;font-size:36px;outline:0}
.goods_box_swiper .left{transform: rotate(180deg);}
.goods_box_cp2{padding-bottom:100px}
.goods_info{padding:80px 0 0}
.goods_info .inner{border:1px solid #dedede;background:#fff}
.goods_info .tab{border-bottom:1px solid #ededed;height:80px;line-height:80px;font-size:16px}
@media (max-width:640px){.goods_info .tab{height:100px;line-height:100px}
}
.goods_info .tab a{display:inline-block;margin:0 60px; font-size: 18px;}
.goods_info .tab a:hover{color:#0058b2}
@media (max-width:992px){.goods_info .tab a{margin:0 40px}
}
@media (max-width:640px){.goods_info .tab a{margin:0 20px}
}
.goods_info .tab .on{color:#0058b2;position:relative}
.goods_info .tab .on::after{content:'';display:block;position:absolute;width:100%;height:2px;background-color:#0058b2;left:0;bottom:0}
.goods_info .content{padding:60px;}
@media (max-width:1200px){.goods_info .content{padding:40px}
}
@media (min-width:768px){.goods_info .content{display:-webkit-flex;display:flex;display:-webkit-box;display:box;-webkit-align-items:center;align-items:center;-webkit-box-align:center;box-align:center;-webkit-box-pack:justify;box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}
.goods_info .content .image{width:36%;margin-right:14%}
.goods_info .content .info{min-width:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-shrink:1;-ms-flex-negative:1;flex-shrink:1}
}
.goods_info .info{padding-bottom:40px;}
@media (max-width:767px){.goods_info .info{padding-top:50px;}
}
.goods_info .info h2{font-size:36px;position:relative;padding-bottom:10px;margin-bottom:20px}
@media (max-width:992px){.goods_info .info h2{font-size:24px}
}
@media (max-width:768px){.goods_info .info h2{font-size:22px}
}
.goods_info .info h2::after{content:'';display:block;width:32px;height:2px;background-color:#0058b2;position:absolute;left:0;bottom:0}
.goods_info .info .desc{font-size:16px;line-height:1.8;margin-bottom:70px;max-width:668px}
@media (max-width:992px){.goods_info .info .desc{font-size:15px}
}
.goods_info .info .contact{width:200px;height:58px;line-height:58px;text-align:center;background-color:#0058b2;border-radius:200px;color:#fff;display:block;font-size:16px}
@media (max-width:640px){.goods_info .info .contact{width:160px;height:46px;line-height:46px;text-align:center}
}
.goods_info .info .contact:hover{background:#000}
@media (max-width:639px){.goods_box .tablebox{overflow-x:auto;width:100vw;position:relative;left:-4vw;padding-left:4vw}
.goods_box .tablebox .tinner{padding-right:4vw;min-width:680px}
}
.goods_box table{width:100%;background:#fff;text-align:center}
.goods_box table thead{background-color:#0058b2;color:#fff}
.goods_box table td,.goods_box table th{border:1px solid #ccc;padding:8px 16px}


.pdtdetailsmain{padding:105px 0}
.pdtdetailsmain .pdtinfo-list{display:flex;justify-content:space-between;align-items:flex-start}
.pdtdetailsmain .pdtinfo-list .pdtdesc-info{width:50%}
.pdtdetailsmain .pdtinfo-list .product-img{}
.pdtdetailsmain .pdtinfo-list .product-img img{width: 100%;}
.pdtdetailsmain .pdtinfo-list .product-desc{padding:0 50px}
.pdtdetailsmain .pdtinfo-list .product-desc .desc-title{margin-bottom:40px}
.pdtdetailsmain .pdtinfo-list .product-desc .desc-title h1{font-size:32px}
.pdtdetailsmain .pdtinfo-list .product-desc .separator{width:82px;height:4px;margin-bottom:35px;background-color:#0058b2}
.pdtdetailsmain .pdtinfo-list .product-desc .desc-info{}
.pdtdetailsmain .pdtinfo-list .product-desc .desc-info p{font-size:16px;line-height:35px;color:#666666}


.pdtdetailsmain .pdtlist-title{display:flex;align-items:center}
.pdtdetailsmain .pdtlist-title::before{content:"";width:3px;height:25px;display:inline-block;background-color:#0058b2}
.pdtdetailsmain .pdtlist-title h1{font-size:30px;margin-left:15px;font-weight:500}
.pdtdetailsmain .pdtfeatures{margin-top:80px}
.pdtdetailsmain .pdtfeatures .pdt-trait{margin-top:50px}
.pdtdetailsmain .pdtfeatures .pdt-trait ul{display:flex;justify-content:space-between;align-items:center}
.pdtdetailsmain .pdtfeatures .pdt-trait ul li{width:23%;height:243px;border-radius:5px;display:flex;align-content:center;justify-content:center;background-color:#f5f5f5;align-items:center;flex-direction:column;flex-wrap:wrap}
.pdtdetailsmain .pdtfeatures .pdt-trait ul li .trait-img{}
.pdtdetailsmain .pdtfeatures .pdt-trait ul li .trait-img img{width:50px;height:auto}
.pdtdetailsmain .pdtfeatures .pdt-trait ul li .trait-desc{margin:14px 0;padding:0 44px;text-align:center}
.pdtdetailsmain .pdtfeatures .pdt-trait ul li .trait-desc span{font-size:15px;color:#979797}
.pdtdetailsmain .pdtfeatures .pdt-trait ul li .trait-nmb{}
.pdtdetailsmain .pdtfeatures .pdt-trait ul li .trait-nmb span{width:30px;height:30px;font-size:16px;line-height:16px;color:white;display:flex;border-radius:50px;background-color:#0058b2;justify-content:center;align-items:center}


.pdtdetailsmain .recommendpdt{margin-top:80px}
.pdtdetailsmain .recommendpdt .pdt-trait{margin-top: 50px;position: relative;}
.pdtdetailsmain .recommendpdt .pdt-img{height: 222px;overflow: hidden;}
.pdtdetailsmain .recommendpdt .pdt-img img{}
.pdtdetailsmain .recommendpdt .pdt-title{padding: 15px 5px;text-align: center;white-space: nowrap; text-overflow: ellipsis; overflow: hidden; word-break: break-all;}
.pdtdetailsmain .recommendpdt .pdt-title span{font-size: 18px;color: #333333;}

.pdtdetailsmain .recommendpdt .swiper-button-prev{background: url(../images/left-arrow.png) no-repeat center;background-size: 50px; position: absolute; left: -75px; top:32%; margin-top: .5rem; width: 50px; height:50px;z-index:999999999999;outline: none;}
.pdtdetailsmain .recommendpdt .swiper-button-next{background: url(../images/right-arrow.png) no-repeat center;background-size: 50px; position: absolute; right: -75px; top: 32%; margin-top:50px; width: 50px; height: 50px; z-index:999999999999;outline: none;}
.goods_item{background-color:#f8f8f8;text-align:center;padding:20px 20px 40px }
.goods_item:hover{background-color:#e9edf3}
.goods_item:hover .more{background-color:#0058b2;color:#fff}
.goods_item .tit{display:block;overflow:hidden;white-space:nowrap;-o-text-overflow:ellipsis;text-overflow:ellipsis;font-size:24px;margin:26px 0 24px}
.goods_item .tit:hover{color:#0058b2}
.swiper_goods {
    padding-bottom:86px;
    position: relative;
    margin-left: -12px;
    margin-right: -12px;
}
.swiper_goods .swiper-slide{width:23%;margin:0 1%;}
.swiper_goods .swiper-slide img{width:100%;}
@media (max-width:768px){.goods_item .tit{font-size:18px}
.swiper_goods .swiper-slide{width:98%;margin:0 1%;}
.goods_box_cp2{padding-bottom: 20px;overflow: hidden;}
.listhonor .swiper-slide{width:100%;}
}
@media (max-width:640px){.goods_item .tit{font-size:16px}
}
.goods_item .more{color:#0058b2;display:block;display:inline-block;line-height:34px;padding: 0 10px;}

/****************************************产品与服务详情 End***********************************************/



/****************************************新闻中心页 Start*************************************************/
.newshdbanner .banner-infos .font-bjimg{background:url(../images/news/fontbjimg.png) no-repeat left}
.newsmain{}
.newsmain .newsinfo-list{padding:90px 0 70px 0}
.newsmain .newsinfo-list ul{width:100%;display:flex;flex-wrap:wrap;}
.newsmain .newsinfo-list ul li{width:32%;margin-right:2%;margin-bottom:30px;background-color:#f9f9f9}
.newsmain .newsinfo-list ul li:nth-child(3n){margin-right: 0;}
.newsmain .newsinfo-list ul li a{display:block}
.newsmain .newsinfo-list ul li .news-img{height: 260px;overflow: hidden;}
.newsmain .newsinfo-list ul li .news-img img{width:100%}
.newsmain .newsinfo-list ul li .news-title{padding:15px 20px;white-space: nowrap; text-overflow: ellipsis; overflow: hidden; word-break: break-all;}
.newsmain .newsinfo-list ul li .news-title span{font-size:19px;font-weight:bold;}
.newsmain .newsinfo-list ul li .news-desc{padding:0 20px;margin-bottom:10px}
.newsmain .newsinfo-list ul li .news-desc p{font-size:14px;line-height:25px;color:#999999;overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; display: -moz-box; -moz-line-clamp: 2; -moz-box-orient: vertical; word-wrap: break-word; word-break: break-all; white-space: normal;}
.newsmain .newsinfo-list ul li .news-time{display:flex;justify-content:space-between;align-items:center;padding:7px 20px;border-top:1px solid #ebebeb}
.newsmain .newsinfo-list ul li .news-time time{font-size:14px;font-weight:bold;color:#999999}
.newsmain .newsinfo-list ul li .news-time img{width:35px}
/****************************************新闻中心页 End***************************************************/



/****************************************新闻详情页 Start*************************************************/
.newsdetailsmain{padding:80px 0;background-color:#f9f9f9}
.newsdetailsmain .newsdetails-list{padding:80px 58px;background-color:white}
.newsdetailsmain .newsdetails-list .news-hdbox{padding-bottom:30px;border-bottom:1px solid #e5e5e5;text-align:center}
.newsdetailsmain .newsdetails-list .news-hdbox .news-title{margin-bottom:25px}
.newsdetailsmain .newsdetails-list .news-hdbox .news-title h1{font-size:26px;color:#333333}
.newsdetailsmain .newsdetails-list .news-hdbox .news-time{}
.newsdetailsmain .newsdetails-list .news-hdbox .news-time time{font-size:14px;margin-right:25px;color:#666666}
.newsdetailsmain .newsdetails-list .news-hdbox .news-time span{font-size:14px;margin-left:25px;color:#666666}
.newsdetailsmain .newsdetails-list .news-content{padding:20px 0}
.newsdetailsmain .newsdetails-list .news-content p{font-size:14px;margin:30px 0;color:#666666}
.newsdetailsmain .newsdetails-list .news-content img{text-align:center}
.newsdetailsmain .newsdetails-list .news-fynav{margin-top:20px;padding-top:40px;border-top:1px solid #e5e5e5;display:flex;justify-content:space-between;align-items:center}
.newsdetailsmain .newsdetails-list .news-fynav .fynav-list{display:flex;flex-wrap:wrap;flex-direction:column}
.newsdetailsmain .newsdetails-list .news-fynav .fynav-list div{width: 100%;padding:12px 0;font-size: 14px;color: #666666;white-space: nowrap; text-overflow: ellipsis; overflow: hidden; word-break: break-all;}
.newsdetailsmain .newsdetails-list .news-fynav .fynav-list span{padding:12px 0;font-size: 14px;color: #666666;}
.newsdetailsmain .newsdetails-list .news-fynav .fynav-list a{padding:12px 0;font-size: 14px;color: #666666;}
.newsdetailsmain .newsdetails-list .news-fynav .returnlist{}
.newsdetailsmain .newsdetails-list .news-fynav .returnlist a{padding:11px 20px;border:1px solid #e5e5e5;border-radius: 50px;display: flex; align-items: center;}
.newsdetailsmain .newsdetails-list .news-fynav .returnlist span{font-size: 14px;margin-right: 15px;color: #999999;}
.newsdetailsmain .newsdetails-list .news-fynav .returnlist img{width:15px}
/****************************************新闻详情页 End***************************************************/

.list_case_main{padding:130px 0 170px}
@media (max-width:640px){.list_case_main{padding:80px 0 120px}
}
.list_case_main .list_case{padding-bottom:40px}
.list_case{margin-left:-40px!important;margin-right:-40px!important}
.list_case>*{padding-left:40px!important;padding-right:40px!important;margin-bottom:80px}
@media (max-width:1360px){.list_case{margin-left:-30px!important;margin-right:-30px!important}
.list_case>*{padding-left:30px!important;padding-right:30px!important;margin-bottom:60px;}
}
@media (max-width:768px){.list_case{margin-left:-20px!important;margin-right:-20px!important}
.list_case>*{padding-left:20px!important;padding-right:20px!important;margin-bottom:40px}
}
.list_case li{margin-bottom:60px}
@media (max-width:640px){.list_case{margin-left:-.100px!important;margin-right:-.100px!important}
.list_case>*{padding-left:.100px!important;padding-right:.100px!important;margin-bottom:20px}
.list_case li{margin-bottom:20px}
}
.list_case .inner .tit{background: #0058b263;font-size:30px;color:#fff;position: absolute;left:50%;top:50%;transform:translateX(-50%) translateY(-50%);z-index:5;white-space:nowrap;width: 100%;height: 100%;text-align: center;padding-top: 25%;}
@media (max-width:768px){.list_case .inner .tit{font-size:20px}
}
@media (max-width:480px){.list_case .inner .tit{font-size:18px}
}
.list_case .inner .tit::after{content:'';width:0;height:1px;background:#fff;position:absolute;left:50%;transform:translateX(-50%);z-index:5;bottom:100px;transition:.6s}
.list_case .inner:hover{box-shadow:0 rem .100px rgba(0,0,0,.2)}
.list_case .inner:hover .tit::after{width:80px}
.list_news_main{padding:80px 0 160px}

/****************************************联系我们页 Start*************************************************/
.contactusmain{padding:80px 0px;}
.contactushdbanner .banner-infos .font-bjimg{background:url(../images/contactus/fontbjimg.png) no-repeat left}
.contactusmain .column-title span{font-size:16px;color:#0058b2;font-weight:500}
.contactusmain .column-title h1{font-size:35px;margin-top:5px;margin-bottom:15px;font-weight:500;}
.contactusmain .column-title .separator{width:75px;height:3px;background-color:#0058b2}
.contactusmain .contact-list{margin-top: 75px;display: flex; align-items: center; justify-content: center;}
.contactusmain .contact-list .contactinfos{width: 498px;height: 642px;padding: 70px 48px;background-color: #0058b2;}
.contactusmain .contact-list .contactinfos .column-title span{color: white;}
.contactusmain .contact-list .contactinfos .column-title h1{color: white;}
.contactusmain .contact-list .contactinfos .column-title .separator{background-color: white;}
.contactusmain .contact-list .contactinfos .infos-box{margin-top: 25px;}
.contactusmain .contact-list .contactinfos .infos-box .pubinfos{padding: 25px 0;border-bottom: 1px solid #938bb9;display: flex; align-items: center;}
.contactusmain .contact-list .contactinfos .infos-box .pubinfos img{width: 25px;margin-right: 20px;}
.contactusmain .contact-list .contactinfos .infos-box .pubinfos span{font-size: 15px;font-weight: 500;color: white;}
.contactusmain .contact-list .contactinfos .infos-box .pubinfos p{font-size: 15px;margin-bottom: 7px;font-weight: 500;color: white;}
.contactusmain .contact-list .contactinfos .infos-box .pubinfos .conleft{padding-left:75px}
.contactusmain .contact-list .contactinfos .infos-box .pubinfos .conleften{padding-left:35px}
.contactusmain .contact-list .contactinfos .infos-box .pubinfos p:last-child{margin-bottom: 0;}
.contactusmain .contact-list .contactinfos .infos-box .addr{}
.contactusmain .contact-list .contactinfos .infos-box .phone-llst{}
.contactusmain .contact-list .contactinfos .infos-box .email{}
.contactusmain .contact-list .contactinfos .infos-box .fax{}
.contactusmain .contact-list .contactmap{width: 902px;height: 642px;position: relative;}
.contactusmain .contact-list .contactmap .allmap{width: 100%;height: 642px;z-index: 1;}
.contactusmain .contact-list .contactmap #branchoffice{position: absolute;right: 0; bottom: 0;z-index: 99999999999999999;}
.contactusmain .contact-list .contactmap #branchoffice ul{display: flex;align-items: center;}
.contactusmain .contact-list .contactmap #branchoffice ul li{}
.contactusmain .contact-list .contactmap #branchoffice ul li:first-child a{margin-right: 15px;}
.contactusmain .contact-list .contactmap #branchoffice ul li a{padding: 10px 16px;font-size: 15px;display: block;font-weight: 500;background-color: white;}
.contactusmain .contact-list .contactmap #branchoffice ul li.on a{color: white;background-color: #0058b2;}


.contactusmain .onlinemessage{margin-top: 90px;}
.contactusmain .onlinemessage form{width: 100%;margin-top: 50px;display: flex; align-items: flex-start;justify-content: space-between;}
.contactusmain .onlinemessage form .left-input{width: 48%;}
.contactusmain .onlinemessage form .left-input .inputs{width: 100%; margin-bottom: 30px; padding-left: 13px; display: flex; align-items: center; background-color: #eeeeee;}
.contactusmain .onlinemessage form .left-input .inputs span{font-size: 15px;color: #adadad;}
.contactusmain .onlinemessage form .left-input .inputs input{width: 85%;font-size: 15px;padding: 17px 0;background-color: #eeeeee; color: #adadad;}
.contactusmain .onlinemessage form .right-btns{width: 48%;}
.contactusmain .onlinemessage form .right-btns .inputs{width: 100%;margin-bottom: 30px;}
.contactusmain .onlinemessage form .right-btns .inputs textarea{font-size: 15px;padding: 17px 12px;width: 100%;color: #999999;background-color: #eeeeee;}
.contactusmain .onlinemessage form .right-btns .submbtns{display: flex;justify-content: space-around; align-items: center;}
.contactusmain .onlinemessage form .right-btns .submbtns input{width: 40%;font-size: 15px;padding: 17px 0;cursor: pointer;color: #adadad;background-color: #eeeeee;}
.contactusmain .onlinemessage form .right-btns .submbtns input[type="submit"]{color: white;background-color: #0058b2;}
.contactusmain .onlinemessage form .right-btns .submbtns input[type="reset"]{}
/****************************************联系我们页 End***************************************************/



/****************************************下载中心页 Start*************************************************/
.downloadhdbanner .banner-infos .font-bjimg{background:url(../images/download/fontbjimg.png) no-repeat left}
.downloadmain{padding:90px 0;background-color:#f0f4f7}
.downloadmain .down-list{margin-bottom: 80px;}
.downloadmain .down-list ul{}
.downloadmain .down-list ul li{padding: 35px 20px;margin-bottom:32px;border-radius:3px;background-color:white;display:flex;justify-content:space-between;align-items:center}
.downloadmain .down-list ul li:last-child{margin-bottom:0}
.downloadmain .down-list ul li .file-info{display:flex;align-items:center}
.downloadmain .down-list ul li .file-info img{width:24px;margin-right: 15px;}
.downloadmain .down-list ul li .file-info span{font-size:18px}
.downloadmain .down-list ul li .time-btn{display:flex;align-items:center}
.downloadmain .down-list ul li .time-btn .times{margin-right: 60px;}
.downloadmain .down-list ul li .time-btn .times time{font-size:18px}
.downloadmain .down-list ul li .time-btn .btns{display:flex;align-items:center}
.downloadmain .down-list ul li .time-btn .btns a{font-size:18px;padding:10px 30px;border-radius:5px;color:white;background-color:#0058b2}
.downloadmain .down-list ul li .time-btn .btns a:first-child{margin-right: 20px;}
/***************************************下载中心页 End****************************************************/

@media screen and (max-width:1740px){
	
	
}
@media screen and (max-width:1540px){
	
	.container{width: 96%;margin: 0 auto;}
}

@media screen and (max-width:1440px){
	header .hdtop-nav nav ul li{padding: 0 20px;}
	.main .column-nav ul li{width: 20%;}
	.container{width: 95%;margin: 0 auto;}
	.indexnews .news-bottombox li{width: 31%;}
	.indexnews .news-bottombox li:first-child{width: 31%;float: left;}
	.indexnews .news-bottombox li:first-child .newslist{width: 100%;}
	footer .top-box .right-flnav ul li{margin-right: 3rem;}
	.aboutusmain .companyprofile .content-box .info-list{width:100%;}
	.aboutusmain .companyprofile .content-box .info-list .content-text{width:48%}
	.aboutusmain .companyprofile .content-box .info-list .content-img{width: 50%;}
	.aboutusmain .companyprofile .content-box .info-list .content-img img{width: 100%;}
	.aboutusmain .honorqualification .container .swiper-button-prev{left: 88%;}
	.aboutusmain .propagandavideo .container .swiper-button-prev{left: 88%;}
	.newsmain .newsinfo-list ul li .news-img{height: auto;}
	.productmain .pdts-list .pdt-sort{width: 24%;}
	.productmain .pdts-list .pdt-info{width: 73%;}
	.pdtdetailsmain .pdtinfo-list .product-img img{width: 100%;}
	.pdtdetailsmain .recommendpdt .pdt-title span{font-size: 15px;}
	.contactusmain .contact-list .contactinfos{width: 30%;padding: 320px 2rem;background-color: #0058b2;}
	.contactusmain .contact-list .contactmap{height: 100%;width: 70%}
	
}
@media screen and (max-width:1200px){
.m-header-nav{display: block;}
.container{width: 92%;margin: 0 auto;}
.swiper-button-next:after, .swiper-button-prev:after{display: none;}

/*分页*/
.paging{display: flex; justify-content: space-around; align-items: center;margin: 20px 0;}
.paging ul{padding:0;width:100%;text-align: center;}
.paging ul::after{content:'';display:block;clear:both}
.paging ul li{display:inline-block;list-style:none;margin:0 5px;background-color: white;box-shadow:none!important;margin-bottom: 0!important;}
.paging a{color:#aaa;font-family:"微软雅黑";padding:5px 12px;text-decoration:none;display:block;text-align:center;border:1px solid #e2e2e2;font-size: 15px;}
.paging ul li:first-child a{border-left:1px solid #ccc;}
.paging ul li a:hover{background-color:#0357c9;}
.paging ul li a:hover{color:white}
.paging ul li:hover{box-shadow:none!important;}
.paging .disabled a:hover{background-color:white;cursor:not-allowed;color:#aaa}
.paging .active a{background-color:#0357c9;color:white}
/***************************************首页 Start*******************************************************/

/* 导航 */
header{display: none;}


/* 手机导航 */
.m-header-nav{display: block;height:60px;overflow:hidden;background:#1362b9;position:fixed;top:0;z-index:1000;width:100%;}
.m-header-nav .sp_header{overflow:hidden;background:#1362b9;position: relative;top:0;z-index:10000;width:100%;height:60px;padding: 0 20px;}
.m-header-nav .sp_logo{padding: 10px 0;float:left;height:60px;}
.m-header-nav .sp_logo img{margin:auto;max-height:40px;}
.m-header-nav .sp_nav{width: 40px;float:right;position:relative;cursor:pointer;height:40px;margin-top: 17px;z-index: 900;}
.m-header-nav .sp_nav span{display:block;background:white;width: 35px;height: 3px;position:absolute;left: 0;transition:all ease 0.45s;}
.m-header-nav .sp_nav span:nth-of-type(1){top:0px}
.m-header-nav .sp_nav span:nth-of-type(2){top: 13px;}
.m-header-nav .sp_nav span:nth-of-type(3){top: 26px;}
.m-header-nav .sp_nav_se span:nth-of-type(1){top: 11px;transform:rotate(45deg);}
.m-header-nav .sp_nav_se span:nth-of-type(2){width:0;transition:none;}
.m-header-nav .sp_nav_se span:nth-of-type(3){top: 11px;transform:rotate(-45deg);}
.m-header-nav .sjj_nav{display: none;position:fixed;z-index:9;background:white;width:100%;height:100%;font-size: .95rem;;line-height:2.7rem;top:60px;left:0;overflow:auto;overflow-x:hidden;transition:top ease 0.45s;}
.m-header-nav .nav_show{display: block;}
.m-header-nav .sjj_nav>ul>li:first-child{overflow:hidden;border-top:0}
.m-header-nav .sjj_nav>ul>li:first-child>a{float:left;width:calc(100% - 100px)}
.m-header-nav .sjj_nav>ul>li:first-child .language{float:right;width:100px;overflow:hidden;line-height:40px;margin-top:10px}
.m-header-nav .sjj_nav>ul>li:first-child .language a{width:50px;float:left;border-left:1px #ddd solid;text-align:center;color:#999;}
.m-header-nav .sjj_nav ul li i{position: absolute; top: 5px; right: 0px; border-left: 1px #ddd solid; height: 50px; padding: 0px 12px; display: flex; align-items: center; justify-content: flex-start;}
.m-header-nav .sjj_nav ul li i svg{transform:rotate(-90deg);transition:all ease 0.45s}
.m-header-nav .sjj_nav ul li .sjj_nav_i_se svg{transform:rotate(0deg)}
.m-header-nav .sjj_nav ul li{border-top:1px #ddd solid;margin-left:20px;position:relative;line-height:3.5rem;font-size: .95rem;}
.m-header-nav .sjj_nav>ul >li:last-child{border-bottom:1px #ddd solid;}
.m-header-nav .sjj_nav ul li ul{display:none}
.m-header-nav .sjj_nav ul li a{color:#666;width:100%;display: block;font-size: 100px;}
.m-header-nav .sjj_nav ul li ul li a{color:#666;display:block;text-align:left;}
.m-header-nav .sjj_nav ul li i svg{width:35px;height:35px;fill:#555;}
.m-header-nav .sjj_nav ul li .sjj_nav_i_se svg{fill:#0357c9}
.m-header-nav .sjj_nav ul li ul li>ul{margin-left:10px}



/* 轮播图 */
.indexbanner{position:relative;width: 100%;margin-top: 60px;}
.indexbanner .hdbanners{width: 100%;}
.indexbanner .hdbanners .banner_list .banner_list_img{width: 100%;}
.indexbanner .hdbanners .banner_list .banner_list_img img{width:100%; height:auto;}
.indexbanner .hdbanners .banner_list .banner_list_txt{max-width: 67%;left: -9%;right:0;margin:0 auto;top:0;height: calc(100%);}
.indexbanner .hdbanners .banner_list .banner_list_txt dd{font-size: 1.5rem;margin-bottom: 2rem;}
.indexbanner .hdbanners .banner_list .banner_list_txt dt{font-size: 180px;line-height: 2.5rem;margin-bottom: 2.5rem;width: 90%;padding: 0;}
.indexbanner .hdbanners .banner_list .banner_list_txt a{font-size:.9rem;width: 13%;height:2.7rem;}
.indexbanner .hdbanners .banner_list .banner_list_txt a:hover{}
.indexbanner .hdbanners .banner_list .banner_list_txt a img{width: 130px;height: auto;}


/* 产品展示 */
.indexproduct{padding:2rem 0;}
.indexproduct .pdt-topbox{padding-bottom: 0;border-bottom:none;display:flex;justify-content: center;align-items: center;flex-wrap: wrap;}
.indexproduct .pdt-topbox .left-title{}
.indexproduct .pdt-topbox .left-title h1{font-size: 160px;}
.indexproduct .pdt-topbox .right-tnav{margin-top: 80px;}
.indexproduct .pdt-topbox .right-tnav ul{display:flex;flex-wrap: wrap;}
.indexproduct .pdt-topbox .right-tnav ul li{margin: 0 .5rem .85rem .5rem;}
.indexproduct .pdt-topbox .right-tnav ul li.active:after{bottom:-60px;left:0px;width:100%;height:2px;}
.indexproduct .pdt-topbox .right-tnav ul li:nth-child(1){margin-left:0}
.indexproduct .pdt-topbox .right-tnav ul li.on:after{bottom: -60px;left:0px;width:100%;height:2px;}
.indexproduct .pdt-topbox .right-tnav ul li:after{bottom: -60px;left:0px;width:0px;height:2px;}
.indexproduct .pdt-topbox .right-tnav ul li a{font-size:.98rem;padding:60px;}
.indexproduct .pdt-topbox .right-tnav ul li:last-child{margin-right: 0;}
.indexproduct .pdt-bottombox{}

.indexproduct .pdt-bottombox{margin-top: 2rem;position: relative;}
.indexproduct .pdt-bottombox .pdtlistbanner{}
.indexproduct .pdt-bottombox .swiper-button-prev{background-size: 2.5rem;top:45%;margin-top: .5rem;width: 2.5rem;height: 2.5rem;}
.indexproduct .pdt-bottombox .swiper-button-next{background-size: 2.5rem;top: 45%;margin-top: .5rem;width: 2.5rem;height: 2.5rem;}
    
.indexproduct .pdt-bottombox .pdtbanners{}
.indexproduct .pdt-bottombox .pdtbanners .product-img{height: auto;}
.indexproduct .pdt-bottombox .pdtbanners .product-img img{width: 100%;height: 100%;}
.indexproduct .pdt-bottombox .pdtbanners .product-infos{padding:120px 100px;}
.indexproduct .pdt-bottombox .pdtbanners .product-infos .pdtinfo-title{margin-bottom: 20px;}
.indexproduct .pdt-bottombox .pdtbanners .product-infos .pdtinfo-title h1{font-size: 130px;white-space: nowrap; text-overflow: ellipsis; overflow: hidden; word-break: break-all;}
.indexproduct .pdt-bottombox .pdtbanners .product-infos .pdtinfo-desc{}
.indexproduct .pdt-bottombox .pdtbanners .product-infos .pdtinfo-desc p{font-size: 100px;line-height: 180px;}

/* 新闻中心 */
.indexnews{padding:2rem 0;width: 100%;}
.indexnews .news-topbox{padding-bottom:0;border: none;}
.indexnews .news-topbox .left-title{}
.indexnews .news-topbox .left-title h1{font-size:1.5rem;}
.indexnews .news-topbox .right-tnav ul li{;margin:0 10px;}
.indexnews .news-topbox .right-tnav ul li.active:after{bottom:-40px;}
.indexnews .news-topbox .right-tnav ul li:nth-child(1){margin-left:0}
.indexnews .news-topbox .right-tnav ul li.on:after{bottom:-40px;}
.indexnews .news-topbox .right-tnav ul li:after{bottom:-40px;}
.indexnews .news-topbox .right-tnav ul li a{font-size:.98rem;padding:.5rem;}
.indexnews .news-topbox .right-tnav ul li:last-child a{margin-right: 0;}

.indexnews .news-bottombox{margin-top: 2.5rem;}
.indexnews .news-bottombox ul{width: 100%;}
.indexnews .news-bottombox li{width: 32%;margin-right: 2%;padding: 130px;margin-bottom: 100px;}
.indexnews .news-bottombox li:first-child{width: 32%;padding: 0;}
.indexnews .news-bottombox li:first-child .news-title h1{white-space: normal;}
.indexnews .news-bottombox li:first-child .newslist{width: 100%;padding:.5rem 180px;top: 60%;}
.indexnews .news-bottombox li:first-child .news-img{height: 22rem;}
.indexnews .news-bottombox li:first-child img{width: 100%;} 
.indexnews .news-bottombox li a .news-title h1{font-size: 1.100px;margin-bottom: .65rem;white-space: nowrap;text-overflow: ellipsis;overflow: hidden;word-break: break-all;}
.indexnews .news-bottombox li a .news-desc{height: auto;}
.indexnews .news-bottombox li a .news-desc p{font-size: .95rem;line-height: 1.5rem;margin-bottom: 80px;overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; display: -moz-box; -moz-line-clamp: 2; -moz-box-orient: vertical; word-wrap: break-word; word-break: break-all; white-space: normal;}
.indexnews .news-bottombox li a .news-time time{font-size: 100px;}



/* 底部导航 */
.Join2{border-bottom:1px solid #313131}
.Join2 .Join2_left,.Join2 .Join2_right{height:50px}
.Join2 .Join2_left img{width:82px}
.Join2 .Join2_right{padding:0 20px;font-size:14px}
.Join2 .Join2_right::before{width:60px}
.Footer{padding-bottom:0}
.Footer .Footer_top{padding:33px 0;display:block}
.Footer .Footer_top .Footer_top_left{display:flex;width:100%;flex-wrap:wrap}
.Footer .Footer_top .Footer_top_left .top_left_list{margin-right:0;justify-content:space-between;width:50%}
.Footer .Footer_top .Footer_top_left .top_left_list:last-child{width:100%;margin-top:20px;text-align: center;}
.Footer .Footer_top .Footer_top_left .top_left_list .left_list_dd{margin-bottom:10px}
.Footer .Footer_top .Footer_top_left .top_left_list .left_list_dd a{font-size:16px}
.Footer .Footer_top .Footer_top_left .top_left_list .left_list_dt p{font-size:14px;margin-bottom:8px}
.Footer .Footer_top .Footer_top_left .top_left_list .left_list_dt p a{font-size:14px}
.Footer .Footer_top .Footer_top_left .top_left_list .left_list_dt p img{margin-right:10px;width:14px}
.Footer .Footer_top .Footer_top_right{margin-top:25px;text-align: center;}
.Footer .Footer_top .Footer_top_right .top_right_dd{font-size:16px;margin-bottom:13px}
.Footer .Footer_top .Footer_top_right .top_right_dt{width:110px;margin: 0 auto;}
.Footer .Footer_bottom{font-size:13px;flex-wrap:wrap;text-align:center;border-top:1px solid #313131;justify-content:center;padding:14px 0}
.Footer .Footer_bottom a{font-size:13px;margin-right:5px}

/******************************************首页 End*****************************************************/



/****************************************关于我们页 Start************************************************/
.header-banner{margin-top: 60px;}
.header-banner-banner.baner-img{width:100%}
.header-banner .baner-img img{width:100%}
.header-banner .banner-infos{position:absolute;top: 30%;left:10%;width:50%;}
.header-banner .banner-infos .font-bjimg{height: 4rem;margin-bottom: 1.5rem;background-size: 50%;}
.header-banner .banner-infos .separator{display: none;}
.header-banner .banner-infos .page-title{margin-bottom: 3rem;}
.header-banner .banner-infos .page-title span{font-size:1.3rem;color:white}
.header-banner .banner-infos .page-nav{display: none;}

.aboutushdbanner .banner-infos .font-bjimg{background-size: 50%;}

.main{}
.main .column-nav{height: 3.5rem;background-color: #f5f5f5;}
.main .column-nav ul{width: 100%;}
.main .column-nav ul li{width: 20%;height: 3.5rem;}
.main .column-nav ul li.on{background-color: white;}
.main .column-nav ul li.on:before{border-left:60px solid transparent;border-right:60px solid transparent;border-bottom:60px solid transparent;border-top:60px solid #0058b2;top:-1px;left:0;right:0;margin:0 auto;}
.main .column-nav ul li a{font-size: .95rem; width: 100%; height: 100%;}

.aboutusmain .companyprofile{padding:2rem 0}
.aboutusmain .companyprofile .container{}
.aboutusmain .companyprofile .column-title{}
.aboutusmain .companyprofile .column-title span{font-size:.92rem}
.aboutusmain .companyprofile .column-title h1{font-size:140px;margin-top:.5rem;margin-bottom:.7rem;}
.aboutusmain .companyprofile .column-title .separator{width:5rem;}

.aboutusmain .companyprofile .content-box{margin-top: .5rem;}
.aboutusmain .companyprofile .content-box .info-list{width:100%;margin-bottom:2rem;flex-wrap: wrap;}
.aboutusmain .companyprofile .content-box .info-list .content-text{width:48%}
.aboutusmain .companyprofile .content-box .info-list .content-text p{margin:30px 0;font-size:.95rem;line-height:160px;color:#898989}
.aboutusmain .companyprofile .content-box .info-list .content-img{width: 50%;}
.aboutusmain .companyprofile .content-box .info-list .content-img img{width: 100%;}


.aboutusmain .honorqualification{padding: 2rem 0;}
.aboutusmain .honorqualification .column-title{}
.aboutusmain .honorqualification .column-title span{font-size:.92rem;}
.aboutusmain .honorqualification .column-title h1{font-size:140px;margin-top:.5rem;margin-bottom:.7rem;}

.aboutusmain .honorqualification .honorbanners{margin-top: 2rem;}
.aboutusmain .honorqualification .honorbanners .swiper-slide{padding:80px 80px 60px 80px}
.aboutusmain .honorqualification .honorbanners .honor-img{width:auto;height:13rem;overflow:hidden;display:flex;justify-content:center;align-items:center}
.aboutusmain .honorqualification .honorbanners .honor-img img{}
.aboutusmain .honorqualification .honorbanners .honor-title{padding:80px;text-align:center}
.aboutusmain .honorqualification .honorbanners .honor-title span{font-size:.95rem;}
.aboutusmain .honorqualification .container .swiper-button-prev{position: absolute;top: -15%;left: 87%;width: auto;height: auto;padding: .100px .7rem;}
.aboutusmain .honorqualification .container .swiper-button-prev img{width: 2rem;}
.aboutusmain .honorqualification .container .swiper-button-next{position: absolute;top: -15%;right: 0px;width: auto;height: auto;padding: .100px .7rem;}
.aboutusmain .honorqualification .container .swiper-button-next img{width: 2rem;}
    

.aboutusmain .propagandavideo{padding: 2rem 0;}
.aboutusmain .propagandavideo .propagandavideolist{position: relative;}
.aboutusmain .propagandavideo .columnnav-list{margin-bottom:2rem;}
.aboutusmain .propagandavideo .column-title{}
.aboutusmain .propagandavideo .column-title span{font-size:.92rem;}
.aboutusmain .propagandavideo .column-title h1{font-size:140px;margin-top:.5rem;margin-bottom:.7rem;}


.aboutusmain .propagandabanners .propaganda-video{width:100%;height: 15rem;overflow:hidden;display:flex;justify-content:center;align-items:center}
.aboutusmain .propagandabanners .propaganda-video img{}
.aboutusmain .propagandabanners .propaganda-video video{}

.aboutusmain .propagandabanners .propaganda-infos{width:100%;padding: 33px 30px;background-color: #f9f9f9;}
.aboutusmain .propagandabanners .propaganda-infos .info--top-title{margin-bottom: 28px;}
.aboutusmain .propagandabanners .propaganda-infos .info--top-title span{font-size:17px;font-weight:500;white-space: nowrap; text-overflow: ellipsis; overflow: hidden; word-break: break-all;}
.aboutusmain .propagandabanners .propaganda-infos .info-bottom-box{display: flex; align-items: center; justify-content: space-between;}
.aboutusmain .propagandabanners .propaganda-infos .info-bottom-box .box-list{}
.aboutusmain .propagandabanners .propaganda-infos .info-bottom-box .box-list img{width: 20px;}
.aboutusmain .propagandabanners .propaganda-infos .info-bottom-box .box-list time{font-size: 14px;color: #666666;}
.aboutusmain .propagandabanners .propaganda-infos .info-bottom-box .box-list span{font-size: 14px;color: #666666;}

.aboutusmain .propagandavideo .container .swiper-button-prev{position: absolute;top: -12%;left: 87%;width: auto;height: auto;padding: .100px .7rem;background-color: #f3f5f7;}
.aboutusmain .propagandavideo .container .swiper-button-prev img{width: 2rem;}
.aboutusmain .propagandavideo .container .swiper-button-next{position: absolute;top: -12%;right: 0px;width: auto;height: auto;padding: .100px .7rem;background-color: #f3f5f7;}
.aboutusmain .propagandavideo .container .swiper-button-next img{width: 2rem;}
    

/****************************************关于我们页 End**************************************************/



/****************************************产品与服务页 Start***********************************************/
.productmain {padding: 2rem 0;}
.productmain .pdts-list{width: 100%;flex-wrap: wrap;}
.productmain .pdts-list .pdt-sort{width: 26%;}
.productmain .pdts-list .pdt-sort .sort-title{}

.productmain .pdts-list .sort-list{}
.productmain .pdts-list .sort-list .sort-nav{height: 100%;}
.productmain .pdts-list .sort-list .sort-nav a{font-size: .97rem;  padding: .95rem 0;}
.productmain .pdts-list .sort-list .sort-nav a span{margin-left: 2rem;}
.productmain .pdts-list .sort-list .nav-item ul{display: none;}
.productmain .pdts-list .sort-list .sort-nav ul li{}
.productmain .pdts-list .sort-list .sort-nav .twolevel li a{padding: .5rem;}
.productmain .pdts-list .sort-list .sort-nav .twolevel li a span{font-size: .95rem;}
.productmain .pdts-list .sort-list .nav-item  ul.on{display: block;}
.productmain .pdts-list .sort-list .nav-more{width: 100px;margin-right: 100px;}

.productmain .pdts-list .pdt-info{width: 72%;margin-top: 2rem;}
.productmain .pdts-list .pdt-info .infolist{width: 100%;}
.productmain .pdts-list .pdt-info .infolist li{box-shadow: 0 0 5px #dcdcdc;width: 32%;margin-right: 2%;margin-bottom: 100px;}
.productmain .pdts-list .pdt-info .infolist li:nth-child(3n){margin-right: 0;}
.productmain .pdts-list .pdt-info .infolist li a .pdt-img{;width: 100%;height: 9rem;}
.productmain .pdts-list .pdt-info .infolist li a .pdt-img img{width: 100%;height: 100%;}
.productmain .pdts-list .pdt-info .infolist li a .title span{padding: .7rem 5px; font-size: .95rem;}


/****************************************产品与服务页 End*************************************************/



/****************************************产品与服务详情页 Start*******************************************/
.pdtdetailsmain{padding: 2rem 0;}
.pdtdetailsmain .pdtinfo-list{display:flex;justify-content: space-between;align-items:center;}
.pdtdetailsmain .pdtinfo-list .pdtdesc-info{width:100%}
.pdtdetailsmain .pdtinfo-list .product-img{width: 48%;}
.pdtdetailsmain .pdtinfo-list .product-img img{width: 100%;}
.pdtdetailsmain .pdtinfo-list .product-desc{margin-top: 2rem;padding: 0;width: 49%;}
.pdtdetailsmain .pdtinfo-list .product-desc .desc-title{margin-bottom: 60px;}
.pdtdetailsmain .pdtinfo-list .product-desc .desc-title h1{font-size: 130px;}
.pdtdetailsmain .pdtinfo-list .product-desc .separator{width: 5rem;margin-bottom: 60px;}
.pdtdetailsmain .pdtinfo-list .product-desc .desc-info{}
.pdtdetailsmain .pdtinfo-list .product-desc .desc-info p{font-size: .98rem;line-height: 2rem;}


.pdtdetailsmain .pdtlist-title{display:flex;align-items:center}
.pdtdetailsmain .pdtlist-title::before{width:3px;height: 120px;}
.pdtdetailsmain .pdtlist-title h1{font-size: 1.5rem;margin-left: 60px;}
.pdtdetailsmain .pdtfeatures{margin-top: 2rem;}
.pdtdetailsmain .pdtfeatures .pdt-trait{margin-top: 180px;}
.pdtdetailsmain .pdtfeatures .pdt-trait ul{flex-wrap: wrap;}
.pdtdetailsmain .pdtfeatures .pdt-trait ul li{width: 48%;height: 10rem;margin-bottom: 100px;}
.pdtdetailsmain .pdtfeatures .pdt-trait ul li .trait-img{}
.pdtdetailsmain .pdtfeatures .pdt-trait ul li .trait-img img{width: 2rem;height:auto;}
.pdtdetailsmain .pdtfeatures .pdt-trait ul li .trait-desc{margin: .7rem 0;padding: 0 .5rem;text-align:center;}
.pdtdetailsmain .pdtfeatures .pdt-trait ul li .trait-desc span{font-size: .95rem;color:#979797;}
.pdtdetailsmain .pdtfeatures .pdt-trait ul li .trait-nmb{}
.pdtdetailsmain .pdtfeatures .pdt-trait ul li .trait-nmb span{width: 1.5rem;height: 1.5rem;font-size: .95rem;line-height: .95rem;}


.pdtdetailsmain .recommendpdt{margin-top:2rem}
.pdtdetailsmain .recommendpdt .pdt-trait{margin-top: 180px;}
.pdtdetailsmain .recommendpdt .pdt-img{height: 100%;}
.pdtdetailsmain .recommendpdt .pdt-img img{width: 100%;}
.pdtdetailsmain .recommendpdt .pdt-title{padding: 80px .5rem;}
.pdtdetailsmain .recommendpdt .pdt-title span{font-size: .93rem;}

.pdtdetailsmain .recommendpdt .swiper-button-prev{background-size: 2.5rem;left: -4%; top:32%;width: 2.5rem; height:2.5rem;}
.pdtdetailsmain .recommendpdt .swiper-button-next{background-size: 2.5rem;right: -4%; top: 32%; width: 2.5rem; height: 2.5rem;}
    
/****************************************产品与服务详情 End***********************************************/



/****************************************新闻中心页 Start*************************************************/
.newshdbanner .banner-infos .font-bjimg{background-size: 60%;}
.newsmain{}
.newsmain .newsinfo-list{padding:2rem 0 1.7rem 0}
.newsmain .newsinfo-list ul{width:100%;display:flex;flex-wrap:wrap;justify-content: space-between;}
.newsmain .newsinfo-list ul li{width:48%;margin-right:0;margin-bottom:100px;}
.newsmain .newsinfo-list ul li:nth-child(3n){margin-right: 0;}
.newsmain .newsinfo-list ul li a{display:block}
.newsmain .newsinfo-list ul li .news-img{height: 6rem;overflow: hidden;}
.newsmain .newsinfo-list ul li .news-img img{width:100%}
.newsmain .newsinfo-list ul li .news-title{padding: 30px 30px;}
.newsmain .newsinfo-list ul li .news-title span{font-size: .98rem;}
.newsmain .newsinfo-list ul li .news-desc{padding: 0 .5rem;margin-bottom: .5rem;}
.newsmain .newsinfo-list ul li .news-desc p{font-size: .95rem;line-height: 1.5rem;}
.newsmain .newsinfo-list ul li .news-time{padding: 20px .5rem;}
.newsmain .newsinfo-list ul li .news-time time{font-size: .93rem;}
.newsmain .newsinfo-list ul li .news-time img{width: 2rem;}
/****************************************新闻中心页 End***************************************************/


/****************************************新闻详情页 Start*************************************************/
.newsdetailsmain{padding:2rem 0;}
.newsdetailsmain .newsdetails-list{padding:1.5rem 120px;}
.newsdetailsmain .newsdetails-list .news-hdbox{padding-bottom:120px;border-bottom:1px solid #e5e5e5;}
.newsdetailsmain .newsdetails-list .news-hdbox .news-title{margin-bottom:.5rem}
.newsdetailsmain .newsdetails-list .news-hdbox .news-title h1{font-size:130px;}
.newsdetailsmain .newsdetails-list .news-hdbox .news-time{}
.newsdetailsmain .newsdetails-list .news-hdbox .news-time time{font-size:.95rem;margin-right:100px;}
.newsdetailsmain .newsdetails-list .news-hdbox .news-time span{font-size:.95rem;margin-right:100px;}
.newsdetailsmain .newsdetails-list .news-content{padding:80px 0;width: 100%;overflow: hidden;}
.newsdetailsmain .newsdetails-list .news-content p{font-size:.95rem;margin:100px 0;}
.newsdetailsmain .newsdetails-list .news-content img{width: 100%;}
.newsdetailsmain .newsdetails-list .news-fynav{margin-top:100px;padding-top:.7rem;flex-wrap: wrap;}
.newsdetailsmain .newsdetails-list .news-fynav .fynav-list{}
.newsdetailsmain .newsdetails-list .news-fynav .fynav-list div{padding:30px 0;font-size: .95rem;white-space: nowrap; text-overflow: ellipsis; overflow: hidden; word-break: break-all;}
.newsdetailsmain .newsdetails-list .news-fynav .fynav-list span{padding:30px 0;font-size: .95rem;}
.newsdetailsmain .newsdetails-list .news-fynav .fynav-list a{padding:30px 0;font-size: .95rem;}
.newsdetailsmain .newsdetails-list .news-fynav .returnlist{margin: 20px auto 0 auto;}
.newsdetailsmain .newsdetails-list .news-fynav .returnlist a{padding:60px 1.100px;}
.newsdetailsmain .newsdetails-list .news-fynav .returnlist span{font-size: .95rem;margin-right: .5rem;}
.newsdetailsmain .newsdetails-list .news-fynav .returnlist img{width:100px}
/****************************************新闻详情页 End***************************************************/


/****************************************联系我们页 Start*************************************************/
.contactusmain{padding-bottom: 3rem;}
.contactusmain .banner-infos .font-bjimg{background-size: 50%}
.contactusmain .column-title span{font-size: .95rem;}
.contactusmain .column-title h1{font-size: 1.5rem;margin-top: .3rem;margin-bottom: .7rem;}
.contactusmain .column-title .separator{width: 5rem;}
.contactusmain .contact-list{margin-top: 2rem;}
.contactusmain .contact-list .contactinfos{width: 30%;height: 100%;padding: 1.3rem;}
.contactusmain .contact-list .contactinfos .column-title span{color: white;font-size: .85rem;}
.contactusmain .contact-list .contactinfos .column-title h1{color: white;font-size: 1.6rem;}
.contactusmain .contact-list .contactinfos .column-title .separator{background-color: white;width: 5rem;}
.contactusmain .contact-list .contactinfos .infos-box{margin-top: 1rem;}
.contactusmain .contact-list .contactinfos .infos-box .pubinfos{padding: .95rem 0;}
.contactusmain .contact-list .contactinfos .infos-box .pubinfos img{width: 1.3rem;margin-right: .9rem;}
.contactusmain .contact-list .contactinfos .infos-box .pubinfos span{font-size: .9rem;}
.contactusmain .contact-list .contactinfos .infos-box .pubinfos p{font-size: .9rem;margin-bottom: .6rem;}
.contactusmain .contact-list .contactinfos .infos-box .pubinfos p:last-child{margin-bottom: 0;}
.contactusmain .contact-list .contactinfos .infos-box .addr{}
.contactusmain .contact-list .contactinfos .infos-box .phone-llst{}
.contactusmain .contact-list .contactinfos .infos-box .email{}
.contactusmain .contact-list .contactinfos .infos-box .fax{}
.contactusmain .contact-list .contactmap{width: 70%;height: 100%;margin-top: 0;position: relative;}
.contactusmain .contact-list .contactmap .allmap{width: 100%;height: 450px;z-index: 1;}
.contactusmain .contact-list .contactmap #branchoffice{position: absolute;right: 0; bottom: 0;z-index: 99999999999999999;}
.contactusmain .contact-list .contactmap #branchoffice ul{display: flex;align-items: center;}
.contactusmain .contact-list .contactmap #branchoffice ul li{}
.contactusmain .contact-list .contactmap #branchoffice ul li:first-child a{margin-right: 1rem;}
.contactusmain .contact-list .contactmap #branchoffice ul li a{padding: .6rem .95rem;font-size: .9rem;}
.contactusmain .contact-list .contactmap #branchoffice ul li.on a{}


.contactusmain .onlinemessage{margin-top: 3rem;}
.contactusmain .onlinemessage form{width: 100%;margin-top: 1.8rem;display: flex;align-items: flex-start;justify-content: space-between;}
.contactusmain .onlinemessage form .left-input{width: 48%;}
.contactusmain .onlinemessage form .left-input .inputs{width: 100%;margin-bottom: 2rem;padding-left: .8rem;}
.contactusmain .onlinemessage form .left-input .inputs span{font-size: .95rem;}
.contactusmain .onlinemessage form .left-input .inputs input{width: 80%;font-size: .95rem;padding: .95rem 0;}
.contactusmain .onlinemessage form .right-btns{width: 48%;}
.contactusmain .onlinemessage form .right-btns .inputs{width: 100%;margin-bottom: 30px;}
.contactusmain .onlinemessage form .right-btns .inputs textarea{font-size: .95rem;padding: 1rem;}
.contactusmain .onlinemessage form .right-btns .submbtns{display: flex;justify-content: space-around; align-items: center;}
.contactusmain .onlinemessage form .right-btns .submbtns input{width: 35%;font-size: .9rem;padding: .95rem 0;}
.contactusmain .onlinemessage form .right-btns .submbtns input[type="submit"]{color: white;background-color: #0058b2;}
.contactusmain .onlinemessage form .right-btns .submbtns input[type="reset"]{}
/****************************************联系我们页 End***************************************************/


/***************************************下载中心页 End****************************************************/

}


@media screen and (max-width:950px){


}


@media screen and (max-width:768px){
.m-header-nav{display: block;}
.container{width: 92%;margin: 0 auto;}
.swiper-button-next:after, .swiper-button-prev:after{display: none;}

/*分页*/
.paging{display: flex; justify-content: space-around; align-items: center;margin: 20px 0;}
.paging ul{padding:0;width:100%;text-align: center;}
.paging ul::after{content:'';display:block;clear:both}
.paging ul li{display:inline-block;list-style:none;margin:0 5px;background-color: white;box-shadow:none!important;margin-bottom: 0!important;}
.paging a{color:#aaa;font-family:"微软雅黑";padding:5px 12px;text-decoration:none;display:block;text-align:center;border:1px solid #e2e2e2;font-size: 15px;}
.paging ul li:first-child a{border-left:none;}
.paging ul li a:hover{background-color:#0357c9;}
.paging ul li a:hover{color:white}
.paging ul li:hover{box-shadow:none!important;}
.paging .disabled a:hover{background-color:white;cursor:not-allowed;color:#aaa}
.paging .active a{background-color:#0357c9;color:white}
/***************************************首页 Start*******************************************************/

/* 导航 */
header{display: none;}


/* 手机导航 */
.m-header-nav{display: block;height:50px;position:fixed;top:0;z-index:1000;width:100%;background-color: #1362b9;}
.m-header-nav .sp_header{position: relative;top:0;z-index:10000;width:100%;height:50px;padding: 0 20px;background-color: #1362b9;}
.m-header-nav .sp_logo{padding: .6rem 0;float:left;height:50px;}
.m-header-nav .sp_logo img{margin:auto;max-height:100%;}
.m-header-nav .sp_nav{width: 30px;float:right;position:relative;cursor:pointer;height:30px;margin-top: 13px;z-index: 900;}
.m-header-nav .sp_nav span{display:block;background:white;width: 30px;height: 2px;position:absolute;left: 0;transition:all ease 0.45s;}
.m-header-nav .sp_nav span:nth-of-type(1){top:0px}
.m-header-nav .sp_nav span:nth-of-type(2){top: 11px;}
.m-header-nav .sp_nav span:nth-of-type(3){top: 22px;}
.m-header-nav .sp_nav_se span:nth-of-type(1){top: 11px;transform:rotate(45deg);}
.m-header-nav .sp_nav_se span:nth-of-type(2){width:0;transition:none;}
.m-header-nav .sp_nav_se span:nth-of-type(3){top: 11px;transform:rotate(-45deg);}
.m-header-nav .sjj_nav{display: none;position:fixed;z-index:9;width:100%;height:100%;font-size: .95rem;;line-height:2.7rem;top:50px;left:0;overflow:auto;overflow-x:hidden;transition:top ease 0.45s;}
.m-header-nav .sjj_nav>ul>li:first-child {display: flex; align-items: center; justify-content: space-between;}
.m-header-nav .sjj_nav>ul>li:first-child .language{float:right;width:100px;overflow:hidden;line-height:2.6rem;margin-top:0}
.m-header-nav .sjj_nav>ul>li:first-child .language a{width:50px;float:left;border-left:1px #ddd solid;text-align:center;color:#999;}
.m-header-nav .sjj_nav ul li i{position: absolute;top: 2px;right: 0px;border-left: 1px #ddd solid;height: auto;padding: 0;width: 50px;display: flex;align-items: center;justify-content: center;}
.m-header-nav .sjj_nav ul li i svg{transform:rotate(-90deg);transition:all ease 0.45s}
.m-header-nav .sjj_nav ul li{border-top:1px #ddd solid;margin-left:1.1rem;position:relative;line-height:2.6rem;}
.m-header-nav .sjj_nav>ul >li:last-child{border-bottom:1px #ddd solid;}
.m-header-nav .sjj_nav ul li a{color:#666;width:100%;display: block;font-size: .95rem;padding: .15rem 0;}
.m-header-nav .sjj_nav ul li i svg{width:1.3rem;height: 2.6rem;}
.m-header-nav .sjj_nav ul li ul li>ul{margin-left:10px}


/* 轮播图 */
.indexbanner{ position:relative;width: 100%;margin-top: 50px;}
.indexbanner .hdbanners{width: 100%;}
.indexbanner .hdbanners .banner_list .banner_list_img{width: 100%;}
.indexbanner .hdbanners .banner_list .banner_list_img img{width:100%; height:16rem;}
.indexbanner .hdbanners .banner_list .banner_list_txt{max-width: 100%;left:0;right:0;margin:0 auto;top:0;height: calc(100%);}
.indexbanner .hdbanners .banner_list .banner_list_txt dd{font-size: 1rem;margin-bottom: 1rem;}
.indexbanner .hdbanners .banner_list .banner_list_txt dt{font-size: 1.2rem;line-height: 1.5rem;margin-bottom: 1rem;width: 100%;padding: 0;}
.indexbanner .hdbanners .banner_list .banner_list_txt a{font-size:12px; width:25%; height:30px;}
.indexbanner .hdbanners .banner_list .banner_list_txt a:hover{}
.indexbanner .hdbanners .banner_list .banner_list_txt a img{width: 1.3rem;height: auto;}
.indexbanner .hdbanners .swiper-pagination{bottom: 1rem;}
.indexbanner .hdbanners .swiper-pagination .swiper-pagination-bullet{width: 20px;height: 20px; margin: 0px 3px; }
.indexbanner .hdbanners .swiper-pagination .swiper-pagination-bullet-active::before{width: 15px;height: 15px;}
.indexbanner .swiper-button-prev,.indexbanner .swiper-button-next{display: none;}

/* 产品展示 */
.indexproduct{padding:2rem 0;}
.indexproduct .pdt-topbox{padding-bottom: 0;border-bottom:none;display:flex;justify-content: center;align-items: center;flex-wrap: wrap;}
.indexproduct .pdt-topbox .left-title{}
.indexproduct .pdt-topbox .left-title h1{font-size: 1.6rem;}
.indexproduct .pdt-topbox .right-tnav{margin-top: .8rem;}
.indexproduct .pdt-topbox .right-tnav ul{display:flex;flex-wrap: wrap;}
.indexproduct .pdt-topbox .right-tnav ul li{margin: 0 .5rem .85rem .5rem;}
.indexproduct .pdt-topbox .right-tnav ul li.active:after{bottom:-.4rem;left:0px;width:100%;height:2px;}
.indexproduct .pdt-topbox .right-tnav ul li:nth-child(1){margin-left:0}
.indexproduct .pdt-topbox .right-tnav ul li.on:after{bottom: -.4rem;left:0px;width:100%;height:2px;}
.indexproduct .pdt-topbox .right-tnav ul li:after{bottom: -.4rem;left:0px;width:0px;height:2px;}
.indexproduct .pdt-topbox .right-tnav ul li a{font-size:.98rem;padding:.6rem;}
.indexproduct .pdt-topbox .right-tnav ul li:last-child{margin-right: 0;}
.indexproduct .pdt-bottombox{}

.indexproduct .pdt-bottombox{margin-top: 1rem;position: relative;}
.indexproduct .pdt-bottombox .pdtlistbanner{}
.indexproduct .pdt-bottombox .swiper-button-prev{background-size: 2.5rem;top:45%;margin-top: .5rem;width: 2.5rem;height: 2.5rem;}
.indexproduct .pdt-bottombox .swiper-button-next{background-size: 2.5rem;top: 45%;margin-top: .5rem;width: 2.5rem;height: 2.5rem;}
    
.indexproduct .pdt-bottombox .pdtbanners{}
.indexproduct .pdt-bottombox .pdtbanners .product-img{height: 16rem;}
.indexproduct .pdt-bottombox .pdtbanners .product-img img{width: 100%;height: 100%;}
.indexproduct .pdt-bottombox .pdtbanners .product-infos{padding:1.2rem 1rem;}
.indexproduct .pdt-bottombox .pdtbanners .product-infos .pdtinfo-title{margin-bottom: 20px;}
.indexproduct .pdt-bottombox .pdtbanners .product-infos .pdtinfo-title h1{font-size: 1.5rem;}
.indexproduct .pdt-bottombox .pdtbanners .product-infos .pdtinfo-desc{}
.indexproduct .pdt-bottombox .pdtbanners .product-infos .pdtinfo-desc p{font-size: 1rem;line-height: 1.8rem;}
/* 新闻中心 */
.indexnews{padding:2rem 0;}
.indexnews .news-topbox{padding-bottom:0;border: none;}
.indexnews .news-topbox .left-title{}
.indexnews .news-topbox .left-title h1{font-size:1.5rem;}
.indexnews .news-topbox .right-tnav ul li{;margin:0 10px;}
.indexnews .news-topbox .right-tnav ul li.active:after{bottom:-40px;}
.indexnews .news-topbox .right-tnav ul li:nth-child(1){margin-left:0}
.indexnews .news-topbox .right-tnav ul li.on:after{bottom:-40px;}
.indexnews .news-topbox .right-tnav ul li:after{bottom:-40px;}
.indexnews .news-topbox .right-tnav ul li a{font-size:.98rem;padding:.5rem;}
.indexnews .news-topbox .right-tnav ul li:last-child a{margin-right: 0;}

.indexnews .news-bottombox{margin-top: 2.5rem;}
.indexnews .news-bottombox ul{}
.indexnews .news-bottombox li{width: 100%; margin-right: 2%;padding: 130px;margin-bottom: 100px;}
.indexnews .news-bottombox li:first-child{width: 100%;padding: 0;}
.indexnews .news-bottombox li:first-child .newslist{width: 100%;padding:.5rem 180px;top: 60%;}
.indexnews .news-bottombox li:first-child .news-img{height: 22rem;}
.indexnews .news-bottombox li:first-child img{width: 100%;} 
.indexnews .news-bottombox li a .news-title h1{font-size: 120px;margin-bottom: 100px;}
.indexnews .news-bottombox li a .news-desc{height: auto;}
.indexnews .news-bottombox li a .news-desc p{font-size: .95rem;line-height: 180px;margin-bottom: 100px;overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; display: -moz-box; -moz-line-clamp: 2; -moz-box-orient: vertical; word-wrap: break-word; word-break: break-all; white-space: normal;}
.indexnews .news-bottombox li a .news-time time{font-size: 100px;}


/******************************************首页 End*****************************************************/



/****************************************关于我们页 Start************************************************/
.header-banner{margin-top: 50px;}
.header-banner-banner.baner-img{width:100%}
.header-banner .baner-img img{width:100%}
.header-banner .banner-infos{position:absolute;top:20%;left:10%;width:50%;}
.header-banner .banner-infos .font-bjimg{height: 2rem;margin-bottom:.5rem;background-size: 50%;}
.header-banner .banner-infos .separator{display: none;}
.header-banner .banner-infos .page-title{margin-bottom:1rem}
.header-banner .banner-infos .page-title span{font-size:1.3rem;color:white}
.header-banner .banner-infos .page-nav{display: none;}

.aboutushdbanner .banner-infos .font-bjimg{background-size: 50%;}
.main{}
.main .column-nav{height: 3.5rem;background-color: #f5f5f5;}
.main .column-nav ul{width: 100%;}
.main .column-nav ul li{width: 33.3333%;height: 3.5rem;}
.main .column-nav ul li.on{background-color: white;}
.main .column-nav ul li.on:before{border-left:.6rem solid transparent;border-right:.6rem solid transparent;border-bottom:.6rem solid transparent;border-top:.6rem solid #0058b2;top:-1px;left:0;right:0;margin:0 auto;}
.main .column-nav ul li a{font-size: .95rem; width: 100%; height: 100%;}

.aboutusmain .companyprofile{padding:2rem 0}
.aboutusmain .companyprofile .container{}
.aboutusmain .companyprofile .column-title{}
.aboutusmain .companyprofile .column-title span{font-size:.92rem}
.aboutusmain .companyprofile .column-title h1{font-size:1.4rem;margin-top:.5rem;margin-bottom:.7rem;}
.aboutusmain .companyprofile .column-title .separator{width:5rem;}

.aboutusmain .companyprofile .content-box{margin-top: .5rem;}
.aboutusmain .companyprofile .content-box .info-list{width:100%;margin-bottom:2rem;flex-wrap: wrap;}
.aboutusmain .companyprofile .content-box .info-list .content-text{width:100%}
.aboutusmain .companyprofile .content-box .info-list .content-text p{margin:.9rem 0;font-size:1rem;line-height:1.8rem;color:#898989}
.aboutusmain .companyprofile .content-box .info-list .content-img{width: 100%;}
.aboutusmain .companyprofile .content-box .info-list .content-img img{width: 100%;}


.aboutusmain .honorqualification{padding: 2rem 0;}
.aboutusmain .honorqualification .column-title{}
.aboutusmain .honorqualification .column-title span{font-size:.92rem;}
.aboutusmain .honorqualification .column-title h1{font-size:1.4rem;margin-top:.5rem;margin-bottom:.7rem;}

.aboutusmain .honorqualification .honorbanners{margin-top: 2rem;}
.aboutusmain .honorqualification .honorbanners .swiper-slide{padding:.8rem .8rem .6rem .8rem;width: 100% !important;}
.aboutusmain .honorqualification .honorbanners .honor-img{width:auto;height:13rem;overflow:hidden;display:flex;justify-content:center;align-items:center}
.aboutusmain .honorqualification .honorbanners .honor-img img{}
.aboutusmain .honorqualification .honorbanners .honor-title{padding:.8rem;text-align:center}
.aboutusmain .honorqualification .honorbanners .honor-title span{font-size:.95rem;}
.aboutusmain .honorqualification .container .swiper-button-prev{position: absolute;top: -15%;left: 67%;width: auto;height: auto;padding: .1rem .7rem;}
.aboutusmain .honorqualification .container .swiper-button-prev img{width: 2rem;}
.aboutusmain .honorqualification .container .swiper-button-next{position: absolute;top: -15%;right: 0px;width: auto;height: auto;padding: .1rem .7rem;}
.aboutusmain .honorqualification .container .swiper-button-next img{width: 2rem;}
    

.aboutusmain .propagandavideo{padding: 2rem 0;}
.aboutusmain .propagandavideo .propagandavideolist{position: relative;}
.aboutusmain .propagandavideo .columnnav-list{margin-bottom:2rem;}
.aboutusmain .propagandavideo .column-title{}
.aboutusmain .propagandavideo .column-title span{font-size:.92rem;}
.aboutusmain .propagandavideo .column-title h1{font-size:1.4rem;margin-top:.5rem;margin-bottom:.7rem;}


.aboutusmain .propagandabanners .propaganda-video{width:100%;height: 15rem;overflow:hidden;display:flex;justify-content:center;align-items:center}
.aboutusmain .propagandabanners .propaganda-video img{}
.aboutusmain .propagandabanners .propaganda-video video{width: 100%;height: auto;}

.aboutusmain .propagandabanners .propaganda-infos{width:100%;padding: 33px 30px;background-color: #f9f9f9;}
.aboutusmain .propagandabanners .propaganda-infos .info--top-title{margin-bottom: 28px;}
.aboutusmain .propagandabanners .propaganda-infos .info--top-title span{font-size:17px;font-weight:500;white-space: nowrap; text-overflow: ellipsis; overflow: hidden; word-break: break-all;}
.aboutusmain .propagandabanners .propaganda-infos .info-bottom-box{display: flex; align-items: center; justify-content: space-between;}
.aboutusmain .propagandabanners .propaganda-infos .info-bottom-box .box-list{}
.aboutusmain .propagandabanners .propaganda-infos .info-bottom-box .box-list img{width: 20px;}
.aboutusmain .propagandabanners .propaganda-infos .info-bottom-box .box-list time{font-size: 14px;color: #666666;}
.aboutusmain .propagandabanners .propaganda-infos .info-bottom-box .box-list span{font-size: 14px;color: #666666;}
/* 轮播图 */
.aboutusmain .propagandavideo .container .swiper-button-prev{position: absolute;top: -12%;left: 67%;width: auto;height: auto;padding: .1rem .7rem;background-color: #f3f5f7;}
.aboutusmain .propagandavideo .container .swiper-button-prev img{width: 2rem;}
.aboutusmain .propagandavideo .container .swiper-button-next{position: absolute;top: -12%;right: 0px;width: auto;height: auto;padding: .1rem .7rem;background-color: #f3f5f7;}
.aboutusmain .propagandavideo .container .swiper-button-next img{width: 2rem;}
    

/****************************************关于我们页 End**************************************************/



/****************************************产品与服务页 Start***********************************************/
.productmain {padding: 2rem 0;}
.productmain .pdts-list{flex-wrap: wrap;}
.productmain .pdts-list .pdt-sort{width: 100%;}
.productmain .pdts-list .pdt-sort .sort-title{display: none;}

.productmain .pdts-list .sort-list{}
.productmain .pdts-list .sort-list .sort-nav{height: 100%;}
.productmain .pdts-list .sort-list .sort-nav a{font-size: .97rem;  padding: .95rem 0;}
.productmain .pdts-list .sort-list .sort-nav a span{margin-left: 2rem;}
.productmain .pdts-list .sort-list .nav-item ul{display: none;}
.productmain .pdts-list .sort-list .sort-nav ul li{}
.productmain .pdts-list .sort-list .sort-nav .twolevel li a{padding: .5rem;}
.productmain .pdts-list .sort-list .sort-nav .twolevel li a span{font-size: .95rem;}
.productmain .pdts-list .sort-list .nav-item  ul.on{display: block;}
.productmain .pdts-list .sort-list .nav-more{width: 1rem;margin-right: 1rem;}

.productmain .pdts-list .pdt-info{width: 100%;margin-top: 2rem;}
.productmain .pdts-list .pdt-info .infolist{width: 100%;justify-content: space-between;}
.productmain .pdts-list .pdt-info .infolist li{box-shadow: 0 0 5px #dcdcdc;width: 48%;margin-right: 0%;margin-bottom: 1rem;}
.productmain .pdts-list .pdt-info .infolist li:nth-child(3n){margin-right: 0;}
.productmain .pdts-list .pdt-info .infolist li a .pdt-img{;width: 100%;height: 9rem;}
.productmain .pdts-list .pdt-info .infolist li a .pdt-img img{width: 100%;height: 100%;}
.productmain .pdts-list .pdt-info .infolist li a .title span{padding: .7rem 5px; font-size: .95rem;}

/****************************************产品与服务页 End*************************************************/



/****************************************产品与服务详情页 Start*******************************************/
.pdtdetailsmain{padding: 2rem 0;}
.pdtdetailsmain .pdtinfo-list{display:flex;justify-content: center;align-items:center;flex-wrap: wrap;flex-direction: column;}
.pdtdetailsmain .pdtinfo-list .pdtdesc-info{width:100%}
.pdtdetailsmain .pdtinfo-list .product-img{width: 100%;}
.pdtdetailsmain .pdtinfo-list .product-img img{width: 100%;}
.pdtdetailsmain .pdtinfo-list .product-desc{margin-top: 2rem;padding: 0;width: 100%;}
.pdtdetailsmain .pdtinfo-list .product-desc .desc-title{margin-bottom: .6rem;}
.pdtdetailsmain .pdtinfo-list .product-desc .desc-title h1{font-size: 1.3rem;}
.pdtdetailsmain .pdtinfo-list .product-desc .separator{width: 5rem;margin-bottom: .6rem;}
.pdtdetailsmain .pdtinfo-list .product-desc .desc-info{margin-top: 1rem;}
.pdtdetailsmain .pdtinfo-list .product-desc .desc-info p{font-size: .98rem;line-height: 2rem;}


.pdtdetailsmain .pdtlist-title{display:flex;align-items:center}
.pdtdetailsmain .pdtlist-title::before{width:3px;height: 1.2rem;}
.pdtdetailsmain .pdtlist-title h1{font-size: 1.5rem;margin-left: .6rem;}
.pdtdetailsmain .pdtfeatures{margin-top: 2rem;}
.pdtdetailsmain .pdtfeatures .pdt-trait{margin-top: 1.8rem;}
.pdtdetailsmain .pdtfeatures .pdt-trait ul{flex-wrap: wrap;}
.pdtdetailsmain .pdtfeatures .pdt-trait ul li{width: 48%;height: 10rem;margin-bottom: 1rem;}
.pdtdetailsmain .pdtfeatures .pdt-trait ul li .trait-img{}
.pdtdetailsmain .pdtfeatures .pdt-trait ul li .trait-img img{width: 2rem;height:auto;}
.pdtdetailsmain .pdtfeatures .pdt-trait ul li .trait-desc{margin: .7rem 0;padding: 0 .5rem;text-align:center;}
.pdtdetailsmain .pdtfeatures .pdt-trait ul li .trait-desc span{font-size: .95rem;color:#979797;}
.pdtdetailsmain .pdtfeatures .pdt-trait ul li .trait-nmb{}
.pdtdetailsmain .pdtfeatures .pdt-trait ul li .trait-nmb span{width: 1.5rem;height: 1.5rem;font-size: .95rem;line-height: .95rem;}


.pdtdetailsmain .recommendpdt{margin-top:2rem}
.pdtdetailsmain .recommendpdt .pdt-trait{margin-top: 1.8rem;}
.pdtdetailsmain .recommendpdt .pdt-img{height: 222px;}
.pdtdetailsmain .recommendpdt .pdt-img img{width: 100%;}
.pdtdetailsmain .recommendpdt .pdt-title{padding: .8rem .5rem;}
.pdtdetailsmain .recommendpdt .pdt-title span{font-size: 1.1rem;}

.pdtdetailsmain .recommendpdt .swiper-button-prev{background-size: 2.5rem;left: -0; top:32%;width: 2.5rem; height:2.5rem;}
.pdtdetailsmain .recommendpdt .swiper-button-next{background-size: 2.5rem;right: -0; top: 32%; width: 2.5rem; height: 2.5rem;}
    
    
/****************************************产品与服务详情 End***********************************************/



/****************************************新闻中心页 Start*************************************************/
.newshdbanner .banner-infos .font-bjimg{background-size: 60%;}
.newsmain{}
.newsmain .newsinfo-list{padding:2rem 0 1.7rem 0}
.newsmain .newsinfo-list ul{width:100%;display:flex;flex-wrap:wrap;justify-content: space-between;}
.newsmain .newsinfo-list ul li{width:48%;margin-right:0;margin-bottom:100px;}
.newsmain .newsinfo-list ul li:nth-child(3n){margin-right: 0;}
.newsmain .newsinfo-list ul li a{display:block}
.newsmain .newsinfo-list ul li .news-img{height: 6rem;overflow: hidden;}
.newsmain .newsinfo-list ul li .news-img img{width:100%}
.newsmain .newsinfo-list ul li .news-title{padding: 30px 30px;}
.newsmain .newsinfo-list ul li .news-title span{font-size: .98rem;}
.newsmain .newsinfo-list ul li .news-desc{padding: 0 .5rem;margin-bottom: .5rem;}
.newsmain .newsinfo-list ul li .news-desc p{font-size: .95rem;line-height: 1.5rem;}
.newsmain .newsinfo-list ul li .news-time{padding: 20px .5rem;}
.newsmain .newsinfo-list ul li .news-time time{font-size: .93rem;}
.newsmain .newsinfo-list ul li .news-time img{width: 2rem;}
/****************************************新闻中心页 End***************************************************/


/****************************************新闻详情页 Start*************************************************/
.newsdetailsmain{padding:2rem 0;}
.newsdetailsmain .newsdetails-list{padding:1.5rem 120px;}
.newsdetailsmain .newsdetails-list .news-hdbox{padding-bottom:120px;border-bottom:1px solid #e5e5e5;}
.newsdetailsmain .newsdetails-list .news-hdbox .news-title{margin-bottom:.5rem}
.newsdetailsmain .newsdetails-list .news-hdbox .news-title h1{font-size:130px;}
.newsdetailsmain .newsdetails-list .news-hdbox .news-time{}
.newsdetailsmain .newsdetails-list .news-hdbox .news-time time{font-size:.95rem;margin-right:100px;}
.newsdetailsmain .newsdetails-list .news-hdbox .news-time span{font-size:.95rem;margin-right:100px;}
.newsdetailsmain .newsdetails-list .news-content{padding:80px 0;width: 100%;overflow: hidden;}
.newsdetailsmain .newsdetails-list .news-content p{font-size:.95rem;margin:100px 0;}
.newsdetailsmain .newsdetails-list .news-content img{width: 100%;}
.newsdetailsmain .newsdetails-list .news-fynav{margin-top:100px;padding-top:.7rem;flex-wrap: wrap;}
.newsdetailsmain .newsdetails-list .news-fynav .fynav-list{width: 100%;}
.newsdetailsmain .newsdetails-list .news-fynav .fynav-list div{width: 100%;padding:30px 0;font-size: .95rem;white-space: nowrap; text-overflow: ellipsis; overflow: hidden; word-break: break-all;}
.newsdetailsmain .newsdetails-list .news-fynav .fynav-list span{padding:30px 0;font-size: .95rem;}
.newsdetailsmain .newsdetails-list .news-fynav .fynav-list a{padding:30px 0;font-size: .95rem;}
.newsdetailsmain .newsdetails-list .news-fynav .returnlist{margin: 100px auto 0 auto;}
.newsdetailsmain .newsdetails-list .news-fynav .returnlist a{padding:60px 1.100px;}
.newsdetailsmain .newsdetails-list .news-fynav .returnlist span{font-size: .95rem;margin-right: .5rem;}
.newsdetailsmain .newsdetails-list .news-fynav .returnlist img{width:100px}
/****************************************新闻详情页 End***************************************************/


/****************************************联系我们页 Start*************************************************/
.contactusmain{padding-bottom: 3rem;}
.contactusmain .banner-infos .font-bjimg{background-size: 50%}
.contactusmain .column-title span{font-size: .95rem;}
.contactusmain .column-title h1{font-size: 1.5rem;margin-top: .3rem;margin-bottom: .7rem;}
.contactusmain .column-title .separator{width: 5rem;}
.contactusmain .contact-list{margin-top: 2rem;flex-wrap: wrap;}
.contactusmain .contact-list .contactinfos{width: 100%;padding: 1.3rem;}
.contactusmain .contact-list .contactinfos .column-title span{color: white;font-size: .85rem;}
.contactusmain .contact-list .contactinfos .column-title h1{color: white;font-size: 1.6rem;}
.contactusmain .contact-list .contactinfos .column-title .separator{background-color: white;width: 5rem;}
.contactusmain .contact-list .contactinfos .infos-box{margin-top: 1rem;}
.contactusmain .contact-list .contactinfos .infos-box .pubinfos{padding: .95rem 0;}
.contactusmain .contact-list .contactinfos .infos-box .pubinfos img{width: 1.3rem;margin-right: .9rem;}
.contactusmain .contact-list .contactinfos .infos-box .pubinfos span{font-size: .9rem;}
.contactusmain .contact-list .contactinfos .infos-box .pubinfos p{font-size: .9rem;margin-bottom: .6rem;}
.contactusmain .contact-list .contactinfos .infos-box .pubinfos p:last-child{margin-bottom: 0;}
.contactusmain .contact-list .contactinfos .infos-box .addr{}
.contactusmain .contact-list .contactinfos .infos-box .phone-llst{}
.contactusmain .contact-list .contactinfos .infos-box .email{}
.contactusmain .contact-list .contactinfos .infos-box .fax{}
.contactusmain .contact-list .contactmap{width: 100%;height: 20rem;margin-top: 2rem;position: relative;}
.contactusmain .contact-list .contactmap .allmap{width: 100%;height: 20rem;z-index: 1;}
.contactusmain .contact-list .contactmap #branchoffice{position: absolute;right: 0; bottom: 0;z-index: 99999999999999999;}
.contactusmain .contact-list .contactmap #branchoffice ul{display: flex;align-items: center;}
.contactusmain .contact-list .contactmap #branchoffice ul li{}
.contactusmain .contact-list .contactmap #branchoffice ul li:first-child a{margin-right: 1rem;}
.contactusmain .contact-list .contactmap #branchoffice ul li a{padding: .6rem .95rem;font-size: .9rem;}
.contactusmain .contact-list .contactmap #branchoffice ul li.on a{}


.contactusmain .onlinemessage{margin-top: 3rem;}
.contactusmain .onlinemessage form{width: 100%;margin-top: 1.8rem;display: flex;align-items: flex-start;justify-content: space-between;flex-wrap: wrap;}
.contactusmain .onlinemessage form .left-input{width: 100%;}
.contactusmain .onlinemessage form .left-input .inputs{width: 100%;margin-bottom: 1.2rem;padding-left: .8rem;}
.contactusmain .onlinemessage form .left-input .inputs span{font-size: .95rem;}
.contactusmain .onlinemessage form .left-input .inputs input{width: 75%;font-size: .95rem;padding: .95rem 0;}
.contactusmain .onlinemessage form .right-btns{width: 100%;}
.contactusmain .onlinemessage form .right-btns .inputs{width: 100%;margin-bottom: 30px;}
.contactusmain .onlinemessage form .right-btns .inputs textarea{font-size: .95rem;padding: 1rem;}
.contactusmain .onlinemessage form .right-btns .submbtns{display: flex;justify-content: space-around; align-items: center;}
.contactusmain .onlinemessage form .right-btns .submbtns input{width: 35%;font-size: .9rem;padding: .95rem 0;}
.contactusmain .onlinemessage form .right-btns .submbtns input[type="submit"]{color: white;background-color: #0058b2;}
.contactusmain .onlinemessage form .right-btns .submbtns input[type="reset"]{}
/****************************************联系我们页 End***************************************************/



/****************************************下载中心页 Start*************************************************/
.downloadhdbanner .banner-infos .font-bjimg{background-size: 50%;}
.downloadmain{padding:2rem 0;}
.downloadmain .down-list{margin-bottom: 2rem;}
.downloadmain .down-list ul{}
.downloadmain .down-list ul li{padding: 130px;margin-bottom: 130px;flex-wrap: wrap;}
.downloadmain .down-list ul li:last-child{margin-bottom:0}
.downloadmain .down-list ul li .file-info{display:flex;align-items:center;margin-bottom: .7rem;}
.downloadmain .down-list ul li .file-info img{width: 120px;margin-right: .5rem;}
.downloadmain .down-list ul li .file-info span{font-size: .95rem;}
.downloadmain .down-list ul li .time-btn{display:flex;align-items: center;justify-content: space-between;width: 100%;}
.downloadmain .down-list ul li .time-btn .times{margin-right: 0;}
.downloadmain .down-list ul li .time-btn .times time{font-size: .95rem;}
.downloadmain .down-list ul li .time-btn .btns{display:flex;align-items:center;}
.downloadmain .down-list ul li .time-btn .btns a{font-size: 80px;padding: 60px 1.5rem;}
.downloadmain .down-list ul li .time-btn .btns a:first-child{margin-right: 80px;}
/***************************************下载中心页 End****************************************************/


}

@media screen and (max-width:600px){
/* 公共样式 */

/*分页*/

/************************************首页 Start*******************************************************/

/* 导航 */


/* 轮播图 */


/* 关于我们 */


/* 产品展示 */


/* 新闻中心 */


/* 底部导航 */

/******************************************首页 End*****************************************************/



/****************************************关于我们页 Start************************************************/

/****************************************关于我们页 End**************************************************/



/****************************************产品与服务页 Start***********************************************/

/****************************************产品与服务页 End*************************************************/



/****************************************产品与服务详情页 Start*******************************************/

/****************************************产品与服务详情 End***********************************************/



/****************************************新闻中心页 Start*************************************************/

/****************************************新闻中心页 End***************************************************/



/****************************************新闻详情页 Start*************************************************/

/****************************************新闻详情页 End***************************************************/



/****************************************联系我们页 Start*************************************************/

/****************************************联系我们页 End***************************************************/



/****************************************下载中心页 Start*************************************************/

/***************************************下载中心页 End****************************************************/

}

@media screen and (max-width:375px){


}
@media screen and (max-width:360px){


}


@media screen and (max-width:320px){

}