﻿* {
	margin: 0;
	padding: 0;
}

/* 禁用iPhone中Safari的字号自动调整 */
/* 解决IOS默认滑动很卡的情况 */
/* -webkit-overflow-scrolling : touch;  */
html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;

}

body {
	font-size: 14px;
	line-height: 1.6;
	font-family: 'sans-regular', "Helvetica Neue", "Microsoft YaHei", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
	color: #6E7176;
	overflow-x: hidden;
	background-color: #F8F9FA;
}

a {
	color: #6E7176;
	font-family: 'Microsoft YaHei', Tahoma, Arial, sans-serif;
	cursor: pointer;
	text-decoration: none;
}

a:hover {
	color: #267EF0;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	margin: 0;
	font-weight: normal;
}

button,
input,
select,
textarea {
	font-size: 100%;
	font-family: arial, '微软雅黑';
	outline: none;
	vertical-align: middle;
	resize: none;
}

button {
	cursor: pointer;
}

ul,
dl {
	list-style: none;
}

p {
	margin-bottom: 0;
}

img {

	display: inline-block;
	vertical-align: middle;
	border: 0;
	font-size: 0;
	line-height: 0;
	-ms-interpolation-mode: bicubic;
	/*为了照顾ie图片缩放失真*/
}

.warper {
	width: 1200px;
	margin: 0 auto;
}

.fl {
	float: left
}

.fr {
	float: right
}

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearfix:before,
.clearfix:after {
	content: " ";
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearfix:after {
	clear: both;
}

.clearfix {
	*zoom: 1;
}


/*单行溢出*/
.one-txt-cut {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	/* for IE */
	-o-text-overflow: ellipsis;
	/* for Opera */
	-icab-text-overflow: ellipsis;
	/* for iCab */
	-khtml-text-overflow: ellipsis;
	/* for Konqueror Safari */
	-moz-text-overflow: ellipsis;
	/* for Firefox,mozilla */
	-webkit-text-overflow: ellipsis;
	/* for Safari,Swift*/
}

/*多行溢出 手机端使用*/
.more-txt-cut {
	overflow: hidden;
	text-overflow: ellipsis;
	/* for IE */
	-o-text-overflow: ellipsis;
	/* for Opera */
	-icab-text-overflow: ellipsis;
	/* for iCab */
	-khtml-text-overflow: ellipsis;
	/* for Konqueror Safari */
	-moz-text-overflow: ellipsis;
	/* for Firefox,mozilla */
	-webkit-text-overflow: ellipsis;
	/* for Safari,Swift*/
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}


#comm-head {
	z-index: 999;
	height: 70px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0) 100%);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	width: 100%;
	position: fixed;
	top: 0;
}

#comm-head .container {
	width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#comm-head .nav-logo a {
	height: 70px;
	display: flex;
	align-items: center;
}

#comm-head .nav-logo .img2 {
	display: none;
}


#comm-head .nav-logo .navbar-brand-logo img {
	height: 38px;
}

#comm-head .men-one-ul {
	display: flex;
	font-size: 16px;
	align-items: center;
	height: 70px;
}

#comm-head .men-one-ul li {
	margin-left: 32px;
	position: relative;
}

#comm-head .men-one-ul li:first-child {
	margin-left: 0;
}

#comm-head .men-one-ul li a {
	color: #FFF;
}

#comm-head .men-one-ul li.last-li {
	font-size: 22px;
	color: #FFF;
}

#comm-head .men-one-ul li.active {
	font-weight: bold;
}

#comm-head .men-one-ul li.active::after {
	display: block;
	content: "";
	left: 0;
	right: 0;
	height: 2px;
	background: #FFF;
	bottom: -4px;
	position: absolute;
}

#comm-head .men-one-ul li:hover {
	font-weight: bold;
}

#comm-head .men-one-ul li:last-child:hover {
	font-weight: normal;
}

#comm-head.fixed {
	background: #FFFFFF;
	box-shadow: 0px 4px 24px 0px rgba(0, 10, 40, 0.08);
}

#comm-head.fixed .men-one-ul li a {
	color: #6E7176;
}

#comm-head.fixed .men-one-ul li.active a {
	color: #267EF0;
}

#comm-head.fixed .men-one-ul li.active::after {
	background: #267EF0;


}

#comm-head.fixed .men-one-ul li:hover a,
#comm-head.fixed .men-one-ul li.last-li {
	color: #267EF0;
}

#comm-head.fixed .nav-logo .img1 {
	display: none;
}

#comm-head.fixed .nav-logo .img2 {
	display: block;
}

/*头部结束*/

.comm-title {
	font-size: 30px;
	color: #333;
	font-weight: bold;
	text-align: center;
}

.pt80 {
	padding-top: 80px;
}

.pb80 {
	padding-bottom: 80px;
}


.pt60 {
	padding-top: 60px;
}

.pb60 {
	padding-bottom: 60px;
}

.pt40 {
	padding-top: 40px;
}

.pb40 {
	padding-bottom: 40px;
}

.pb30 {
	padding-bottom: 30px;
}

/* 在线登记 */
.zxdj_part .warper {
	background: #FFF;
	padding: 50px 0;
	text-align: center;
	box-shadow: 0px 4px 24px 0px rgba(0, 10, 40, 0.04);
	border-radius: 6px;
}

.zxdj_part .title1 {
	font-size: 18px;
	color: #333;
}

.zxdj_part .title2 {
	font-size: 32px;
	color: #333;
}

.zxdj_part .title2 .mobile {
	color: #267EF0;
	font-weight: bold;
	margin: 0 5px;
}


.zxdj_part .zxdj_btn a {
	width: 250px;
	height: 60px;
	background: linear-gradient(180deg, #0082EF 0%, #054BCE 100%);
	border-radius: 8px;
	margin: 40px auto;
	color: #FFF;
	line-height: 60px;
	font-size: 22px;
	display: block;
}

.zxdj_part .zxdj_btn a:hover {
	opacity: 0.8;
}

/* 常见问题 */
.problem_part .comm-title,
.news_part .comm-title {
	margin-bottom: 30px;
}

.problem_part .problem_list {
	background-color: #FFF;
	border-radius: 6px;
	display: flex;
	flex-wrap: wrap;
}

.problem_part .problem_list .list_item {
	width: 50%;

}

.problem_part .problem_list .list_item a {
	padding: 20px;
	display: block;
	border-bottom: 1px solid #eaeaea;
	color: #333;
}

.problem_part .problem_list .list_item:hover .p_title {
	color: #267EF0;
}

.problem_part .problem_list .p_title {
	font-size: 16px;
	color: #333;
	font-weight: bold;
}

.problem_part .problem_list .p_desc {
	margin-top: 10px;
	color: #6E7176;
}

.problem_part .problem_list .sear_more,
.news_part .sear_more {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 20px 0;
	font-size: 16px;
}

.hhcd_part2 .part2_list {
	display: flex;
	justify-content: space-between;
	text-align: center;
}

.hhcd_part2 .part2_list .circle {
	width: 100px;
	height: 100px;
	/* background: #267EF0; */
	border-radius: 50%;
	margin: 0 auto;
}

.hhcd_part2 .part2_list .circle img {
	width: 100px;
	height: 100px;
}

.hhcd_part2 .part2_list .h_title {
	font-weight: bold;
	color: #333;
	font-size: 16px;
	margin: 20px 0 10px;
}

.hhcd_part2 .part2_list .h_desc {
	width: 292px;
}

.qywx_table .warper {
	background-color: #FFF;
	box-shadow: 0px 4px 24px 0px rgba(0, 10, 40, 0.04);
	border-radius: 12px;
}

.qywx_table .btop {
	border-top: 1px solid #eaeaea;
}

.qywx_table table {
	width: 100%;
	color: #333;
	padding: 0 20px;

}

.qywx_table table th {
	height: 60px;
	box-sizing: border-box;
	font-size: 18px;
	font-weight: bold;
	width: 33.3333%;

}

.qywx_table table tr td {
	text-align: center;
	height: 60px;
	font-size: 16px;
	background: #F5F5F6;

}

.qywx_table table tr:nth-child(even) td {
	background: #FBFBFB;
}

.qywx_table .table2 th {
	width: 33.333%;
}

.qywx_table .table2 tr td {
	width: 33.333%;
}

.qywx_table .table2.other {
	padding: 0;
}

.qywx_table .table2.other th {
	border-bottom: none;
	background: #F5F5F6;
}

.qywx_table .table2.border tr td {
	border: 4px solid #F8F9FA;
}

.qywx_table .table2.other tr:nth-child(odd) td {
	background: #FFF;
}

.qywx_table .table2.other tr:nth-child(even) td {
	background: #FBFBFB;
}

.qywx_table .small {
	display: block;
	font-size: 14px;
	color: #6E7176
}

.qywx_table .table2,
.qywx_table .table3,
.qywx_table .table4,
.qywx_table .table5 {
	padding: 20px;
}

.qywx_table .table3 tr td,
.qywx_table .table4 tr td {
	width: 200px;
}

.qywx_table .table5 tr td {
	background: #FBFBFB !important;
}

.qywx_table .icon1 {
	width: 18px;
	height: 18px;
}

.qywx_table .icon2 {
	width: 25px;
	height: 22px;
}

.qywx_table .vip-icon {
	width: 20px;
	height: 22px;
	margin-left: 5px;
	position: relative;
	bottom: 5px;
}

.qywx_table .table3 {
	font-weight: bold;
	color: #333;
	font-size: 16px;
	border-bottom: 1px solid #eaeaea;

}

.qywx_table table tr .bg1 {
	background: #F5F5F6 !important;
}

.qywx_table table tr .bg2 {
	background: #FBFBFB !important;
}

/* 公共底部 */
.comm-foot {
	background-color: #F1F2F4;
	padding: 40px 0;
	text-align: center;
}

.comm-foot .zxdh {
	font-size: 32px;
	color: #333;
	font-weight: bold;
}

.comm-foot .beian {
	flex-wrap: wrap;
	color: #6E7176;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.comm-foot .beian a {
	margin-right: 5px;
	color: #6E7176;
}

/* 立即咨询弹层 */
.zxdj_layer {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 999;
	background: rgba(0, 0, 0, 0.6);
	display: none;
}

.zxdj_layer .layer_content {
	background: #FFFFFF;
	box-shadow: 0px 4px 24px 0px rgba(0, 10, 40, 0.04);
	border-radius: 12px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 30px 20px;
	display: flex;
	width: 900px;
	align-items: center;
	flex-direction: row-reverse;
}

.zxdj_layer .zxdj_form .layer-title {
	font-size: 26px;
	font-weight: bold;
	color: #333;
	text-align: center;

}

.zxdj_layer .zxdj_form .layer-title2 {
	text-align: center;
	color: #EF4033;
	font-size: 12px;
	margin: 5px 0 20px;
}

.zxdj_layer .zxdj_form {
	flex: 1;
	border-left: 1px solid #eaeaea;
	font-size: 16px;
	padding: 0 20px 0 40px;
}

.zxdj_layer .zxdj_form .layui-form-label {
	font-size: 16px;
	padding: 0;
	height: 40px;
	line-height: 40px;
	color: #333;
	text-align: left;
	width: 60px;

}

.zxdj_layer .zxdj_form .layui-input {
	font-size: 14px;
	height: 40px;
}

.zxdj_layer .zxdj_form .layui-form-item {
	margin-bottom: 15px;
}

.zxdj_layer .zxdj_form .layui-form-label span {
	color: #EF4033;
}

.zxdj_layer .zxdj_form .layui-input-block {
	height: 45px;
	line-height: 45px;
	margin-left: 70px;
}

.zxdj_layer .zxdj_form .form-btn {
	display: flex;
	align-items: center;
	justify-content: center;
}

.zxdj_layer .zxdj_form .form-btn .btn {
	width: 132px;
	height: 42px;
	line-height: 42px;
	background: #FFFFFF;
	border-radius: 4px;
	border: 1px solid #EAEAEA;
	color: #6E7176;
	font-size: 16px;
	display: block;
	text-align: center;
}

.zxdj_layer .zxdj_form .form-btn .btn2 {
	background: linear-gradient(180deg, #0082EF 0%, #054BCE 100%);
	color: #FFF;
	margin-left: 20px;
}

.zxdj_layer .zxdj_form .form-btn .btn:hover {
	opacity: 0.8;
}

.zxdj_layer .zxdj_code {
	text-align: center;
	width: 42%;
}

.zxdj_layer .zxdj_code img {
	width: 240px;
}

.zxdj_layer .zxdj_code p {
	font-size: 16px;
	font-weight: bold;
	color: #333;
	margin-top: 10px;
}

.fixed-right {
	position: fixed;
	bottom: 80px;
	right: 40px;
	z-index: 99;
}

.fixed-right .block-item {
	background: #FFFFFF;
	box-shadow: 0 2px 20px 0 rgba(0, 10, 40, 0.12);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	width: 80px;
	padding: 12px 0;
	font-size: 12px;
	color: #333333;
	justify-content: center;
	align-content: center;
	cursor: pointer;
	text-align: center;
	min-height: 56px;
}

.fixed-right .right-part1:first-child {
	margin-bottom: 10px;
}

.fixed-right .img {
	width: 40px;
	margin: 0 auto;
}

.fixed-right .right-part1 {
	position: relative;
}

.fixed-right .right-part1 p {
	margin-top: 8px;
	text-align: center;
	color: #267EF0;
}

.fixed-right .hover-img {
	width: 180px;
	height: 180px;
	background: #FFFFFF;
	box-shadow: 0 2px 20px 0 rgba(0, 10, 40, 0.12);
	border-radius: 8px;
	position: absolute;
	z-index: 100;
	bottom: 0;
	right: 100px;
	justify-content: center;
	align-items: center;
	padding: 10px;
	display: none;
}

.fixed-right .hover-img img {
	width: 100%;
	height: 100%;
}

.fixed-right .right-part1:hover .hover-img {
	display: flex;
}

.mobile-fixed-right {
	display: none;
}

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

	#comm-head,
	#comm-head .nav-logo a,
	#comm-head .men-one-ul,
	#comm-head .men-one-ul {
		height: 62px;
	}

	#comm-head .nav-logo .navbar-brand-logo img {
		height: 36px;
	}

	#comm-head .men-one-ul li {
		margin-left: 30px;
	}

}

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

	#comm-head .container {
		width: 1300px;
	}

	#comm-head,
	#comm-head .nav-logo a,
	#comm-head .men-one-ul,
	#comm-head .men-one-ul {
		height: 60px;
	}

	#comm-head .nav-logo .navbar-brand-logo img {
		height: 34px;
	}

	#comm-head .men-one-ul li a {
		font-size: 15px;
	}

	#comm-head .men-one-ul li {
		margin-left: 28px;
	}

	#comm-head .men-one-ul li.last-li {
		font-size: 20px;
	}

	.zxdj_part .title2 {
		font-size: 30px;
	}

	.zxdj_layer .layer_content {
		width: 800px;
	}
}

@media screen and (max-width:1366px) {
	.zxdj_part .title2 {
		font-size: 28px;
	}

	.warper {
		width: 1050px;
	}

	#comm-head .container {
		width: 1200px;
	}

	#comm-head,
	#comm-head .nav-logo a,
	#comm-head .men-one-ul,
	#comm-head .men-one-ul {
		height: 56px;
	}

	#comm-head .nav-logo .navbar-brand-logo img {
		height: 32px;
	}


	#comm-head .men-one-ul li {
		margin-left: 24px;
	}

	#comm-head .men-one-ul li.last-li {
		font-size: 18px;
	}


	.comm-title {
		font-size: 24px;
	}

	.pb30 {
		padding-bottom: 20px;
	}

}

.mobile-comm-head {
	display: none;
}


@media screen and (max-width:1250px) {
	.warper {
		width: auto;
		padding: 0 15px;
	}

	#comm-head .container {
		width: auto;
		padding: 0 15px;
	}

	#comm-head .men-one-ul {
		font-size: 14px;
	}

	#comm-head .men-one-ul li {
		margin-left: 15px;
	}


	#comm-head .nav-logo .navbar-brand-logo img {
		height: 30px;
	}

	.index-banner .content,
	.neiye-banner .content {
		top: 10px;
	}
}

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

	#comm-head .nav-logo .navbar-brand-logo img {
		height: 28px;
	}

	#comm-head .men-one-ul li a {
		font-size: 13px;
	}

	#comm-head .men-one-ul li {
		margin-left: 10px;
	}

	#comm-head .men-one-ul li.last-li {
		font-size: 16px;
	}
}

@media screen and (max-width:950px) {
	.zxdj_layer .layer_content {
		width: 90%;
	}
}

/* 小屏幕适配 */
@media screen and (max-width:768px) {

	.fixed-right {
		display: none;
	}

	.mobile-fixed-right {
		padding: 0.1rem 0.2rem;
		background: #FFF;
		display: block;
	}

	.mobile-fixed-right a {
		display: block;
		height: 0.72rem;
		background: linear-gradient(180deg, #0082EF 0%, #054BCE 100%);
		border-radius: 0.08rem;
		color: #FFF;
		text-align: center;
		font-size: 0.28rem;
		line-height: 0.72rem;
	}

	body {
		max-width: 750px;
		margin: 0 auto;
	}

	.warper {
		width: auto;
		padding: 0 0.3rem;
	}

	.comm-title {
		font-size: 0.36rem;
	}

	.pt60 {
		padding-top: 0.6rem;
	}

	.pb60 {
		padding-bottom: 0.6rem;
	}

	.pt40 {
		padding-top: 0.4rem;
	}

	.pb40 {
		padding-bottom: 0.4rem;
	}

	#comm-head {
		display: none;
	}

	.mobile-comm-head {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 100;
		box-shadow: 0px 0.08rem 0.24rem 0px rgba(0, 10, 40, 0.08);
	}

	.mobile-comm-head .head-top {
		height: 0.88rem;
		line-height: 0.88rem;
		position: relative;
		background: #FFF;
		z-index: 99;
		text-align: center;
	}

	.mobile-comm-head .head-top .logo a {
		display: block;
	}

	.mobile-comm-head .head-top .logo {
		height: 0.44rem;
	}

	.mobile-comm-head .head-top .btn-icon1 {
		height: 0.28rem;
	}

	.mobile-comm-head .head-top .btn-icon2 {
		height: 0.28rem;
		display: none;
	}

	.mobile-comm-head.open .head-top .btn-icon1 {
		display: none;
	}

	.mobile-comm-head.open .head-top .btn-icon2 {
		display: block;
	}

	.mobile-comm-head.open .nav-menu {
		right: 0;
	}

	.mobile-comm-head .head-top .right {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0.2rem;
	}

	.mobile-comm-head .nav-menu {
		background: rgba(0, 0, 0, 0.5);
		position: absolute;
		height: calc(100vh - 0.88rem);
		top: 0.88rem;
		z-index: 98;
		right: -100%;
		width: 100%;
		transition: all 0.5s;
		-moz-transition: all 0.3s;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		-ms-transition: all 0.3s;

	}

	.mobile-comm-head .nav-menu .men-one-ul {
		height: calc(100vh - 0.88rem);
		background: #FFF;
		width: 6.7rem;
		position: absolute;
		right: 0;
		z-index: 97;
	}

	.mobile-comm-head .nav-menu .men-one-ul li {
		height: 1rem;
		line-height: 1rem;
		border-bottom: 1px solid #eaeaea;
		font-size: 0.28rem;
		margin: 0 0.4rem;
	}

	.mobile-comm-head .nav-menu .men-one-ul li.active a {
		color: #267EF0;
	}

	.mobile-comm-head .nav-menu .men-one-ul li a {
		display: block;
		color: #333;

	}

	.mobile-comm-head .nav-menu .men-one-ul li.last-li {
		font-size: 0.48rem;
		color: #333;
		border-bottom: none;
		padding-top: 0.6rem;
	}

	.zxdj_part .warper {
		margin: 0 0.3rem;
		padding: 0.4rem 0.2rem;
		box-shadow: 0px 0.08rem 0.24rem 0px rgba(0, 10, 40, 0.04);

	}

	.zxdj_part .title1 {
		font-size: 0.28rem;
	}

	.zxdj_part .title2 {
		font-size: 0.34rem;
	}

	.zxdj_part .title2 .mobile {
		margin: 0 2px;
	}


	.zxdj_part .zxdj_btn a {
		width: 250px;
		height: 0.9rem;
		border-radius: 0.12rem;
		margin: 0.4rem auto;
		color: #FFF;
		line-height: 0.9rem;
		font-size: 0.3rem;
	}

	.problem_part .comm-title,
	.news_part .comm-title {
		margin-bottom: 0.4rem;
	}

	.problem_part .problem_list .list_item {
		width: 100%;
	}

	.problem_part .problem_list .list_item a {
		padding: 0.2rem;
	}

	.problem_part .problem_list .p_title {
		font-size: 0.3rem;
	}

	.problem_part .problem_list .p_desc {
		font-size: 0.26rem;
		margin-top: 0.14rem;
	}

	.problem_part .problem_list .sear_more {
		padding: 0.3rem 0;
		font-size: 0.3rem;
	}

	.comm-foot {
		padding: 0.4rem 0;
	}

	.comm-foot .beian {
		font-size: 0.24rem;
	}

	.comm-foot .beian a {
		margin-right: 0.06rem;

	}


	.zxdj_layer .layer_content {
		box-shadow: 0px 0.04rem 0.24rem 0px rgba(0, 10, 40, 0.04);
		border-radius: 0.12rem;
		left: 50%;
		top: initial;
		bottom: 0;
		transform: translateX(-50%);
		padding: 0;
		display: flex;
		width: 100%;
		align-items: center;
		flex-direction: column;
		padding-bottom: 1.6rem;
	}

	.zxdj_layer .zxdj_form .layer-title {
		font-size: 0.3rem;
		padding: 0.4rem 0 0;
		margin-bottom: 0;
	}

	.zxdj_layer .zxdj_form .layer-title2 {
		margin-bottom: 0.3rem;
	}

	.zxdj_layer .zxdj_form {
		flex: auto;
		border-left: none;
		padding: 0;
		font-size: 0.28rem;
		width: 92%;
	}

	.zxdj_layer .zxdj_form .layui-form-label {
		font-size: 0.26rem;
		padding: 0;
		height: 0.7rem;
		line-height: 0.7rem;
		width: 1.2rem;

	}

	.zxdj_layer .zxdj_form .layui-form-item {
		margin-bottom: 0.3rem;
	}


	.zxdj_layer .zxdj_form .layui-input-block {
		height: 0.7rem;
		line-height: 0.7rem;
		margin-left: 1.3rem;
	}


	.zxdj_layer .zxdj_form .form-btn .btn {
		width: 3.2rem;
		height: 0.7rem;
		line-height: 0.7rem;
		border-radius: 0.08rem;
		font-size: 0.28rem;
	}

	.zxdj_layer .zxdj_form .layui-input {
		font-size: 0.24rem;
	}

	.zxdj_layer .zxdj_form .form-btn .btn2 {
		margin-left: 0.3rem;
	}


	.zxdj_layer .zxdj_code img {
		width: 2.2rem;
	}

	.zxdj_layer .zxdj_code p {
		display: none;
	}

	.zxdj_layer .zxdj_form .form-btn {
		position: absolute;
		bottom: 0;
		background: #FFF;
		box-shadow: 0px -0.08rem 0.24rem 0px rgba(0, 10, 40, 0.08);
		width: 100%;
		padding: 0.2rem 0 0.4rem;
		left: 0;
		right: 0;
	}

}