/* 手机注册页样式，参考 mockup/commen.css + mockup/login.css 整理归位 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	height: 100%;
	font-family: 'DFP King Gothic GB', 'Microsoft YaHei', sans-serif;
}

.reg_header {
	width: 100%;
	height: 90px;
	line-height: 90px;
	border-top: 3px solid #009143;
	text-align: center;
	font-size: 22px;
	color: #333333;
	background: #ffffff;
	box-sizing: border-box;
}

.reg_body {
	width: 100%;
	min-height: calc(100vh - 90px);
	background: linear-gradient(135deg, #e9f3ee 0%, #f7f7f7 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px 0;
}

.reg_form {
	width: 420px;
	max-width: 92vw;
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	padding: 30px 36px 40px;
}

.reg_form h2 {
	text-align: center;
	margin-bottom: 20px;
	color: #333333;
	font-size: 20px;
}

.reg_input {
	width: 100%;
	height: 38px;
	line-height: 38px;
	background: #ffffff;
	border: 1px solid #dfdfdf;
	border-radius: 4px;
	margin: 14px 0;
	padding: 0 12px;
	display: flex;
	align-items: center;
}

.reg_input img {
	width: 18px;
	margin-right: 8px;
	flex-shrink: 0;
}

.reg_input input,
.reg_input select {
	flex: 1;
	height: 34px;
	border: none;
	outline: none;
	font-size: 14px;
	color: #333333;
}

.reg_input.code_row {
	padding-right: 0;
}

.reg_input.code_row .code_btn {
	flex-shrink: 0;
	height: 38px;
	padding: 0 12px;
	border: none;
	background: #517490;
	color: #ffffff;
	cursor: pointer;
	white-space: nowrap;
	border-radius: 0 4px 4px 0;
}

.reg_input.code_row .code_btn[disabled] {
	background: #a9bcc7;
	cursor: not-allowed;
}

.reg_input .captcha_img {
	width: auto;
	height: 34px;
	margin-left: 8px;
	margin-right: 0;
	cursor: pointer;
	flex-shrink: 0;
}

.reg_submit {
	width: 100%;
	height: 42px;
	margin-top: 22px;
	background: #009143;
	color: #ffffff;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
}

.reg_submit:hover {
	opacity: 0.92;
}

.reg_footer_link {
	text-align: center;
	margin-top: 16px;
	font-size: 13px;
}

.reg_footer_link a {
	color: #517490;
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.reg_form {
		width: 92vw;
		padding: 24px 20px 30px;
	}
}
