@charset "UTF-8";

:root{
 --font-size-nav:18px;
 --font-size-subnav:16px;
 --font-size-banTitle:40px;
 --font-size-certTitle:60px;
 --font-size-small:16px;
 --font-size-busTitle:30px;

 --font-color: #051F2C;
 --font-color-active:#006AB6; 
 --font-color-text:#76848B;
}

@media screen and (max-width: 1200px){
	:root{
		--font-size-nav:16px;
		--font-size-subnav:14px;
		--font-size-banTitle:30px;
		--font-size-certTitle:40px;
		--font-size-busTitle:26px;
	}
}

@media screen and (max-width: 992px){
	:root{
		--font-size-nav:14px;
		--font-size-subnav:14px;
		--font-size-banTitle:22px;
		--font-size-small:14px;
		--font-size-certTitle:30px;
		--font-size-busTitle:20px;
	}
}

@media screen and (max-width: 768px){
	:root{
		--font-size-banTitle:18px;
		--font-size-certTitle:20px;
		--font-size-busTitle:20px;
	}
}

@media screen and (max-width: 576px){
	:root{
		--font-size-banTitle:16px;
		--font-size-certTitle:16px;
	}
}

/* 页面共用样式 */
html,
body{
	height: 100vh;
}

*{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box !important;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	font-family: -apple-system,BlinkMacSystemFont,Segoe Ul,Roboto,Helvetica Neue,Helvetica,Arial,PingFang SC, Hiragino SansGB,Microsoft YaHei Ul, Microsoft YaHei, Source Han Sans CN,sans-serif;
	font-size: 14px;
	overflow-y: auto;
	overflow-x: hidden;
	background-color: #fff;
	color: var(--font-color);
}

li {
	list-style-type: none;
}

/*包含以下五种的链接*/
a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
	margin:0;
}

.float-right {
	float: right;
}

.float-left {
	float: left;
}

.clear::after {
	content: "";
	display: block;
	clear: both;
}

/* 谷歌 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
}

i{
	font-style: normal;
}
dl, ol, ul {
	margin-top: 0;
	margin-bottom: 0;
}

ol, ul {
	padding-left: 0;
}
.imglocation{
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 50%;
}
.imglocation > img{
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.embellish{
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-image: url('../images/embellish-2.png');
	background-position: center center;
	background-repeat: no-repeat;	
	background-size: 100% 100%;
}
.hover{
	-webkit-transition: all 0.15s;
	transition: all 0.15s;
}
.hover:hover{
	opacity: 0.85;
}
.hover:active{
	opacity: 1;
}

 /* 修改 input 选中默认值时背景色改变 */
 input.whiteBg:-webkit-autofill,
 input.whiteBg:-webkit-autofill:hover,
 input.whiteBg:-webkit-autofill:focus,
 input.whiteBg:-webkit-autofill:active{
	-webkit-box-shadow: 0 0 0px 50px #ffffff inset !important;
	box-shadow: 0 0 0px 50px #ffffff inset !important;
 }

.smScrollbar{
	overflow-y: auto;
}
.smScrollbar::-webkit-scrollbar {
	width: 5px;
	height: 10px;
}
.smScrollbar::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: hsla(0, 0%, 60%, .4);
}
.smScrollbar::-webkit-scrollbar-track {
	border-radius: 10px;
	background: hsla(0, 0%, 93.3%, .6);
}
.object-fit-cover{object-fit: cover;}
.object-fit-contain{object-fit: contain;}

 @media (min-width: 1400px){
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
			max-width: calc(1200px + 1.5rem);
	}
}
 
/* ---------未找到页面----------- */
.notfindbox{
	width: 60%;
	max-width: 480px;
	margin:0 auto;
	margin-top: 50px;
}
.notfind{
	position: relative;
	height: 0px;
	padding-top:61.3%;
}
.notfind img{
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.tohome{
	text-align: center;
	margin-top: 30px;
}
.tohome >a{
	display: inline-block;
	color: var(--font-color);
	font-size: var(--font-size-small);
	padding:8px 16px;
	border:1px solid #ececec;
	border-radius: 8px;
}
.tohome >a:hover{
	color: var(--font-color-active);
}


/* 设置 编辑器内的样式 */
.wp-content{
	font-size: 16px;
	line-height: 1.8;
}
.wp-content p{
	margin-top: 1em;
	margin-bottom: 0;
	min-height: 14px;
}
.wp-content ul,
.wp-content ol{
	padding-left: 1.2rem;
	margin-bottom: 1em;
}
.wp-content h1, 
.wp-content h2, 
.wp-content h3, 
.wp-content h4, 
.wp-content h5, 
.wp-content h6 {
	margin-top: 1em;
	margin-bottom: 1em;
}
.wp-content ul li{
	list-style: disc outside none;
}
.wp-content .retract{
	padding-left: 2em;
}
.wp-content .retract + *{
	margin-top: 0;
}
.wp-content ol{
	counter-reset: num;
	padding-left: 0;
}
.wp-content ol li{
	counter-increment: num; 
	list-style:none;
	position: relative;
	padding-left: 25px;
}
.wp-content ol li:nth-child(n+10){
	padding-left: 34px;
}
.wp-content ol li::before{
	content: counter(num) '、';
	position: absolute;
	top: 0;
	left: 0;
}
.wp-content .aligncenter{
	display: block;
	margin: 0 auto;
}
.wp-content img{
	max-width: 100%!important;
	height: auto;
}
.wp-content .wp-tableBox{
	width: 100%;
	overflow-x: auto;
}
.wp-content table{
	border-collapse: collapse;
	width: 100%!important;
	line-height: 1.4;
}
.wp-content table p{
	min-height: 0;
	margin-top: 1rem;
	margin-bottom: 0;
}
.wp-content table p:first-child{
	margin-top: 0;
}
.wp-content tbody, 
.wp-content td, 
.wp-content tfoot, 
.wp-content th, 
.wp-content thead, 
.wp-content tr{
	border: 1px solid gray;
}
.wp-content td, .wp-content th {
	padding: 12px 5px;
	/* word-break: break-all; */
	min-width: 86px;
}
.wp-content table thead,
.wp-content table th{
	font-weight: bold;
}

/* 公共 */
body{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

/* 头部 */
header{
	position: fixed;
	height: 70px;
	top: 0;
	left: 0;
	width: 100%;
	box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.03);
	z-index: 10;
	background-color: #fff;
}
.topheader{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}
.topheader .logo{
	width: 100px;
	height: 38px;
	font-size: 0px;
}
.topheader .logo a{
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('../images/logo.png');
	background-position: center center;
	background-repeat: no-repeat;
}
.topheader .nav{
	height: 100%;
	display: flex;
	justify-content: flex-start;
}
.topheader .nav .item:not(:first-child){
	margin-left: 40px;
}
.topheader .nav .item{
	height: 100%;
	display: flex;
	align-items: center;
}
.topheader .nav .item.hasChild{
	padding-right: 16px;
	position: relative;
}
.topheader .nav .item.hasChild > a{
	cursor: default;
}
.topheader .nav .item.hasChild::after{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background-image: url('../images/svg/arrow.svg');
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.topheader .nav .item.hasChild:hover::after{
	transform: translateY(-50%) rotate(180deg);
}
.topheader .nav .item > a{
	display: block;
	line-height: 2;
	color: var(--font-color);
	font-size: var(--font-size-subnav);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.topheader .nav .item.is_active > a,
.topheader .nav .item:hover > a{
	color: var(--font-color-active);
	font-weight: 500;
}
.topheader .nav .item .subnav{
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	min-width: 158px;
	background: #FFFFFF;
	box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.1);
	border-radius: 8px;
	/* padding:8px 0px; */
	overflow: hidden;
}
.topheader .nav .item .subnav .subitem{
	position: relative;
}
.subnav .menuDeg{
	position: absolute;
	z-index: -1;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0;
}
.subnav .deg1{
	background-image: url('../images/menu-icon1.png');
	width: 9px;
	height: 9px;
	top: 10px;
	right: 5px;
	transition: all 0.1s ease 0s;
	-webkit-transition: all 0.1s ease 0s; /* Safari */
}
.topheader .nav .item .subnav .subitem:hover .deg1{
	opacity: 1;
	top: 27px;
	right: 21px;	
}
.subnav .deg2{
	background-image: url('../images/menu-icon2.png');
	width: 13px;
	height: 12px;
	top: 10px;
	right: 0px;
	transition: all 0.1s ease 0.1s;
	-webkit-transition: all 0.1s ease 0.1s; /* Safari */
}
.topheader .nav .item .subnav .subitem:hover .deg2{
	opacity: 1;
	top: 16px;
	right: 12px;	
}
.subnav .deg3{
	background-image: url('../images/menu-icon3.png');
	width: 9px;
	height: 15px;
	top: 10px;
	right: 0px;
	transition: all 0.1s ease 0.15s;
	-webkit-transition: all 0.1s ease 0.15s; /* Safari */
}
.topheader .nav .item .subnav .subitem:hover .deg3{
	opacity: 1;
}
.subnav .deg4{
	background-image: url('../images/menu-icon4.png');
	width: 14px;
	height: 17px;
	top: 32px;
	right: -12px;
	transition: all 0.1s ease 0.2s;
	-webkit-transition: all 0.1s ease 0.2s; /* Safari */
}
.topheader .nav .item .subnav .subitem:hover .deg4{
	opacity: 1;
	right: 0px;
}
.topheader .nav .item .subnav .subitem a{
	display: block;
	/* padding:4px 16px; */
	padding:15px 16px;
	font-size: var(--font-size-subnav);
	color: var(--font-color);
	white-space: nowrap;
}
.topheader .nav .item .subnav .subitem a:hover{
	color: var(--font-color-active);
}

.topheader .topSearch{
	position: relative;
}
.topheader .topSearch button{
	position: absolute;
	top: 50%;
	left: 15px;
	background-color: transparent;
	border: none;
	outline: none;
	color: #666;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background-image: url('../images/search.png');
	background-position: center center;
	background-repeat: no-repeat;
}
.topheader .topSearch input{
	width: 250px;
	height: 40px;
	display: block;
	border-radius: 20px;
	border: 1px solid #CFD7D8;
	outline: none;
	padding-left:35px;
	padding-right:30px;
	font-size: 14px;
}
.topheader .topSearch input::-webkit-input-placeholder{
	color:#666;
	font-size:14px;
}
.topheader .topSearch input:-moz-placeholder{
	color:#666;
	font-size:14px;
}
.topheader .topSearch input::-moz-placeholder{
	color:#666;
	font-size:14px;
}
.topheader .topSearch input:-ms-input-placeholder{
	color:#666;
	font-size:14px;
}
.topheader .clearInput{
	display: none;
	position: absolute;
	top: 50%;
	right: 15px;
	background-color: transparent;
	border: none;
	outline: none;
	color: #666;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background-image: url('../images/close.png');
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
}

.topheader .topSearch-resultBox{
	display: none;
	width: 100%;
	position: absolute;
	top: calc(100% + 25px);
	left: 50%;
	transform: translateX(-50%);
	background: #FFFFFF;
	box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.1);
	border-radius: 8px;
}
.topheader .topSearch-resultBox .resultInfo{
	display: block;
	height: 44px;
	line-height: 44px;
	color: #76848B;
	padding:0px 15px;
}
.topheader .topSearch-resultBox > ul{
	max-height: 322px;
}
.topheader .topSearch-resultBox > ul li a{
	font-size: 16px;
	line-height: 26px;
	color: #051F2C;
	display: block;
	height: 46px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding:10px 15px;
}
.topheader .topSearch-resultBox > ul li a i{
	color: var(--font-color-active);
	font-style: normal;
}
.topheader .topSearch-resultBox > ul li a:hover{
	background-color: rgba(0,0,0,0.08);
}

.moBtn{
	width: 44px;
	height: 36px;
	display: none;
	flex-direction: column;
	justify-content: space-around;
	border: 1px solid #e5e5e5;
	border-radius: 0.375rem;
	padding:8px 12px;
	cursor: pointer;
}
.moBtn span{
	height: 2px;
	background-color: rgba(0,0,0,0.55);
}

.moMenus{
	border-top: 1px solid #e5e5e5;
	background-color: #fff;
	position: absolute;
	top: 70px;
	left: 0;
	max-height: calc(100vh - 70px);
	width: 100%;
	box-shadow: 0px 5px 10px -5px rgb(0 0 0 / 15%);
	z-index: 10;
	overflow-y: auto;
	padding-bottom: 16px;
	display: none;	
}
.moNav .moNavItem{
	border-bottom: 1px solid #e5e5e5;
	position: relative;
}
.moNav .moNavItem.hasChild::after{
	content:'';
	position: absolute;
	top: 12px;
	right: 0px;
	width: 12px;
	height: 20px;
	background-image: url('../images/svg/arrow-next.svg');
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.moNav .moNavItem.hasChild.open::after{
	background-image: url('../images/svg/arrow-next1.svg');
	transform: rotate(90deg);
}

.moNav .moNavItem.is_active > a{
	color: var(--font-color-active);
}
.moNav .moNavItem > a{
	line-height: 20px;
	padding:12px;
	display: block;
	color: var(--font-color);
	font-size: 16px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.moNav .moNavItem.open .moSubnav{
	display: block;
}
.moNav .moNavItem .moSubnav{
	display: none;
	padding:0px 12px;
	background-color: #F2F9FF;
}
.moNav .moNavItem .moSubnav .moSubitem:not(:last-child){
	border-bottom: 1px solid #e5e5e5;
}
.moNav .moNavItem .moSubnav .moSubitem a{
	display: block;
	line-height: 18px;
	padding:12px;
	color: var(--font-color);
}
.moNav .moNavItem .moSubnav .moSubitem.is_active a{
	color: var(--font-color-active);
}

/* 中、英切换按键 */
.cn-en-switch{
	position: fixed;
	top: 21px;
	right: 15px;
	z-index: 11;
	background-color: transparent;
	background-image: url('../images/svg/lang_en.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 25px;
	height: 25px;
}

/* 内容 */
.pwContent{
	padding-top: 70px;
	flex: 1;
}
@media screen and (max-width: 1400px){
	.topheader .topSearch input{
		width: 200px;
	}
}
@media screen and (max-width: 1200px){
	header{
		height: 56px;
	}
	.cn-en-switch{
		top: 15px;
	}
	.pwContent{
		padding-top: 56px;
	}
	.moMenus{
		top: 56px;
	}
	.topheader .nav .item:not(:first-child){
		margin-left: 15px;
	}
	.topheader .topSearch input{
		width: 250px;
	}
	.topheader .topSearch-resultBox{
		top: calc(100% + 21px);
	}
}
@media screen and (max-width: 1100px){
	.cn-en-switch{
		position: static;
	}
}
@media screen and (max-width: 992px){
	.topheader{
		max-width: 100%;
	}
	.topheader .nav .item:not(:first-child){
		margin-left: 10px;
	}
	.topheader .topSearch input{
		width: 160px;
		height: 34px;
	}
	.topheader .nav .item .subnav{
		min-width: 140px;
	}
}
@media screen and (max-width: 768px){
	.topheader{
		max-width: 540px;
	}
	.topheader .nav{
		display: none;
	}
	.moBtn{
		display: flex;
	}
	.topheader .topSearch input{
		width: 190px;
	}
}
@media screen and (max-width: 576px){
	.topheader{
		padding:0 5px;
	}
	.topheader .topSearch input{
		width: 160px;
	}
}

/* 底部 */
.footer{
	flex-shrink: 0;
	background-color: #fff;
	overflow-x: hidden;
}
.footer .ftbox{
	box-shadow: 0px 1px 0px 0px rgba(0,0,0,0.07);
	display: flex;
	justify-content: space-between;
	padding:4rem 0px;
}
.footer .ftbox .ft-left{
	display: flex;
	justify-content: flex-start;
}
.footer .ftbox .ft-left .ft-left-item{
	flex: 0 0 auto;
	width: 150px;
	padding-right: 1rem;
}
.footer .ftbox .ft-left .ft-left-item > h5{
	font-size: 16px;
	font-weight: 600;
	color: var(--font-color);
	line-height: 22px;
}
.footer .ftbox .ft-left .ft-left-item  .ft-item-ul{
	margin-top: 0.8rem;
}
.footer .ftbox .ft-left .ft-left-item  .ft-item-ul a{
	font-size: 14px;
	color: #4A5459;
	line-height: 20px;
}
.footer .ftbox .ft-left .ft-left-item  .ft-item-ul a:hover{
	color: var(--font-color-active);
}
.footer .ftbox .ft-left .ft-left-item  .ft-left-item-title a{
	font-size: 16px;
	font-weight: 600;
	color: var(--font-color);
	line-height: 22px;
}
.footer .ftbox .ft-right{
	position: relative;
}
.footer .ftbox .ft-right .ft-location{
	position: absolute;
	top: 60%;
	left: 240px;
	z-index: 1;
	width: 410px;
	height: 366px;
	transform: translateY(-50%);
	background-image: url('../images/ft-location.png');
	background-position: center center;
	background-size: auto 100%;
	background-repeat: no-repeat;
}
.footer .ftbox .ft-right .ftLogo{
	position: relative;
	z-index: 2;
	display: block;
	width: 100px;
	height: 38px;
	margin-bottom: 2.5rem;
	background-image: url('../images/logo.png');
	background-position: center center;
	background-repeat: no-repeat;
}
.footer .ftbox .ft-right .ft-right-info{
	position: relative;
	z-index: 2;
	width: 318px;
	font-size: 16px;
	font-weight: 600;
	color: var(--font-color);
	line-height: 22px;
}
.footer .footerTip{
	height: 56px;
	text-align: center;
	font-size: 12px;
	color: #949AAF;
	line-height: 56px;
}
.footer .footerTip a{
	color: #949AAF;
}
.footer .footerTip a:hover{
	color: #666;
}
@media screen and (max-width: 992px){
	.footer .ftbox{
		flex-wrap: wrap;
	}
	.footer .ftbox .ft-left{
		flex: 0 0 100%;
		justify-content: space-between;
	}
	.footer .ftbox .ft-left .ft-left-item{
		flex: 0 0 auto;
		width: 25%;
	}
	.footer .ftbox .ft-left .ft-left-item:last-child{
		padding-right: 0px;
	}
	.footer .ftbox .ft-right{
		margin-top: 2rem;
		flex: 0 0 100%;
	}
	.footer .ftbox .ft-right .ft-location{
		height: 340px;
	}
}

/* 右下角的联系我们 按键 */
.msgBox{
	position: fixed;
	bottom:185px;
	right: 16px;
	z-index: 10;
	width: 88px;
	height: 80px;
	background-color: #006AB6;
	box-shadow: 0px 21px 29px 0px rgba(0,106,182,0.26);
	border-radius: 20px;
	cursor: pointer;
	background-image: url('../images/msg-bg.png');
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.msgBox .msg-icon{
	display: block;
	width: 100%;
	height: 20px;
	background-image: url('../images/msg.png');
	background-position: center center;
	background-repeat: no-repeat;
}
.msgBox .msg-info{
	margin-top: 10px;
	margin-bottom: 3px;
	font-size: 14px;
	color: #FFFFFF;
	line-height: 1;
	text-align: center;
}
@media screen and (max-width: 768px){
	.msgBox{
		bottom:150px;
		right: 8px;
		width: 40px;
		height: 40px;
		background-size: cover;
		border-radius: 12px;
	}
	.msgBox .msg-info{
		display: none;
	}
}

/* 标题粗体样式 */
.titleBlod{
	font-weight: 600;
	color: var(--font-color);
}

/* ------ 不同页面的样式 ------ */
.mycontent{
	position: relative;
	min-height: 100%;
	background-color:#F7FBFD;
}

/* index 页面 */
.index-info{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 16px;
	color: var(--font-color);
}

/* banner */
.pw-banner{
	padding-top: 20.833%;
}
.pw-banner.business-banner{
	padding-top: 12.40%;
}
.pw-banner.business-banner .ban-infobox{
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	transform: translate(-50%,-50%);
	text-align: center;
}
.pw-banner .ban-infobox{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
	z-index: 5;
}
.pw-banner .ban-infobox h2{
	font-size: var(--font-size-banTitle);
	line-height: 1.4;
	color: #FFFFFF;
}
.pw-banner .ban-infobox p{
	color: #FFFFFF;
	font-size: var(--font-size-subnav);
	margin-bottom: 0;
	line-height: 1.4;
	margin-top: 10px;
	max-width: 500px;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
	overflow: hidden;
}
.pw-banner .embellish-2{
	background-image: url('../images/embellish-2.png');
}
@media screen and (max-width: 768px){
	.pw-banner .ban-infobox p{
		line-height: 1.2;
		margin-top: 0px;
		max-width: 380px;
		-webkit-line-clamp: 3;
	}
}
@media screen and (max-width: 576px){
	.pw-banner .ban-infobox p{
		max-width: 260px;
		-webkit-line-clamp: 2;
	}
}

/* 公司简介 */
.company-title{
	font-size: 40px;
	line-height: 1.4;
	color: var(--font-color);
	text-align: center;
}
.profilebox{
	font-size: var(--font-size-subnav);
	color: #76848B;
	line-height: 1.9;	
}

/* 公正性说明 */
.fairness-banner{
	padding-top: 26.9%;
}
.fairness{
	min-height: 439px;
	background-image: url('../images/bg1.png');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: contain;
	position: relative;
	z-index: 6;
}
.fairness-content{
	background-image: url('../images/bg2.png');
	background-position: top right;
	background-repeat: no-repeat;
	background-color: #FFFFFF;
	box-shadow: 0px 2px 31px 0px rgba(0,0,0,0.02);
	border-radius: 10px;	
	position: relative;
	top: -180px;
	padding:3rem;
}
.fairness-content .fairness-title{
	font-size: 40px;
	line-height: 1.4;
	color: var(--font-color);
}
.fairness-content .fairness-infobox{
	font-size: var(--font-size-subnav);
	color: #76848B;
	line-height: 1.9;	
}
.fairness-content .fairness-infobox strong{
	font-weight: 600;
}

@media screen and (max-width: 1200px){
	.company-title,
	.fairness-content .fairness-title{
		font-size: 30px;
	}
	.fairness-content{
		top: -120px;
	}
}
@media screen and (max-width: 768px){
	.fairness{
		padding:2rem 0;
	}
	.fairness-content{
		top: 0px;
		padding:1rem;
	}
}

/* 设置背景的位置 */
.bgLocation{
	position: relative;
	background-color: #F7FBFD;
}
.bgLocation .bgbox{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 0;
	background-repeat: no-repeat;
	background-size: cover;
}
.bgLocation .bgbox1{
	right: 55%;
	background-position: bottom left;
}
.bgLocation .bgbox2{
	left: 55%;
	background-position: top right;
}
.bgLocation .bgcontent{
	position: relative;
	z-index: 1;
}

/* 投诉建议 */
.suggestions{
	min-height: 100%;
	background-color: #F7FBFD;
	padding: 80px 0px;
}
.suggestions .bgbox{
	background-image: url('../images/bg3.png');
}
.suggestions-content{
	background: #FFFFFF;
	box-shadow: 0px 2px 31px 0px rgba(0,0,0,0.02);
	border-radius: 10px;
	background-image: url('../images/bg2.png');
	background-position: top right;
	background-repeat: no-repeat;
	padding:3rem;
}
.suggestions-content .suggestions-title{
	font-size: 40px;
	line-height: 1.4;
	color: var(--font-color);
}
.suggestions-content .suggestions-infobox{
	font-size: var(--font-size-subnav);
	color: #76848B;
	line-height: 1.9;	
}
@media screen and (max-width: 768px){
	.suggestions{
		padding: 50px 0px;
	}
	.suggestions-content{
		padding:1rem;
	}
}

/* 在线留言 */
.promptBox{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 8;
	font-size: 16px;
	background-color: #909399;
	padding:10px 18px;
	border-radius: 4px;
	color: #fff;
}
.promptBox.error{
	background-color: #f56c6c;
}
.promptBox.success{
	background-color: #67c23a;
}
.onlinemessage{
	min-height: 100%;
	background-color: #F7FBFD;
	padding: 80px 0px;
}
.onlinemessage .bgbox{
	background-image: url('../images/bg4.png');
}
.onlinemsgbox{
	background-color: #FFFFFF;
	border-radius: 10px;	
	overflow: hidden;
	display: flex;
}
.onlinemsgbox .msgleft{
	width: 440px;
	flex: 0 0 auto;
	background: -webkit-linear-gradient(133deg, #00ADBB 0%, #006AB6 100%);
	background: -moz-linear-gradient(133deg, #00ADBB 0%, #006AB6 100%);
	background: -o-linear-gradient(133deg, #00ADBB 0%, #006AB6 100%);
	background: -ms-linear-gradient(133deg, #00ADBB 0%, #006AB6 100%);
	background: linear-gradient(133deg, #00ADBB 0%, #006AB6 100%);
	padding:30px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.onlinemsgbox .msgleft .infobox{
	margin:3rem 0;
}
.onlinemsgbox .msgleft .infobox .info-item{
	display: block;
	font-size: var(--font-size-subnav);
	color: #fff;
	line-height: 1.2;
	margin-bottom: 1rem;
}
.onlinemsgbox .msgleft .mapbox{
	padding-top: 60%;
	background-color: #D8D8D8;
	border-radius: 10px;
	border: 5px solid #FFFFFF;
}
.onlinemsgbox .msgleft .mapbox img{
	border-radius: 10px;
	cursor: pointer;
}

.onlinemsgbox .msgright{
	flex: 1;
	padding: 0 3rem;
}
.onlinemsgbox .msgright > h4{
	font-size: 20px;
	color: var(--font-color);
	line-height: 28px;
	margin-top: 1.5rem;
}
.onlinemsgbox .msgright > p{
	margin-top: 0.25rem;
	margin-bottom: 0;
	font-size: 14px;
	color: #4A5459;
	line-height: 20px;
}
.onlinemsgbox .msgright .form-item{
	border-bottom: 1px solid #DEDFDF;
	position: relative;
}
.onlinemsgbox .msgright .form-item .input-item-placeholder{
	color:var(--font-color);
	font-size:14px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	height: 38px;
	line-height: 38px;
}
.onlinemsgbox .msgright .form-item .input-item-placeholder::after{
	content: '*';
	color: #ED000C;
}
.onlinemsgbox .msgright .form-item input{
	display: block;
	width: 100%;
	border: none;
	outline: none;
	font-size: 14px;
	color:var(--font-color);
	height: 38px;
	margin-top: 1.5rem;
	position: relative;
	z-index: 2;
	background-color: transparent;
}
.onlinemsgbox .msgright .form-item .tipInfo{
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	font-size: 12px;
	color:#ED000C;
	line-height: 25px;
}
.onlinemsgbox .msgright .bottomBtn{
	display: flex;
	justify-content: flex-end;
}
.onlinemsgbox .msgright button{
	border: none;
	outline: none;
	width: 136px;
	height: 50px;
	background-color: #006AB6;
	border-radius: 25px;
	color: #FFFFFF;
	line-height: 50px;
	font-size: 16px;
}
.onlinemsgbox .msgright button:disabled{
	cursor: default;
	opacity: 0.65;
}

.onlinemsgbox .msgright .bottomBtn.disabled button,
.onlinemsgbox .msgright .bottomBtn button:disabled{
	display: none;
}
.onlinemsgbox .msgright .bottomBtn button,
.onlinemsgbox .msgright .bottomBtn.disabled button:disabled{
	display: block;
}

@media screen and (max-width: 992px){
	.onlinemsgbox{
		flex-direction: column-reverse;
	}
	.onlinemsgbox .msgleft{
		width: 100%;
	}
	.onlinemsgbox .msgleft .infobox{
		margin:0 0 1rem 0;
	}
	.onlinemsgbox .msgright{
		padding: 0 30px;
	}
}

@media screen and (max-width: 768px){
	.onlinemessage{
		padding: 50px 0px;
	}
	.onlinemsgbox .msgleft{
		padding: 1rem;
	}
	.onlinemsgbox .msgright{
		padding: 0 1rem;
	}
}

 /* 资质证书 */
 .pw-banner .ban-infobox .certTitle{
		font-size: var(--font-size-certTitle);
 }
 .certContent-title{
	font-size: var(--font-size-banTitle);
	color: var(--font-color);
 }
.certContent .imgbox{
	padding-top: 138.06%;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	/* box-shadow: 0px 0px 17px 0px rgba(0,0,0,0); */
	z-index: 1;
	cursor: pointer;
}
.certContent .imgbox:hover{
	/* box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.5); */
	transform: scale(1.015);
}
.certContent .imgbox.honor{
	padding-top: 72.43%;
}
.certContent .honor img{
	object-fit: contain;
	background-color: transparent;
}
.certContent .imgTitle{
	color: #4A5459;
	line-height: 22px;
	font-size: 18px;	
	text-align: center;
	padding:1rem;
}
.certContent .row>*{
	margin-top: 2rem;
}


/* 修改轮播的一些样式 */
.carousel-indicators{
	margin:0;
	z-index: 4;
}
.carousel-indicators .indicatorsBox{
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	padding-bottom: 1rem;
}
.carousel-indicators [data-bs-target] {
	width: 2px;
	height: 10px;
	border: none;
	border-radius: 2px;
}
.carousel-indicators .active{
	height: 20px;
}
.carousel-control-next, 
.carousel-control-prev{
	display: none;
	width: 6%;
	top: 50%;
	bottom:auto;
	transform: translateY(-50%);
	z-index: 4;
}
.carousel:hover .carousel-control-next, 
.carousel:hover .carousel-control-prev{
	display: block;
}
.carousel-control-next-icon, 
.carousel-control-prev-icon{
	width: 3rem;
	height: 3rem;
}
.carousel-caption{
	z-index: 3;
	right: 0;
	bottom: auto;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	padding: 15px 0px;
	text-align: left;
}
.captionBox > h3{
	max-width: 500px;
	font-size: var(--font-size-banTitle);
	color: #fff;
	line-height: 1.4;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.captionBox > p{
	margin-top: 6px;
	margin-bottom: 0;
	max-width: 500px;
	font-size: 14px;
	color: #fff;
	line-height: 20px;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}
.captionBox > a{
	display: block;
	width: 104px;
	height: 50px;
	background-color: #006AB6;
	border-radius: 25px;
	line-height: 50px;
	color: #FFFFFF;
	text-align: center;
	margin-top: 2rem;
}
.captionBox > a:hover{
	opacity: 0.85;
}
@media screen and (max-width: 1200px){
	.captionBox > p{
		margin-bottom: 1rem;
	}
}
@media screen and (max-width: 992px){
	.captionBox > h3{
		max-width: 60%;
		-webkit-line-clamp: 2;
	}
	.captionBox > p{
		max-width: 60%;
		-webkit-line-clamp: 3;
	}
	.captionBox > a{
		width: 95px;
		height: 45px;
		border-radius: 25px;
		line-height: 45px;
		margin-top: 1rem;
	}
}
@media screen and (max-width: 768px){
	.captionBox > p{
		margin-bottom:5px;
	}
	.captionBox > a{
		display: none;
	}
	.carousel-indicators .container{
		padding-bottom: 0.25rem;
	}
	.carousel:hover .carousel-control-next, 
	.carousel:hover .carousel-control-prev{
		display: none!important;
	}
}
@media screen and (max-width: 576px){
	.captionBox > h3{
		max-width: 60%;
	}
	.captionBox > p{
		max-width: 60%;
		margin-top: 5px;
		-webkit-line-clamp: 2;
	}
}

/* 新闻资讯 */
.newsCarousel .news-banImg{
	padding-top: 41.667%;
}
.newsCarousel .carousel-item::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: rgba(0,0,0,0.6);
}
.newspage-location{
	font-weight: 14px;
	line-height: 20px;
}
.newspage-location > span{
	color: var(--font-color-text);
}
.newspage-location > a{
	color: var(--font-color);
}
.newsItem{
	display: block;
	background-color: #fff;
	border-radius:10px;
	overflow: hidden;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}
.newsItem:hover{
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
}
.newsItem .newsItemImg{
	padding-top: 41.667%;
}
.newsItem:hover .newsItemImg img{
	transform: scale(1.025);
}
.newsItem .newsItemTitle{
	height: 28px;
	line-height: 28px;
	font-size: 20px;
	color: var(--font-color);
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
.newsItem:hover .newsItemTitle{
	color: var(--font-color-active);
}
.newsItem .newsItemIntro{
	line-height: 22px;
	font-size: 16px;
	color: #4A5459;
	height: 44px;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.newsItem .newsItemTime{
	display: block;
	width: 100%;
	line-height: 22px;
	font-size: 16px;
	color: #4A5459;
	height: 22px;
	overflow: hidden;
	padding-left: 1rem;
	padding-right: 45px;
	position: relative;
}
.newsItem .newsItemTime::after{
	content: '';
	width: 28px;
	height: 28px;
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
	background-image: url('../images/next.png');
	background-position: center center;
	background-repeat: no-repeat;
}
.moreNews{
	padding:2.5rem 0;
}
.moreNews .loadMore{
	opacity: 0.8;
	cursor: default;
}
.moreNews button{
	display: none;
	margin:0 auto;
	border: none;
	outline: none;
	width: 186px;
	height: 50px;
	background-color: #006AB6;
	border-radius: 25px;
	color: #fff;
	line-height: 50px;
}
.moreNews .noMore{
	display: none;
	text-align: center;
	font-size: 16px;
	color: var(--font-color);
}
.moreNews[type="more"] .more,
.moreNews[type="noMore"] .noMore,
.moreNews[type="loadMore"] .loadMore{
	display: block;
}
.nextPage{
	display: none;
}

/* 新闻详情页 */
.detailBox .backBox{
	display: inline-block;
	width: 76px;
	height: 36px;
	background-color: #FFFFFF;
	border-radius: 18px;
	border: 1px solid #EAEAEA;
	display: flex;
	justify-content: center;
	align-items: center;
}
.detailBox .backBox i{
	width: 8px;
	height: 12px;
	background-image: url('../images/svg/arrow-pre.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	margin-right: 4px;
}
.detailBox .backBox span{
	color: #76848B;
	font-size: 14px;
	line-height: 1;
}

.detailBox .detailBanner{
	padding-top: 41.667%;
	background-color: #FFFFFF;
	border-radius: 10px;
	overflow: hidden;
}
.detailBox .detailTitle{
	font-size: 30px;
	color: var(--font-color);
	line-height: 1.4;	
}
.detailBox .publishTime{
	font-size: 16px;
	color: #76848B;
	line-height: 20px;	
}
.detailBox .direlinkBox{
	padding:1.5rem 0;
}
.detailBox .direlinkBox .direlink{
	width: 46%;
}
.detailBox .direlinkBox a{
	display: block;
	font-size: var(--font-size-small);
	color: #76848B;
	line-height: 20px;	
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.detailBox .direlinkBox a:hover{
	color: var(--font-color-active);
}
.detailBox .direlinkBox .float-left a{
	padding-left: 16px;
}
.detailBox .direlinkBox .float-left a::before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background-image: url('../images/dire1.png');
	background-position: center center;
	background-repeat: no-repeat;
}

.detailBox .direlinkBox .float-right a{
	padding-right: 16px;
	text-align: right;
}
.detailBox .direlinkBox .float-right a::after{
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background-image: url('../images/dire2.png');
	background-position: center center;
	background-repeat: no-repeat;
}
.moreNews .modlTitle{
	line-height: 1.4;
	font-size: 30px;
}
.moreNews.noMore{
	display: none;
}
@media screen and (max-width: 768px){
	.moreNews .modlTitle,
	.detailBox .detailTitle{
		font-size: 20px;	
	}
	.detailBox .direlinkBox a > span{
		display: none;
	}
}

/* 首页 banner轮播 */
.homeCarousel .banImgBox{
	padding-top: 38%;
}
.homeCarousel .banImgBox .bedeck{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/bg5.png');
	background-position: center center;
	background-repeat: no-repeat;	
	background-size: cover;
	z-index: 2;
}
.homeCarousel .carousel-caption {
	padding: 3rem 0px;
}
.homeCarousel .carousel-caption .bedeck-bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 65%;
	height: 100%;
	background: -webkit-linear-gradient(267deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
	background: -moz-linear-gradient(267deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
	background: -o-linear-gradient(267deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
	background: -ms-linear-gradient(267deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
	background: linear-gradient(267deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
	z-index: -1;
}
@media screen and (max-width: 992px){
	.homeCarousel .carousel-caption {
		padding: 1.5rem 0px;
	}
}
@media screen and (max-width: 768px){
	.homeCarousel .carousel-caption .bedeck-bg{
		display: none;
	}
}

/* 首页-业务范围 */
.home-business{
	min-height: 740px;
	position: relative;
}
.home-business .home-business-bg{
	position: absolute;
	z-index: 1;
	left: 0;
	height: 0;
	width: 100%;
	padding-top: 20.8%;
	background-image: url('../images/bg6.png');
	background-position: center center;
	background-repeat: no-repeat;	
	background-size: cover;
}
.home-business .hb-bg1{
	top: 0;
	background-position: top left;
}
.home-business .hb-bg2{
	bottom: 0;
	background-position: bottom right;
}
.home-business .container{
	position: relative;
	z-index: 2;
}
.module-title{
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-size: 50px;
	line-height: 1.4;
	text-align: center;
}
.module-intro{
	text-align: center;
	font-size: 20px;
	color: #6F7575;
	line-height: 1.4;
}

.swiperBox{
	position: relative;
}
.swiperItem{
	display: block;
	margin:0 0.75rem;
	background: -webkit-linear-gradient(133deg, #00ADBB 0%, #006AB6 100%);
	background: -moz-linear-gradient(133deg, #00ADBB 0%, #006AB6 100%);
	background: -o-linear-gradient(133deg, #00ADBB 0%, #006AB6 100%);
	background: -ms-linear-gradient(133deg, #00ADBB 0%, #006AB6 100%);
	background: linear-gradient(133deg, #00ADBB 0%, #006AB6 100%);
	border-radius: 32px;
	padding:0 1.5rem 1rem 1.5rem;
	position: relative;
	transition: all 0.3s;
	-webkit-transition: all 0.3s; /* Safari */
	transform: translateY(0);
}
.swiperItem .up{
	position: relative;
	z-index: 2;
}
.swiperItem .swiperItemImg{
	padding-top: 53.216%;
	transform: translateY(-2rem);
	transition: all 0.3s;
	-webkit-transition: all 0.3s; /* Safari */
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
	border-radius: 12px;
	overflow: hidden;
}
.swiperItem h5{
	color: #fff;
	font-size: 22px;
	line-height: 30px;
	height: 30px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.swiperItem p{
	margin-top: 1rem;
	margin-bottom: 0;
	color: #fff;
	font-size: 16px;
	line-height: 22px;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
	height: 132px;
	overflow: hidden;
}
.swiperItem .retouch{
	position: absolute;
	width: 38px;
	height: 38px;
	background-position: center center;
	background-repeat: no-repeat;	
	z-index: 1;
	opacity: 0;

}
.swiperItem:hover .swiperItemImg{
	transform: translateY(-4rem);
}
.swiperItem:hover{
	transform: translateY(1rem);
}
.swiperItem:hover .retouch{
	opacity: 1;
}
.swiperItem .rth-1{
	background-image: url('../images/retouch1.png');
	top: 0;
	left: calc(20% - 19px);
	transition: all 0.3s ease 0.1s;
	-webkit-transition: all 0.3s ease 0.1s; /* Safari */
}
.swiperItem:hover .rth-1{
	top: 35%;
}

.swiperItem .rth-2{
	background-image: url('../images/retouch2.png');
	top: 0;
	left: calc(40% - 19px);
	transition: all 0.3s ease 0.2s;
	-webkit-transition: all 0.3s ease 0.2s; /* Safari */
}
.swiperItem:hover .rth-2{
	top: 28.5%;
}

.swiperItem .rth-3{
	background-image: url('../images/retouch2.png');
	top:0;
	left: calc(60% - 19px);
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease; /* Safari */
}
.swiperItem:hover .rth-3{
	top: 38.5%;
}

.swiperItem .rth-4{
	background-image: url('../images/retouch1.png');
	top: 0;
	left: calc(80% - 19px);
	transition: all 0.3s ease 0.2s;
	-webkit-transition: all 0.3s ease 0.2s; /* Safari */
}
.swiperItem:hover .rth-4{
	top: 29%;
}



.swiper-button-next, .swiper-button-prev{
	color: var(--font-color);
	background-color: #fff;
	box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.07);
	border-radius: 10px;
	width: 60px;
	height: 60px;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
	color: #fff;
	background-color: var(--font-color-active);
}
.swiper-button-prev{
	left: -70px;
}
.swiper-button-prev::after{
	margin-right: 5px;
	background-image: url('../images/svg/bus-pre.svg');
}
.swiper-button-prev:hover::after{
	background-image: url('../images/svg/bus-pre-hover.svg');
}
.swiper-button-next{
	right: -70px;
}
.swiper-button-next::after{
	margin-left: 5px;
	background-image: url('../images/svg/bus-next.svg');
}
.swiper-button-next:hover:after{
	background-image: url('../images/svg/bus-next-hover.svg');
}
.swiper-button-next::after, .swiper-button-prev::after{
	content: '';
	width: 16px;
	background-position: center center;
	background-repeat: no-repeat;
	height: 100%;
}

@media screen and (max-width: 992px){
	.swiperItem{
		padding:1rem;
	}
	.home-business{
		min-height: 400px;
	}
	.module-title{
		margin-top: 1rem;
		font-size: 38px;
	}
	.module-intro{
		font-size: 16px;
	}

}
@media screen and (max-width: 768px){
	.module-title{
		margin-top: 0rem;
		font-size: 24px;
	}
	.swiperItem{
		margin:0 60px;
	}
	.swiper-button-next, .swiper-button-prev{
		width: 48px;
		height: 52px;
	}
	.swiper-button-next::after, .swiper-button-prev::after{
		font-size: 18px;
	}
	.swiper-button-prev{
		left: 0px;
	}
	.swiper-button-next{
		right: 0px;
	}
}

/* 首页-新闻 */
.home-news{
	background-color: #fff;
}
.home-news-tab-item{
	font-size: var(--font-size-busTitle);
	color: var(--font-color);
	line-height: 1.4;
	position: relative;
	/* -webkit-transition: all 0.3s;
	transition: all 0.3s; */
}
.home-news-tab-item:hover{
	color: var(--font-color-active);
}
.home-news-tab-item.active{
	color: var(--font-color-active);
	font-weight: 600;
}
.home-news-tab-item.active::after{
	content: '';
	position: absolute;
	top: 120%;
	left: 50%;
	width: 40px;
	height: 4px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: var(--font-color-active);
	border-radius: 6px;
}
.home-news-carousel .carousel-item{
	overflow: hidden;
	border-radius: 8px;
}
.home-news-carousel .carousel-caption{
	bottom: 0;
	left: 0;
	right: 0;
	top: auto;
	transform: translateY(0);
	padding: 14px 40px 14px 14px;
	text-align: left;
	background-color: rgba(0,0,0,.2);
	line-height: 18px;
	border-radius: 0px 0px 8px 8px;
}
.home-news-carousel .carousel-indicators{
	left: auto;
	right: 5px;
	height: 48px;
}
.home-news-carousel .carousel-indicators button{
	height: 8px;
	background-color: #DCDFE5;
}
.home-news-carousel .carousel-indicators button.active{
	height: 16px;
	background-color: #fff;
}
.home-news-content-item{
	display: none;
}
.home-news-content-item.active{
	display: block;
}
.home-news-content-item-listbox-top{
	height: 30px;
}
.home-news-content-item-listbox-top > span{
	font-size: 20px;
	line-height: 1;
	position: relative;
}
.home-news-content-item-listbox-top > span::after{
	content: '';
	position: absolute;
	right: -25px;
	top: -2px;
	width: 24px;
	height: 24px;
	background-image: url(../images/hot.png);
	background-position: center center;
	background-repeat: no-repeat;
}
.home-news-content-item-listbox-top > a{
	font-size: 16px;
	line-height: 20px;
	color: var(--font-color-active);
}
.home-news-content-item-listbox-bottom{
	height: calc(100% - 30px);
}
.home-news-content-item-listbox-bottom >li{
	flex: 1;
	display: flex;
	align-items: center;
	padding-right: 16px;
	position: relative;
	max-height: 85px;
}
.home-news-content-item-listbox-bottom > li:not(:last-child) {
	box-shadow: 0px 1px 0px 0px rgba(0,0,0,0.07);
}
.home-news-content-item-listbox-bottom >li::after{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background-image: url(../images/dire2.png);
	background-position: center center;
	background-repeat: no-repeat;
}
.home-news-content-item-listbox-bottom >li a{
	display: inline-block;
	max-width: 100%;
}
.home-news-content-item-listbox-bottom >li a span{
	display: block;
	color: var(--font-color);
	font-size: 16px;
	line-height: 1.375;
	margin-bottom: 0.1rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.home-news-content-item-listbox-bottom >li a:hover span{
	color: var(--font-color-active);
}
.home-news-content-item-listbox-bottom >li a i{
	color: #596073;
	font-size: 14px;
	line-height: 20px;
}

.home-news-content-item-carouselbox{
	width: 49%;
}
.home-news-content-item-listbox{
	width: 51%;
}
@media screen and (max-width: 992px){
	.home-news-content-item-carouselbox,
	.home-news-content-item-listbox{
		width: 100%;
	}
	.home-news-content-item-listbox-bottom >li{
		padding: 10px 16px 10px 0;
	}
}


/* 首页-联系我们 */
.home-contactus{
	position: relative;
	background-color: #F9FCFE;
	padding:154px 0 125px 0;
}
.home-contactus .ttbg{
	position: absolute;
	width: 100%;
	background-image: url('../images/bg7.png');
	background-repeat: no-repeat;
	background-size: cover;
}
.home-contactus .ttbg1{
	top: 0;
	left: 0;
	height: 0;
	padding-top: 20.833%;
	background-position: top right;
	z-index: 1;
}
.home-contactus .ttbg1::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 50%;
	width: 50%;
	background-color: #F9FCFE;
}
.home-contactus .ttbg2{
	z-index: 2;
	bottom: 0;
	left: 0;
	height: 0;
	width: 20.8333%;
	padding-top: 28.645%;
	background-position: center center;
	background-image: url('../images/bg8.png');
}
.home-contactus .ttbg3{
	z-index: 1;
	bottom: 0;
	right: 0;
	height: 0;
	padding-top: 15.625%;
	background-position: bottom right;
}
.home-contactus .ttbg3::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 70%;
	background-color: #F9FCFE;
}
.home-contactBox-left::after,
.home-contactBox-right::after{
	content: '';
	display: block;
	height: 0;
	width: 100%;
	padding-top: 86.667%;
}
.home-contactus .container{
	position: relative;
	z-index: 4;
}
.home-contactBox-left{
	width: 50%;
	position: relative;
}
.home-contactBox-left .home-contactBox-bedeck{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.home-contactBox-left .home-contactBox-bedeck::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 44%;
	padding-top: 44%;
	background: -webkit-linear-gradient(133deg, #00ADBB 0%, #006AB6 100%);
	background: -moz-linear-gradient(133deg, #00ADBB 0%, #006AB6 100%);
	background: -o-linear-gradient(133deg, #00ADBB 0%, #006AB6 100%);
	background: -ms-linear-gradient(133deg, #00ADBB 0%, #006AB6 100%);
	background: linear-gradient(133deg, #00ADBB 0%, #006AB6 100%);
	border-radius: 120px 0px 0px 0px;
}
.home-contactBox-left .home-contactBox-bedeck::after{
	content: '';
	position: absolute;
	bottom: 0;
	right: 5%;
	width: 33.333%;
	padding-top: 29.333%;
	background-image: url('../images/bg9.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom right;
}
.home-contactBox-left .home-contactBox-leftContent{
	position: absolute;
	top: 6%;
	left: 6%;
	right: 15%;
	bottom: 9%;
	background: #D8D8D8;
	border-radius: 100px 12px 100px 12px;
	border: 6px solid #FFFFFF;
	z-index: 2;
	overflow: hidden;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.08);
}
.home-contactBox-left .home-contactBox-leftContent img{
	display: block;
	width: 100%;
	height: 100%;
}
.home-contactBox-right{
	width: 50%;
	position: relative;
}
.home-contactBox-right .home-contactBox-rightContent{
	position: absolute;
	top: 6%;
	left: 6px;
	right: 0;
	bottom: 9%;
	display: flex;
	flex-direction: column;
}
.home-contactBox-right .home-contactBox-rightContent h4{
	font-size: 40px;
	line-height: 1.4;
}
.home-contactBox-right .home-contactBox-rightContent form{
	flex: 1;
}
.home-contactBox-right .home-contactBox-rightContent .formItem{
	border-bottom: 1px solid #D7E1E6;
	padding: 2rem 0px 1rem 0;
	position: relative;
}
.home-contactBox-right .home-contactBox-rightContent .formItem .input-item-placeholder{
	color:var(--font-color);
	font-size:16px;
	position: absolute;
	top: 2rem;
	left: 0;
	z-index: 1;
	line-height: 22px;
}
.home-contactBox-right .home-contactBox-rightContent .formItem .input-item-placeholder::after{
	content: '*';
	color: #ED000C;
}
.home-contactBox-right .home-contactBox-rightContent .formItem .tipInfo{
	position: absolute;
	width: 100%;
	top: 100%;
	left: 0;
	font-size: 12px;
	color: #ED000C;
	line-height: 25px;
}
.home-contactBox-right .home-contactBox-rightContent .formItem input{
	color:var(--font-color);
	font-size:16px;	
	line-height: 22px;
	display: block;
	width: 100%;
	border: none;
	background-color: transparent;
	outline: none;
	position: relative;
	z-index: 2;
}
.home-contactBox-right .home-contactBox-rightContent .formBtnBox button{
	display: inline-block;
	background-color: var(--font-color-active);
	width: 104px;
	height: 50px;
	border-radius: 25px;
	line-height: 50px;
	font-size: 16px;
	color: #fff;
	text-align: center;
	border: none;
	outline: none;
}
.home-contactBox-right .home-contactBox-rightContent .formBtnBox.submit button,
.home-contactBox-right .home-contactBox-rightContent .formBtnBox button.disabled{
	display: none;
	opacity: 0.5;
	cursor: default;
}
.home-contactBox-right .home-contactBox-rightContent .formBtnBox.submit button.disabled{
	display: inline-block;
}
@media screen and (max-width: 1200px){
	.home-contactBox-right .home-contactBox-rightContent .formItem{
		padding: 1.5rem 0px 1rem 0;
	}
	.home-contactBox-right .home-contactBox-rightContent .formItem .input-item-placeholder{
		top: 1.5rem;
	}
}
@media screen and (max-width: 992px){
	.home-contactus{
		padding:80px 0 50px 0;
	}
	.home-contactBox-right::after{
		display: none;
	}
	.home-contactBox-left,
	.home-contactBox-right{
		width: 100%;
	}
	.home-contactBox-right .home-contactBox-rightContent{
		position: relative;
		top: auto;
		left: 0px;
		right: 0;
		bottom: auto;
	}
	.home-contactBox-right .home-contactBox-rightContent h4{
		font-size: 30px;
	}
	.home-contactBox-right .home-contactBox-rightContent form{
		margin-bottom: 2.5rem;
	}
	.home-contactBox-right .home-contactBox-rightContent .formItem{
		padding: 2rem 0px 1rem 0;
	}
	.home-contactBox-right .home-contactBox-rightContent .formItem .input-item-placeholder{
		top: 2rem;
	}
}
@media screen and (max-width: 768px){
	.home-contactBox-right .home-contactBox-rightContent form{
		margin-top: 0!important;
	}
	.home-contactBox-right .home-contactBox-rightContent h4{
		font-size: 20px;
	}
}

/* 搜索结果 页面 */
.searchForm{
	margin-top: 0.5rem;
	position: relative;
}
.searchForm .searchForm-icon{
	position: absolute;
	top: 0;
	left: 0;
	width: 38px;
	height: 100%;
	z-index: 2;
	background-image: url('../images/search.png');
	background-repeat: no-repeat;
	background-position: center center;
	outline: none;
	border: none;
	background-color: transparent;
}
.searchForm .searchForm-input{
	display: block;
	width: 100%;
	height: 40px;
	border-radius: 5px;
	outline: none;
	border: none;
	font-size: 16px;
	padding-left: 40px;
	padding-right:1rem;
}
.resultList > span{
	font-size: var(--font-size-nav);
}
.resultList .resultItem{
	border-bottom: 1px solid #DEDFDF;
	padding:1rem 0px;
	margin-bottom: 1rem;
}
.resultList .resultItem a{
	font-size: 1.75rem;
	line-height: 1.4;
	-webkit-transition: all 0.1s;
	transition: all 0.1s;
}
.resultList .resultItem > p{
	margin-top: 1rem;
	color: #76848B;
	font-size: 16px;
	line-height: 28px;
}
.resultList .resultItem a:hover{
	color: var(--font-color-active);
}
@media screen and (max-width: 768px){
	.resultList .resultItem a{
		font-size: 1.25rem;
	}
}

/* 分页 */
.panwin-pagination ul.page-numbers{
	display: flex;
	justify-content: center;
}
.panwin-pagination li .page-numbers{
	display: block;
	font-size: 15px;
	padding: 9px 15px;
	background-color: #fff;
	border: none;
	color: var(--font-color);
	margin: 0 4px;
	text-decoration: none;
	border-radius: 0.2rem;
	line-height: 20px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.05);
}
.panwin-pagination li .page-numbers.current{
	background-color: var(--font-color-active);
	color: #fff;
}

/* 业务范围 */
.cert-introBox{
	background-image: url('../images/bg10.jpg');
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
}
.cert-introBox.testModule{
	background-image: url('../images/emc-testing-bg.jpg');
}
.cert-introBox .cert-introBox-title{
	font-size: var(--font-size-busTitle);
	line-height: 1.4;
	text-align: center;
	color: #051F2C;
}
.cert-introBox .cert-introBox-content{
	font-size: 16px;
	line-height: 30px;
	color: #051F2C;
}

/* module1 */
.module1{
	background-color: #F7FBFD;
	background-image: url('../images/bg11.jpg');
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 100% auto;
}
.module1.module1-reverse{
	background-color: #fff;
	background-image: url('../images/bg22.jpg');
}
.module1.bg-reverse{
	background-color: #fff;
	background-image: url('../images/bg22.jpg');
}
.module1.bg-reverse.module1-reverse{
	background-color: #F7FBFD;
	background-image: url('../images/bg11.jpg');
}

.module1.module1-reverse .row{
	flex-direction: row-reverse;
}
.module1 .module1-title{
	font-size: var(--font-size-busTitle);
	line-height: 1.4;
	text-align: left;
	color: #051F2C;
}
.module1 .module1-content{
	font-size: 16px;
	line-height: 1.875;
	color: #4A5459;
}
.module1 .module1-content p{
	margin-bottom: 0;
}
.module1 .module1-imgbox{
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.module1.module1-reverse .module1-imgbox{
	justify-content: flex-start;
}
.module1.module1-reverse .module1-imgbox .module1-imgboxCont{
	justify-content: flex-start;
}
.module1 .module1-imgbox .module1-imgboxCont{
	height: 100%;
	width: 94%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.module1 .module1-imgbox .module1-imgboxCont > img{
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	max-height: 100%;
}
.module1 .module1-imgbox .module1-imgboxCont .imglocation{
	padding-top: 53.50%;
	background-color: #D8D8D8;
	border-radius: 10px;
	overflow: hidden;
}
@media screen and (max-width: 768px){
	.module1 .module1-title{
		text-align: center;
	}
	.module1 .module1-imgbox .module1-imgboxCont{
		width: 100%;
	}
}

/* module2 */
.module2{
	background-image: url('../images/bg12.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 0;
	padding-top: 15.625%;
	position: relative;
}
.module2.otherType{
	background-image: url('../images/bg13.jpg');
}
.module2 .module2-content{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
}
.module2 .module2-content h4{
	line-height: 1.4;
	font-size: 50px;
	color: #fff;
}
.module2.otherType .module2-content h4{
	color: var(--font-color);
}
.module2.otherType .module2-content .learnMore{
	border: 1px solid var(--font-color);
	color: var(--font-color);
}
.module2 .module2-content .learnMore{
	margin-top: 2rem;
	display: block;
	width: 111px;
	height: 46px;
	border-radius: 27px;
	border: 1px solid #FFFFFF;
	font-size: 16px;
	line-height: 44px;
	text-align: center;
	color: #fff;
}
.module2 .module2-content .learnMore:hover::after{
	content: ' >';
}
@media screen and (max-width: 1200px){
	.module2 .module2-content h4{
		font-size: 34px;
	}
	.module2 .module2-content .learnMore{
		margin-top: 1rem;
		width: 100px;
		height: 40px;
		border-radius: 20px;
		line-height: 38px;
	}
}
@media screen and (max-width: 992px){
	.module2 .module2-content h4{
		font-size: 20px;
	}
	.module2 .module2-content .learnMore{
		margin-top: 0.5rem;
		width: 80px;
		height: 32px;
		border-radius: 16px;
		line-height: 30px;
	}
}
@media screen and (max-width: 768px){
	.module2 .module2-content h4{
		font-size: 16px;
	}
	.module2 .module2-content .learnMore{
		font-size: 14px;
		width: 60px;
		height: 24px;
		border-radius: 12px;
		line-height: 22px;
	}
	.module2 .module2-content .learnMore:hover::after{
		content: '';
	}
}
@media screen and (max-width: 576px){
	.module2 .module2-content h4{
		font-size: 14px;
	}
	.module2 .module2-content .learnMore{
		margin-top: 0.1rem;
		font-size: 12px;
		width: 50px;
		height: 20px;
		border-radius: 10px;
		line-height: 18px;
	}
}

/* module3 */
.module3{
	background-color: #F7FBFD;
	position: relative;
	min-height: 200px;
}
.module3 .container{
	position: relative;
	z-index: 2;
}
.module3::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40%;
	max-height: 344px;
	background-image: url('../images/bg14.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.module3 .module3-title{
	font-size: var(--font-size-busTitle);
	line-height: 1.4;
	text-align: center;
	color: #051F2C;
}
.module3 .module3-description{
	padding-top: 1rem;
	font-size: 16px;
	line-height: 1.875;
	color: #4A5459;
}
.module3 .module3-content{
	margin-top: 2.5rem;
	border-radius: 10px;
	overflow: hidden;
	background-color: #fff;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.05);
}
.module3 .module3-content .module3-content-list:nth-child(2n+1){
	background-color: #F7FBFD;
}
.module3 .module3-content .module3-content-list:first-child{
	background-color: #E3EFF5;
	color: var(--font-color);
}
.module3 .module3-content .module3-content-list{
	display: flex;
	justify-content: flex-start;
	padding:12px 0.5rem 12px 0px;
	font-size: 14px;
	line-height: 20px;
	color: #4A5459;
	align-items: center;
}
.module3 .module3-content .module3-content-list span{
	padding-left: 1rem;
}
.module3 .module3-content .module3-content-list span.item-row1{
	flex: 1;
}
.module3 .module3-content .module3-content-list span.item-row2,
.module3 .module3-content .module3-content-list span.item-row3{
	flex: 2;
}

.module3.type1 .module3-content .module3-content-list span.item-row1{
	flex: 1.5;
}
.module3.type1 .module3-content .module3-content-list span.item-row2{
	flex: 4;
}
.module3.type1 .module3-content .module3-content-list span.item-row3,
.module3.type1 .module3-content .module3-content-list span.item-row4{
	flex: 1;
}

.module3.type2 .module3-content .module3-content-list span.item-row1{
	flex: 1;
}
.module3.type2 .module3-content .module3-content-list span.item-row2{
	flex: 2;
}
.module3.type2 .module3-content .module3-content-list span.item-row3,
.module3.type2 .module3-content .module3-content-list span.item-row4{
	flex: 3.5;
}

.module3.type3 .module3-content .module3-content-list span.item-row1{
	flex: 1;
}
.module3.type3 .module3-content .module3-content-list span.item-row2{
	flex: 5;
}
.module3.type3 .module3-content .module3-content-list span.item-row3,
.module3.type3 .module3-content .module3-content-list span.item-row4{
	flex: 2;
}

@media screen and (max-width: 576px){
	.module3 .module3-content .module3-content-list span{
		padding-left: 0.5rem;
	}
}


/* module4 */
.module4{
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	background-image: url('../images/bg25.jpg');
	position: relative;
	min-height: 350px;
	display: flex;
}
.module4.noImg{
	background-image: url('../images/bg24.jpg');
	background-position: center top;
}
.module4 > .container{
	position: relative;
	z-index: 2;
}
.module4.otherType{
	background-color: #F7FBFD;
	background-image: url('../images/bg26.png');
}
.module4.otherType.noImg{
	background-color: #F7FBFD;
	background-image: url('../images/bg11.jpg');
	background-position: left bottom;
}
.module4 .module4-content{
	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.module4.otherType .module4-content{
	flex-direction: row-reverse;
}
.module4 .module4-content .module4-content-item{
	flex:0 0 auto;
	width: 50%;
}
.module4 .module4-content .module4-content-item > h4{
	font-size: var(--font-size-busTitle);
	color: var(--font-color);
	line-height: 1.4;
}
.module4 .module4-content .module4-content-item > .wp-content{
	font-size: 16px;
	color: #4A5459;
	line-height: 1.875;
	display: flex;
	justify-content: space-between;
}
.module4 .module4-content .module4-content-item > .wp-content > ul:first-child,
.module4 .module4-content .module4-content-item > .wp-content > ol:first-child{
	margin-top: 1em;
}
.module4 .module4-content .module4-content-img{
	flex:0 0 auto;
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: end;
}
.module4.otherType .module4-content .module4-content-img{
	justify-content: start;
}
.module4 .module4-content .module4-content-img > img{
	flex:0 0 auto;
	width: 91%;
}
@media screen and (max-width: 1200px){
	.module4 .module4-content .module4-content-item > .wp-content{
		display: block;
	}
}
@media screen and (max-width: 768px){
	.module4 .module4-content{
		flex-direction: column!important;
	}
	.module4 .module4-content .module4-content-item{
		width: 100%;
	}
	.module4 .module4-content .module4-content-img{
		margin-top: 1.5rem;
		width: 100%;
	}
	.module4 .module4-content .module4-content-img > img{
		width: 100%;
	}
}

/* ota-module */
.ota-module.cert-introBox{
	background-image: url('../images/bg18.jpg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: auto;
	background-color: #F2F9FF;
}
.ota-module.cert-introBox .imglocation{
	margin: 1.5rem 0 2rem 0;
	padding-top: 33.3333%;
	border-radius: 10px;
	overflow: hidden;
}
@media screen and (max-width: 992px){
	.ota-module.cert-introBox{
		background-size: cover;
	}
	.ota-module.cert-introBox .imglocation{
		margin: 1rem 0;
	}
}

/* module5 */
.module5-pt.cert-introBox{
	padding-bottom: 120px!important;
}
.module5{
	background-color: #fff;
}
.module5 .module5-item{
	background: -webkit-linear-gradient(180deg, #00ADBB 0%, #006AB6 100%);
	background: -moz-linear-gradient(180deg, #00ADBB 0%, #006AB6 100%);
	background: -o-linear-gradient(180deg, #00ADBB 0%, #006AB6 100%);
	background: -ms-linear-gradient(180deg, #00ADBB 0%, #006AB6 100%);
	background: linear-gradient(180deg, #00ADBB 0%, #006AB6 100%);
	box-shadow: 0px 13px 16px 0px rgba(0,116,183,0.17);
	border-radius: 32px;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding:2.5rem 1.5rem;
	color: #fff;
	line-height: 1.375;
	cursor: default;
	position: relative;
	top: -80px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.module5 .module5-item:hover{
	top: -90px;
}
.module5 .module5-item::after{
	content: '';
	position: absolute;
	top: -100px;
	right: -80px;
	width: 168px;
	height: 120px;
	background-image: url('../images/bg19.png');
	background-repeat: no-repeat;
	background-position: top right;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	opacity: 0;
}
.module5 .module5-item:hover::after{
	top: 0;
	right: 0;
	opacity: 1;
}
.module5 .module5-item .module5-item-icon{
	width: 44px;
	height: 44px;
}
.module5 .module5-item .module5-item-title{
	font-size: 22px;
	color: #fff;
	margin: 1.5rem 0 1rem 0;
}
.module5 .module5-item .module5-item-intro{
	font-size: 16px;
	margin-bottom: 0;
}


/* module6 */
.module6{
	background-image: url('../images/bg23.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	min-height: 300px;
}
.module6 .module6-title{
	line-height: 1.4;
	font-size: var(--font-size-busTitle);
	color: #fff;
	text-align: center;
}
.module6 .module6-content{
	line-height: 1.875;
	font-size: 16px;
	color: #fff;
}
@media screen and (max-width: 992px){
	.module6{
		background-size: cover;
	}
}

/* common */

.py-100{
	padding-top:100px;
	padding-bottom: 100px;
  }
  .pt-80{
	padding-top: 80px;
  }
  
  .ms-f-30{
	margin-left: -30px;
  }
  
  /* emc shiyanshi */
  .general-testing{
		background-color: #F1F7FB;
	}
  .general-testing .ceshi-cards{
	background-image: url(../images/ceshi-cards-bg.png);
	background-position: top;
	background-size: 100% auto;
	background-repeat: no-repeat;
  }
  .general-testing .header-description,
  .emc-testing .emc-header-description{
	background-image: url(../images/emc-testing-bg.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
  }
  .general-testing .ceshi-biaozhun,
  .emc-testing .emc-ceshi-biaozhun{
	background-image: url(../images/emc-ceshi-biaozhun-bg.jpg);
	background-position: top;
	background-size: 100% auto;
	background-repeat: no-repeat;
  }
  .general-testing .ceshi-xiangmu,
  .emc-testing .emc-ceshi-xiangmu{
	background-image: url(../images/emc-ceshi-xiangmu-bg.jpg);
	background-color: #f7fbfd;
	background-position: bottom;
	background-size: 100% auto;
	background-repeat: no-repeat;
  }
  .general-testing .ceshi-shebei,
  .emc-testing .emc-ceshi-shebei{
	background-image: url(../images/emc-ceshi-shebei-bg.jpg);
	background-position: center;
	background-size: 100% auto;
	background-repeat: no-repeat;
  }
  .emc-testing .emc-ceshi-shebei .main-image img{
	border-radius: 2%;
  }
  .emc-testing .ceshi-biaozhun-content ul,
  .emc-testing .ceshi-xiangmu-content ul,
  .emc-testing .ceshi-shebei-content ul{
	list-style: none;
  }
  
  /* FR, Angui testing */
  .general-testing .ceshi-card{
	border-radius: 2%;
	background-image: url(../images/ceshi-card-bg.png);
	background-size: cover;
	background-position: center;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
  }
  .general-testing .box-shadow-hover {
	transition:all 0.25s;
  }
  .general-testing .box-shadow-hover > .hoverImg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 1;
		opacity: 0;
		transition: ease all 250ms;
  }
  .general-testing .box-shadow-hover:hover > .hoverImg {
		opacity: 1;
  }
  .general-testing .transition-3ms {
		transition: all 0.25s ease;
  }
  .general-testing .box-shadow-hover:hover {
	background-size: cover;
	background-position: center;
	box-shadow: 0 12px 45px rgba(0,0,0,.2);
  }
	.general-testing .card-body{
	transition: ease all 250ms;
	background-color: rgba(0, 166, 180, 0);
	position: relative;
	z-index: 2;
  }
  .general-testing .box-shadow-hover:hover .card-body{
		background-color: rgba(0, 166, 180, 0.9);
  }
  .general-testing .card-text-color-hover-light:hover{
	color: #fff !important;
  }
  .general-testing .hover-translate-top-10px:hover {
	transform: translateY(-15px) !important;
  }
  .general-testing .ceshi-card .card-title{
		position: relative;
		padding-bottom:20px;
		transition: all 0.25s;
		color: #051F2C;
		font-size: 22px;
  }
	.general-testing .ceshi-card .card-text{
		color: #596073;
		transition: all 0.25s;
	}
	.general-testing .ceshi-card:hover .card-title,
	.general-testing .ceshi-card:hover .card-text{
		color: #fff;
	}
  .general-testing .ceshi-card .card-title::after {
	  content: "";
	  position: absolute;
	  display: block;
	  width: 50px;
	  height: 6px;
	  background: #0071ce;
	  left: 0;
	  bottom: 0;
	  margin: auto;
  }
  .general-testing .box-shadow-hover:hover .card-title:after{
		background: #ffffff;
  }
  
  .general-testing .general-ceshi-nengli{
	background-image: url(../images/rf-ceshi-nengli-bg.jpg);
	background-position: bottom;
	background-size: 100% auto;
	background-repeat: no-repeat;
  }
  .general-testing .general-ceshi-shebei{
	background-image: url(../images/rf-ceshi-shebei-bg.jpg);
	background-position: bottom;
	background-size: 100% auto;
	background-repeat: no-repeat;
  }
  .general-testing .general-ceshi-shebei .main-image img{
	border-radius: 2%;
  }
	.font-weight-bold{
		font-weight: 600;
	}

	/* 联系我们 地图 */
  #mapcontent {width:100%;height: 90vh;} 