/* 引入Font Awesome图标库 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* ========== 登录页：度假海边分屏（仅 .page-login） ========== */
html,
body.page-login{
	height:100%;
}
.page-login{
	margin:0;
	padding:0;
	overflow-x:hidden;
}
.page-login .login-page-shell{
	--login-accent:#0d9488;
	--login-accent-hover:#0f766e;
	--login-accent-soft:rgba(13,148,136,0.16);
	--login-form-bg:#ffffff;
	--login-visual-overlay:linear-gradient(135deg,rgba(7,89,133,0.78) 0%,rgba(13,148,136,0.42) 52%,rgba(251,191,36,0.18) 100%);
	--login-beach-img:url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80");
	position:relative;
	width:100%;
	min-height:100vh;
	height:100vh;
	padding:0;
	margin:0;
	box-sizing:border-box;
	display:flex;
	flex-direction:row;
	align-items:stretch;
	justify-content:stretch;
	background:#fff!important;
	border-top:none!important;
	overflow:hidden;
}
.barleft{    position: absolute;
    top: 30px;
    left: 70px;}
.page-login .login-page-shell .login-hero-bg{
	display:none;
}
.page-login .login-page-shell .login-modal{
	position:relative;
	z-index:1;
	display:flex;
	flex-direction:row;
	flex:1 1 auto;
	width:100%;
	max-width:none;
	min-height:100vh;
	height:100vh;
	border-radius:0;
	overflow:hidden;
	box-shadow:none;
	background:#fff;
}
.page-login .login-page-shell .login-modal-visual{
	flex:0 0 70%;
	width:50%;
	min-height:100vh;
	height:100vh;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:48px 56px;
	box-sizing:border-box;
	background:var(--login-visual-overlay),var(--login-beach-img) center/cover no-repeat;
}
.page-login .login-page-shell .login-modal-visual-inner{
	text-align:left;
	max-width:360px;
	width:100%;
}
.page-login .login-page-shell .login-visual-eyebrow,
.page-login .login-page-shell .login-visual-tagline{
	font-size:12px;
	letter-spacing:0.28em;
	text-transform:uppercase;
	color:rgba(255,255,255,0.88);
	margin:0 0 14px;
	font-weight:600;
}
.page-login .login-page-shell .login-visual-heading{
	margin:0 0 18px;
	font-size:34px;
	font-weight:800;
	line-height:1.2;
	letter-spacing:0.04em;
	color:#fff;
	text-transform:uppercase;
}
.page-login .login-page-shell .login-visual-desc{
	font-size:15px;
	color:rgba(255,255,255,0.92);
	line-height:1.75;
	margin:0 0 32px;
}
.page-login .login-page-shell .login-pill-link{
	display:inline-block;
	padding:13px 38px;
	border-radius:6px;
	background:var(--login-accent);
	color:#fff!important;
	font-size:14px;
	font-weight:700;
	letter-spacing:0.16em;
	text-decoration:none;
	text-transform:uppercase;
	box-shadow:0 10px 26px rgba(13,148,136,0.45);
	transition:background 0.25s ease,transform 0.2s ease,box-shadow 0.25s ease;
}
.page-login .login-page-shell .login-pill-link:hover{
	background:var(--login-accent-hover);
	transform:translateY(-2px);
	box-shadow:0 14px 30px rgba(13,148,136,0.5);
}
.page-login .login-page-shell .login-modal-form{
	flex:0 0 30%;
	width:50%;
	min-height:100vh;
	height:100vh;
	background:var(--login-form-bg);
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	min-width:0;
	overflow-y:auto;
}
.page-login .login-page-shell .login-modal-form .body{
	width:100%;
	max-width:420px;
	margin:0!important;
	padding:0 48px!important;
	background:transparent!important;
	animation:none!important;
	box-sizing:border-box;
}
.page-login .login-page-shell .login-modal-form .log{
	width:100%!important;
	max-width:none!important;
	margin:0!important;
	padding:0!important;
	box-sizing:border-box;
}
.page-login .login-page-shell .login-form-title{
	margin:0 0 8px;
	padding:0;
	font-size:28px;
	font-weight:700;
	letter-spacing:0.02em;
	color:#1a2b36;
	text-align:left;
	font-family:inherit;
}
.page-login .login-page-shell .login-form-subtitle{
	margin:0 0 28px;
	font-size:14px;
	line-height:1.6;
	color:#8a96a3;
	text-align:left;
}
.page-login .login-page-shell .login-form-table{
	width:100%;
	margin:0 auto!important;
	border-collapse:collapse;
}
.page-login .login-page-shell .login-form-table td{
	border:none;
	vertical-align:middle;
}
.page-login .login-page-shell .login-td-label,
.page-login .login-page-shell .login-form-row-meta td:first-child{
	display:none;
}
.page-login .login-page-shell .login-form-row td[colspan="2"]{
	width:100%;
	padding-left:0!important;
}
.page-login .login-page-shell .login-form-row .input-wrapper{
	margin:0;
}
.page-login .login-page-shell .login-form-row{
	height:auto!important;
}
.page-login .login-page-shell .login-form-row .input{
	padding:14px 14px 14px 44px;
	border:1px solid #dce3ea;
	border-radius:8px;
	background:#fff;
	box-shadow:none;
}
.page-login .login-page-shell .login-form-row .input:focus{
	border-color:var(--login-accent);
	box-shadow:0 0 0 3px var(--login-accent-soft);
	outline:none;
}
.page-login .login-page-shell .login-form-row .input-icon{
	color:#7a8a96;
}
.page-login .login-page-shell .remember-row{
	padding:8px 0 4px!important;
	margin-top:4px;
}
.page-login .login-page-shell .forget-link,
.page-login .login-page-shell .forreg-link{
	color:var(--login-accent)!important;
}
.page-login .login-page-shell .forget-link:hover,
.page-login .login-page-shell .forreg-link:hover{
	color:var(--login-accent-hover)!important;
}
.page-login .login-page-shell .forreg{
	margin-top:16px!important;
	padding-top:16px!important;
	border-top:1px solid rgba(0,0,0,0.06);
}
.page-login .login-page-shell .typebtn{
	border-radius:8px!important;
	padding:15px 24px!important;
	background:#2b3440!important;
	box-shadow:0 8px 22px rgba(43,52,64,0.28)!important;
	margin-top:12px!important;
	font-size:15px!important;
	font-weight:700!important;
	letter-spacing:0.08em;
}
.page-login .login-page-shell .typebtn:hover{
	background:#1f2730!important;
	transform:translateY(-2px);
	box-shadow:0 12px 28px rgba(43,52,64,0.34)!important;
}
.page-login .login-page-shell .qqlogin{
	border-top:1px solid rgba(0,0,0,0.08)!important;
	padding-top:18px!important;
	margin-top:12px!important;
	font-size:14px!important;
	color:#555!important;
}
.page-login .login-page-shell td.tdright.qqlogin{
	display:none;
}
.page-login .login-page-shell .footer{
	position:relative;
	z-index:1;
	width:100%;
	max-width:420px;
	margin:24px auto 0;
	padding:12px 48px 24px;
	font-size:12px;
	color:#999;
	text-shadow:none;
	text-align:center;
	box-sizing:border-box;
}
.page-login .login-page-shell .footer a{
	color:#666;
	text-decoration:none;
	border-bottom:1px solid rgba(0,0,0,0.12);
}
.page-login .login-page-shell .footer a:hover{
	border-bottom-color:rgba(0,0,0,0.35);
	color:#333;
}
@media (max-width:880px){
	.page-login .login-page-shell{
		height:auto;
		min-height:100vh;
		flex-direction:column;
		overflow:visible;
	}
	.page-login .login-page-shell .login-modal{
		flex-direction:column;
		height:auto;
		min-height:100vh;
	}
	.page-login .login-page-shell .login-modal-visual,
	.page-login .login-page-shell .login-modal-form{
		flex:0 0 auto;
		width:100%;
		min-height:0;
		height:auto;
	}
	.page-login .login-page-shell .login-modal-visual{
		min-height:280px;
		padding:36px 28px;
	}
	.page-login .login-page-shell .login-modal-form{
		padding:36px 0 24px;
	}
	.page-login .login-page-shell .login-modal-form .body{
		padding:0 28px!important;
	}
	.page-login .login-page-shell .footer{
		padding:12px 28px 24px;
	}
	.page-login .login-page-shell .login-visual-heading{
		font-size:26px;
	}
}
@media (max-width:480px){
	.page-login .login-page-shell .login-form-title{
		font-size:24px;
	}
}

/* ========== 登录页分屏卡片（注册/找回密码等复用，金色主题） ========== */
:root{
	--login-accent:#A08347;
	--login-accent-hover:#8a6f3c;
	--login-accent-soft:rgba(160,131,71,0.14);
	--login-form-bg:#f4f5f7;
	--login-visual-overlay:linear-gradient(155deg,rgba(32,44,58,0.75) 0%,rgba(160,131,71,0.38) 100%);
}
body:not(.page-login) .login-page-shell:not(.register-choice-layout):not(.register-person-layout):not(.register-2-page){
	position:relative;
	width:100%;
	min-height:calc(100vh - 140px);
	padding:40px 18px 48px;
	box-sizing:border-box;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	background:transparent!important;
	border-top:none!important;
	overflow:visible;
}
body:not(.page-login) .login-page-shell .login-hero-bg{
	position:fixed;
	inset:0;
	z-index:0;
	background:var(--login-visual-overlay),
		url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat fixed;
	pointer-events:none;
}
body:not(.page-login) .login-page-shell .login-modal{
	position:relative;
	z-index:1;
	display:flex;
	flex-direction:row;
	width:100%;
	max-width:920px;
	min-height:440px;
	border-radius:22px;
	overflow:hidden;
	box-shadow:0 28px 64px rgba(15,23,35,0.35),0 2px 8px rgba(0,0,0,0.08);
	background:#fff;
}
body:not(.page-login) .login-page-shell .login-modal-visual{
	flex:1 1 48%;
	min-height:420px;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:40px 28px;
	box-sizing:border-box;
	background:var(--login-visual-overlay),
		url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}
body:not(.page-login) .login-page-shell .login-modal-visual-inner{
	text-align:center;
	max-width:280px;
}
body:not(.page-login) .login-page-shell .login-visual-tagline{
	font-size:13px;
	letter-spacing:0.2em;
	text-transform:uppercase;
	color:rgba(255,255,255,0.85);
	margin:0 0 10px;
	font-weight:600;
}
body:not(.page-login) .login-page-shell .login-visual-desc{
	font-size:15px;
	color:rgba(255,255,255,0.92);
	line-height:1.6;
	margin:0 0 28px;
}
body:not(.page-login) .login-page-shell .login-pill-link{
	display:inline-block;
	padding:14px 44px;
	border-radius:999px;
	background:var(--login-accent);
	color:#fff!important;
	font-size:15px;
	font-weight:600;
	letter-spacing:0.12em;
	text-decoration:none;
	box-shadow:0 8px 24px rgba(160,131,71,0.45);
	transition:background 0.25s ease,transform 0.2s ease,box-shadow 0.25s ease;
}
body:not(.page-login) .login-page-shell .login-pill-link:hover{
	background:var(--login-accent-hover);
	transform:translateY(-2px);
	box-shadow:0 12px 28px rgba(160,131,71,0.5);
}
body:not(.page-login) .login-page-shell .login-modal-form{
	flex:1 1 52%;
	background:var(--login-form-bg);
	display:flex;
	align-items:stretch;
	min-width:0;
}
body:not(.page-login) .login-page-shell .login-modal-form .body{
	width:100%;
	margin:0!important;
	padding:0!important;
	background:transparent!important;
	animation:none!important;
}
body:not(.page-login) .login-page-shell .login-modal-form .log{
	width:100%!important;
	max-width:none!important;
	margin:0!important;
	padding:40px 38px 36px!important;
	box-sizing:border-box;
}
body:not(.page-login) .login-page-shell .login-form-title{
	margin:0 0 30px;
	padding:0;
	font-size:26px;
	font-weight:700;
	letter-spacing:0.06em;
	color:var(--login-accent);
	text-align:center;
	font-family:inherit;
}
body:not(.page-login) .login-page-shell .login-form-table{
	width:100%;
	margin:0 auto!important;
	border-collapse:collapse;
}
body:not(.page-login) .login-page-shell .login-form-table td{
	border:none;
	vertical-align:middle;
}
body:not(.page-login) .login-page-shell .login-td-label,
body:not(.page-login) .login-page-shell .login-form-row-meta td:first-child{
	display:none;
}
body:not(.page-login) .login-page-shell .login-form-row td[colspan="2"]{
	width:100%;
	padding-left:0!important;
}
body:not(.page-login) .login-page-shell .login-form-row .input-wrapper{
	margin:0;
}
body:not(.page-login) .login-page-shell .login-form-row{
	height:auto!important;
}
body:not(.page-login) .login-page-shell .login-form-row .input{
	padding:14px 14px 14px 44px;
	border:1px solid #e2e4e8;
	border-radius:10px;
	background:#fff;
	box-shadow:0 1px 2px rgba(0,0,0,0.04);
}
body:not(.page-login) .login-page-shell .login-form-row .input:focus{
	border-color:var(--login-accent);
	box-shadow:0 0 0 3px var(--login-accent-soft);
	outline:none;
}
body:not(.page-login) .login-page-shell .remember-row{
	padding:8px 0 4px!important;
	margin-top:4px;
}
body:not(.page-login) .login-page-shell .forget-link,
body:not(.page-login) .login-page-shell .forreg-link{
	color:var(--login-accent)!important;
}
body:not(.page-login) .login-page-shell .forget-link:hover,
body:not(.page-login) .login-page-shell .forreg-link:hover{
	color:var(--login-accent-hover)!important;
}
body:not(.page-login) .login-page-shell .forreg{
	margin-top:16px!important;
	padding-top:16px!important;
	border-top:1px solid rgba(0,0,0,0.06);
}
body:not(.page-login) .login-page-shell .typebtn{
	border-radius:999px!important;
	padding:15px 24px!important;
	background:var(--login-accent)!important;
	box-shadow:0 8px 22px rgba(160,131,71,0.38)!important;
	margin-top:12px!important;
	font-size:16px!important;
	font-weight:600!important;
	letter-spacing:0.14em;
}
body:not(.page-login) .login-page-shell .typebtn:hover{
	background:var(--login-accent-hover)!important;
	transform:translateY(-2px);
	box-shadow:0 12px 28px rgba(160,131,71,0.42)!important;
}
body:not(.page-login) .login-page-shell .qqlogin{
	border-top:1px solid rgba(0,0,0,0.08)!important;
	padding-top:18px!important;
	margin-top:12px!important;
	font-size:14px!important;
	color:#555!important;
}
body:not(.page-login) .login-page-shell td.tdright.qqlogin{
	display:none;
}
body:not(.page-login) .login-page-shell .footer{
	position:relative;
	z-index:1;
	margin-top:32px;
	padding:18px 14px 8px;
	font-size:13px;
	color:rgba(255,255,255,0.88);
	text-shadow:0 1px 4px rgba(0,0,0,0.45);
}
body:not(.page-login) .login-page-shell .footer a{
	color:#fff;
	text-decoration:none;
	border-bottom:1px solid rgba(255,255,255,0.35);
}
body:not(.page-login) .login-page-shell .footer a:hover{
	border-bottom-color:rgba(255,255,255,0.75);
}
@media (max-width:880px){
	body:not(.page-login) .login-page-shell .login-modal{
		flex-direction:column;
		max-width:440px;
	}
	body:not(.page-login) .login-page-shell .login-modal-visual{
		min-height:200px;
		flex:none;
	}
	body:not(.page-login) .login-page-shell .login-modal-form .log{
		padding:32px 24px 28px!important;
	}
}
@media (max-width:480px){
	.login-page-shell{
		padding:24px 12px 36px;
		min-height:calc(100vh - 100px);
	}
	body:not(.page-login) .login-page-shell .login-form-title{
		font-size:22px;
		margin-bottom:22px;
	}
}
.page-login .mheader,
.page-register .mheader{
	position:relative;
	z-index:2;
	background:rgba(255,255,255,0.96);
	box-shadow:0 1px 0 rgba(0,0,0,0.06);
}

/* ========== 注册选择页：全屏分屏 + 竖向步骤 + 卡片上下排列 ========== */
html,
body.page-register{
	height:100%;
}
body.page-register{
	margin:0;
	padding:0;
	overflow-x:hidden;
}
.page-register .login-page-shell.register-choice-layout{
	--login-accent:#0d9488;
	--login-accent-hover:#0f766e;
	--login-accent-soft:rgba(13,148,136,0.16);
	--login-form-bg:#ffffff;
	--login-visual-overlay:linear-gradient(135deg,rgba(7,89,133,0.78) 0%,rgba(13,148,136,0.42) 52%,rgba(251,191,36,0.18) 100%);
	--login-beach-img:url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80");
	position:relative;
	width:100%;
	min-height:100vh;
	height:100vh;
	padding:0;
	margin:0;
	display:flex;
	flex-direction:row;
	align-items:stretch;
	background:#fff!important;
	border-top:none!important;
	overflow:hidden;
}
.page-register .login-page-shell.register-choice-layout .login-hero-bg{
	display:none;
}
.page-register .login-page-shell.register-choice-layout .login-modal{
	display:flex;
	flex-direction:row;
	flex:1 1 auto;
	width:100%;
	max-width:none;
	min-height:100vh;
	height:100vh;
	border-radius:0;
	box-shadow:none;
	overflow:hidden;
	background:#fff;
}
.page-register .login-page-shell.register-choice-layout .login-modal-visual{
	flex:0 0 60%;
	width:50%;
	min-height:100vh;
	height:100vh;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:48px 56px;
	box-sizing:border-box;
	background:var(--login-visual-overlay),var(--login-beach-img) center/cover no-repeat;
}
.page-register .login-page-shell.register-choice-layout .login-modal-visual-inner{
	text-align:left;
	max-width:360px;
	width:100%;
}
.page-register .login-page-shell.register-choice-layout .login-visual-eyebrow,
.page-register .login-page-shell.register-choice-layout .login-visual-tagline{
	font-size:12px;
	letter-spacing:0.28em;
	text-transform:uppercase;
	color:rgba(255,255,255,0.88);
	margin:0 0 14px;
	font-weight:600;
}
.page-register .login-page-shell.register-choice-layout .login-visual-heading{
	margin:0 0 18px;
	font-size:34px;
	font-weight:800;
	line-height:1.2;
	letter-spacing:0.04em;
	color:#fff;
	text-transform:uppercase;
}
.page-register .login-page-shell.register-choice-layout .login-visual-desc{
	font-size:15px;
	color:rgba(255,255,255,0.92);
	line-height:1.75;
	margin:0 0 32px;
}
.page-register .login-page-shell.register-choice-layout .login-pill-link{
	display:inline-block;
	padding:13px 38px;
	border-radius:6px;
	background:var(--login-accent);
	color:#fff!important;
	font-size:14px;
	font-weight:700;
	letter-spacing:0.16em;
	text-decoration:none;
	text-transform:uppercase;
	box-shadow:0 10px 26px rgba(13,148,136,0.45);
	transition:background 0.25s ease,transform 0.2s ease,box-shadow 0.25s ease;
}
.page-register .login-page-shell.register-choice-layout .login-pill-link:hover{
	background:var(--login-accent-hover);
	transform:translateY(-2px);
	box-shadow:0 14px 30px rgba(13,148,136,0.5);
}
.page-register .login-page-shell.register-choice-layout .login-modal-form{
	flex:0 0 40%;
	width:50%;
	min-height:100vh;
	height:100vh;
	background:#f4f7f9;
	display:flex;
	flex-direction:column;
	align-items:stretch;
	justify-content:stretch;
	min-width:0;
	overflow:hidden;
	position:relative;
	padding:0;
}
.page-register .login-page-shell.register-choice-layout .login-modal-form:after{
	content:"";
	position:absolute;
	inset:0;
	background:
		radial-gradient(ellipse 80% 60% at 100% 0%,rgba(13,148,136,0.07) 0%,transparent 55%),
		radial-gradient(ellipse 50% 40% at 0% 100%,rgba(15,23,42,0.04) 0%,transparent 50%);
	pointer-events:none;
}
.page-register .login-page-shell.register-choice-layout .reg-panel-wrap{
	position:relative;
	z-index:1;
	display:flex;
	align-items:stretch;
	width:100%;
	min-height:100vh;
	flex:1;
}

/* 左侧全高步骤轨 */
.page-register .login-page-shell.register-choice-layout .reg-journey-side{
	flex:0 0 280px;
	width:280px;
	min-height:100vh;
	padding:64px 36px 64px 52px;
	box-sizing:border-box;
	background:linear-gradient(180deg,#ffffff 0%,#f8fafb 100%);
	border-right:1px solid rgba(15,35,52,0.07);
	display:flex;
	flex-direction:column;
	justify-content:center;
}
.page-register .login-page-shell.register-choice-layout .reg-journey-label{
	margin:0 0 40px;
	font-size:11px;
	font-weight:700;
	letter-spacing:0.38em;
	text-transform:uppercase;
	color:var(--login-accent);
}
.page-register .login-page-shell.register-choice-layout .reg-journey{
	list-style:none;
	margin:0;
	padding:0;
	min-height:560px;
	display:flex;
	flex-direction:column;
	justify-content:space-between;
	position:relative;
}
.page-register .login-page-shell.register-choice-layout .reg-journey:before{
	content:"";
	position:absolute;
	left:27px;
	top:32px;
	bottom:32px;
	width:2px;
	border-radius:2px;
	background:linear-gradient(180deg,var(--login-accent) 0%,rgba(13,148,136,0.35) 38%,rgba(148,163,184,0.25) 100%);
}
.page-register .login-page-shell.register-choice-layout .reg-journey-item{
	position:relative;
	display:flex;
	align-items:flex-start;
	gap:22px;
	padding:8px 0;
}
.page-register .login-page-shell.register-choice-layout .reg-journey-node{
	flex-shrink:0;
	width:56px;
	height:56px;
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	background:#fff;
	border:2px solid #e2e8f0;
	box-shadow:0 4px 16px rgba(15,35,52,0.06);
	position:relative;
	z-index:1;
	transition:all 0.35s ease;
}
.page-register .login-page-shell.register-choice-layout .reg-journey-node span{
	font-size:15px;
	font-weight:800;
	color:#94a3b8;
	letter-spacing:0.02em;
}
.page-register .login-page-shell.register-choice-layout .reg-journey-item.is-done .reg-journey-node{
	background:linear-gradient(145deg,#14b8a6,var(--login-accent));
	border-color:transparent;
	box-shadow:0 8px 24px rgba(13,148,136,0.4);
}
.page-register .login-page-shell.register-choice-layout .reg-journey-item.is-done .reg-journey-node span{
	color:#fff;
}
.page-register .login-page-shell.register-choice-layout .reg-journey-item.is-current .reg-journey-node{
	width:64px;
	height:64px;
	margin:-4px 0 -4px -4px;
	background:#0f172a;
	border-color:#0f172a;
	box-shadow:0 12px 32px rgba(15,23,42,0.28);
}
.page-register .login-page-shell.register-choice-layout .reg-journey-item.is-current .reg-journey-node span{
	color:#fff;
	font-size:17px;
}
.page-register .login-page-shell.register-choice-layout .reg-journey-text{
	flex:1;
	min-width:0;
	padding-top:10px;
}
.page-register .login-page-shell.register-choice-layout .reg-journey-text em{
	display:block;
	margin:0 0 6px;
	font-style:normal;
	font-size:11px;
	font-weight:700;
	letter-spacing:0.22em;
	text-transform:uppercase;
	color:#94a3b8;
}
.page-register .login-page-shell.register-choice-layout .reg-journey-item.is-current .reg-journey-text em{
	color:var(--login-accent);
}
.page-register .login-page-shell.register-choice-layout .reg-journey-text strong{
	display:block;
	margin:0 0 8px;
	font-size:17px;
	font-weight:700;
	color:#64748b;
	line-height:1.3;
}
.page-register .login-page-shell.register-choice-layout .reg-journey-item.is-current .reg-journey-text strong{
	font-size:19px;
	color:#0f172a;
}
.page-register .login-page-shell.register-choice-layout .reg-journey-text span{
	display:block;
	font-size:13px;
	line-height:1.55;
	color:#94a3b8;
}
.page-register .login-page-shell.register-choice-layout .reg-journey-item.is-current .reg-journey-text span{
	color:#64748b;
}

/* 右侧主内容区 */
.page-register .login-page-shell.register-choice-layout .reg-main-area{
	flex:1;
	min-width:0;
	display:flex;
	flex-direction:column;
	justify-content:center;
	padding:48px 56px 32px 48px;
	box-sizing:border-box;
	overflow-y:auto;
}
.page-register .login-page-shell.register-choice-layout .login-modal-form .body{
	width:100%;
	max-width:none;
	margin:0!important;
	padding:0!important;
	background:transparent!important;
	animation:none!important;
	box-sizing:border-box;
}
.page-register .login-page-shell.register-choice-layout .login-modal-form .registerpart{
	max-width:100%;
	margin:0;
	padding:0!important;
	box-sizing:border-box;
	text-align:left;
}

.page-register .login-page-shell.register-choice-layout .reg-choice-header{
	margin-bottom:28px;
}
.page-register .login-page-shell.register-choice-layout .reg-choice-eyebrow{
	display:block;
	margin:0 0 10px;
	font-size:11px;
	font-weight:700;
	letter-spacing:0.32em;
	text-transform:uppercase;
	color:var(--login-accent);
}
.page-register .login-page-shell.register-choice-layout .reg-page-title{
	margin:0 0 8px;
	font-size:32px;
}
.page-register .login-page-shell.register-choice-layout .reg-page-subtitle{
	font-size:14px;
	max-width:420px;
}

/* 紧凑横向卡片 */
.page-register .login-page-shell.register-choice-layout .reg-plan-list{
	display:flex;
	flex-direction:column;
	gap:14px;
	width:100%;
	max-width:520px;
}
.page-register .login-page-shell.register-choice-layout .reg-plan-card{
	position:relative;
	display:flex;
	flex-direction:row;
	align-items:center;
	gap:16px;
	padding:18px 20px;
	background:#fff;
	border:1px solid rgba(15,35,52,0.08);
	border-radius:14px;
	text-decoration:none;
	color:inherit;
	box-shadow:0 1px 3px rgba(15,35,52,0.04),0 6px 20px rgba(15,35,52,0.04);
	transition:border-color 0.3s ease,box-shadow 0.3s ease,transform 0.25s ease;
	overflow:hidden;
}
.page-register .login-page-shell.register-choice-layout .reg-plan-card:before{
	content:"";
	position:absolute;
	left:0;
	top:0;
	bottom:0;
	width:3px;
	background:linear-gradient(180deg,var(--login-accent),#14b8a6);
	opacity:0;
	transition:opacity 0.3s ease;
}
.page-register .login-page-shell.register-choice-layout .reg-plan-card.is-featured:before{
	opacity:1;
}
.page-register .login-page-shell.register-choice-layout .reg-plan-card:hover{
	transform:translateY(-2px);
	border-color:rgba(13,148,136,0.25);
	box-shadow:0 4px 16px rgba(13,148,136,0.1),0 12px 32px rgba(15,35,52,0.08);
}
.page-register .login-page-shell.register-choice-layout .reg-plan-card.is-featured{
	border-color:rgba(13,148,136,0.16);
}
.page-register .login-page-shell.register-choice-layout .reg-plan-icon{
	flex-shrink:0;
	width:48px;
	height:48px;
	border-radius:12px;
	display:flex;
	align-items:center;
	justify-content:center;
	color:var(--login-accent);
	background:transparent;
	border:none;
	transition:transform 0.3s ease;
}
.page-register .login-page-shell.register-choice-layout .reg-plan-icon svg{
	width:44px;
	height:44px;
	display:block;
}
.page-register .login-page-shell.register-choice-layout .reg-plan-icon-org{
	color:#0284c7;
}
.page-register .login-page-shell.register-choice-layout .reg-plan-card:hover .reg-plan-icon{
	transform:scale(1.04);
}
.page-register .login-page-shell.register-choice-layout .reg-plan-body{
	flex:1;
	min-width:0;
}
.page-register .login-page-shell.register-choice-layout .reg-plan-meta{
	display:flex;
	align-items:center;
	gap:8px;
	margin-bottom:2px;
}
.page-register .login-page-shell.register-choice-layout .reg-plan-title{
	margin:0;
	font-size:16px;
	font-weight:700;
	color:#0f172a;
	letter-spacing:-0.01em;
	line-height:1.3;
}
.page-register .login-page-shell.register-choice-layout .reg-plan-tag{
	padding:2px 8px;
	font-size:10px;
	font-weight:700;
	letter-spacing:0.08em;
	color:var(--login-accent);
	background:rgba(13,148,136,0.08);
	border:1px solid rgba(13,148,136,0.16);
	border-radius:12px;
	line-height:1.4;
}
.page-register .login-page-shell.register-choice-layout .reg-plan-desc{
	margin:0 0 8px;
	font-size:12px;
	line-height:1.5;
	color:#64748b;
}
.page-register .login-page-shell.register-choice-layout .reg-plan-features{
	margin:0;
	padding:0;
	list-style:none;
	display:flex;
	flex-wrap:wrap;
	gap:5px;
	border:none;
}
.page-register .login-page-shell.register-choice-layout .reg-plan-features li{
	padding:2px 8px;
	font-size:11px;
	color:#475569;
	background:#f1f5f9;
	border-radius:10px;
	line-height:1.45;
	border:none;
}
.page-register .login-page-shell.register-choice-layout .reg-plan-org .reg-plan-features li{
	background:rgba(2,132,199,0.08);
	color:#0369a1;
}
.page-register .login-page-shell.register-choice-layout .reg-plan-go{
	flex-shrink:0;
	width:32px;
	height:32px;
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:11px;
	color:#94a3b8;
	background:#f8fafc;
	border:1px solid #e2e8f0;
	transition:all 0.3s ease;
}
.page-register .login-page-shell.register-choice-layout .reg-plan-card:hover .reg-plan-go{
	color:#fff;
	background:var(--login-accent);
	border-color:var(--login-accent);
	box-shadow:0 4px 12px rgba(13,148,136,0.3);
}
.page-register .login-page-shell.register-choice-layout .reg-plan-org:hover .reg-plan-go-org{
	background:#0284c7;
	border-color:#0284c7;
	box-shadow:0 4px 12px rgba(2,132,199,0.3);
}

.page-register .login-page-shell.register-choice-layout .footer{
	width:100%;
	margin:32px 0 0;
	padding:0;
	font-size:12px;
	color:#94a3b8;
	text-align:left;
	box-sizing:border-box;
}
.page-register .login-page-shell.register-choice-layout .footer a{
	color:#64748b;
	border-bottom:1px solid rgba(100,116,139,0.25);
}

@media (max-width:1200px){
	.page-register .login-page-shell.register-choice-layout .reg-journey-side{
		flex:0 0 240px;
		width:240px;
		padding:48px 28px 48px 40px;
	}
	.page-register .login-page-shell.register-choice-layout .reg-main-area{
		padding:40px 40px 28px 36px;
	}
	.page-register .login-page-shell.register-choice-layout .reg-page-title{
		font-size:36px;
	}
	.page-register .login-page-shell.register-choice-layout .reg-journey{
		min-height:480px;
	}
}
@media (max-width:960px){
	.page-register .login-page-shell.register-choice-layout{
		height:auto;
		min-height:100vh;
		flex-direction:column;
		overflow:visible;
	}
	.page-register .login-page-shell.register-choice-layout .login-modal{
		flex-direction:column;
		height:auto;
		min-height:100vh;
	}
	.page-register .login-page-shell.register-choice-layout .login-modal-visual,
	.page-register .login-page-shell.register-choice-layout .login-modal-form{
		flex:0 0 auto;
		width:100%;
		height:auto;
		min-height:0;
		overflow:visible;
	}
	.page-register .login-page-shell.register-choice-layout .login-modal-visual{
		min-height:280px;
		padding:40px 32px;
	}
	.page-register .login-page-shell.register-choice-layout .reg-panel-wrap{
		flex-direction:column;
		min-height:0;
	}
	.page-register .login-page-shell.register-choice-layout .reg-journey-side{
		flex:none;
		width:100%;
		min-height:0;
		padding:32px 28px 28px;
		border-right:none;
		border-bottom:1px solid rgba(15,35,52,0.07);
	}
	.page-register .login-page-shell.register-choice-layout .reg-journey-label{
		margin-bottom:20px;
	}
	.page-register .login-page-shell.register-choice-layout .reg-journey{
		min-height:0;
		flex-direction:row;
		justify-content:space-between;
		gap:12px;
	}
	.page-register .login-page-shell.register-choice-layout .reg-journey:before{
		display:none;
	}
	.page-register .login-page-shell.register-choice-layout .reg-journey-item{
		flex:1;
		flex-direction:column;
		align-items:center;
		text-align:center;
		gap:10px;
		padding:0;
	}
	.page-register .login-page-shell.register-choice-layout .reg-journey-item.is-current .reg-journey-node{
		width:56px;
		height:56px;
		margin:0;
	}
	.page-register .login-page-shell.register-choice-layout .reg-journey-text{
		padding-top:0;
	}
	.page-register .login-page-shell.register-choice-layout .reg-journey-text span{
		display:none;
	}
	.page-register .login-page-shell.register-choice-layout .reg-main-area{
		padding:36px 28px 28px;
	}
	.page-register .login-page-shell.register-choice-layout .reg-choice-header{
		margin-bottom:32px;
	}
}
@media (max-width:480px){
	.page-register .login-page-shell.register-choice-layout .reg-main-area{
		padding:28px 20px 24px;
	}
	.page-register .login-page-shell.register-choice-layout .reg-page-title{
		font-size:26px;
	}
	.page-register .login-page-shell.register-choice-layout .reg-plan-card{
		padding:14px 16px;
		gap:12px;
	}
	.page-register .login-page-shell.register-choice-layout .reg-plan-title{
		font-size:15px;
	}
	.page-register .login-page-shell.register-choice-layout .reg-plan-icon svg{
		width:38px;
		height:38px;
	}
	.page-register .login-page-shell.register-choice-layout .reg-plan-features{
		display:none;
	}
}

/* ========== 个人注册页：简洁分屏 + 单栏表单 ========== */
.page-register .login-page-shell.register-person-layout{
	--login-accent:#0d9488;
	--login-accent-hover:#0f766e;
	--login-accent-soft:rgba(13,148,136,0.14);
	--login-visual-overlay:linear-gradient(135deg,rgba(7,89,133,0.78) 0%,rgba(13,148,136,0.42) 52%,rgba(15,23,42,0.25) 100%);
	--login-beach-img:url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80");
	position:relative;
	width:100%;
	min-height:100vh;
	height:100vh;
	padding:0;
	margin:0;
	display:flex;
	flex-direction:row;
	align-items:stretch;
	background:#fff!important;
	border-top:none!important;
	overflow:hidden;
}
.page-register .login-page-shell.register-person-layout .login-modal{
	display:flex;
	flex-direction:row;
	flex:1 1 auto;
	width:100%;
	max-width:none;
	min-height:100vh;
	height:100vh;
	border-radius:0;
	box-shadow:none;
	overflow:hidden;
	background:#fff;
}
.page-register .login-page-shell.register-person-layout .login-modal-visual{
	flex:0 0 50%;
	width:50%;
	min-height:100vh;
	height:100vh;
	position:relative;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:48px 56px;
	box-sizing:border-box;
	overflow:hidden;
	background:linear-gradient(135deg,#0c4a6e 0%,#0d9488 100%);
}
.page-register .login-page-shell.register-person-layout .login-modal-visual-img{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center;
	z-index:0;
}
.page-register .login-page-shell.register-person-layout .login-modal-visual-overlay{
	position:absolute;
	inset:0;
	z-index:1;
	background:var(--login-visual-overlay);
	pointer-events:none;
}
.page-register .login-page-shell.register-person-layout .login-modal-visual-inner{
	position:relative;
	z-index:2;
	text-align:left;
	max-width:340px;
	width:100%;
}
.page-register .login-page-shell.register-person-layout .login-visual-heading{
	margin:0 0 16px;
	font-size:34px;
	font-weight:800;
	line-height:1.2;
	color:#fff;
	text-transform:none;
	letter-spacing:0.02em;
}
.page-register .login-page-shell.register-person-layout .login-visual-desc{
	font-size:15px;
	color:rgba(255,255,255,0.9);
	line-height:1.7;
	margin:0 0 32px;
}
.page-register .login-page-shell.register-person-layout .login-pill-link{
	display:inline-block;
	padding:13px 36px;
	border-radius:8px;
	background:var(--login-accent);
	color:#fff!important;
	font-size:14px;
	font-weight:700;
	text-decoration:none;
	box-shadow:0 8px 24px rgba(13,148,136,0.4);
	transition:background 0.2s ease,transform 0.2s ease;
}
.page-register .login-page-shell.register-person-layout .login-pill-link:hover{
	background:var(--login-accent-hover);
	transform:translateY(-2px);
}
.page-register .login-page-shell.register-person-layout .register-person-visual-more{
	margin:24px 0 0;
	font-size:13px;
}
.page-register .login-page-shell.register-person-layout .register-person-visual-more a{
	color:rgba(255,255,255,0.85);
	text-decoration:none;
	border-bottom:1px solid rgba(255,255,255,0.35);
}
.page-register .login-page-shell.register-person-layout .register-person-visual-more a:hover{
	color:#fff;
	border-bottom-color:#fff;
}
.page-register .login-page-shell.register-person-layout .login-modal-form{
	flex:0 0 50%;
	width:50%;
	min-height:100vh;
	height:100vh;
	background:#fff;
	display:flex;
	flex-direction:column;
	min-width:0;
	overflow:hidden;
}
.page-register .login-page-shell.register-person-layout .reg-person-scroll{
	flex:1;
	overflow-y:auto;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	padding:48px 40px 32px;
	box-sizing:border-box;
}
.page-register .login-page-shell.register-person-layout .login-modal-form .body{
	width:100%;
	max-width:400px;
	margin:0!important;
	padding:0!important;
	background:transparent!important;
	animation:none!important;
}
.page-register .login-page-shell.register-person-layout .registerpart{
	margin:0;
	padding:0!important;
	max-width:100%;
	background:transparent!important;
}

/* 顶部步骤条 */
.page-register .login-page-shell.register-person-layout .reg-person-steps{
	display:flex;
	align-items:flex-start;
	justify-content:space-between;
	gap:0;
	margin:0 0 32px;
	padding:0 4px;
}
.page-register .login-page-shell.register-person-layout .reg-person-step-item{
	flex:0 0 auto;
	display:flex;
	flex-direction:column;
	align-items:center;
	gap:8px;
	min-width:72px;
}
.page-register .login-page-shell.register-person-layout .reg-person-step-dot{
	width:32px;
	height:32px;
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:13px;
	font-weight:700;
	color:#94a3b8;
	background:#fff;
	border:2px solid #e2e8f0;
	box-sizing:border-box;
	transition:all 0.25s ease;
}
.page-register .login-page-shell.register-person-layout .reg-person-step-dot i{
	font-size:11px;
}
.page-register .login-page-shell.register-person-layout .reg-person-step-item.is-done .reg-person-step-dot{
	background:var(--login-accent);
	border-color:var(--login-accent);
	color:#fff;
	box-shadow:0 4px 12px rgba(13,148,136,0.28);
}
.page-register .login-page-shell.register-person-layout .reg-person-step-item.is-current .reg-person-step-dot{
	width:36px;
	height:36px;
	background:#0f172a;
	border-color:#0f172a;
	color:#fff;
	font-size:14px;
	box-shadow:0 6px 16px rgba(15,23,42,0.22);
}
.page-register .login-page-shell.register-person-layout .reg-person-step-text{
	font-size:12px;
	color:#94a3b8;
	line-height:1.3;
	text-align:center;
	white-space:nowrap;
}
.page-register .login-page-shell.register-person-layout .reg-person-step-item.is-done .reg-person-step-text{
	color:var(--login-accent);
	font-weight:500;
}
.page-register .login-page-shell.register-person-layout .reg-person-step-item.is-current .reg-person-step-text{
	color:#0f172a;
	font-weight:600;
}
.page-register .login-page-shell.register-person-layout .reg-person-step-bar{
	flex:1;
	height:2px;
	margin:17px 6px 0;
	border-radius:2px;
	background:#e2e8f0;
	align-self:flex-start;
}
.page-register .login-page-shell.register-person-layout .reg-person-step-bar.is-done{
	background:linear-gradient(90deg,var(--login-accent),rgba(13,148,136,0.35));
}
.page-register .login-page-shell.register-person-layout .reg-person-title{
	margin:0 0 28px;
	font-size:26px;
	font-weight:700;
	color:#0f172a;
	letter-spacing:-0.02em;
}

/* 表单：标签在上、输入在下 */
.page-register .login-page-shell.register-person-layout .regdetail .partname,
.page-register .login-page-shell.register-person-layout .step2{
	display:none!important;
}
.page-register .login-page-shell.register-person-layout .reg-form-table{
	width:100%;
	border-collapse:collapse;
}
.page-register .login-page-shell.register-person-layout .reg-form-table tr{
	display:block;
	margin-bottom:18px;
}
.page-register .login-page-shell.register-person-layout .reg-form-table tr.reg-form-row-meter{
	margin-bottom:8px;
}
.page-register .login-page-shell.register-person-layout .reg-form-table tr.reg-form-row-submit{
	margin-bottom:0;
	margin-top:8px;
}
.page-register .login-page-shell.register-person-layout .reg-form-table td{
	display:block;
	padding:0;
	border:none;
	height:auto!important;
	font-size:13px;
	color:#475569;
}
.page-register .login-page-shell.register-person-layout .reg-form-table tr.reg-form-row-meter .tdright{
	display:none;
}
.page-register .login-page-shell.register-person-layout .reg-form-table .tdright{
	width:auto;
	padding:0 0 6px;
	text-align:left;
	font-weight:500;
	color:#334155;
}
.page-register .login-page-shell.register-person-layout .reg-form-table font{
	color:#ef4444;
	margin-right:2px;
}
.page-register .login-page-shell.register-person-layout .reg-form-table .input{
	width:100%;
	max-width:none;
	height:44px;
	padding:0 14px;
	border-radius:8px;
	border:1px solid #e2e8f0;
	background:#fff!important;
	box-sizing:border-box;
	font-size:14px;
	color:#0f172a;
	transition:border-color 0.2s ease,box-shadow 0.2s ease;
}
.page-register .login-page-shell.register-person-layout .reg-form-table .input:focus{
	border-color:var(--login-accent)!important;
	box-shadow:0 0 0 3px var(--login-accent-soft)!important;
	outline:none!important;
}
.page-register .login-page-shell.register-person-layout .reg-form-table tr:has(.authcode) td:last-child{
	display:flex;
	align-items:center;
	gap:10px;
	flex-wrap:wrap;
}
.page-register .login-page-shell.register-person-layout .reg-form-table tr:has(.authcode) .input{
	flex:1;
	min-width:120px;
	max-width:180px;
}
.page-register .login-page-shell.register-person-layout .reg-form-table .authcode{
	border-radius:6px;
	cursor:pointer;
}
.page-register .login-page-shell.register-person-layout .reg-form-table .input-small{
	max-width:140px;
}
.page-register .login-page-shell.register-person-layout .reg-form-table #sendmsg,
.page-register .login-page-shell.register-person-layout .disabled{
	height:44px!important;
	padding:0 14px!important;
	margin:0;
	border-radius:8px!important;
	border:1px solid #e2e8f0!important;
	background:#f8fafc!important;
	color:#475569!important;
	font-size:12px!important;
	cursor:pointer;
}
.page-register .login-page-shell.register-person-layout .reg-form-table .qfont{
	margin-top:6px;
	font-size:12px;
	color:#64748b;
}
.page-register .login-page-shell.register-person-layout input.go_reg{
	width:100%;
	height:46px!important;
	padding:0!important;
	border-radius:8px!important;
	background:var(--login-accent)!important;
	border:none!important;
	font-size:15px!important;
	font-weight:600!important;
	color:#fff!important;
	box-shadow:none!important;
	cursor:pointer;
	transition:background 0.2s ease!important;
	float:none!important;
}
.page-register .login-page-shell.register-person-layout input.go_reg:hover{
	background:var(--login-accent-hover)!important;
	transform:none;
}

/* 协议勾选 */
.page-register .login-page-shell.register-person-layout .reg-form-row-agree{
	margin-bottom:20px!important;
	margin-top:4px!important;
}
.page-register .login-page-shell.register-person-layout .reg-form-row-agree td{
	display:block!important;
	padding:0!important;
}
.page-register .login-page-shell.register-person-layout .reg-person-protocol{
	display:flex;
	align-items:flex-start;
	gap:10px;
	cursor:pointer;
	user-select:none;
	line-height:1.6;
}
.page-register .login-page-shell.register-person-layout .reg-person-protocol-input{
	position:absolute;
	opacity:0;
	width:0;
	height:0;
	pointer-events:none;
}
.page-register .login-page-shell.register-person-layout .reg-person-protocol-check{
	flex-shrink:0;
	width:18px;
	height:18px;
	margin-top:2px;
	border-radius:4px;
	border:1.5px solid #cbd5e1;
	background:#fff;
	box-sizing:border-box;
	position:relative;
	transition:border-color 0.2s ease,background 0.2s ease;
}
.page-register .login-page-shell.register-person-layout .reg-person-protocol-input:checked + .reg-person-protocol-check{
	background:var(--login-accent);
	border-color:var(--login-accent);
}
.page-register .login-page-shell.register-person-layout .reg-person-protocol-input:checked + .reg-person-protocol-check:after{
	content:"";
	position:absolute;
	left:5px;
	top:2px;
	width:5px;
	height:9px;
	border:solid #fff;
	border-width:0 2px 2px 0;
	transform:rotate(45deg);
}
.page-register .login-page-shell.register-person-layout .reg-person-protocol-label{
	font-size:13px;
	color:#64748b;
}
.page-register .login-page-shell.register-person-layout .reg-person-protocol-label a{
	color:var(--login-accent);
	text-decoration:none;
	font-weight:500;
}
.page-register .login-page-shell.register-person-layout .reg-person-protocol-label a:hover{
	text-decoration:underline;
}
.page-register .login-page-shell.register-person-layout .reg-person-protocol-and{
	margin:0 2px;
	color:#94a3b8;
}

.page-register .login-page-shell.register-person-layout .reg-person-xiyi-hidden{
	display:none!important;
}
.page-register .login-page-shell.register-person-layout .reg-form-row-submit .tdright{
	display:none;
}

/* 密码强度：精简 */
.page-register .login-page-shell.register-person-layout .pw-meter{
	margin:0 0 4px;
	width:100%;
}
.page-register .login-page-shell.register-person-layout .pw-meter__head{
	display:flex;
	align-items:center;
	justify-content:space-between;
	margin-bottom:6px;
}
.page-register .login-page-shell.register-person-layout .pw-meter__labels{
	display:flex;
	gap:4px;
}
.page-register .login-page-shell.register-person-layout .pw-meter__title{
	font-size:11px;
	color:#94a3b8;
}
.page-register .login-page-shell.register-person-layout .pw-meter__seg{
	font-size:11px;
	padding:2px 8px;
	color:#94a3b8;
	background:#f1f5f9;
	border:1px solid #e2e8f0;
}
.page-register .login-page-shell.register-person-layout .pw-meter__seg.is-active{
	color:#fff;
	background:var(--login-accent);
	border-color:var(--login-accent);
}
.page-register .login-page-shell.register-person-layout .pw-meter__track{
	height:4px;
	background:#f1f5f9;
}
.page-register .login-page-shell.register-person-layout .pw-meter__fill{
	background:var(--login-accent);
}
.page-register .login-page-shell.register-person-layout .footer{
	width:100%;
	max-width:400px;
	margin:24px auto 0;
	padding:0;
	font-size:12px;
	font-weight:400;
	color:#64748b!important;
	text-align:center;
	line-height:1.7;
	text-shadow:none!important;
	-webkit-font-smoothing:antialiased;
}
.page-register .login-page-shell.register-person-layout .footer a{
	color:#475569!important;
	text-shadow:none!important;
	text-decoration:none;
	border-bottom:none;
	font-weight:500;
}
.page-register .login-page-shell.register-person-layout .footer a:hover{
	color:var(--login-accent)!important;
}
.page-register .login-page-shell.register-person-layout .footer .my_mps{
	display:none;
}

/* ========== 机构注册页：复用个人注册布局 + 蓝色主题 ========== */
.page-register .login-page-shell.register-store-layout{
	--login-accent:#0284c7;
	--login-accent-hover:#0369a1;
	--login-accent-soft:rgba(2,132,199,0.14);
	--login-visual-overlay:linear-gradient(135deg,rgba(12,74,110,0.82) 0%,rgba(2,132,199,0.48) 52%,rgba(15,23,42,0.28) 100%);
}
.page-register .login-page-shell.register-store-layout .login-modal-visual{
	background:linear-gradient(135deg,#0c4a6e 0%,#0284c7 100%);
}
.page-register .login-page-shell.register-store-layout .reg-person-scroll{
	justify-content:flex-start;
	padding-top:36px;
	padding-bottom:28px;
}
.page-register .login-page-shell.register-store-layout .login-modal-form .body{
	max-width:460px;
}
.page-register .login-page-shell.register-store-layout .footer{
	max-width:460px;
}
.page-register .login-page-shell.register-store-layout .reg-store-section{
	margin-bottom:28px;
}
.page-register .login-page-shell.register-store-layout .reg-store-section:last-of-type{
	margin-bottom:0;
}
.page-register .login-page-shell.register-store-layout .reg-store-section-title{
	margin:0 0 16px;
	padding-bottom:10px;
	font-size:15px;
	font-weight:700;
	color:#0f172a;
	border-bottom:1px solid #e2e8f0;
	letter-spacing:0.02em;
}
.page-register .login-page-shell.register-store-layout .reg-store-section-title:before{
	content:"";
	display:inline-block;
	width:3px;
	height:14px;
	margin-right:8px;
	vertical-align:-2px;
	border-radius:2px;
	background:var(--login-accent);
}
.page-register .login-page-shell.register-store-layout .reg-store-textarea{
	width:100%!important;
	min-height:120px;
	max-width:none;
	height:auto!important;
	padding:12px 14px;
	line-height:1.6;
	resize:vertical;
}
.page-register .login-page-shell.register-store-layout .reg-form-table select,
.page-register .login-page-shell.register-store-layout .catid select{
	height:44px;
	padding:0 12px;
	border-radius:8px;
	border:1px solid #e2e8f0;
	background:#fff;
	font-size:14px;
	color:#0f172a;
	margin:4px 4px 4px 0;
}
.page-register .login-page-shell.register-store-layout .reg-form-table select:focus,
.page-register .login-page-shell.register-store-layout .catid select:focus{
	border-color:var(--login-accent);
	outline:none;
	box-shadow:0 0 0 3px var(--login-accent-soft);
}

@media (max-width:960px){
	.page-register .login-page-shell.register-person-layout{
		height:auto;
		min-height:100vh;
		flex-direction:column;
		overflow:visible;
	}
	.page-register .login-page-shell.register-person-layout .login-modal{
		flex-direction:column;
		height:auto;
		min-height:100vh;
	}
	.page-register .login-page-shell.register-person-layout .login-modal-visual,
	.page-register .login-page-shell.register-person-layout .login-modal-form{
		flex:0 0 auto;
		width:100%;
		height:auto;
		min-height:0;
	}
	.page-register .login-page-shell.register-person-layout .login-modal-visual{
		min-height:240px;
		padding:36px 28px;
	}
	.page-register .login-page-shell.register-person-layout .reg-person-scroll{
		justify-content:flex-start;
		padding:32px 24px 24px;
	}
}
.page-register #popDiv .btn,
.page-register #popDiv2 .btn{
	background:var(--login-accent,#0d9488);
	color:#fff;
	border-radius:10px;
	cursor:pointer;
	transition:background 0.2s ease;
}
.page-register #popDiv .btn:hover,
.page-register #popDiv2 .btn:hover{
	background:var(--login-accent-hover,#0f766e);
}

/* ========== 注册结果页 register_2.html ========== */
.page-register .login-page-shell.register-2-page .reg2-scroll{
	justify-content:center;
	padding-top:40px;
	padding-bottom:32px;
}
.page-register .login-page-shell.register-2-page .login-modal-form .body{
	max-width:440px;
}
.page-register .login-page-shell.register-2-page .reg2-panel{
	padding:0!important;
	background:transparent!important;
}
.page-register .login-page-shell.register-2-page .step2{
	display:none!important;
}
.page-register .login-page-shell.register-2-page #infobox,
.page-register .login-page-shell.register-2-page #infobox ul{
	width:100%;
	margin:0;
	padding:0;
	list-style:none;
	background:transparent!important;
	text-align:center;
}
.page-register .login-page-shell.register-2-page #mr{
	height:auto!important;
	min-height:0;
	padding:0!important;
	text-align:center;
}

/* 状态卡片 */
.page-register .login-page-shell.register-2-page .reg2-card{
	padding:32px 28px 28px;
	background:#fff;
	border:1px solid #eef2f6;
	border-radius:16px;
	box-shadow:0 4px 24px rgba(15,35,52,0.05);
	text-align:center;
}

/* 双环加载动画 */
@keyframes reg2-ring-spin{
	to{transform:rotate(360deg);}
}
@keyframes reg2-core-pulse{
	0%,100%{transform:scale(1);opacity:0.5;}
	50%{transform:scale(1.15);opacity:1;}
}
.page-register .login-page-shell.register-2-page .reg2-loader{
	position:relative;
	width:72px;
	height:72px;
	margin:0 auto 24px;
}
.page-register .login-page-shell.register-2-page .reg2-loader-ring{
	position:absolute;
	inset:0;
	border-radius:50%;
	border:2.5px solid #e2e8f0;
	border-top-color:var(--login-accent);
	animation:reg2-ring-spin 0.9s cubic-bezier(0.5,0.15,0.35,0.85) infinite;
}
.page-register .login-page-shell.register-2-page .reg2-loader-ring--reverse{
	inset:10px;
	border-top-color:transparent;
	border-right-color:rgba(13,148,136,0.55);
	animation-duration:1.3s;
	animation-direction:reverse;
}
.page-register .login-page-shell.register-2-page .reg2-loader-core{
	position:absolute;
	inset:26px;
	border-radius:50%;
	background:var(--login-accent);
	opacity:0.35;
	animation:reg2-core-pulse 1.6s ease-in-out infinite;
}
.page-register .login-page-shell.register-2-page .reg2-loader--mail .reg2-loader-icon{
	position:absolute;
	inset:0;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:22px;
	color:var(--login-accent);
}
.page-register .login-page-shell.register-2-page .reg2-loader--mail .reg2-loader-core{
	display:none;
}

/* 静态 / 成功图标 */
.page-register .login-page-shell.register-2-page .reg2-status-icon{
	width:72px;
	height:72px;
	margin:0 auto 20px;
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:32px;
}
.page-register .login-page-shell.register-2-page .reg2-status-icon--alert{
	background:#fef2f2;
	color:#ef4444;
}
.page-register .login-page-shell.register-2-page .reg2-status-icon--success{
	background:transparent;
	width:80px;
	height:80px;
}
.page-register .login-page-shell.register-2-page .reg2-check-svg{
	width:80px;
	height:80px;
}
.page-register .login-page-shell.register-2-page .reg2-check-circle{
	stroke:#10b981;
	stroke-dasharray:145;
	stroke-dashoffset:145;
	animation:reg2-circle-draw 0.6s ease forwards 0.1s;
}
.page-register .login-page-shell.register-2-page .reg2-check-path{
	stroke:#10b981;
	stroke-dasharray:48;
	stroke-dashoffset:48;
	animation:reg2-check-draw 0.4s ease forwards 0.55s;
}
@keyframes reg2-circle-draw{
	to{stroke-dashoffset:0;}
}
@keyframes reg2-check-draw{
	to{stroke-dashoffset:0;}
}

/* 状态标签 */
.page-register .login-page-shell.register-2-page .reg2-badge{
	display:inline-block;
	margin-bottom:10px;
	padding:4px 12px;
	font-size:11px;
	font-weight:700;
	letter-spacing:0.06em;
	color:var(--login-accent);
	background:rgba(13,148,136,0.08);
	border:1px solid rgba(13,148,136,0.16);
	border-radius:20px;
}
.page-register .login-page-shell.register-2-page .reg2-badge--success{
	color:#059669;
	background:rgba(5,150,105,0.08);
	border-color:rgba(5,150,105,0.16);
}
.page-register .login-page-shell.register-2-page .reg2-badge--alert{
	color:#dc2626;
	background:rgba(220,38,38,0.06);
	border-color:rgba(220,38,38,0.14);
}

/* 结果文案 */
.page-register .login-page-shell.register-2-page .reg2-result{
	padding:0;
}
.page-register .login-page-shell.register-2-page .reg2-title{
	margin:0 0 10px;
	font-size:22px;
	font-weight:700;
	color:#0f172a;
	line-height:1.35;
	text-shadow:none!important;
	background:none!important;
	padding:0!important;
	height:auto!important;
}
.page-register .login-page-shell.register-2-page .reg2-result--success .reg2-title{
	color:#059669;
}
.page-register .login-page-shell.register-2-page .reg2-result--alert .reg2-title{
	color:#0f172a;
}
.page-register .login-page-shell.register-2-page .reg2-desc{
	margin:0;
	font-size:14px;
	line-height:1.7;
	color:#64748b;
	text-shadow:none!important;
}
.page-register .login-page-shell.register-2-page .reg2-note{
	margin:16px 0 0;
	font-size:12px;
	line-height:1.6;
	color:#94a3b8;
	text-shadow:none!important;
}
.page-register .login-page-shell.register-2-page .reg2-checklist{
	margin:20px 0 0;
	padding:0;
	list-style:none;
	text-align:left;
	border-top:1px solid #f1f5f9;
}
.page-register .login-page-shell.register-2-page .reg2-checklist li{
	display:flex;
	align-items:center;
	gap:10px;
	padding:11px 150px;
	font-size:13px;
	color:#475569;
	border-bottom:1px solid #f1f5f9;
}
.page-register .login-page-shell.register-2-page .reg2-checklist li i{
	flex-shrink:0;
	width:18px;
	text-align:center;
	font-size:14px;
	color:var(--login-accent);
}
.page-register .login-page-shell.register-2-page .reg2-checklist li:last-child i{
	color:#cbd5e1;
}
.page-register .login-page-shell.register-2-page .reg2-userid{
	color:var(--login-accent);
	font-weight:700;
}
.page-register .login-page-shell.register-2-page .reg2-actions{
	margin-top:22px;
}
.page-register .login-page-shell.register-2-page .reg2-actions--top{
	margin-top:18px;
	margin-bottom:0;
}
.page-register .login-page-shell.register-2-page .reg2-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-width:160px;
	height:44px;
	padding:0 28px;
	border-radius:8px;
	font-size:14px;
	font-weight:600;
	color:#475569;
	background:#fff;
	border:1px solid #e2e8f0;
	text-decoration:none;
	transition:background 0.2s ease,border-color 0.2s ease,color 0.2s ease;
}
.page-register .login-page-shell.register-2-page .reg2-btn:hover{
	border-color:var(--login-accent);
	color:var(--login-accent);
}
.page-register .login-page-shell.register-2-page .reg2-btn-primary{
	color:#fff;
	background:var(--login-accent);
	border-color:var(--login-accent);
	box-shadow:0 8px 24px rgba(13,148,136,0.28);
}
.page-register .login-page-shell.register-2-page .reg2-btn-primary:hover{
	background:var(--login-accent-hover);
	border-color:var(--login-accent-hover);
	color:#fff;
}
.page-register .login-page-shell.register-2-page .footer{
	max-width:440px;
	margin:24px auto 0;
	font-size:12px;
	color:#64748b!important;
	text-shadow:none!important;
	text-align:center;
}
.page-register .login-page-shell.register-2-page .footer a{
	color:#475569!important;
	text-shadow:none!important;
	font-weight:500;
}
.page-register .login-page-shell.register-2-page .footer .my_mps{
	display:none;
}

@media (max-width:960px){
	.page-register .login-page-shell.register-2-page .reg2-scroll{
		padding-top:32px;
	}
}

/* 基础样式 */
.none{display:none}
a.godl{text-decoration:none;color:#00a49d;font-weight:500;transition:color 0.3s ease}
a.godl:hover{color:#fa7317;text-decoration:underline}
.font12{font-size:12px!important}

/* 注册链接区域 - 使用UI图风格 */
.forreg{margin-top:20px;text-align:center;padding-top:20px;}
.forreg-text{font-size:15px;color:#666;margin-right:5px;}
.forreg-link{font-size:15px;color:#00a49d;text-decoration:none;font-weight:500;transition:all 0.3s ease;}
.forreg-link:hover{color:#fa7317;text-decoration:underline;}

/* 页面整体布局 - 使用UI图的浅灰色背景 */
.inner{width:100%;margin:0 auto;text-align:center;background:#f5f5f5;border:none;display:flex;flex-direction:column;justify-content:center;align-items:center;overflow:hidden;border-top:1px #ddd solid;min-height:calc(100vh - 200px);}

/* 头部样式 */
.mheader{width:100%;padding:20px 0;}
.mhead{width:100%;max-width:1200px;margin:0 auto;padding:0 20px;display:flex;justify-content:space-between;align-items:center}
.mhead .logo{float:left;text-align:left}
.mhead .tit{font-size:16px;color:#000;width:auto;margin-top:0;float:right;text-align:right;overflow:visible}
.mhead .tit span a{font-weight:600;color:#00a49d;text-decoration:none;transition:color 0.3s ease}
.mhead .tit span a:hover{color:#fa7317}

/* 导航样式 - 使用首页风格 */
.navigation a{float:left;text-align:center;margin-left:10px;background:rgba(0,164,157,0.1);width:102px;height:52px;overflow:hidden;display:block;line-height:51px;color:#00a49d;border-radius:8px;transition:all 0.3s ease;text-decoration:none}
.navigation a:hover{background:rgba(0,164,157,0.2);transform:translateY(-2px);color:#fa7317}
.navigation a.current{background:linear-gradient(135deg,#00a49d 0%,#00a49d 100%);color:white;font-weight:700;box-shadow:0 4px 15px rgba(0,164,157,0.3)}.partinput{margin-top:20px}.pw_check{width:150px;background:url(../images/login/pw_check.gif) no-repeat;height:22px;font-size:12px}.pw_check span{width:49px;height:14px;line-height:16px;margin-bottom:6px;text-align:center;display:block;float:left}#pw_check_1{background-position:0 bottom}#pw_check_2{background-position:-150px bottom}#pw_check_3{background-position:-300px bottom}span.no,span.yes{background-image:url(../images/yesno.gif);background-repeat:no-repeat;height:29px;line-height:29px;margin-top:5px;margin-left:5px;float:left;font-size:12px}span.yes{background-position:0 -29px;display:block;width:80px}span.no{background-position:0 0;color:#000;display:block;padding-left:40px;width:247px}#reg_box{width:630px;float:left;text-align:left;margin:10px 0 15px 10px;height:auto;overflow:auto;text-align:left}.regtab{text-align:left;width:590px}.regtab .tdright{height:30px}.regtab .tdr{height:40px}.tdright{text-align:left;vertical-align:top;line-height:25px;height:40px;line-height:40px!important}.tdr{text-align:right;width:160px;vertical-align:top;line-height:35px}.error_tip{line-height:20px;height:20px;background:url(../images/n.gif) 8px 6px no-repeat;padding:5px 0 5px 30px;float:left}.acc_tip{height:20px;background:url(../images/y.gif) 8px 6px no-repeat;padding:5px 0 5px 30px;float:left}.regtab .gray{line-height:18px;float:left;clear:both}
input.go_reg{border:none;width:181px;height:50px;background:linear-gradient(135deg, #00a49d 0%, #00a49d 100%);cursor:pointer;color:#fff;font-weight:700;border-radius:12px;float:left;transition:all 0.3s ease;}
input.go_reg:hover{background:linear-gradient(135deg, #fa7317 0%, #fa7317 100%);transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,164,157,0.3);}
.forminfo{margin-top:10px;margin-bottom:10px;margin-left:10px}.formlogin{margin:30px 
auto}
.forminfo td,.formlogin td{font-size:15px;padding:10px 0;clear:both;color:#fff}
.formlogin font{margin-right:5px}
.forminfo .text,.forminfo .txt,.formlogin .text,.formlogin .txt{display:block;float:left}
.mheader{width:100%;text-align:center;padding:10px 0 20px 0}
.mhead{width:900px;margin-left:auto;margin-right:auto;height:auto;overflow:hidden;margin-top:10px;text-align:left}
.mhead .logo{float:left;text-align:left}.mhead .tit{width:425px;margin-top:25px;font-size:14px;float:right;text-align:right;overflow:hidden}
.mhead .tit span{font-size:15px}
.mhead .tit span a{ font-weight:bold; color:#00a49d;transition:color 0.3s ease;}
.mhead .tit span a:hover{color:#fa7317;}
.navigation a{float:left;text-align:left;margin-left:10px;background:rgba(0,164,157,0.1);width:102px;height:52px;overflow:hidden;display:block;text-align:center;line-height:51px;color:#00a49d;border-radius:8px;transition:all 0.3s ease;text-decoration:none}
.navigation a:hover{background:rgba(0,164,157,0.2);transform:translateY(-2px);color:#fa7317}
.navigation a.current{text-decoration:none;background:linear-gradient(135deg,#00a49d 0%,#00a49d 100%)!important;color:white!important;font-weight:700;box-shadow:0 4px 15px rgba(0,164,157,0.3)}
/* 主体内容区域 - 使用UI图的卡片设计 */
.body{width:100%;margin:0px auto;animation:fadeInUp 0.6s ease-out;background:#fff;padding:50px 0;}

/* 登录表单容器 - 使用UI图风格 */
.body .log{background:transparent;border:none;padding:0;width: 466px; margin: 0 auto;}
.body .log .formlogin{width:100%;margin:0 auto;}
.body .log .formlogin td{font-size:15px;color:#333;clear:both;padding:15px 0;vertical-align:middle;}
.body .log .formlogin .tdright{color:#555;text-align:left;font-weight:500;width:100px;padding-right:15px;}
.body .log .qqlogin{border-top:1px solid #e1e8ed;padding-top:20px;margin-top:20px;text-align:center;color:#666}a.registerbutton{background:url(../images/login/register_submit.gif) 0 0 no-repeat;width:163px;height:44px;line-height:44px;display:block;text-align:center;color:#0192CD;font-size:18px;font-family:"microsoft yahei"}a.registerbutton:hover{background:url(../images/login/register_submit.gif) 0 -44px no-repeat;text-decoration:none}.body .log .formlogin .loginsubmit:hover{background:url(../images/login/login.gif) 0 -44px no-repeat}.body .log .formlogin td{clear:both;height:44px}.body .log .formlogin .tdright{color:#000;text-align:right;padding-right:20px}.body .log .qqlogin{border-top:1px #d4d4d4 solid;color:#000}.body .reg{width:530px;height:350px;float:left;overflow:hidden}.body .reg .cont{margin-left:50px;line-height:30px}.body .reg .cont .register_submit{margin-top:15px;margin-bottom:15px}.body .reg .font{color:#000;font-size:18px;margin-top:90px}/* 注册页面样式 */
.body .registerpart{width:100%;max-width:800px;margin:0 auto;}

/* 步骤指示器 - 使用首页风格 */
.body .registerpart .step1,.body .registerpart .step2,.body .registerpart .step3{display:flex;justify-content:center;margin:30px 0;background:none;height:auto}
.body .registerpart .step1 span,.body .registerpart .step2 span,.body .registerpart .step3 span{flex:1;max-width:200px;padding:15px 20px;margin:0 5px;background:#f9fafc;color:#666;border-radius:10px;font-size:14px;font-weight:500;transition:all 0.3s ease;width:auto;height:auto;line-height:normal;text-align:center;display:block;float:none}
.body .registerpart .step1 span.cur,.body .registerpart .step2 span.cur,.body .registerpart .step3 span.cur{background:linear-gradient(135deg,#00a49d 0%,#00a49d 100%);color:white;font-weight:700;box-shadow:0 4px 15px rgba(0,164,157,0.3);}

/* 选择器样式 - 使用首页风格的卡片设计 */
.body .registerpart .selecter{width:100%;max-width:350px;margin:20px auto;padding:30px;border:1px solid #eeeeee;border-radius:12px;background:#fff;transition:all 0.3s ease;cursor:pointer;text-decoration:none;display:block;color:inherit;height:auto;float:none;box-shadow:0 1px 5px rgb(0 0 0 / 9%);}
.body .registerpart .selecter:hover{border-color:#00a49d;transform:translateY(-4px);text-decoration:none;color:inherit;box-shadow:0 8px 20px rgba(0,164,157,0.15);}
.body .registerpart .selecter:hover .ico span{transform:scale(1.1);background:linear-gradient(135deg,#fa7317 0%,#fa7317 100%);}
.body .registerpart .selecter .ico{width:100%;text-align:center;margin-bottom:20px;float:none;display:block}
.body .registerpart .selecter .ico span{width:60px;height:60px;display:inline-block;border-radius:50%;background:linear-gradient(135deg,#00a49d 0%,#00a49d 100%);margin:0 auto;line-height:60px;color:white;font-size:24px;position:relative;transition:all 0.3s ease}
.body .registerpart .selecter .ico span.ico1{background:linear-gradient(135deg,#00a49d 0%,#00a49d 100%)}
.body .registerpart .selecter .ico span.ico1::before{content:"\f1ad";font-family:'Font Awesome 6 Free';font-weight:900;font-size:24px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);color:white}
.body .registerpart .selecter .ico span.ico2{background:linear-gradient(135deg,#00a49d 0%,#00a49d 100%)}
.body .registerpart .selecter .ico span.ico2::before{content:"\f007";font-family:'Font Awesome 6 Free';font-weight:900;font-size:24px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);color:white}
.body .registerpart .selecter .des{float:none;display:block}
.body .registerpart .selecter .des .tit{font-size:18px;font-weight:600;color:#333;text-align:center;margin:0;float:none}
.body .registerpart .selecter .des .tit a{font-weight:600;text-decoration:none;color:#333}
.body .registerpart .regdetail .partname{color:#000;border-bottom:1px #d4d4d4 solid;height:35px;line-height:35px}
.body .registerpart .regdetail .partname .li1{font-size:17px;font-weight:700;float:left;margin-right:20px}
.body .registerpart .regdetail .partname .li1 .current{border-bottom:2px #00a49d solid;display:block;}
.body .registerpart .regdetail .partname .li2{float:right;font-size:12px}
.xiyi{width:440px;border:2px solid #e1e8ed;background:#fafafa;padding:10px;margin:0 auto;border-radius:12px;}
#xieyi{width:440px;height:100px;overflow:hidden;overflow-y:scroll;font-size:13px;border:none;text-align:left;line-height:20px;color:#666}
#xieyi p{text-indent:2em}
#xieyi p strong{line-height:22px}/* 底部样式 */
.footer{padding:20px;margin-top:auto;font-size:16px;color:#333;width:100%;margin-left:auto;margin-right:auto}
.footer a{color:#333}

/* 注册选择页 UI */
.reg-choice{width:100%;max-width:980px;margin:0 auto;}
.reg-steps-wrapper{background:#fff;border-radius:12px;box-shadow:0 2px 8px rgba(0,0,0,0.08);padding:30px 20px;margin-bottom:30px;}
.reg-steps{position:relative;display:flex;justify-content:space-between;align-items:flex-start;margin:0 auto;padding:0 40px;}
.reg-steps:before{content:"";position:absolute;left:15%;right:15%;top:30px;height:2px;background:#e0e0e0;z-index:0;}
.reg-step{flex:1;text-align:center;position:relative;z-index:1;max-width:200px;}
.reg-step-circle{width:60px;height:60px;margin:0 auto 12px;border-radius:50%;background:#f5f5f5;color:#999;font-size:24px;font-weight:700;display:flex;align-items:center;justify-content:center;border:2px solid #e0e0e0;transition:all 0.3s ease;}
.reg-step-completed .reg-step-circle{background:#4CAF50;color:#fff;border-color:#4CAF50;}
.reg-step-completed .reg-step-circle i{font-size:20px;font-weight:700;}
.reg-step-active .reg-step-circle{background:#00a49d;color:#fff;border-color:#00a49d;box-shadow:0 4px 12px rgba(0,164,157,0.3);}
.reg-step-inactive .reg-step-circle{background:#fff;color:#ccc;border-color:#e0e0e0;}
.reg-step-text{font-size:16px;color:#333;font-weight:600;line-height:1.5;margin-bottom:4px;}
.reg-step-sub{font-size:13px;color:#999;line-height:1.5;}
.reg-reselect-link{display:inline-block;margin-top:8px;font-size:13px;color:#2196F3;text-decoration:none;transition:color 0.3s ease;}
.reg-reselect-link:hover{color:#1976D2;text-decoration:underline;}

.reg-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:20px;margin-top:10px;}
.reg-card{position:relative;display:block;padding:24px 22px 26px;background:#fff;border:2px solid #e6eef5;border-radius:12px;box-shadow:0 6px 24px rgba(0,0,0,0.08);color:#333;transition:all 0.25s ease;text-decoration:none;}
.reg-card:hover{transform:translateY(-4px);box-shadow:0 10px 30px rgba(0,0,0,0.12);}
.reg-card-active{border-color:#00a49d;box-shadow:0 12px 34px rgba(47,141,239,0.22);}
.reg-card-org{border-color:#dff3e8;}
.reg-badge{position:absolute;top:14px;right:14px;padding:5px 12px;border-radius:20px;background:#00a49d;color:#fff;font-size:12px;font-weight:600;box-shadow:0 4px 12px rgba(47,141,239,0.35);}
.reg-icon{width:82px;height:82px;margin:8px auto 14px;border-radius:50%;background:linear-gradient(135deg,#00a49d 0%,#00a49d 100%);color:#fff;font-size:36px;display:flex;align-items:center;justify-content:center;box-shadow:0 10px 22px rgba(47,141,239,0.25);}
.reg-icon-green{background:linear-gradient(135deg,#fa7317 0%,#fa7317 100%);box-shadow:0 10px 22px rgba(16,179,91,0.25);}
.reg-title{font-size:22px;font-weight:700;color:#2a2f36;margin-bottom:6px;}
.reg-subtitle{font-size:14px;color:#8c96a3;margin-bottom:18px;}
.reg-list{list-style:none;padding:0;margin:0 0 18px;text-align:left;line-height:1.8;}
.reg-list li{font-size:14px;color:#4a5563;display:flex;align-items:center;gap:8px;padding:4px 0;}
.reg-list li i{color:#00a49d;font-size:16px;}
.reg-card-org .reg-list li i{color:#fa7317;}
.reg-btn{height:46px;line-height:46px;border-radius:8px;text-align:center;font-size:16px;font-weight:700;color:#fff;box-shadow:0 6px 18px rgba(0,0,0,0.12);transition:all 0.2s ease;}
.reg-btn-primary{background:linear-gradient(135deg,#00a49d 0%,#00a49d 100%);}
.reg-btn-primary:hover{background:linear-gradient(135deg,#fa7317 0%,#fa7317 100%);transform:translateY(-2px);}
.reg-btn-green{background:linear-gradient(135deg,#fa7317 0%,#fa7317 100%);}
.reg-btn-green:hover{background:linear-gradient(135deg,#00a49d 0%,#00a49d 100%);transform:translateY(-2px);}

/* 响应式设计 */
@media (max-width: 768px) {
    .body{max-width:90%;padding:30px 20px;margin:20px auto}
    .registerpart{max-width:90%;padding:30px 20px}
    .step1 span,.step2 span,.step3 span{font-size:12px;padding:12px 15px}
    .selecter{max-width:100%;margin:15px 0}
    .formlogin td{padding:10px 0}
    .input{padding:12px 16px;font-size:16px}
    .typebtn{padding:14px;font-size:16px}
}

@media (max-width: 480px) {
    .body{border-radius:15px;box-shadow:0 10px 30px rgba(0,164,157,0.1)}
    .registerpart{border-radius:15px;padding:25px 15px}
    .input-small{width:100%;margin-bottom:15px}
    .authcode{margin-top:10px}
}

/* 动画效果 */
@keyframes fadeInUp {
    from{opacity:0;transform:translateY(30px)}
    to{opacity:1;transform:translateY(0)}
}

/* 清除浮动 */
.clear,.clearfix{clear:both}
.clearfix::after{content:"";display:table;clear:both}/* 输入框包装器 - 添加图标支持 */
.input-wrapper{position:relative;display:flex;align-items:center;width:100%;}
.input-wrapper .input-icon{position:absolute;left:15px;color:#666;font-size:16px;z-index:1;pointer-events:none;}
.input-wrapper-code{display:flex;align-items:center;gap:10px;}
.input-wrapper-code .input{flex:1;}

/* 输入框样式 - 使用UI图风格 */
.input{padding:15px 15px 15px 45px;border:1px solid #e0e0e0;border-radius:8px;font-size:15px;background:#fff;transition:all 0.3s ease;box-sizing:border-box;font-family:inherit;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;vertical-align:middle;width:100%;box-shadow:0 1px 3px rgba(0,0,0,0.05);}
.input:focus{outline:none;border-color:#4CAF50;box-shadow:0 0 0 3px rgba(76,175,80,0.1);}
.input::placeholder{color:#999;font-size:14px;}

/* 输入框尺寸 */
.input-big{height:28px;padding:0 10px;line-height:28px}
.input-50,.input-smallest{width:50px}
.input-60{width:400px}
.input-600,.input-largest{width:600px}
.input-90,.input-smaller{width:90px}
.input-110,.input-small{width:auto;flex:1;min-width:150px;}
.input-150,.input-6,.input-medium{width:150px}
/*.input-230,.input-large{width:370px;}*/
.input-400,.input-60,.input-larger{width:400px}

/* 验证码样式 - 使用UI图风格 */
.authcode{border-radius:8px;border:none;transition:all 0.3s ease;cursor:pointer;width:140px;height:40px;object-fit:cover;box-shadow:0 1px 3px rgba(0,0,0,0.1);}
.authcode:hover{transform:translateY(-1px);box-shadow:0 2px 6px rgba(0,0,0,0.15);}

/* 复选框和标签样式 */
.checkbox{margin-right:8px;transform:scale(1.2);cursor:pointer;}
label{font-size:14px;color:#333;cursor:pointer;user-select:none;}
.remember-row{display:flex;justify-content:space-between;align-items:center;padding:10px 0;}
.remember-label{display:flex;align-items:center;font-size:14px;color:#333;}
.forget-link{color:#00a49d;text-decoration:none;font-size:14px;transition:color 0.3s ease;}
.forget-link:hover{color:#fa7317;text-decoration:underline;}

/* 提交按钮 - 使用UI图的渐变效果（从左到右：浅蓝到绿色） */
.typebtn{width:100%;padding:16px;background:linear-gradient(to right, #64B5F6 0%, #4CAF50 100%);color:white;border:none;border-radius:8px;font-size:18px;font-weight:600;cursor:pointer;transition:all 0.3s ease;font-family:inherit;text-align:center;line-height:normal;box-shadow:0 4px 15px rgba(76,175,80,0.3);margin-top:10px;}
.typebtn:hover{background:linear-gradient(to right, #42A5F5 0%, #45a049 100%);transform:translateY(-2px);box-shadow:0 6px 20px rgba(76,175,80,0.4);}
.typebtn:active{transform:translateY(0);box-shadow:0 4px 15px rgba(76,175,80,0.3);}

/* 颜色主题 - 使用UI图的渐变按钮 */
.blue .typebtn{background:linear-gradient(to right, #64B5F6 0%, #4CAF50 100%);}
.blue .typebtn:hover{background:linear-gradient(to right, #42A5F5 0%, #45a049 100%);}
.green .typebtn{background:linear-gradient(to right, #64B5F6 0%, #4CAF50 100%);}
.green .typebtn:hover{background:linear-gradient(to right, #42A5F5 0%, #45a049 100%);}
.orange .typebtn{background:#00a49d;}
.orange .typebtn:hover{background:#fa7317}
.red .typebtn{background:linear-gradient(to right, #64B5F6 0%, #4CAF50 100%);}
.red .typebtn:hover{background:linear-gradient(to right, #42A5F5 0%, #45a049 100%);}#mr{height:200px;padding-top:25px;text-align:center}#mr .h{height:75px;line-height:75px;text-align:center;margin:30px 0;font-size:24px}#mr h1{background:url(../images/post/info_icons.png) no-repeat 90px 12px;color:#4EBB24;font-family:"microsoft yahei";font-size:34px}#mr h2{background:url(../images/post/info_icons.png) no-repeat 90px -120px;color:red;font-family:"microsoft yahei";font-size:34px}#mr h3{background:url(../images/post/info_icons.png) no-repeat 90px -55px;color:red;font-family:"microsoft yahei";font-size:34px}#mr p{height:35px;line-height:35px;color:#666;margin:0 auto}#infobox{text-align:center}#infobox ul{text-align:left;margin-left:auto;margin-right:auto}#infobox .title{padding:7px 15px;height:30px;font-size:10pt;margin:1px;background:#e0f0f9;border-bottom:1px solid #a6cbe7}.findpwdpart{text-align:center}.findpwdpart .stepp{margin:20px auto 140px auto;width:746px;text-align:left}.findpwdpart .steppp{text-align:left;width:516px;margin-left:auto;margin-right:auto}.findpwdpart .stepp div{margin-bottom:20px}.findpwdpart .stepp h1{font-size:24px;font-family:microsoft yahei;color:green;background:url(../images/right.gif) 0 0 no-repeat;text-indent:50px;line-height:35px;margin-top:80px;margin-bottom:10px;margin-left:65px}.findpwdpart .stepp h2{font-size:18px;font-family:microsoft yahei;color:#C40000;background:url(../images/err.gif) 0 0 no-repeat;text-indent:75px;line-height:48px;margin-top:80px;margin-bottom:10px;margin-left:155px}.findpwdpart .stepp .detail{font-size:14px;line-height:30px;margin-left:65px}.findpwdpart .stepp div{font-size:14px}.findpwdpart .stepp span.cl{float:left;display:block;width:100px;line-height:30px}.findpwdpart .stepp span.cr{float:left;display:block;width:620px}.findpwdpart .stepp .font{font-size:14px;font-weight:700;line-height:30px}.findpwdpart span.no,.findpwdpart span.yes{background-image:url(../images/yesno.gif);background-repeat:no-repeat;height:29px;width:287px;line-height:29px;margin-top:2px;margin-left:5px;float:left}.findpwdpart .step1 span,.findpwdpart .step2 span,.findpwdpart .step3 span{width:228px;height:30px;font-size:14px;line-height:30px;text-align:center;display:block;float:left;color:#000}.findpwdpart .step1 span.cur,.findpwdpart .step2 span.cur,.findpwdpart .step3 span.cur{font-weight:700;color:#00a49d}.findpwdpart .step1,.findpwdpart .step2,.findpwdpart .step3{margin-bottom:20px;margin-top:10px}.findpwdpart .step1{height:30px;padding-left:100px}.findpwdpart .step2{height:30px;margin-left:80px}.findpwdpart .step3{height:30px;padding-left:100px}.findpwdpart .step2 span a:hover{text-decoration:none}.findpwdpart .typeinput{border:1px #D9D9D9 solid;width:330px;height:22px;line-height:22px;background:url(../images/mail.gif) 10px 10px no-repeat;padding:6px 10px 6px 40px;float:left}.findpwdpart .typeinput2{border:1px #D9D9D9 solid;width:330px;height:22px;line-height:22px;background:url(../images/mobile.gif) 5px 4px no-repeat;padding:6px 10px 6px 40px;float:left}.findpwdpart .typeinputimg{border:1px #D9D9D9 solid;width:150px;height:22px;line-height:22px;padding:6px 10px 4px 10px;float:left}.findpwdpart .typebtn{width:110px;height:50px;color:#fff;font-family:microsoft yahei;font-size:18px;text-align:center;border:none;cursor:pointer;}.findpwdpart .authcode{border:1px #ddd solid;cursor:pointer;float:left}.checkboxinner{display:block;width:270px;float:left;margin-bottom:10px}.checkboxinner label{font-size:12px;display:block;cursor:pointer;float:left;margin-top:10px;width:90px}.disable{float:left;border:1px #d6d6d6 solid;border-radius:2px;padding:0 10px;height:36px;line-height:36px;text-align:center;color:#585858;margin-left:10px;font-size:12px;cursor:pointer;background-color:#EEE}.disabled{border:2px #e1e8ed solid;border-radius:12px;height:55px;line-height:55px;text-align:center;color:#585858;font-size:15px;cursor:pointer;background-color:#F7F7F7}.disabled:hover{background-color:#EEE}

/* register_2：必须置于文件末尾，覆盖上文 #mr h1/h2/h3 的 info_icons 背景（否则仍显示三角/对勾图） */
body.page-register .login-page-shell.register-2-page #mr h1,
body.page-register .login-page-shell.register-2-page #mr h2,
body.page-register .login-page-shell.register-2-page #mr h3{
	background:none!important;
	background-image:none!important;
	padding-left:0!important;
	padding-right:0!important;
	text-indent:0!important;
}
body.page-register .login-page-shell.register-2-page #mr .h{
	height:auto!important;
	min-height:0!important;
	line-height:1.4!important;
	margin:0 0 14px!important;
}
body.page-register .login-page-shell.register-2-page #mr{
	height:auto!important;
	padding-top:12px!important;
}