@charset "UTF-8";

/* ========== 头部 start ========== */
.subTop .top{background-color: #1479b6;}
.subTop .top .logo .img1{display: none;}
.subTop .top .logo .img2{display: block;}
.subTop .searchBtn{background-image: url(../images/logo/searchIcn2.png);}
.subTop .menuBtn .line:nth-child(2),
.subTop .menuBtn .line{background-color: #fff;}
.top {
	height: 2.5rem;
	line-height: 2.5rem;
	position: relative;
	z-index: 5;
	background: #FFF;
	overflow: hidden;
	display: flex;
}

.logo {
	display: flex;
	align-items: center;
	margin-left: 0.5rem;
	overflow: hidden;
}

.logo img {
	display: block;
	width: 10rem;
}
.logo .img2{display: none;}
.searchBtn {
	width: 2.25rem;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 1rem;
	background-image: url('../images/logo/searchIcn.png');
	margin-left: auto;
	cursor: pointer;
}

.menuBtn {
	width: 2.95rem;
	cursor: pointer;
	text-align: center;
	z-index: 6;
	position: relative;
}

.menuBtn:before {
	display: block;
	content: '';
	width: 0px;
	height: 100%;
	border-left: 1px solid #dedede;
	position: absolute;
	left: 0px;
	top: 0px;
	transform: scaleX(0.5);
	-webkit-transform: scaleX(0.5)
}

.menuBtn span {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.menuBtn .line {
	width: 24px;
	height: 2px;
	background-color: #0e77b0;
	display: block;
	margin: 6px auto;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	transform: scaleY(1);
	border-radius:3rem;
}

.menuBtn .line:nth-child(2) {
	background: #0e77b0;
	width: 20px;
	margin-right: 0px;
}

.menuBtn.active .line {
	background: #0e77b0;
}

.menuBtn.active .line:nth-child(2) {
	opacity: 0;
}

.menuBtn.active .line:nth-child(1) {
	-webkit-transform: translateY(7px) rotate(45deg) scaleY(.5);
	transform: translateY(7px) rotate(45deg) scaleY(.5);
}

.menuBtn.active .line:nth-child(3) {
	-webkit-transform: translateY(-10px) rotate(-45deg) scaleY(.5);
	transform: translateY(-10px) rotate(-45deg) scaleY(.5);
}

/* ========== 头部 end ========== */
/* ========== 搜索 start ========== */
.searchBox {
	height: 1.75rem;
	padding: .5rem;
	padding-right: 0;
	background: #FFF;
	margin-top: -2.75rem;
	transition: all .5s;
	-webkit-transition: all .5s;
	visibility: hidden;
}

.searchBox.show {
	margin-top: 0;
	visibility: visible;
}

.searchBox input {
	height: 1.75rem;
	line-height: 1.75rem;
	vertical-align: middle;
	border: none;
	width: 100%;
	background: #f5f5f5;
	border-radius: .35rem;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 0 .5rem;
}

.searchBox span {
	display: block;
	width: 1.75rem;
	height: 1.75rem;
	text-align: center;
	line-height: 1.75rem;
	color: #0169a6;
	font-size: .7rem;
	padding: 0 .5rem;
}

/* ========== 搜索 end ========== */
/* ========== 导航菜单 start ========== */
.menuBg {
	position: fixed;
	width: 100%;
	height: 100%;
	right: 0px;
	top: 0px;
	background: rgba(0, 0, 0, 0.5);
	z-index: 5;
	visibility: hidden;
	opacity: 0;
	transition: all 300ms linear;
	-webkit-transition: all 300ms linear;
}

.menuBg.active {
	visibility: visible;
	opacity: 1;
}

.menuPage {
	position: fixed;
	width: 75%;
	height: 100%;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
	background: #f5f5f5;
	right: 0px;
	top: 0px;
	z-index: 6;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	visibility: hidden;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 0;
	transform: translateX(100%);
	-webkit-transform: translateX(100%);
}

.menuHead {
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 2;
}

.menuHead .mobileTop.active {
	transform: translateX(0);
	-webkit-transform: translateX(0);
}

.menuHead .searchBox,
.menuHead .searchBtn {
	display: none;
}

.menuHead .menuBtn {
	margin-left: auto;
}

.menuPageBody {
	clear: both;
	flex-grow: 1;
	flex-basis: 0;
	overflow: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.menuPage.active {
	visibility: visible;
	transform: translateX(0);
	-webkit-transform: translateX(0)
}

.menuPageList {
	overflow: hidden;
}

.menuPageList dd {
	overflow: hidden;
	position: relative;
}

.menuPageList dd:before {
	display: block;
	content: '';
	width: 100%;
	height: 0;
	border-bottom: 1px solid #dbdbdb;
	position: absolute;
	left: 0px;
	bottom: 0px;
	transform: scaleY(0.5);
	-webkit-transform: scaleY(0.5)
}

.menuPageList dd span {
	display: block;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
}

.menuPageList dd span a {
	display: block;
	overflow: hidden;
	height: 2rem;
	line-height: 2rem;
	text-align: left;
	font-size: .7rem;
	color: #1f1f1f;
	position: relative;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	flex: 1;
	padding-left: 0.75rem;
}

.menuPageList dd span .icon {
	display: block;
	width: 1.25rem;
	height: 2rem;
	text-align: center;
	line-height: 2rem;
	color: #c7c7c7;
	font-style: normal;
	display: none;
	z-index: 1;
	font-size: .8rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto .7rem;
	margin-right: 0.75rem;
}

.menuPageList dd span .icon.active {
	display: block;
}

.menuPageList dd.hover span {
	background:#0e77b0;
	color: #FFF;
}

.menuPageList dd.hover span a,
.menuPageList dd.hover span .icon {
	color: #FFF;
}


.menuPageList dd .ejBox {
	padding: .4rem .75rem;
	display: none;
	background: #FFF;
}

.menuPageList dd .ejBox .ejdd {
	overflow: hidden;
	margin-bottom: .5rem;
}

.menuPageList dd .ejBox .ejdd .ej {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	padding-left: 0.75rem;
}

.menuPageList dd .ejBox .ejdd .ej .icon {
	width: 1.25rem;
	height: 1.25rem;
	text-align: center;
	line-height: 1.25rem;
	font-size: .7rem;
	display: none;
	z-index: 20;
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto .7rem;
}

.menuPageList dd .ejBox .ejdd .ej .icon.active {
	display: block;
}
.menuPageList dd .ejBox .ejdd .ej .icon,
.menuPageList dd span .icon{
	background-image: url('../images/common/jia.svg');
}
.menuPageList dd .ejBox .ejdd.on .ej .icon {
	background-image: url('../images/common/jian.svg');
}
.menuPageList dd.hover span .icon {
	background-image: url('../images/common/jianBai.svg');
}
.menuPageList dd .ejBox .ejdd .ej a {
	display: block;
	height: 1.25rem;
	line-height: 1.25rem;
	overflow: hidden;
	color: #666666;
	font-size: .65rem;
	padding-left: .5rem;
	position: relative;
	flex: 1;
}

.menuPageList dd .ejBox .ejdd .ej a:before {
	display: block;
	content: '';
	position: absolute;
	left: 0px;
	top: 50%;
	margin-top: -.1rem;
	width: .15rem;
	height: .15rem;
	background: #666666;
}

.menuPageList dd .ejBox .ejdd .sj {
	overflow: hidden;
	padding: .25rem .75rem;
	display: none;
}

.menuPageList dd .ejBox .ejdd .sj a {
	display: block;
	height: 1.25rem;
	line-height: 1.25rem;
	overflow: hidden;
	color: #666666;
	font-size: .6rem;
	padding-left: 1rem;
	position: relative
}

.menuPageList dd .ejBox .ejdd .sj a:before {
	display: block;
	content: '';
	position: absolute;
	left: .5rem;
	top: 50%;
	margin-top: 0;
	width: .25rem;
	height: 1px;
	background: #666666;
}


/* ========== 导航菜单 end ========== */
/* ========== 底部 start ========== */
.footerList {
	overflow: hidden;
	height: 2.5rem;
	display: flex;
	background: #FFF;
	align-items: center;
}

.footerList .item {
	flex: 1;
}

.footerList .item a {
	display: block;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	color: #333;
}

.footerList .icon {
	height: 1rem;
	line-height: 1rem;
	font-size: .9rem;
	text-align: center;
	margin-bottom: .2rem;
}

.footerList .icon img {
	height: 1rem;
	object-fit: contain;
}

.footerList .text {
	height: 1rem;
	line-height: 1rem;
	text-align: center;
	font-size: .65rem;
}

/* ========== 底部 end ========== */
/* ========== 电话弹窗 start ========== */
.windowPhoneBg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0);
	transition: all 300ms linear;
	-webkit-transition: all 300ms linear;
	z-index: 10;
	visibility: hidden;
}

.windowPhoneBg.show {
	background: rgba(0, 0, 0, .2);
	visibility: visible;
}

.windowPhone {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: .25rem;
	z-index: 11;
	transition: all 300ms linear;
	-webkit-transition: all 300ms linear;
	transform: translateY(100%);
	-webkit-transform: translateY(100%);
	visibility: hidden;
}

.windowPhone .item {
	margin-bottom: .5rem
}

.windowPhone a {
	display: flex;
	align-items: center;
	background: #FFF;
	border-radius: .6rem;
}

.windowPhone a .icn {
	width: 3rem;
	height: 2.5rem;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 1rem;
	background-image: url('../images/common/phone.svg');
}

.windowPhone a span {
	flex: 1;
	height: 2.5rem;
	line-height: 2.4rem;
	color: #125fc8;
	padding-right: 1rem;
	font-size: 1rem;
	letter-spacing: 1px;
}

.windowPhone .btn a {
	text-align: center;
	font-size: .8rem;
	;
	padding: 0;
}

.windowPhone .btn a span {
	line-height: 2.7rem;
	font-weight: bold;
}

.windowPhone.show {
	transform: translateY(0);
	-webkit-transform: translateY(0);
	visibility: visible;
}

/* ========== 电话弹窗 end ========== */
/* ========== 详情弹窗 start ========== */
.windowView {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	transform: translateY(100%);
	-webkit-transform: translateY(100%);
	opacity: 0;
	visibility: hidden;
	transition: all .8s cubic-bezier(.77, 0, .175, 1) 0s;
	-webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0s;
	z-index: 999;
	overflow: hidden;
}

.windowView.on {
	transform: translateY(0);
	-webkit-transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.contentView {
	overflow: hidden;
	height: 100%;
	box-sizing: border-box;
}

.windowView.on .contentView {
	overflow-y: auto;
}

.viewClose {
	position: absolute;
	width: 3rem;
	height: 3rem;
	line-height: 3.8rem;
	top: -1rem;
	right: -1rem;
	background-color: #1eacf6;
	background-repeat: no-repeat;
	background-position: top 1.2rem right 1.2rem;
	background-image: url('../images/common/closeBai.svg');
	background-size: auto 1.2rem;
	border-radius: 50%;
	transform: scale(0);
	opacity: 0;
	transition: 0.8s;
	-webkit-transition: 0.8s;
}

.windowView.on .viewClose {
	transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1;
}

.maskBg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	z-index: 100;
	background-color: rgba(0, 0, 0, .6);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.maskBg.show {
	opacity: 1;
	visibility: visible;
}

/* ========== 详情弹窗 end ========== */
/* ========== 图片弹窗 start ========== */
.picSwiperhtml {
	display: none;
}

.mainPic {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: 1000;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear
}

.mainPic.show {
	visibility: visible;
	opacity: 1;
}

.mainPicClose {
	position: absolute;
	z-index: 1;
	right: 1rem;
	top: 0.5rem;
	width: 1.9rem;
	height: 1.9rem;
	background: url(../images/close.png) no-repeat center center;
	background-size: auto 1.9rem;
	text-align: center;
	line-height: 1.9rem;
}

.mainPicClose span {
	font-size: 1.2rem;
	color: #FFF;
	display: inline-block;
}

.mainPicBox {
	position: absolute;
	left: 0px;
	width: 100%;
	height: 100%;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.mainPicBox .swiper-container {
	width: 100%;
	height: 100%;
}

.mainPicBox .swiper-slide {
	overflow: hidden;
}

.photePage {
	position: absolute;
	left: 0px;
	width: 100%;
	top: 0px;
	height: 2.0rem;
	line-height: 2.5rem;
	text-align: center;
	color: #FFF;
	font-size: 0.7rem
}

/* ========== 图片弹窗 end ========== */
/* ========== 版权信息 start ========== */
.copyRight {
	padding: .75rem ;
	background: #0e77b0;
	line-height: 1.1rem;
	font-size: .65rem;
	color: #fff;
	text-align: center;
}
.copyRight a{color: #fff;}
/* ========== 版权信息 end ========== */
/* ========== 首页banner start ========== */
.indexBanner{ width: 100%; position: relative; z-index: 1;}
.indexBanner img{ width: 100%;}
.indexBanner .swiper-pagination{ text-align: center; box-sizing: border-box; -webkit-box-sizing: border-box;}
.indexBanner .swiper-pagination span{width: .5rem;height: .5rem;border-radius: .5rem;text-align: center;line-height: .5rem;font-size: .6rem;border: 1px solid #fff;opacity: 1;box-sizing: border-box;background-color: transparent;}
.indexBanner .swiper-pagination span.swiper-pagination-bullet-active{width: .8rem;background-color: #fff;}
/* ========== 首页banner end ========== */
/* ========== 内页banner start ========== */
/* 领导班子 start */
.teamList dd{background-color:#fff;margin-bottom:.667rem;}
.teamList dd  a{display: block;overflow: hidden;}
.teamList dd .pic{width:5.833rem;}
.teamList dd .pic::before{padding-top:128.5714%;}
.teamList dd .textC{overflow: hidden;padding:.7rem .917rem 0;}
.teamList dd .nameC{padding-bottom:.45rem;border-bottom: 1px solid #e6e6e6;margin-bottom:.583rem;}
.teamList dd .name{font-size:.867rem ;color: #181818;height:1.467rem;line-height:1.467rem;font-weight: bold;}
.teamList dd .tips{font-size:.6rem ;color: #999999;line-height:1.3rem;}
.teamList dd .text{font-size: .6rem;color: #666;height: 2rem;line-height: 1rem;}
/* 领导班子 end */
/* 领导详情 start */
.teamViewTop{background-color: #fff;padding:1.083rem 0 1.167rem;text-align: center;}
.teamViewTop .pic{width:7.5rem;margin: 0 auto;}
.teamViewTop .pic::before{padding-top:131.1111%;}
.teamViewTop .name{font-size: .867rem;color: #181818;height:1.467rem;line-height:1.467rem;padding-top:.633rem;}
.teamViewTop .tips{font-size: .6rem;color: #999999;line-height:1.25rem;}
.teamViewC .textC {background-color:#fff;padding:.833rem .75rem;}
.teamViewC .textC span{display: inline-block;font-size: .867rem;width:4.167rem;height:1.75rem;background-color: #0f7ab2;color: #fff;text-align: center;line-height: 1.75rem;}
.teamViewC .textC .text{font-size:.6rem ;color: #666666;line-height:1.033rem;text-align: justify;padding-top: 1rem;}
/* 领导详情 end */
/* 集团简介 start */
.textList1C{padding:.5rem .667rem;}
.textList1C .title{font-size:.867rem ;color: #181818;height:3.05rem;line-height:3.05rem;text-align: center}
.textList1C .text{font-size: .6rem;color: #4c4c4c;line-height:1.033rem;padding-top:1.05rem;text-align: justify;}
/* 集团简介 end */
/* 图文列表 start */
.imgText1 dd{background-color:#fff;padding:.667rem;margin-bottom: 0.667rem;}
.imgText1 dd a{display: block;overflow: hidden;}
.imgText1 dd .pic{width: 5.833rem;margin-left:1.5rem;}
.imgText1 dd .pic::before{padding-top:63.7143%;}
.imgText1 dd .textC{overflow: hidden;}
.imgText1 dd .text{font-size:.7rem ;color: #181818;height:2rem;line-height:1rem;}
.imgText1 dd .time{font-size:.65rem ;color: #999999;height:1.467rem;line-height:1.467rem;}
/* 图文列表 end */
/* 全文列表 start */
.textList2 dd{background-color: #fff;margin-bottom:.667rem;padding:1rem .667rem .467rem;}
.textList2 dd .text{font-size:.7rem ;color: #181818;height:2rem;line-height:1rem;}
.textList2 dd .time{font-size:.65rem ;color: #999999;height:1.367rem;line-height:1.367rem;}
/* 全文列表 end */
/* 视频列表 start */
.videoList dd{margin-bottom:.667rem;background-color:#fff;padding:.833rem .833rem 0;}
.videoList dd .picC{position: relative;}
.videoList dd .picC::before{display: block;content:'';width: 100%;height: 100%;background-color: rgba(0,0,0,.3);position: absolute;left: 0;top: 0;    z-index: 1;}
.videoList dd em{display: block;background: url(../images/videoIcn1.png) no-repeat center center / contain;width: 1.583rem;height: 1.583rem;position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);-webkit-transform: translate(-50%,-50%);z-index: 2;}
.videoList dd .pic::before{padding-top:56.2162%;}
.videoList dd .text{font-size:.7rem ;color: #333333;height: 2.417rem;line-height: 2.417rem;text-align: center;}

.videoFloat{position: fixed; width: 100%;height: 100%;  left: 0; top: 0; z-index: 100;}
.videoFloatBody{width: 100%;height: 100%;visibility: hidden; opacity: 1; transform: translateY(100%);-webkit-transform: translateY(100%); transition: all 500ms linear;-webkit-transition: all 500ms linear;background: #000;}
.videoFloatBody.active{visibility: visible; opacity: 1; transform: translateY(0%);-webkit-transform: translateY(0%);}
.videoFloatClose{position: fixed; width: 1.5rem; height: 1.5rem; border-radius: 2rem; right: .5rem; top:.5rem; background: #0f7ab2; border: .12rem solid #FFF; color: #FFF; text-align: center; line-height: 1.6rem; z-index: 1;}
.videoFloatClose i{ font-size: .8rem;}
.videoFloat video{ width: 100%; height: 100%; object-fit: cover;}
.videoFloat-video{ position: relative; top: 50%; transform: translateY(-50%);-webkit-transform: translateY(-50%); left: 0;}
.videoFloat-video::before{display: block; content: ''; padding-top: 60%;}
.videoFloat-video video{position: absolute; left: 0; top: 0;}
/* 视频列表 end */
/* 全图列表 start */
.imgList1 {margin-right: -0.667rem;overflow: hidden;}
.imgList1 dd{float: left;display: inline;width: 50%;margin-bottom: 0.667rem;}
.imgList1 dd a{display: block;margin-right:.667rem;}
.imgList1 dd .pic::before{padding-top:66.3984%;}
.imgList1 dd .text{font-size: .7rem;color: #333;height:2rem;line-height:2rem;text-align: center;padding:0 .7rem;box-sizing: border-box;width: 100%;background-color: #fff;}
/* 全图列表 end */
/* 荣誉列表 start */
.hornorList{ overflow: hidden; margin-right: -.667rem;}
.hornorList dd{ float: left;display: inline; width: 50%;}
.hornorList dd a{ display: block; margin-right: .667rem;margin-bottom: 0.667rem;background-color: #fff;}
.hornorList dd .pic:before{ padding-top:67.3469%;}
.hornorList dd .text{ height:2rem; line-height: 2rem; text-align: center; color: #181818; font-size: .7rem;text-align: center;}
/* 荣誉列表 end */
/* ========== 招聘表单  start========== */
.recruitFormTitle {
	font-size: 0.75rem;
	color: #595959;
	text-align: center;
	height: 1.5rem;
	line-height: 1.5rem;
	font-weight: bold;
	margin-bottom: 0.4rem;
}
.recruitFormTitle span{color: #2274b1;}
.recruitListFormUp {
	padding-top: 1rem;
	padding-bottom: 0.8rem;
	background-color: #f7f7f7;
	border-radius: 0.25rem;
	margin-bottom: 0.6rem;
}

.recruitListFormUp.bdAll:before {
	border-color: #e6e6e6;
	border-radius: 0.25rem;
}

.recruitListFormUp .btn {
	margin: 0 auto 0.5rem;
	width: 3.5rem;
	height: 1.25rem;
	line-height: 1.3rem;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}

.recruitListFormUp .btn.bdAll:before {
	border-color: #ebebeb;
}

.recruitListFormUp .btn a {
	font-size: 0.6rem;
	text-align: center;
	color: #2274b1;
	display: block;
	background-color: #ffffff;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}

.recruitListFormUp .text {
	padding: 0 2rem;
	font-size: 0.55rem;
	color: #999999;
	line-height: 1rem;
	height: 2rem;
	overflow: hidden;
	text-align: center;
}
.recruitListForm .select select{top: .15rem;} 
.recruitListFormTitle {
	font-size: 0.65rem;
	color: #595959;
	font-weight: bold;
	height: 1.3rem;
	line-height: 1.3rem;
}

.recruitListForm {
	padding-top: .35rem;
}

.recruitListForm:after {
	clear: both;
	content: '';
	visibility: hidden;
	display: block;
}

.recruitListForm .item {
	width: 100%;
	float: left;
	display: inline;
	margin-bottom: .75rem;
}

.recruitListForm .con {
	background-color: #f7f7f7;
}

.recruitListForm .itemYzm .con {
	background-color: unset;
}

.recruitListForm .itemDate .con {
	background-color: unset;
}

.recruitListForm .itemYzm .input {
	background-color: #f7f7f7;
}

.recruitListForm .bdAll:before {
	border-radius: 6px;
	overflow: hidden;
}

.recruitListForm .item .label {
	height: 1.9rem;
	line-height: 2rem;
	padding: 0 .5rem;
	color: #595959;
}

.recruitListForm .item .label span {
	color: #da0100;
	margin-right: .25rem;
}

.recruitListForm .item .itemC {
	clear: both;
	min-height: 1.9rem;
}

.recruitListForm .input {
	position: relative;
	padding-right: 1rem;
}

.recruitListForm .input span {
	font-size: 0.6rem;
	color: #ff0000;
	text-align: center;
	position: absolute;
	width: 0.5rem;
	height: 100%;
	line-height: 1.9rem;
	right: 0.35rem;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.recruitListForm .select span {
	font-size: 0.6rem;
	color: #ff0000;
	text-align: center;
	position: absolute;
	width: 0.5rem;
	height: 100%;
	line-height: 1.9rem;
	right: 0.35rem;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.recruitListForm .select .icn {
	right: 0.5rem;
	font-size: 0.75rem;
	line-height: 2rem;
}

.recruitListForm .textarea textarea {
	height: 7.5rem;
}
.recruitListForm .itemA .textarea textarea{height: 5rem;}
.recruitChecked {
	font-size: 0.6rem;
	color: #595959;
	height: 1rem;
	line-height: 1rem;
	margin-bottom: 0 !important;
}

.recruitChecked input[type=checkbox] {
	display: none;
}

.recruitChecked input[type=checkbox]+label {
	position: relative;
	padding-left: 1.2rem;
	cursor: pointer;
}

.recruitChecked input[type=checkbox]+label::before {
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -0.38rem;
	display: block;
	content: '';
	width: 0.7rem;
	height: 0.7rem;
	border: 1px solid #d4d4d4;
	border-radius: 1px;
	background: #e6e6e6;
	margin-right: 0.3rem;
	border-radius: 2px;
	cursor: pointer;
}

.recruitChecked input[type=checkbox]:checked+label::before {
	border-color: #1e2188;
	background: #1e2188;
}

.recruitChecked input[type=checkbox]:checked+label::after {
	display: block;
	content: "";
	position: absolute;
	width: .2rem;
	height: .4rem;
	border: 2px solid #FFFFFF;
	border-top: none;
	border-left: none;
	left: .3rem;
	top: 50%;
	margin-top: -.3rem;
	transform: rotate(45deg);
}

.recruitListForm .yearSelect select option:first-child {
	display: none;
}

.recruitListForm .monthSelect select option:first-child {
	display: none;
}

.recruitListForm .itemDate .itemC {
	display: flex;
	background-color: #f7f7f7;
}

.recruitListForm .itemDate .itemC.bdAll:before {
	border-radius: 6px;
	overflow: hidden;
}

.recruitListForm .yearSelect {
	width: 4rem;
	padding-left: 0.6rem;
}

.recruitListForm .monthSelect {
	flex: 1;
	padding-left: 0.6rem;
}

.recruitListForm .itemDate .select .icn {
	right: 0;
}

.recruitListForm .yzmText {
	line-height: 1.9rem;
	font-size: .65rem;
	color: #999;
	margin-left: .5rem;
    white-space: nowrap;
    height: 1.9rem;
}

.recruitListForm .formYzm .yzmImg {
	height: 1.9rem;
}

.recruitListForm .yzmText span {
	font-size: .8rem;
}
.formBtn {
	padding: 0.75rem 0 0.75rem;
	display: flex;
	justify-content: center;
}

.formBtn div {
	width: 50%;
	height: 1.75rem;
	margin: 0 0.375rem;
	text-align: center;
	border-radius: .25rem;
}

.formBtn div.bdAll::before {
	border-radius: .5rem;
	line-height: 1.75rem;
}

.formBtn .submit.bdAll::before {
	background-color: #0f7cb6;
}

.formBtn .reset.bdAll::before {
	background: #f0f0f0;
	border-color: #dedede;
}

.formBtn a {
	display: block;
	line-height: 1.75rem;
	font-size: .65rem;
	color: #999999;
}

.formBtn .submit a {
	color: #FFFFFF;
}
/* ========== 招聘表单  end========== */
/* ========== 招聘 end ========== */
/* 联系我们start */
/* 联系我们start */
.contactUsBox{padding: 0rem 0 1.75rem;}
.contactUsList{padding: 0.75rem;background-color: #f5f5f5;}
.contactUsList dd{margin-bottom: .5rem;}
.contactUsList dd .con{background-color: #fff;padding: .5rem;display: flex;align-items: center;border-radius: .25rem;}
.contactUsList dd .con .icon{width: 1.125rem;height: 1.125rem;border-radius: 50%;background: url("../images/contactUsIcon1.jpg") no-repeat center center / cover;line-height: 1.125rem;text-align: center;position: relative;margin-right: 1rem;}
.contactUsList dd .con .icon::before{display: block;content: "";width: 1.65rem;height: 1.65rem;background: url("../images/contactUsIcon2.png") no-repeat center center / 100% 100%;position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);-webkit-transform: translate(-50%,-50%);}
.contactUsList dd .con .icon span{display: block;width: 100%;height: 100%;background-position: center center;background-size: .75rem;background-repeat: no-repeat;}
.contactUsList dd.dd1 .con .icon span{background-image: url("../images/contactUsDDIcon1.png");}
.contactUsList dd.dd2 .con .icon span{background-image: url("../images/contactUsDDIcon2.png");}
.contactUsList dd.dd3 .con .icon span{background-image: url("../images/contactUsDDIcon3.png");}
.contactUsList dd.dd4 .con .icon span{background-image: url("../images/contactUsDDIcon4.png");}
.contactUsList dd .con .text1{line-height: 1rem;height: 1rem;font-size: 0.65rem;color: #0f7cb6;}
.contactUsList dd .con .text2{line-height: 1rem;height: 1rem;font-size: 0.65rem;color: #333333;}
.mapBox{height: 270px;}
.mapBox #map{width: 100%;height: 100%;}
.contactUsBox .concataUsCenterC1{padding: 1rem .75rem 0rem;}
.contactUsBox .concataUsCenterC1 .titleConC{text-align: center;margin-bottom: 1rem;}
.contactUsBox .concataUsCenterC1 .titleOne{line-height: 1.25rem;height: 1.25rem;font-size: 0.75rem;color: #333333;}
.contactUsBox .concataUsCenterC1 .titleTow{line-height: 0.75rem;font-size: 0.6rem;color: #666666;}
/* 联系我们end */
/* ========== 内页banner end ========== */
/* ========== 当前位置 start ========== */
/* ========== 当前位置 end ========== */
/* ========== 文章详情+单篇 start ========== */
.articleHeader {
	padding: .5rem 1.75rem .25rem;
}

.articleBody {
	padding: 0 0.75rem;
}

.articlePublish {
	overflow: hidden;
	text-align: center;
	font-size: 0;
}

.articlePublish .item {
	display: inline-block;
	vertical-align: middle;
	font-size: 0;
	text-align: center;
	overflow: hidden;
	margin: 0 0.25rem;
}

.articlePublish .item span {
	display: inline-block;
	vertical-align: middle;
	color: #999999;
	font-size: 0.6rem;
}

/* 文章标题 start */
.articleTitle {
	font-size:.867rem;
	color: #0f7ab3;
	font-weight: bold;
	line-height: 1.417rem;
}

/* 文章标题 end */
/* 分享 start */
.articlePublish .articleShare span {
	display: flex;
	align-items: center;
}

/* 分享 end */
/* 音频 start */
.articleAudio {
	padding: 0 0 .5rem;
}

.audio-tips {
	margin-top: 10px;
	color: #b1b1b1;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.articleAudio .info {
	-webkit-box-flex: 1;
	-ms-flex: 1 0;
	flex: 1 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow: hidden;
	line-height: 45px;
}

.articleAudio .info p {
	margin: 0;
	font-size: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #666;
	text-indent: 0;
}

.articleAudio .info .audio-title {
	-webkit-box-flex: 1.5;
	-ms-flex: 1.5;
	flex: 1.5;
	line-height: 24px;
	font-size: 14px;
}

.articleAudio .info .audio-desc {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	line-height: 16px;
	color: #999 !important;
	font-size: 12px !important;
}

.articleAudio .info .audio-desc span {
	padding: 0 15px 0 0;
	color: var(--mainColor);
}

.articleAudio .audiojs .pause {
	color: var(--mainColor);
	background-image: url("../images/common/speaker.svg");
}

/* 音频 end */
/* 视频 start */
.articleVideo {
	margin: 0 0 .5rem;
	background: #000;
	position: relative;
}

.articleVideo::before {
	display: block;
	content: '';
	padding-top: 56.25%;
}

#newViewPlayer {
	position: absolute;
	left: 0;
	top: 0;
}

.artVideoView {
	background: #000;
	position: relative;
}

.artVideoView::before {
	display: block;
	content: '';
	padding-top: 56.25%;
}

.videoDownLoad {
	text-align: center;
	padding: .5rem;
}

.articleVideo .progress-play {
	background-color: var(--mainColor) !important;
}

/* 视频 end */
/* 大图 start */
.articelImgSlide {
	overflow: hidden;
	position: relative;
}

#articelImgSlide img {
	display: block;
	max-width: 100%;
}

#articelImgSlide {
	overflow: hidden;
	position: relative;
}

#articelImgSlide .swiper-pagination {
	bottom: .25rem;
}

.articelImgSlide .swiper-button-prev {
	left: 0px;
}

.articelImgSlide .swiper-button-next {
	right: 0px;
}

.articelImgSlide .swiper-pagination-bullet {
	background: #eee;
	opacity: 1;
}

.articelImgSlide .swiper-pagination-bullet-active {
	background:#0f7ab2;
}

.articelImgSlide .swiper-button-next:after,
.articelImgSlide .swiper-button-prev:after {
	color:#0f7ab2;
}

/* 大图 end */
/* 内容区 start */
.articleBox {
	line-height: 1.5rem;
	color: #454545;
	padding: 0.5rem 0;
	font-size: 0.7rem;
	background: #fff;
}

.articleBox img {
	max-width: 100%;
}

/* 内容区 end */
.registerNowBtn{padding: 0.5rem 0 1rem;text-align: center;}
.registerNowBtn a{display: inline-block;line-height: 1.5rem;height: 1.5rem;padding: 0 2.25rem;background-color: #0e77b0;font-size: 0.65rem;color: #fff;border-radius: .25rem;}
/* 页码 start */

/* 页码 end */
/* 附件 start */
.articleAnnex {
	clear: both;
	font-size: 0.75rem;
	padding: 0 0 1rem;
	overflow: hidden;
}

.articleAnnex a {
	display: block;
	line-height: 1.6rem;
	padding: 0 .75rem 0 1.2rem;
	color: #666;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: auto 1rem;
	background-image: url('../images/common/file/file.png');
}

.articleAnnex a.word {
	color: #37a6ff !important;
	background-image: url('../images/common/file/word.png');
}

.articleAnnex a.ppt {
	color: #ff7735 !important;
	background-image: url('../images/common/file/ppt.png');
}

.articleAnnex a.excel {
	color: #15bf44 !important;
	background-image: url('../images/common/file/excel.png');
}

.articleAnnex a.pdf {
	color: #1369c0 !important;
	background-image: url('../images/common/file/pdf.png');
}

.articleAnnex a.zip {
	color: #ff9779 !important;
	background-image: url('../images/common/file/zip.png');
	background-size: auto 0.7rem;
	background-position: left 3px center;
}

/* 附件 end */
/* 上一篇/下一篇 start */
.articlePage {
	height: 2rem;
	line-height: 2rem;
	background: #FFF;
	display: flex;
	justify-content: space-between;
	margin: 0 .75rem;
	padding-bottom: 2rem;
}

.articlePage .item {
	color: #666666;
}
.articlePage .item .pagePrev{display: block; background: url(../images/prev.png) no-repeat center center / contain;width: 2rem;height: 2rem;}
.articlePage .item .pageNext{display: block; background: url(../images/next.png) no-repeat center center / contain;width: 2rem;height: 2rem;}
.articlePage .retrun{width: 5.833rem;height: 2rem;line-height: 2rem;background-color:#f0f0f0;border-radius:3rem;font-size: .65rem;color: #999999;text-align: center;}
/* 上一篇/下一篇 end */
/* ========== 文章详情+单篇 end ========== */
/* ========== subBanner start ========== */
.subBanner {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.subBanner:before {
	display: block;
	content: '';
	padding-top: 48%;
}

.subBanner img {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
	object-position: center center;
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transition: all 3s ease;
	-webkit-transition: all 3s ease;
}

.subBanner.on img {
	transform: scale(1);
	-webkit-transform: scale(1);
}

.subBanner .text {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .05);
}

.subBanner .wrap {
	height: 100%;
}

.subBanner .textC {
	position: relative;
	text-align: center;
}

.subBanner .textC .cnTitle {
	font-size: 1.2rem;
	color: #ffffff;
	line-height: 1.5rem;
	font-weight: bold;
	text-shadow: 0px 0px 5px rgb(0 0 0 / 0.1);
	margin-bottom: .25rem;
}

.subBanner .textC .enTitle {
	font-size: .65rem;
	color: rgb(255 255 255 / .78);
	line-height: 1.5rem;
	text-transform: uppercase;
	text-shadow: 0px 0px 5px rgb(0 0 0 / 0.1);
}

/* ========== subBanner end ========== */
/* ========== 二级菜单 start ========== */
.mobileSubMenu {
	height: 2.167rem;
	position: sticky;
	top: 0;
	z-index: 5;
	margin: 0 auto;
	width: 100%;
	transition: 0.5s;
	background: #FFF;
	overflow: hidden;
}

.subMenu .swiper-slide {
	font-size: 0.6rem;
	width: auto;
}

.subMenu a {
	display: block;
	color: #333333;
	position: relative;
	margin: 0 0.5rem;
	height: 2.167rem;
	font-size:.767rem;
	line-height: 2.167rem;
}

.subMenu .swiper-slide.hover a {
	color: #0f7ab2;
}

.subMenu .swiper-slide.hover a:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 0;
	border-bottom: 2px solid #0f7ab2;
}

/* ========== 二级菜单 end ========== */
/* ========== 滑动分页 start ========== */
.ajaxLoad {
	color: #666;
	height: 2rem;
	line-height: 2rem;
	text-align: center;
	clear: both;
	position: relative;
	background: #fff;
	margin: 5px 0 0 0;
	font-size: 0.7rem;
}

.mobilePageLoading {
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../images/common/loading2.svg);
	display: inline-block;
	vertical-align: top;
	width: 1.5rem;
	height: 2rem;
	background-size: auto 1rem;
}

/* ========== 滑动分页 end ========== */
/* ========== 招聘表单  start========== */
.recruitFormTitle {
	font-size: 0.75rem;
	color: #0f7ab3;
	text-align: center;
	height: 1.5rem;
	line-height: 1.5rem;
	font-weight: bold;
	margin-bottom: 0.4rem;
}
.recruitFormTitle span{color: #0f7ab3;}
.recruitListForm .select select{top: .15rem;} 
.recruitListForm {
	padding-top: .35rem;
}

.recruitListForm:after {
	clear: both;
	content: '';
	visibility: hidden;
	display: block;
}

.recruitListForm .item {
	width: 100%;
	float: left;
	display: inline;
	margin-bottom: 0;
}
.recruitListForm .item.itemUpLoadFile{margin-bottom: 1rem;}
.recruitListForm .item.itemUpLoadFile .labelText{line-height: 1rem;font-size: 0.6rem;color: #cccccc;margin-bottom: 0.5rem;}
.recruitListForm .item.itemUpLoadFile .labelBtn{line-height: 1.75rem;height: 1.75rem;margin-bottom: 0.5rem;}
.recruitListForm .item.itemUpLoadFile .labelBtn a{display: inline-block;width:4rem;line-height: 1.75rem;height: 1.75rem;background-color: #27a7e2;border-radius: .25rem;text-align: center;font-size: 0.65rem;color: #ffffff;}
.recruitListForm .item .itemCare .itemCareUp{line-height: 1rem;font-size: 0.6rem;color: #ffac1b;padding-left: 1rem;background: url("../images/itemCareUpIcon.png") no-repeat left center / 0.75rem;}
.recruitListForm .item .itemCare .itemCareText{line-height: 1rem;font-size: 0.6rem;color: #999999;}
.recruitListForm .item .itemCare .itemCareText span{color: #107bb4;}
.recruitListForm .con{background-color: unset;}

.recruitListForm .itemYzm .con {
	background-color: unset;
}

.recruitListForm .itemYzm .input {
	background-color: #f7f7f7;
}

.recruitListForm .bdAll:before {
	border-radius: 6px;
	overflow: hidden;
}

.recruitListForm .item .label {
	height: 1.9rem;
	line-height: 2rem;
	color: #595959;
}

.recruitListForm .item .label span {
	color: #da0100;
	margin-right: .25rem;
}

.recruitListForm .item .itemC {
	clear: both;
	padding: 0 .5rem;
	min-height: 1.9rem;
	background-color: #fafafa;
}
.recruitListForm .item.itemTitleBox{padding-top: 0.75rem;}
.recruitListForm .item.itemLine{width: 100%;height: 1px;background-color: #f5f5f5;margin: 1rem 0 .5rem;}
.recruitListForm .item.itemTitleBox .itemTitle{line-height: 1.5rem;height: 1.5rem;text-align: center;font-size: 0.75rem;color: #333333;}
.recruitListForm .item.itemBirthday .itemC .input{padding-right: 2rem;}
.recruitListForm .item.itemBirthday .itemC .input em{position: absolute;width: 1.5rem;height: 2rem;right: 0;top: 0;background: url("../images/itemBirthdayIcon.png") no-repeat center center / 1rem;}
.recruitListForm .item.itemRadio .itemC{background-color: unset;}
.recruitListForm .item.itemYzm .itemC{background-color: unset;padding: 0;}
.recruitListForm .item.itemYzm .itemC input{padding: 0 0.5rem;}
.recruitListForm .input {
	position: relative;
	padding-right: 1rem;
	padding: 0;
}

.recruitListForm .input span {
	font-size: 0.6rem;
	color: #ff0000;
	text-align: center;
	position: absolute;
	width: 0.5rem;
	height: 100%;
	line-height: 1.9rem;
	right: 0.35rem;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.recruitListForm .select span {
	font-size: 0.6rem;
	color: #ff0000;
	text-align: center;
	position: absolute;
	width: 0.5rem;
	height: 100%;
	line-height: 1.9rem;
	right: 0.35rem;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.recruitListForm .select .icn {
	right: 0rem;
	width: 1rem;
	font-size: 0.75rem;
	line-height: 2rem;
}
.recruitListForm .textarea{padding: 0;}
.recruitListForm .textarea textarea {
	height: 7.5rem;
}
.recruitListForm .itemA .textarea textarea{height: 5rem;}

.recruitListForm .yearSelect select option:first-child {
	display: none;
}

.recruitListForm .yearSelect {
	width: 4rem;
	padding-left: 0.6rem;
}

.recruitListForm .yzmText {
	line-height: 1.9rem;
	font-size: .65rem;
	color: #999;
	margin-left: .5rem;
    white-space: nowrap;
    height: 1.9rem;
}

.recruitListForm .formYzm .yzmImg {
	height: 1.9rem;
}

.recruitListForm .yzmText span {
	font-size: .8rem;
}
.formBtn {
	padding: 0.75rem 0 0.75rem;
	display: flex;
	justify-content: center;
}

.formBtn div {
	width: 50%;
	height: 1.75rem;
	margin: 0 0.375rem;
	text-align: center;
	border-radius: .25rem;
}

.formBtn div.bdAll::before {
	border-radius: .5rem;
	line-height: 1.75rem;
}

.formBtn .submit.bdAll::before {
	background-color: #0f7ab3;	
}

.formBtn .reset.bdAll::before {
	background: #f0f0f0;
	border-color: #dedede;
}

.formBtn a {
	display: block;
	line-height: 1.75rem;
	font-size: .65rem;
	color: #999999;
}

.formBtn .submit a {
	color: #FFFFFF;
}
/* ========== 招聘表单  end========== */
/* 表单公用start */
.input{padding:0 .5rem}
.input input{ border: none; background: none; width: 100%; height: 1.9rem; line-height: 1.9rem; font-size: .65rem; color: #333;}

.textarea{ padding:5px 10px}
.textarea textarea{ border: none; background: none; width: 100%; height: 3rem; line-height: 1.5rem; font-size: .65rem; color: #333;}

a.formBtn{ display: inline-block; height: 1.5rem; line-height: 1.5rem; background: #ddd; border-radius: 3px; font-size: .65rem; color: #333; padding:0 1rem; margin: 0 .5rem; position: relative;}
a.formBtn::before{content: " ";width: 200%;height: 200%;position: absolute;top: 0;left: 0;border: 1px solid #ddd;box-sizing: border-box;-webkit-transform: scale(.5);transform: scale(.5);-webkit-transform-origin: 0 0;transform-origin: 0 0;z-index: -1}
a.formBtn:hover{ opacity: .9;}

.radio {color: #555555;line-height: 1.9rem;font-size: 0;}
.radio .radioItem {display: inline-block;height: 1.9rem;margin-right: 1rem;position: relative;vertical-align: middle;}
.radio .radioItem input {position: absolute;width: 100%;height: 100%;left: 0;top: 0;opacity: 0;z-index: 1}
.radio .radioItem label {color: #555555;overflow: hidden;font-size: 0.65rem;line-height: 2rem;height: 1.9rem;display: block;}
.radio .radioItem input[type=radio]+label span {width: 0.65rem;height: 0.65rem;border-radius: 50%;border: 1px solid #e1e1e1;margin-right: 0.25rem;display: inline-block;vertical-align: middle;position: relative;top: -.1rem;}
.radio .radioItem input[type=radio]+label span:before {display: block;content: '';width: 0.35rem;height: 0.35rem;border-radius:50%;position: absolute;left: 50%;top: 50%;margin-top: -0.175rem;margin-left: -0.175rem;background: #1e5ab0;visibility: hidden;}
.radio .radioItem input[type=radio]:checked+label span:before {visibility: visible}
.radio .radioItem input[type=radio]:checked+label span{ border-color: #1e5ab0;}
.radio .radioItem input[type=checkbox]+label span {float: left;width: 0.65rem;height: 0.65rem;border: 1px solid #e1e1e1;position: relative;top: 50%;margin-top: -0.4rem;margin-right: 0.25rem;}
.radio .radioItem input[type=checkbox]+label span {border-color: #1e5ab0;}
.radio .radioItem input[type=checkbox]+label span:before {content: "";display: block;width: 0.4rem;height: 0.2rem;border-left: 0.1rem solid #1e5ab0;border-bottom: 0.1rem solid #1e5ab0;position: absolute;top: 0.1rem;left: 50%;transform: translate(-50%) rotate(-45deg);visibility: hidden;background: none;}
.radio .radioItem input[type=checkbox]:checked+label span:before {visibility: visible}

.select{ position: relative;height: 1.9rem;}
.select .icn{ position: absolute; right: 0; top: 0; width: 2rem; height: 1.9rem; line-height: 1.9rem; text-align: center;}
.select select{ position: absolute; appearance: none;-webkit-appearance: none; border: none; background: none; z-index: 1; width: 100%; height: 100%; font-size: .65rem; color: #666;}

.formYzm .input{ display: inline;}
.formYzm .yzmImg{ width: 4rem; height: 1.9rem; float: left; display: inline; margin-left: .5rem; overflow: hidden; padding: .1rem; box-sizing: border-box;-webkit-box-sizing: border-box;}
.formYzm .yzmImg img{ display: block; width: 100%; height: 100%;}

.formSubBtn{ font-size: 0; text-align: left; margin: 0 -.25rem;}
.formSubBtn a{ padding:0 1.5rem;}
.formSubBtn a.submit{ background: #1e5ab0; color: #FFF;}
.formSubBtn a.reset{ background: #ddd; color: #8b8b8b;}
/* 表单公用end */
.concataUsCenterC1 .recruitListForm .con{background-color: #fafafa;}
.concataUsCenterC1 .recruitListForm .itemYzm .con{background-color: unset;}
.concataUsCenterC1 .recruitListForm .item{margin-bottom: 0.75rem;}
.concataUsCenterC1 .recruitListForm .item .itemC{background-color: unset;}
.concataUsCenterC1 .recruitListForm .textarea{padding: 5px 0px;}
.concataUsCenterC1 .recruitListForm .item.itemA .itemC{padding: 0;}