/* 全站公共样式：统一背景图、导航和移动端基础排版。 */
html {
	min-height: 100%;
}

body {
	min-height: 100%;
	background: #f6f7f9;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	color: #2f384d;
	font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
	line-height: 1.7;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(165deg, rgba(47, 154, 178, 0.14) 0 18%, transparent 18% 100%),
		radial-gradient(circle at 0% 78%, rgba(142, 90, 169, 0.12), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 247, 249, 0.94));
}

.home-page {
	background: #f5f6f8;
	color: #071d3b;
}

.home-page::before {
	display: none;
}

.home-shell {
	width: min(100%, 480px);
	min-height: 100vh;
	margin: 0 auto;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 0 42px rgba(47, 56, 75, 0.08);
}

.clone-hero {
	padding: 22px 22px 22px;
	text-align: center;
}

.clone-logo {
	display: grid;
	justify-items: center;
	margin: 0 auto 18px;
	color: #333;
	line-height: 1;
}

.clone-logo-text {
	display: block;
	color: #333;
	font-size: 52px;
	font-weight: 900;
	letter-spacing: -2px;
	line-height: 1.05;
}

.clone-logo-text .logo-purple {
	color: #8b5da8;
}

.clone-logo-text .logo-green {
	color: #25aa83;
}

.clone-logo-text .logo-yellow {
	color: #f7a71c;
}

.clone-logo-text .logo-blue {
	color: #2f9ab2;
}

.clone-lead {
	margin: -2px 0 2px;
	color: #969696;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

.test-plan-grid {
	display: grid;
	grid-template-columns: 1fr 1.24fr;
	gap: 16px;
	margin: 24px 0 42px;
}

.test-plan-card {
	position: relative;
	display: flex;
	min-height: 232px;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	border: 4px solid #f2f2f2;
	border-radius: 26px;
	background: #fff;
	color: #262626;
	cursor: pointer;
}

.test-plan-card input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.test-plan-card img {
	position: relative;
	top: auto;
	left: auto;
	width: 140px;
	height: 78px;
	margin: 33px auto 15px;
	object-fit: contain;
	opacity: 0.42;
	transform: none;
}

.test-plan-title {
	position: relative;
	z-index: 2;
	display: block;
	margin-top: -6px;
	color: #8f8f8f;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.43;
}

.test-plan-card.is-selected .test-plan-title,
.test-plan-card:has(input:checked) .test-plan-title {
	color: #303030;
}

.test-plan-card small {
	position: relative;
	z-index: 2;
	margin: 14px 0 0;
	max-width: 112px;
	color: #cfcfcf;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.25;
	white-space: nowrap;
}

.test-plan-card.is-selected small,
.test-plan-card:has(input:checked) small {
	max-width: 132px;
}

.test-plan-card.is-selected,
.test-plan-card:has(input:checked) {
	border-color: #8c61a6;
}

.plan-badge {
	position: absolute;
	top: -4px;
	right: -4px;
	z-index: 3;
	min-height: 32px;
	padding: 0 12px;
	border-radius: 0 0 0 10px;
	background: linear-gradient(90deg, #ff7255, #e92c76);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 32px;
}

.test-plan-card.is-selected img,
.test-plan-card:has(input:checked) img {
	opacity: 0.78;
}

.plan-check {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 3;
	width: 42px;
	height: 42px;
	border-radius: 18px 0 20px 0;
	background: #8c61a6;
	color: #fff;
	font-size: 27px;
	font-weight: 900;
	line-height: 42px;
}

.clone-primary {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 64px;
	margin: 0 auto 22px;
	border-radius: 999px;
	background: #8c61a6;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	text-decoration: none;
	animation: primary-pulse 1.8s ease-in-out infinite;
}

.clone-primary span {
	margin-left: 8px;
	font-size: 28px;
	line-height: 1;
}

.clone-primary:hover,
.clone-primary:focus {
	color: #fff;
	background: #7d5598;
	text-decoration: none;
}

.clone-primary:active {
	transform: scale(0.98);
}

@keyframes primary-pulse {
	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.035);
	}
}

@media (prefers-reduced-motion: reduce) {
	.clone-primary {
		animation: none;
	}
}

.privacy-line {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 0 0 4px;
	color: #a4a4a4;
	font-size: 14px;
	font-weight: 500;
}

.privacy-line input {
	margin: 0;
}

.privacy-line a {
	color: #8c61a6;
	text-decoration: underline;
}

.clone-hint,
.clone-note {
	margin: 0;
	color: #999;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.55;
}

.clone-hint strong:first-child {
	color: #4197b8;
}

.clone-hint strong:last-child {
	color: #22a57b;
}

.clone-panel {
	margin: 10px 22px 30px;
	overflow: hidden;
	border: 1px solid #eee;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.025);
}

.notice-panel {
	margin-top: 70px;
}

.clone-panel h2 {
	margin: 0;
	padding: 14px 12px;
	border-bottom: 1px solid #eee;
	color: #333;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.35;
	text-align: center;
}

.notice-panel h2 {
	color: #555;
	font-weight: 600;
}

.explore-panel h2 {
	color: #555;
}

.notice-panel .panel-body p {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.42;
}

.panel-body {
	padding: 18px 20px 22px;
}

.panel-body p,
.clone-panel>p {
	margin: 0 0 12px;
	color: #9b9b9b;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.28;
	text-align: left;
}

.origin-visual {
	display: flex;
	justify-content: center;
	gap: 4px;
	padding: 26px 16px 8px;
}

.origin-visual img {
	width: 92px;
	height: 92px;
	object-fit: contain;
	opacity: 0.18;
	filter: grayscale(1);
}

.origin-visual img:only-child {
	width: 220px;
	height: 150px;
	opacity: 1;
}

.explore-panel>p {
	padding: 0 20px;
}

.explore-panel p,
.explore-panel td,
.explore-panel th,
.explore-panel figcaption {
	font-weight: 300;
}

.dimension-table {
	width: calc(100% - 40px);
	margin: 18px 20px;
	border-collapse: collapse;
	color: #a0a0a0;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
}

.dimension-table th,
.dimension-table td {
	padding: 10px 8px;
	border: 1px solid #eee;
	vertical-align: middle;
}

.dimension-table th {
	color: #888;
	background: #fafafa;
}

.dimension-option {
	display: block;
	line-height: 1.45;
}

.dimension-option+.dimension-option {
	margin-top: 8px;
}

.type-mini-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px 8px;
	padding: 8px 20px 28px;
}

.type-mini-grid figure {
	margin: 0;
	text-align: center;
}

.type-mini-grid img {
	width: 54px;
	height: 54px;
	object-fit: contain;
	opacity: 1;
}

.type-mini-grid figcaption {
	margin-top: 2px;
	color: #d0d0d0;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.25;
}

.history-panel {
	margin-bottom: 24px;
}

.history-panel h2,
.history-panel .panel-body p {
	font-weight: 300;
}

.clone-footer {
	padding: 8px 20px 30px;
	color: #c3c3c3;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
}

.clone-footer p {
	margin: 0;
}

.home-notice {
	min-height: 40px;
	padding: 9px 14px;
	overflow: hidden;
	background: #343a46;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 22px;
	white-space: nowrap;
	text-align: center;
}

.home-hero {
	position: relative;
	min-height: 760px;
	padding: 20px 32px 42px;
	background:
		linear-gradient(155deg, rgba(50, 153, 178, 0.16) 0 18%, transparent 18% 100%),
		radial-gradient(circle at 0% 58%, rgba(137, 91, 167, 0.14), transparent 34%),
		linear-gradient(180deg, #ffffff 0%, #f4f7f8 61%, #eef4f4 100%);
}

.home-brand {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 44px;
}

.home-logo {
	color: #061a38;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 22px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}

.home-logo:hover,
.home-logo:focus {
	color: #061a38;
	text-decoration: none;
}

.home-logo span {
	color: #2f9ab2;
}

.home-link {
	color: #2f9ab2;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.home-link:hover,
.home-link:focus {
	color: #126a73;
	text-decoration: none;
}

.home-year {
	margin: 0 0 8px;
	color: #2f9ab2;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
}

.home-hero h1 {
	margin: 0;
	color: #071d3b;
	font-family: Georgia, "Times New Roman", "SimSun", serif;
	font-size: 34px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.22;
	text-align: center;
	white-space: nowrap;
}

.home-hero h1::first-letter {
	color: #071d3b;
}

.home-hero h1 {
	text-shadow: 0 8px 24px rgba(5, 56, 90, 0.08);
}

.home-hero h1::selection {
	background: rgba(21, 201, 196, 0.2);
}

.home-hero h1 strong,
.home-hero h1 .accent {
	color: #16c7c2;
}

.home-hero h1 {
	background: linear-gradient(90deg, #2f384d 0 30%, #2f9ab2 30% 72%, #2f384d 72% 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.home-subtitle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 6px 0 48px;
	color: #717b8f;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.home-subtitle span {
	width: 24px;
	height: 1px;
	background: #c4ccd6;
}

.version-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
	margin-bottom: 34px;
}

.version-card {
	position: relative;
	display: block;
	min-height: 256px;
	overflow: hidden;
	border: 1px solid #e4e8ee;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 16px 36px rgba(47, 56, 75, 0.08);
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.version-card:hover,
.version-card:focus-within {
	transform: translateY(-2px);
	border-color: rgba(47, 154, 178, 0.36);
	box-shadow: 0 22px 42px rgba(47, 56, 75, 0.12);
}

.version-card input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.version-card:has(input:checked),
.version-card.is-selected {
	border-color: rgba(47, 154, 178, 0.6);
	background: linear-gradient(180deg, #ffffff 0 82%, #2f9ab2 82% 100%);
}

.version-card::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: linear-gradient(180deg, #2f9ab2, #8e5aa9);
	opacity: 0;
}

.version-card:has(input:checked)::before,
.version-card.is-selected::before {
	opacity: 1;
}

.version-copy {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	padding: 18px 18px 0;
}

.version-copy strong {
	margin-bottom: 82px;
	color: #2f384d;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.2;
}

.version-copy em,
.version-copy small {
	color: #778297;
	font-style: normal;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
}

.version-card img {
	position: absolute;
	right: 0;
	bottom: 28px;
	z-index: 1;
	width: 102px;
	height: 116px;
	object-fit: contain;
	object-position: top center;
	opacity: 0.58;
	filter: saturate(0.88);
	border-radius: 0 0 14px 0;
}

.version-check {
	position: absolute;
	left: 16px;
	bottom: 8px;
	z-index: 3;
	display: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #fff;
	color: #2f9ab2;
	font-size: 21px;
	font-weight: 900;
	line-height: 30px;
	text-align: center;
	box-shadow: 0 8px 18px rgba(0, 126, 126, 0.18);
}

.version-card:has(input:checked) .version-check,
.version-card.is-selected .version-check {
	display: block;
}

.home-primary {
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(100%, 324px);
	height: 72px;
	margin: 0 auto 4px;
	border: 0;
	border-radius: 999px;
	background: #2f9ab2;
	box-shadow: 0 16px 30px rgba(47, 154, 178, 0.28);
	color: #fff;
	font-family: Georgia, "Times New Roman", "SimSun", serif;
	font-size: 34px;
	font-weight: 900;
	letter-spacing: 0.03em;
	text-decoration: none;
	text-shadow: 0 2px 0 rgba(0, 97, 97, 0.13);
}

.home-primary:hover,
.home-primary:focus {
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
	background: #258ea7;
}

.home-fee-note {
	margin: 0;
	color: #7a8496;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
}

.feedback-tab {
	position: fixed;
	top: 224px;
	right: max(calc((100vw - 480px) / 2), 0px);
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	min-height: 88px;
	border: 1px solid #2f9ab2;
	border-right: 0;
	border-radius: 10px 0 0 10px;
	background: rgba(255, 255, 255, 0.9);
	color: #2f9ab2;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
}

.feedback-tab:hover,
.feedback-tab:focus {
	color: #088f91;
	text-decoration: none;
}

.home-info {
	position: relative;
	width: calc(100% - 56px);
	margin: 0 auto 24px;
	padding: 26px 24px;
	border-left: 4px solid #2f9ab2;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 42px rgba(47, 56, 75, 0.1);
}

.home-info::before {
	content: "";
	position: absolute;
	left: -4px;
	bottom: 0;
	width: 4px;
	height: 42%;
	background: #8e5aa9;
	border-radius: 0 0 0 8px;
}

.home-info h2 {
	margin: 0 0 12px;
	color: #2f384d;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.35;
	text-align: center;
}

.home-info p {
	margin: 0 0 18px;
	color: #596579;
	font-size: 15px;
	line-height: 1.75;
}

.info-list {
	display: grid;
	gap: 10px;
}

.info-list article {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 10px;
	align-items: center;
	padding: 12px;
	border-radius: 8px;
	background: #f7f9fb;
}

.info-list strong {
	color: #2f9ab2;
	font-size: 18px;
	font-weight: 900;
}

.info-list span {
	color: #415064;
	font-size: 14px;
	line-height: 1.55;
}

.home-warning {
	margin-bottom: 42px;
	border-left-color: #8e5aa9;
	border-radius: 8px;
}

.home-warning a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px;
	border-radius: 999px;
	background: #eef7f9;
	color: #2f9ab2;
	font-weight: 900;
	text-decoration: none;
}

.home-warning a:hover,
.home-warning a:focus {
	color: #258ea7;
	text-decoration: none;
}

.navbar-default {
	border: 0;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 8px 26px rgba(47, 56, 75, 0.08);
	backdrop-filter: blur(14px);
}

.navbar-default .navbar-brand {
	color: #2f384d;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.navbar-default .navbar-nav>li>a {
	color: #596579;
	font-weight: 600;
}

.navbar-default .navbar-toggle {
	border-color: rgba(47, 154, 178, 0.24);
}

.navbar-default .navbar-toggle .icon-bar {
	background-color: #2f9ab2;
}

.container {
	width: min(100%, 1120px);
}

.home-page .container,
.personality-list-page .container,
.personality-detail-page .container {
	padding-left: 20px;
	padding-right: 20px;
}

.home-card {
	max-width: 820px;
	margin: 0 auto;
	padding: 32px 36px;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 24px 60px rgba(31, 45, 61, 0.12);
	backdrop-filter: blur(12px);
}

.home-card h2 {
	margin-top: 0;
	margin-bottom: 18px;
	color: #123447;
	font-weight: 800;
}

.home-card p {
	margin-bottom: 12px;
	color: #445264;
	font-size: 16px;
}

footer {
	/* 给页脚留出与主体内容的分隔空间。 */
	margin-top: 90px;
}

.flashes {
	/* 预留给提示消息的公共样式。 */
	margin-top: 90px;
	text-align: center;
}

@media (max-width: 767px) {
	body {
		background-attachment: scroll;
		font-size: 15px;
	}

	body::before {
		background:
			linear-gradient(160deg, rgba(47, 154, 178, 0.13) 0 20%, transparent 20% 100%),
			radial-gradient(circle at 0% 72%, rgba(142, 90, 169, 0.1), transparent 36%),
			linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(246, 247, 249, 0.96));
	}

	.navbar-fixed-top {
		position: sticky;
		top: 0;
	}

	.navbar-default {
		border-radius: 0;
	}

	.navbar-default .navbar-collapse {
		border-color: rgba(18, 52, 71, 0.08);
	}

	.home-page .container,
	.personality-list-page .container,
	.personality-detail-page .container,
	.test-page .container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.home-card {
		padding: 22px 18px;
	}

	.home-card h2 {
		font-size: 24px;
	}

	.home-card p {
		font-size: 15px;
		line-height: 1.75;
	}

	.home-shell {
		width: 100%;
		box-shadow: none;
	}

	.home-notice {
		padding-left: 10px;
		padding-right: 10px;
		font-size: 12px;
		text-align: left;
	}

	.home-hero {
		min-height: 820px;
		padding: 22px 24px 40px;
	}

	.home-brand {
		margin-bottom: 46px;
	}

	.home-logo {
		font-size: 21px;
	}

	.home-year {
		font-size: 19px;
	}

	.home-hero h1 {
		margin-left: -34px;
		margin-right: -34px;
		font-size: 32px;
	}

	.home-subtitle {
		margin-bottom: 46px;
		font-size: 16px;
	}

	.version-grid {
		gap: 32px;
		margin-left: -8px;
		margin-right: -8px;
	}

	.version-card {
		min-height: 196px;
		border-radius: 16px;
	}

	.version-copy {
		padding: 17px 14px 0;
	}

	.version-copy strong {
		margin-bottom: 58px;
		font-size: 21px;
	}

	.version-copy em,
	.version-copy small {
		font-size: 15px;
	}

	.version-card img {
		right: 0;
		bottom: 26px;
		width: 98px;
		height: 112px;
	}

	.home-primary {
		width: min(100%, 322px);
		height: 70px;
		font-size: 32px;
	}

	.feedback-tab {
		top: 224px;
		right: 0;
	}

	.home-info {
		width: calc(100% - 34px);
		padding: 24px 18px;
	}
}

@media (max-width: 380px) {
	.home-hero {
		padding-left: 18px;
		padding-right: 18px;
	}

	.home-hero h1 {
		margin-left: -28px;
		margin-right: -28px;
		font-size: 29px;
	}

	.home-subtitle {
		font-size: 14px;
	}

	.version-grid {
		gap: 22px;
		margin-left: -2px;
		margin-right: -2px;
	}

	.version-copy strong {
		font-size: 19px;
	}

	.version-copy em,
	.version-copy small {
		font-size: 13px;
	}

	.home-primary {
		font-size: 29px;
	}
}

/* Homepage right-edge vertical action */
.home-edge-action {
    position: fixed;
    right: 0;
    top: 30%;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 104px;
    padding: 12px 5px;
    border-radius: 16px 0 0 16px;
    border: 1px solid #25aa83;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 10px 24px rgba(18, 166, 98, .14);
    color: #25aa83;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.15;
    text-decoration: none;
    writing-mode: vertical-rl;
    text-orientation: upright;
    -webkit-tap-highlight-color: transparent;
}
.home-edge-action:focus,
.home-edge-action:hover {
    color: #25aa83;
    border-color: #25aa83;
    background: #fff;
    text-decoration: none;
    transform: translateX(-2px);
}
.home-edge-action.is-wechat {
    border-color: #25aa83;
    background: rgba(255, 255, 255, .94);
    color: #25aa83;
}
@media (max-width: 480px) {
    .home-edge-action {
        top: 28%;
        min-width: 26px;
        min-height: 96px;
        padding: 10px 4px;
        border-radius: 14px 0 0 14px;
        font-size: 13px;
    }
}

.utility-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}
.utility-card {
    width: min(560px, 100%);
    text-align: center;
}
.utility-card h1 {
    margin: 0 0 14px;
    font-size: 28px;
    color: #1f2937;
}
.utility-card p {
    margin: 0 auto 22px;
    color: #657083;
    line-height: 1.8;
}
.recover-form {
    display: grid;
    gap: 16px;
    text-align: left;
}
.recover-form label {
    display: grid;
    gap: 8px;
    color: #374151;
    font-weight: 700;
}
.recover-form input {
    width: 100%;
    border: 1px solid #dce3ee;
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 15px;
    outline: none;
}
.recover-form input:focus {
    border-color: #20bf6b;
    box-shadow: 0 0 0 3px rgba(32, 191, 107, .14);
}

/* Report recovery page: screenshot-matched simple white layout */
.recover-page {
    min-height: 100vh;
    margin: 0;
    background: #fff;
    color: #33363d;
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}
.recover-page::before { display: none; }
.recover-shell {
    width: min(100%, 1080px);
    margin: 0 auto;
    padding: 78px 76px 96px;
    background: #fff;
}
.recover-shell h1 {
    margin: 0 0 76px;
    text-align: center;
    color: #2f3338;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.2;
}
.recover-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 214px;
    gap: 18px;
    align-items: center;
    margin: 0 10px 84px;
}
.recover-search input {
    width: 100%;
    height: 108px;
    border: 3px solid #5fc3c3;
    border-radius: 10px;
    padding: 0 4px;
    background: #fff;
    color: #333;
    font-size: 34px;
    font-weight: 400;
    outline: none;
    box-shadow: none;
}
.recover-search input::placeholder { color: #808080; opacity: 1; }
.recover-search input:focus {
    border-color: #28bbbb;
    box-shadow: 0 0 0 3px rgba(40, 187, 187, .12);
}
.recover-search button {
    height: 104px;
    border: 0;
    border-radius: 8px;
    background: #28bfc4;
    box-shadow: 0 4px 10px rgba(33, 177, 181, .18) inset, 0 2px 6px rgba(0,0,0,.08);
    color: #fff;
    font-size: 33px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.recover-status {
    min-height: 38px;
    margin: -62px 10px 42px;
    color: #5d6673;
    font-size: 24px;
    line-height: 1.45;
}
.recover-status.is-loading { color: #188c92; }
.recover-status.is-success { color: #18a058; }
.recover-status.is-error { color: #d93025; }
.recover-search button:disabled,
.recover-search input:disabled {
    cursor: not-allowed;
    opacity: .72;
}

.recover-method {
    margin: 0 0 70px;
    color: #333;
    font-size: 33px;
    line-height: 1.72;
}
.recover-method__title {
    margin: 0 0 8px;
    font-size: inherit;
    font-weight: 400;
}
.recover-method ol {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: recover-step;
}
.recover-method li {
    counter-increment: recover-step;
    margin: 0;
}
.recover-method li::before { content: counter(recover-step) "、"; }
.recover-qr {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
.recover-qr img {
    display: block;
    width: min(590px, 72vw);
    height: auto;
}
@media (max-width: 640px) {
    .recover-shell {
        width: 100%;
        padding: 46px 30px 72px;
    }
    .recover-shell h1 {
        margin-bottom: 54px;
        font-size: 34px;
    }
    .recover-search {
        grid-template-columns: minmax(0, 1fr) 110px;
        gap: 10px;
        margin: 0 0 54px;
    }
    .recover-search input {
        height: 62px;
        border-width: 2px;
        border-radius: 7px;
        font-size: 20px;
        padding: 0 2px;
    }
    .recover-search button {
        height: 60px;
        border-radius: 7px;
        font-size: 20px;
    }
    .recover-status {
        min-height: 28px;
        margin: -34px 0 26px;
        font-size: 15px;
    }
    .recover-method {
        margin-bottom: 42px;
        font-size: 20px;
        line-height: 1.76;
    }
    .recover-qr img { width: min(330px, 78vw); }
}
