* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}
body {
	background-color: #fafbf9;
}
/* 通用隐藏 */
.hide {
	display: none;
}

/* ========== 响应式头部区域 ========== */
.page-public-container{
	height: 60vh;
}

.page-public-header {
	background: rgba(255,255,255,0.72);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 2px solid #5ec960;
}
.page-public-header .header-main{
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 16px 0;
}
.header-main .logo-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}
.header-main .logo-wrap .logo {
	max-height: 45px;
}
.header-main .back-link a {
	color: #5e7672;
	font-size: 14px;
	text-decoration: none;
	transition: color 0.2s;
}
.header-main .back-link a:hover {
	color: #4cc34f;
	text-decoration: underline;
}

/* ========== 底部版权 ========== */
.page-public-footer {
	text-align: center;
	padding: 18px;
	font-size: 13px;
	color: #333;
}

/* ========== 主视觉区域（旅游清新风） ========== */
.banner-container {
	background-size: cover;
	display: flex;
	align-items: center;
	/* PC端靠右布局 */
	justify-content: flex-end;
	max-width: 1200px;
	margin: 0 auto;
	height: 60vh;
}
.banner-container::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(76,195,79,0.14) 0%, rgba(255,255,255,0.20) 55%, rgba(255,255,255,0.05) 100%);
	pointer-events: none;
}

/* ========== 登录卡片【清新雅致 · 旅游电商风】 ========== */
.login-card {
	width: 100%;
	max-width: 420px;
	background: rgba(255,255,255,0.92);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-radius: 22px;
	padding: 28px 32px 26px;
	box-shadow: 0 24px 64px rgba(18,128,125,0.14), 0 4px 16px rgba(18,128,125,0.06);
	border: 1px solid rgba(255,255,255,0.75);
}
.login-card h3 {
	font-size: 22px;
	font-weight: 700;
	color: #1f3d3b;
	letter-spacing: 1px;
	margin-bottom: 4px;
}
.login-card .login-sub {
	font-size: 13px;
	color: #5e7672;
	margin-bottom: 18px;
	letter-spacing: 0.5px;
}


/* ========== 登录方式切换（密码 / 扫码） ========== */
.login-card .login-tabs {
	display: flex;
	gap: 28px;
	margin-bottom: 20px;
	border-bottom: 1px solid #e8f1ef;
}
.login-card .login-tab {
	font-size: 15px;
	color: #5e7672;
	padding: 6px 2px 10px;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	transition: color 0.2s, border-color 0.2s;
	-webkit-tap-highlight-color: transparent;
}
.login-card .login-tab:hover {
	color: #4cc34f;
}
.login-card .login-tab.is-active {
	color: #4cc34f;
	font-weight: 600;
	border-bottom-color: #4cc34f;
}

/* ========== 表单 ========== */
.login-card .form-item {
	margin-bottom: 12px;
	position: relative;
}
.login-card .form-item:nth-child(2) {
	margin-bottom: 0!important;
}
.login-card .form-item input {
	width: 100%;
	height: 46px;
	border: 1.5px solid #c5dbd6;
	border-radius: 12px;
	padding: 0 16px 0 44px;
	font-size: 15px;
	color: #1f3d3b;
	background-color: #f4faf8;
	background-repeat: no-repeat;
	background-position: 15px center;
	background-size: 20px 20px;
	transition: all 0.25s ease;
}
.login-card .form-item .ico {
	position:absolute;
	left:12px;
	top:50%;
	width:20px;
	height:20px;
	margin-top:-10px;
	z-index:2;
	display:inline-block;
}
/* 手机号 / 密码 图标（内联 SVG） */
.login-card .form-item .ico.ico-phone {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a3c6c2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='2' width='10' height='20' rx='2'/%3E%3Cline x1='11' y1='18' x2='13' y2='18'/%3E%3C/svg%3E");
}
.login-card .form-item .ico.ico-password {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a3c6c2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='11' width='16' height='10' rx='2'/%3E%3Cpath d='M8 11V7a4 4 0 0 1 8 0v4'/%3E%3C/svg%3E");
}
.login-card .form-item input::placeholder {
	color: #a8bfbc;
}
.login-card .form-item input:focus {
	outline: none;
	border-color: #4cc34f;
	background-color: #fff;
	box-shadow: 0 0 0 4px rgba(76,195,79,0.18);
}

/* 验证码行 */
.login-card .code-row {
	display: flex;
	align-items: center;
	gap: 10px;
}
.login-card .code-row input {
	flex: 1;
	background-image: none !important;
	padding-left: 16px;
}
.login-card .code-group {
	display: flex;
	align-items: center;
	gap: 8px;
}
.login-card .code-img {
	display: block;
	width: 74px;
	height: 36px;
	object-fit: cover;
	background: #e2f1ee;
	border-radius: 5px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: inset 0 0 0 1px rgba(76,195,79,0.20);
}
.login-card .change-code {
	font-size: 14px;
	color: #4cc34f;
	cursor: pointer;
	white-space: nowrap;
	transition: color 0.2s;
}
.login-card .change-code:hover {
	color: #3aa83d;
}

/* 底部一行：找回密码 + 免费注册 */
.login-card .form-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 18px;
	font-size: 14px;
	color: #5e7672;
}
.login-card .form-bottom a {
	color: #4cc34f;
	text-decoration: none;
	transition: color 0.2s;
}
.login-card .form-bottom a:hover {
	color: #3aa83d;
}

/* 登录按钮 */
.login-card .submit-btn {
	display: block;
	width: 100%;
	height: 46px;
	line-height: 46px;
	text-align: center;
	background: linear-gradient(135deg, #5fd462, #4cc34f);
	border: none;
	border-radius: 23px;
	color: #fff;
	font-size: 17px;
	letter-spacing: 4px;
	cursor: pointer;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(76,195,79,0.25);
	transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.login-card .submit-btn:hover {
	opacity: 0.94;
	box-shadow: 0 6px 16px rgba(76,195,79,0.30);
}
.login-card .submit-btn:active {
	transform: translateY(0);
}

/* ========== 扫码登录面板 ========== */
/* 与密码登录面板保持等高，避免切换时卡片高度跳动 */
.login-card .panel-login,
.login-card .panel-scan {
	min-height: 225px;
}
.login-card .panel-scan {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 12px 0 6px;
}
/* 特异性高于 .panel-scan 的 display:flex，确保隐藏生效 */
.login-card .panel-scan.hide {
	display: none;
}
.login-card .scan-qr {
	display: inline-flex;
	padding: 14px;
	background: #f4faf8;
	border: 1px solid #dcefea;
	border-radius: 16px;
	margin-bottom: 16px;
	box-shadow: 0 6px 18px rgba(18,128,125,0.08);
}
.login-card .scan-qr-img {
	display: block;
	width: 160px;
	height: 160px;
	border-radius: 8px;
}
.login-card .scan-tip {
	font-size: 14px;
	color: #333;
	margin-bottom: 18px;
}
.login-card .scan-tip .tip {
	color: #4cc34f;
}
.login-card .scan-links {
	display: flex;
	justify-content: center;
	gap: 24px;
	font-size: 14px;
}
.login-card .scan-links a {
	color: #4cc34f;
	text-decoration: none;
	/*font-weight: 600;*/
	transition: color 0.2s;
}
.login-card .scan-links a:hover {
	color: #3aa83d;
}

/*注册*/
.main-reg-con{
	width:1200px;
	height:100%;
	margin:0 auto;
	position:relative
}
.main-reg-box{
	height:710px;
	background:url(../images/reg-bg.jpg) center no-repeat
}
.main-getback-box{
	height:710px;
	background:url(../images/find-bg.jpg) center no-repeat
}
.reg-box,
.getback-box{
	width:100%;
	position:absolute;
	left:0;
	top:80px;
	background:#fff;
	border-radius: 20px;
	overflow: hidden;
}
.reg-phone-step{
	width:60%;
	height:400px;
	margin:50px auto
}
.reg-phone-tit{
	color:#fff;
	height:50px;
	line-height:50px;
	text-align:center;
	font-size:18px;
	background: linear-gradient(135deg, #5fd462, #4cc34f);
}
.reg-phone-step .current-step{
	height:5px;
	font-size:0;
	padding:0 50px;
}
.reg-phone-step .current-step span{
	color:#999;
	display:inline-block;
	width:33.333333%;
	height:5px;
	text-align:center;
	font-size:14px;
	position:relative;
	background: #d9dadc;
}
.reg-phone-step .current-step span.on{
	background:#4cc34f
}
.reg-phone-step .current-step span.on i{
	background:#4cc34f
}
.reg-phone-step .current-step span strong{
	display:block;
	padding-top:20px
}
.reg-phone-step .current-step span i{
	position:absolute;
	left:50%;
	top:0;
	z-index: 1;
	margin:-8px 0 0 -10px;
	display:block;
	color:#fff;
	width:20px;
	height:20px;
	line-height:20px;
	text-align:center;
	font-style:normal;
	border-radius:50%;
	background:#d9dadc
}
.reg-phone-step .current-con{
	margin-top:80px;
	padding: 0 80px;
}
.reg-phone-step .current-con:last-child{
	padding: 0;
}
.reg-phone-step .current-con li{
	margin-top:15px
}
.reg-phone-step .current-con li:after{
	content:'.';
	clear:both;
	height:0;
	display:block;
	overflow:hidden
}
.reg-phone-step .current-con li .bt{
	color:#333;
	float:left;
	width:100px;
	max-height: 46px;
	line-height: 46px;
	text-align:right;
	font-size:15px
}
.reg-phone-step .current-con li .msg-box{
	min-height:32px;
	display: flex;
	align-items: center;
	position:relative;
}
.reg-phone-step .current-con li .msg-box.msg-agreement{
	padding-left: 100px;
}
.reg-phone-step .current-con li .msg-box .msg-item{
	width: 100%;
	display: flex;
	align-items: center;
}
.reg-phone-step .current-con li .msg-box .msg-item.msg-code{
	width: 47%;
}
.reg-phone-step .current-con li .msg-box .msg-btn{
	width: 20%;
	cursor: pointer;
	margin-left: 10px;
	font-size: 14px;
	display:inline-block;
}
.reg-phone-step .current-con li .msg-box .choose-btn{
	color: #2e9900;
}
.reg-phone-step .current-con li .msg-box .input-txt{
	display:inline-block;
	width:100%;
	height:46px;
	line-height:46px;
	padding:0 16px;
	border: 1.5px solid #c5dbd6;
	border-radius: 12px;
	font-size: 15px;
	color: #1f3d3b;
	background-color: #f4faf8;
	background-repeat: no-repeat;
	background-position: 15px center;
	background-size: 20px 20px;
	transition: all 0.25s ease;
}
.reg-phone-step .current-con li .msg-box .input-txt:focus{
	outline: none;
	border-color: #4cc34f;
	background-color: #fff;
	box-shadow: 0 0 0 4px rgba(76,195,79,0.18);
}

.reg-phone-step .current-con li .msg-box .trends-ma{
	color:#999;
	height:46px;
	line-height:46px;
	padding:0 14px;
	border:1px solid #e9e9e9;
	background:#fafafa;
	border-radius: 12px;
	width: 31%;
	text-align: center;
}
.reg-phone-step .current-con .error-tip{
	color:#fc6000;
	padding-left:100px;
	justify-content: flex-start;
	margin: 5px 0;
	font-size: 12px;
}
.reg-phone-step .current-con .error-tip .error-txt{
	display: none;
}
.reg-phone-step .current-con .error-tip .error-txt:before{
	content:' ';
	display:inline-block;
	width:18px;
	height:16px;
	vertical-align:middle;
	margin-right: 5px;
	background:url(../images/login-small.png) no-repeat;
}
.reg-phone-step .current-con li .msg-box i{
	position:absolute;
	right:12px;
	top:50%;
	transform: translateY(-50%);
	font-size:18px;
	cursor:pointer;
	color:#999;
	width:20px;
	height:20px;
	margin-top:-3px;
}
.reg-phone-step .current-con .next-btn{
	padding-left:100px
}
.reg-phone-step .current-con .next-btn a,
.reg-phone-step .current-con .back-home-btn a{
	display:inline-block;
	color:#fff;
	width:160px;
	height:46px;
	line-height:46px;
	text-align:center;
	font-size:15px;
	background: linear-gradient(135deg, #5fd462, #4cc34f);
	border-radius: 23px;
}
.reg-phone-step .current-con .next-btn a:hover,
.reg-phone-step .current-con .back-home-btn a:hover{
	opacity: 0.94;
	box-shadow: 0 6px 16px rgba(76,195,79,0.30);
}
.reg-phone-step .current-con .success-txt{
	color:#333;
	font-size:20px;
	text-align:center;
}
.reg-phone-step .current-con .success-txt .fu{
	color:#666;
	font-size:14px;
	margin-top:10px
}
.reg-phone-step .current-con .back-btn{
	margin-top:20px;
	text-align:center
}
.reg-phone-step .current-con .back-btn .home-btn{
	display:inline-block;
	color:#999;
	width:140px;
	height:46px;
	line-height:46px;
	margin:0 10px;
	text-align:center;
	font-size:16px;
	border:1px solid #e9e9e9;
	background:#fafafa;
	text-decoration: none;
	border-radius: 23px;
}
.reg-phone-step .current-con .back-btn .home-btn:hover{
	color:#333;
	background:#f3f3f3
}
.reg-phone-step .current-con .back-btn .now-btn{
	display:inline-block;
	color:#fff;
	width:140px;
	height:46px;
	line-height:46px;
	margin:0 10px;
	text-align:center;
	font-size:16px;
	border:1px solid #4cc34f;
	background:#4cc34f;
	text-decoration: none;
	border-radius: 23px;
}
.reg-phone-step .current-con .back-btn .now-btn:hover{
	border:1px solid #3aa93d;
	background:#3aa93d
}
.agree-item{
	color:#999;
	font-size: 14px;
	margin-left: 10px;
	cursor: pointer;
}
.agree-item a{
	text-decoration: none;
}
.agreement-term-content{
	padding: 10px 20px 40px 20px;
}

.layui-layer{
	border-radius: 10px!important;
}
.layui-layer .layui-layer-title{
	border-top-left-radius: 10px!important;
	border-top-right-radius: 10px!important;
	background: linear-gradient(135deg, #5fd462, #4cc34f);
	color: #fff;
}
.layui-layer-setwin .layui-layer-close{
	color: #fff!important;
}

/* =========== 移动端响应式规则 =========== */
@media all and (max-width:1200px){
	.page-public-header {
		padding: 12px 5%;
	}
	.page-public-container{
		padding: 0 5%;
	}
	.main-reg-con{
		width:1000px;
		height:100%;
		margin:0 auto
	}
	.reg-phone-step{
		width:80%
	}
}

/*响应式 - 平板/小屏PC适配*/
@media all and (max-width:1000px){
	.page-public-header {
		padding: 12px 5%;
	}
	.page-public-container{
		padding: 0 5%;
	}
	.main-reg-con{
		width:100%;
		height:auto;
		padding:0 20px
	}
	.reg-box{
		left:20px;
		right:20px;
		width:auto;
		box-shadow:0 2px 10px rgba(0,0,0,.06)
	}
	.reg-phone-step{
		width:100%;
		margin:30px auto
	}
	.reg-phone-step .current-con{
		padding-left:40px
	}
}

@media screen and (max-width:768px) {
	.page-public-container {
		height: 80vh;
	}
	.page-public-header {
		padding: 12px 5%;
	}
	.page-public-header .logo-wrap .logo {
		max-height: 40px;
	}
	.page-public-header .back-link a {
		font-size: 13px;
	}
	.agree-item{
		font-size: 12px;
	}
	.banner-container {
		/* 小屏高度自适应，内容超高时允许内部滚动，避免卡片被裁切 */
		height: auto;
		min-height: calc(100svh - 130px); /* iOS Safari 地址栏收起后更准确 */
		padding: 40px 5% 32px;
		justify-content: center !important;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	.login-card h3 {
		font-size: 20px;
	}
	.login-card {
		padding: 22px;
		border-radius: 20px;
	}
	.login-card .panel-scan {
		padding-top: 0;
	}
	.login-card .login-sub {
		font-size: 12px;
		margin-bottom: 18px;
	}
	.login-card .panel-scan .scan-qr-img {
		width: 140px;
		height: 140px;
	}
	/* 16px 及以上，防止 iOS 聚焦输入框时自动放大页面 */
	.login-card .form-item input {
		font-size: 16px;
	}
	/* 验证码行保持单行，避免换行错位 */
	.login-card .code-row {
		flex-wrap: nowrap;
	}
	.login-card .code-group {
		width: auto;
	}
	.login-card .submit-btn {
		height: 46px;
		line-height: 46px;
	}
	.page-public-footer {
		font-size: 12px;
		padding-bottom: calc(18px + env(safe-area-inset-bottom));
	}
	/* 移动端点击高亮与可点区域优化 */
	.login-card .submit-btn,
	.login-card .change-code,
	.login-card .code-img,
	.login-card .back-link a,
	.login-card .form-bottom a {
		-webkit-tap-highlight-color: transparent;
	}
	.login-card .change-code {
		padding: 10px 0 10px 6px;
	}

	.main-reg-box{
		height:auto;
		padding: 40px 5%;
		background:url(../images/reg-bg.jpg) center/cover no-repeat
	}
	.main-reg-con{
		width:100%;
		height:auto;
		padding:0;
		position:static
	}
	.reg-box{
		position:static;
		top:auto;
		padding:0;
		background:transparent
	}
	.reg-phone-step{
		width:100%;
		height:auto;
		margin:0;
		padding: 30px;
		background:#fff;
		border-radius:0 0 12px 12px;
		box-shadow:0 4px 20px rgba(76,179,81,.15)
	}
	.reg-phone-tit{
		display:block;
		height:50px;
		line-height:50px;
		text-align:center;
		font-size:17px;
		font-weight:500;
		color:#fff;
		border-radius:12px 12px 0 0;
		background: linear-gradient(135deg, #5fd462, #4cc34f);
	}
	.reg-phone-step .current-step{
		height:auto;
		margin-bottom:24px;
		padding: 0;
	}
	.reg-phone-step .current-step span{
		width:33.333333%;
		height:auto;
		font-size:11px;
		color:#999;
		background: none;
	}
	.reg-phone-step .current-step span.on{
		background:transparent;
		color:#4cc34f}
	.reg-phone-step .current-step span.on strong{
		color:#4cc34f}
	.reg-phone-step .current-step span strong{
		padding-top:16px;
		font-size:12px;
		font-weight:normal;
		color:#999;
	}
	.reg-phone-step .current-step span i{
		width:22px;
		height:22px;
		line-height:22px;
		font-size:12px;
		margin:-10px 0 0 -11px;
		border-radius:50%;
		background:#e0e0e0;
		color:#fff}
	.reg-phone-step .current-step span.on i{
		background:#4cc34f
	}
	.reg-phone-step .current-step span:after{
		content:'';
		position:absolute;
		top: 1px;
		left: -50%;
		width:100%;
		height:2px;
		background:#e0e0e0;
		z-index:0
	}
	.reg-phone-step .current-step span.on:after{
		background:#4cc34f
	}
	.reg-phone-step .current-step span:first-child:after{
		display:none
	}
	.reg-phone-step .current-con{
		margin-top:0;
		padding:0;
		height: 230px;
	}
	.reg-phone-step .current-con li{
		margin-top:0;
		margin-bottom:14px
	}
	.reg-phone-step .current-con li .bt{
		display:none
	}
	.reg-phone-step .current-con li .msg-box{
		min-height:auto;
		padding-left:0!important;
		position:relative;
		justify-content: space-between;
	}
	.reg-phone-step .current-con li .msg-box .ico{
		position:absolute;
		left:12px;
		top:50%;
		width:20px;
		height:20px;
		margin-top:-10px;
		z-index:2;
		display:inline-block;
	}
	.reg-phone-step .current-con li .msg-box .ico-phone{
		background:url(../images/gys-dg-ico05.png) no-repeat;
		background-size: contain;
	}
	.reg-phone-step .current-con li .msg-box .ico-email{
		background:url(../images/gys-dg-ico04.png) no-repeat;
		background-size: contain;
	}
	.reg-phone-step .current-con li .msg-box .ico-code{
		background:url(../images/gys-dg-ico03.png) no-repeat;
		background-size: contain;
	}
	.reg-phone-step .current-con li .msg-box .ico-sms{
		background:url(../images/gys-dg-ico06.png) no-repeat;
		background-size: contain;
	}
	.reg-phone-step .current-con li .msg-box .ico-lock{
		background:url(../images/gys-dg-ico02.png) no-repeat;
		background-size: contain;
	}
	.reg-phone-step .current-con li .msg-box .input-txt{
		display:block;
		width:100%;
		box-sizing:border-box;
		height:46px;
		line-height:46px;
		padding:0 30px 0 44px;
		font-size:14px;
		border:1px solid #e0e0e0;
		border-radius:8px;
		background:#fff;
		transition:border-color .2s;
	}
	.reg-phone-step .current-con li .msg-box .input-txt:focus{
		border-color:#4cc34f
	}
	.reg-phone-step .current-con li .msg-box .msg-item.msg-code{
		width: 100%;
	}
	.reg-phone-step .current-con li .msg-box .choose-btn{
		width: 20%;
	}
	.reg-phone-step .current-con li .msg-box .trends-ma{
		position:absolute;
		right:0;
		top:50%;
		transform:translateY(-50%);
		height:44px;
		line-height:44px;
		color:#4cc34f;
		cursor:pointer;
		background:transparent;
		border:none;
		border-radius:0;
		z-index:2;
		width: auto;
	}
	.reg-phone-step .current-con .next-btn{
		margin-top:5px;
		padding-left:0
	}
	.reg-phone-step .current-con .next-btn a{
		display:block;
		width:100%;
		height:48px;
		line-height:48px;
		text-align:center;
		font-size:16px;
		color:#fff;
		background: linear-gradient(135deg, #5fd462, #4cc34f);
		border-radius:24px;
		box-shadow: 0 4px 12px rgba(76, 195, 79, 0.25);
		transition:transform .1s,box-shadow .2s;
	}
	.reg-phone-step .current-con .next-btn a:active{
		transform:scale(.98);
		box-shadow:0 2px 6px rgba(76,179,81,.2)
	}
	.reg-phone-step .current-con .back-btn{
		margin-top:24px
	}
	.reg-phone-step .current-con .back-btn .home-btn,
	.reg-phone-step .current-con .back-btn .now-btn{
		display:inline-block;
		width:calc(50% - 6px);
		height:44px;
		line-height:44px;
		margin:0 3px;
		text-align:center;
		font-size:14px;
		border-radius:22px;
		box-sizing:border-box
	}
	.reg-phone-step .current-con .back-btn .home-btn{
		color:#666;
		background:#f5f5f5;
		border:1px solid #e0e0e0
	}
	.reg-phone-step .current-con .back-btn .now-btn{
		color:#fff;
		background:linear-gradient(135deg,#4cc34f 0%,#2e9900 100%);
		border:none
	}
	.reg-phone-step .current-con .success-txt{
		font-size:18px;
		text-align:center;
		padding: 30px 10px
	}
	.reg-phone-step .current-con .success-txt h3{
		color:#333;
		font-size:18px;
		margin-bottom:10px
	}
	.reg-phone-step .current-con .success-txt .fu{
		color:#999;
		font-size:13px
	}
	.reg-phone-step .current-con .error-tip{
		padding-left:0;
		justify-content: center;
		font-size: 12px;
	}
}

/*响应式 - 小屏移动端适配*/
@media all and (max-width:480px){
	.main-con{
		padding: 0;
	}
	.reg-phone-step{
		padding: 30px 20px 40px;
	}
	.reg-phone-step .current-step span{
		font-size:10px
	}
	.reg-phone-step .current-step span strong{
		padding-top:14px
	}
	.reg-phone-step .current-step span i{
		width:20px;
		height:20px;
		line-height:20px;
		font-size:11px;
		margin:-9px 0 0 -10px
	}
	.reg-phone-step .current-con li .msg-box .input-txt{
		height:44px;
		line-height:44px;
		padding:0 12px 0 40px;
		font-size:13px
	}
	.reg-phone-step .current-con li .msg-box:before{
		left:12px
	}
	.reg-phone-step .current-con li .msg-box .yz-num{
		width:90px;
		height:44px;
		margin:-44px 0 0 calc(100% - 98px)
	}
	.reg-phone-step .current-con li .msg-box .yz-num img{
		height:44px
	}
	.reg-phone-step .current-con li .msg-box .choose-btn{
		width: 25%;
		line-height: 16px;
		font-size:12px;
	}
	.reg-phone-step .current-con li .msg-box .trends-ma{
		font-size:11px;
	}
	.reg-phone-step .current-con .next-btn a{
		height:46px;
		line-height:46px;
		font-size:15px
	}
	.reg-phone-step .current-con .back-btn .home-btn,
	.reg-phone-step .current-con .back-btn .now-btn{
		height:42px;
		line-height:42px;
		font-size:13px
	}
}

/* layer 透明黑弹窗：6px 圆角 */
.layui-layer.layui-layer-hui {
	border-radius: 6px;
	overflow: hidden;
}

.error-tip{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 22px;
	line-height: 22px;
	color: #555;
	margin: 5px 0;
}
.error-tip .error-msg {
	display: none;
	color: #fc6000;
	height: 20px;
	line-height: 20px;
	padding-left: 17px;
	font-size: 13px;
	background: url(../images/login-small.png) no-repeat -5px 4px;
}