/* 业务服务rem */
body{
	padding-top: 85px;
}
.switch-box .left-title{
	width: auto;
	min-width: 250px;
}
.switch-box .right-box{
	width: auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.switch-box .right-box a{
	font-size: 16px;
	color: #777777;
	line-height: 75px;
	height: 75px;
	margin-left: .4rem;
	position: relative;
	transition: color 300ms;
}
.switch-box .right-box a:hover{
	color: #0080d2;
}
.switch-box .right-box a::after{
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 4px;
	background-color: #0080d2;
	transform: translateX(-100%);
	bottom: 0;
	transition: transform 300ms;
}
.switch-box .right-box a:hover:after{
	transform: translateX(0%);
}
.switch-box .right-box a.active{
	color: #0080d2;
}
.switch-box .right-box a.active::before{
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 4px;
	bottom: 0;
	left: 0;
	background-color: #0080d2;
}
.mains{
	width: 100%;
	min-height: 100vh;
}

.mains .content-box{
	width: 100%;
	height: 6.3rem;
	overflow: hidden;
	padding: .82rem 1.5rem;
}
.mains .content-box .center-box{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.mains .content-box .center-box .left-box{
	width: 50%;
	height: 100%;
	padding: .58rem .8rem 0;
}
.mains .content-box .center-box .left-box .box-title{
	width: 100%;
	font-size: .26rem;
	font-weight: bold;
	margin-bottom: .06rem;
}
.mains .content-box .center-box .left-box .en-title{
	width: 100%;
	font-size: .16rem;
	margin-bottom: .08rem;
	color: #777777;
}
.mains .content-box .center-box .left-box .zst{
	display: block;
	width: .5rem;
	height: .04rem;
	background-color: #0080d2;
	margin-bottom: .52rem;
	margin-top: .18rem;
}
.mains .content-box .center-box .left-box .content{
	width: 100%;
	shape-outside: auto;
	font-size: .15rem;
	color: #777;
	line-height: .28rem;
}
.mains .content-box .center-box .right-img{
	width:50%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.mains .content-box .center-box .right-img img{
	height: 100%;
}
.mains .content-box:nth-child(2n){
	background-color: #f7f7f7;
}
.mains .content-box:nth-child(2n - 1) .left-box{
	background-color: #f7f7f7;
}
.mains .content-box:nth-child(2n) .left-box{
	background-color: #ffffff;
}