/* ==========================================================================
   style.css — 双轨制：
   PART A) 公共兼容样式（doc.php / agreement.php / 所有旧结构页面 适用）
   PART B) 首页专属样式（.page-home 命名空间）
   ========================================================================== */

/* ==========================================================================
   PART A. 公共兼容样式
   保证 doc.php、agreement.php 等旧结构页面不被"污染"
   ========================================================================== */
body {
	padding-top: 86px;
	font-family: "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-weight: 400;
	line-height: 1.6;
	color: #333;
	background: #fff;
}

/* ---------- 通用 Header（旧结构：navbar-brand 用 img + 文字） ---------- */
.clogin-header {
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	padding: 14px 0;
	z-index: 99999;
	background-color: #fff;
	background-image: linear-gradient(90deg,#b984ff,#4173ff);
	border-bottom: 1px solid rgba(255,255,255,.1);
	transition: .5s;
}
.clogin-header.clogin-header-white {
	background: #fff;
	background-color: #fff;
	box-shadow: 0 4px 30px rgba(0,0,0,.08);
}
.clogin-header a { color: #ffffff !important; transition: .3s; }
.clogin-header.clogin-header-white a { color: #55677b !important; }

/* 旧结构 logo img */
.navbar-brand img { width: 40px; vertical-align: middle; margin-right: 8px; }
.navbar-brand {
	display: inline-flex;
	align-items: center;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	padding: 0;
}

/* Nav 链接（旧结构无 nav-link-inner） */
.navbar-nav { display: flex; align-items: center; }
.navbar-nav .nav-item { margin: 0 4px; }
.nav-link {
	padding: 8px 18px !important;
	font-size: 15px;
	font-weight: 500;
	position: relative;
}
.navbar-toggler {
	border: none !important;
	color: #fff !important;
	padding: 6px !important;
}
.navbar-toggler-icon {
	background-image: none !important;
	width: 24px; height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.navbar-toggler-icon::before {
	content: '\f0c9';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 22px;
	color: #fff;
}
.clogin-header.clogin-header-white .navbar-toggler-icon::before { color: #333; }

@media (min-width: 992px) {
	.navbar-expand-lg .navbar-nav .nav-link { padding-right: 20px; padding-left: 20px; }
}

/* ---------- 通用 Section ---------- */
.clogin-section { padding: 50px 0; }
.clogin-footer {
	background: #f8fafd;
	color: #969696;
	padding: 15px;
	text-align: center;
	font-size: 13px;
}
.clogin-footer a { color: #969696; text-decoration: none; }

/* 通用区块标题（旧结构：下划线 span） */
.clogin-section-title h2 {
	font-size: 28px;
	font-weight: 700;
	color: #2196F3;
	margin: 0 0 10px;
}
.clogin-section-title {
	margin-bottom: 30px;
}

/* 通用 info 段落 */
.clogin-info p { color: #666; font-size: 15px; line-height: 1.9; }

/* 通用 links 友情链接 */
.clogin-links { background: #edf3ff; }
.clogin-links .container { color: #666; font-size: 14px; }
.clogin-links a { color: #666; text-decoration: none; margin-right: 16px; }

/* 通用 banner（用于除首页外其他页面，默认不显示） */
.clogin-banner { display: none; }

/* 通用 Functions 区（doc 页面没用上，提供默认 fallback） */
.clogin-functions { background: #f7faff; }

/* doc.php 页面内联样式已设 body{padding-top:0} 且 .clogin-header{position:unset}，保持兼容 */

/* ==========================================================================
   PART B. 首页专属样式（作用域：.page-home）
   ========================================================================== */

/* ---------- B.0 Design Tokens ---------- */
.page-home {
	--primary: #667eea;
	--primary-2: #764ba2;
	--accent: #f093fb;
	--accent-2: #4facfe;
	--gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	--gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	--gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
	--gradient-banner: linear-gradient(135deg, #b984ff 0%, #4173ff 50%, #00d4ff 100%);
	--text-dark: #1a202c;
	--text-muted: #64748b;
	--text-light: #94a3b8;
	--bg-white: #ffffff;
	--bg-light: #f8fafc;
	--bg-light-2: #f1f5f9;
	--border: #e2e8f0;
	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;

	padding-top: 80px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-weight: 400;
	background: var(--bg-white);
	color: var(--text-dark);
	line-height: 1.6;
	overflow-x: hidden;
	position: relative;
}
.page-home * { box-sizing: border-box; }

/* ---------- B.0a 震撼升级 - 噪点 ---------- */

/* 噪点纹理 */
.noise-overlay {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 9999;
	opacity: 0.025;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}

/* Banner 网格背景 */
.page-home .banner-grid-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
	background-size: 50px 50px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 0%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 0%, transparent 80%);
	animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
	0% { background-position: 0 0, 0 0; }
	100% { background-position: 50px 50px, 50px 50px; }
}

/* Banner 流动光球 */
.page-home .banner-glow-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	pointer-events: none;
	z-index: 1;
	will-change: transform;
}
.page-home .banner-glow-orb-1 {
	width: 300px; height: 300px;
	background: rgba(255, 255, 255, 0.15);
	top: 20%; right: 10%;
	animation: orbPulse 6s ease-in-out infinite;
}
.page-home .banner-glow-orb-2 {
	width: 250px; height: 250px;
	background: rgba(240, 147, 251, 0.25);
	bottom: 10%; left: 5%;
	animation: orbPulse 8s ease-in-out infinite reverse;
}
@keyframes orbPulse {
	0%,100% { opacity: 0.4; transform: scale(1); }
	50% { opacity: 0.7; transform: scale(1.15); }
}

/* 标题霓虹增强 */
.page-home .animate-gradient {
	filter: drop-shadow(0 2px 14px rgba(0,0,0,.15)) drop-shadow(0 0 30px rgba(199, 210, 254, 0.5));
}
.page-home .banner-title {
	transition: transform .3s cubic-bezier(.4,0,.2,1);
	will-change: transform;
}
.page-home .visual-card-wrap {
	transition: transform .4s cubic-bezier(.4,0,.2,1);
	will-change: transform;
}
.page-home .subtitle .sub-char {
	transition: opacity .3s ease, transform .3s ease;
}

/* 磁吸按钮过渡 */
.page-home .btn-primary-grad,
.page-home .btn-cta,
.page-home .btn-login {
	transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .3s ease, color .3s ease !important;
}

/* ---------- B.1 背景装饰 Blob ---------- */
.page-home .bg-decoration {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}
.page-home .blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.4;
	animation: pageHomeBlobFloat 20s infinite ease-in-out;
}
.page-home .blob-1 { width: 500px; height: 500px; background: linear-gradient(135deg,#667eea,#764ba2); top: -200px; right: -150px; }
.page-home .blob-2 { width: 400px; height: 400px; background: linear-gradient(135deg,#f093fb,#4facfe); top: 40%; left: -200px; animation-delay: -7s; opacity: .3; }
.page-home .blob-3 { width: 350px; height: 350px; background: linear-gradient(135deg,#43e97b,#38f9d7); bottom: 10%; right: 10%; animation-delay: -14s; opacity: .25; }
@keyframes pageHomeBlobFloat {
	0%,100% { transform: translate(0,0) scale(1); }
	25% { transform: translate(40px,-40px) scale(1.05); }
	50% { transform: translate(-30px,30px) scale(.95); }
	75% { transform: translate(30px,40px) scale(1.02); }
}

/* ---------- B.2 Header ---------- */
.page-home .clogin-header {
	background: rgba(185,132,255,.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 14px 0;
}
.page-home .clogin-header.clogin-header-white {
	background: rgba(255,255,255,.92);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0,0,0,.06);
	padding: 10px 0;
}
/* 首页新结构 logo-wrap */
.page-home .logo-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
}
.page-home .logo-icon {
	width: 40px; height: 40px;
	background: rgba(255,255,255,.2);
	border-radius: var(--radius-md);
	display: flex; align-items: center; justify-content: center;
	color: #fff;
	font-size: 18px;
	transition: var(--transition);
	backdrop-filter: blur(10px);
	overflow: hidden;
}
.page-home .logo-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 4px;
	transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.page-home .clogin-header.clogin-header-white .logo-icon {
	background: var(--gradient-1);
	color: #fff;
	box-shadow: 0 4px 12px rgba(102,126,234,.3);
}
.page-home .clogin-header.clogin-header-white .logo-img {
	filter: brightness(0) invert(1);
}
.page-home .logo-wrap:hover .logo-img {
	transform: scale(1.1) rotate(-3deg);
}
.page-home .logo-text {
	font-size: 20px; font-weight: 700;
	color: #fff;
	letter-spacing: -.3px;
	transition: var(--transition);
}
.page-home .clogin-header.clogin-header-white .logo-text { color: var(--text-dark); }
.page-home .navbar-brand img { display: none; } /* 首页新结构不再用 img */

/* 首页 Nav 链接：带下划线动画 */
.page-home .nav-link-inner {
	position: relative;
	display: inline-block;
	padding: 4px 0;
}
.page-home .nav-link-inner::after {
	content: '';
	position: absolute;
	left: 0; bottom: -2px;
	width: 0; height: 2px;
	background: linear-gradient(90deg,#fff, rgba(255,255,255,.5));
	border-radius: 2px;
	transition: width .3s cubic-bezier(.4,0,.2,1);
}
.page-home .clogin-header.clogin-header-white .nav-link-inner::after { background: var(--gradient-1); }
.page-home .nav-item:hover .nav-link-inner::after,
.page-home .nav-item.active .nav-link-inner::after { width: 100%; }
.page-home .nav-item.active .nav-link { font-weight: 600; }

/* 首页登录按钮 */
.page-home .nav-cta { margin-left: 16px; }
.page-home .btn-login {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	padding: 10px 22px !important;
	background: rgba(255,255,255,.2);
	border: 1px solid rgba(255,255,255,.3);
	border-radius: 50px;
	color: #fff !important;
	font-weight: 600;
	font-size: 14px;
	transition: var(--transition);
	backdrop-filter: blur(10px);
	text-decoration: none;
}
.page-home .btn-login:hover {
	background: rgba(255,255,255,.3);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.page-home .clogin-header.clogin-header-white .btn-login {
	background: var(--gradient-1);
	color: #fff !important;
	border: none;
	box-shadow: 0 4px 15px rgba(102,126,234,.35);
}
.page-home .clogin-header.clogin-header-white .btn-login:hover {
	box-shadow: 0 8px 25px rgba(102,126,234,.45);
}
.page-home .navbar-nav.ml-auto { align-items: center; }
@media (max-width: 991px) {
	.page-home .nav-cta { margin: 12px 0 0; }
	.page-home .btn-login { justify-content: center; }
}

/* ---------- B.3 Banner ---------- */
.page-home .clogin-banner {
	display: block !important;
	background: var(--gradient-banner);
	background-size: 200% 200%;
	animation: pageHomeGradientShift 15s ease infinite;
	position: relative;
	overflow: hidden;
	padding: 80px 0 120px;
	margin-top: -80px;
	padding-top: 160px;
}
@keyframes pageHomeGradientShift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}
.page-home #particles-canvas {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	z-index: 1;
	pointer-events: none;
}
.page-home .banner-wave {
	position: absolute;
	bottom: -1px; left: 0;
	width: 100%;
	z-index: 2;
	pointer-events: none;
}
.page-home .banner-wave svg { width: 100%; height: 120px; display: block; }
.page-home .clogin-banner .container { position: relative; z-index: 3; }
.page-home .clogin-banner .row { margin: 0; }
.page-home .banner-title { color: #fff; padding: 20px 0; text-align: left; }

.page-home .badge-float {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	background: rgba(255,255,255,.15);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 50px;
	font-size: 13px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 28px;
	position: relative;
	overflow: hidden;
	animation: pageHomeBadgeFloat 3s ease-in-out infinite;
}
.page-home .badge-float::after {
	content: '';
	position: absolute;
	top: 0; left: -120%;
	width: 60%; height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
	transform: skewX(-20deg);
	animation: pageHomeShimmer 3.5s ease-in-out infinite;
}
@keyframes pageHomeShimmer {
	0% { left: -120%; }
	60%,100% { left: 160%; }
}
.page-home .badge-float i { color: #ffd700; }
@keyframes pageHomeBadgeFloat {
	0%,100% { transform: translateY(0); }
	50% { transform: translateY(-4px); }
}

.page-home .animate-gradient {
	font-size: 56px;
	font-weight: 800;
	margin: 0 0 16px;
	background: linear-gradient(110deg,#ffffff 0%,#c7d2fe 25%,#ffffff 50%,#e9d5ff 75%,#ffffff 100%);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.1;
	letter-spacing: -1px;
	filter: drop-shadow(0 2px 14px rgba(0,0,0,.15));
	animation: pageHomeTitleShine 6s linear infinite;
}
@keyframes pageHomeTitleShine {
	0% { background-position: 0% center; }
	100% { background-position: 200% center; }
}
.page-home .animate-gradient .char {
	display: inline-block;
	transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1);
}

.page-home .subtitle {
	font-size: 18px;
	color: rgba(255,255,255,.85);
	margin-bottom: 32px;
	font-weight: 400;
}

.page-home .feature-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 36px;
}
.page-home .tag-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.15);
	border-radius: var(--radius-md);
	font-size: 14px;
	color: rgba(255,255,255,.95);
	backdrop-filter: blur(10px);
	transition: var(--transition);
}
.page-home .tag-item:hover {
	background: rgba(255,255,255,.2);
	transform: translateY(-2px);
}
.page-home .tag-item:nth-child(1) i { color: #ffd700; }
.page-home .tag-item:nth-child(2) i { color: #4ade80; }
.page-home .tag-item:nth-child(3) i { color: #60a5fa; }

/* 按钮 */
.page-home .clogin-banner-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 48px;
}
.page-home .btn,
.page-home .btn-login,
.page-home .btn-cta {
	position: relative;
	overflow: hidden;
	display: inline-flex !important;
	align-items: center;
	gap: 10px;
	padding: 14px 28px !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	border: none !important;
	border-radius: 50px !important;
	transition: all .3s cubic-bezier(.4,0,.2,1) !important;
	cursor: pointer;
	text-decoration: none !important;
}
.page-home .btn-primary-grad {
	background: #fff !important;
	color: #667eea !important;
	box-shadow: 0 8px 30px rgba(255,255,255,.3);
}
.page-home .btn-primary-grad:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(255,255,255,.45);
	color: #764ba2 !important;
}
.page-home .btn-primary-grad .btn-arrow {
	transition: var(--transition);
	font-size: 12px;
	opacity: .7;
}
.page-home .btn-primary-grad:hover .btn-arrow { transform: translateX(4px); opacity: 1; }

/* 主按钮 hover 光带扫过 */
.page-home .btn-primary-grad::after,
.page-home .btn-cta::after {
	content: '';
	position: absolute;
	top: 0; left: -130%;
	width: 80%; height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
	transform: skewX(-20deg);
	pointer-events: none;
	z-index: 1;
}
.page-home .btn-primary-grad:hover::after,
.page-home .btn-cta:hover::after {
	animation: pageHomeBtnShine .9s ease;
}
@keyframes pageHomeBtnShine {
	0% { left: -130%; }
	100% { left: 150%; }
}

.page-home .btn-outline-light-grad {
	background: rgba(255,255,255,.1) !important;
	color: #fff !important;
	border: 1.5px solid rgba(255,255,255,.4) !important;
	backdrop-filter: blur(10px);
}
.page-home .btn-outline-light-grad:hover {
	background: rgba(255,255,255,.2) !important;
	border-color: rgba(255,255,255,.6) !important;
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

/* 统计行 */
.page-home .stat-row {
	display: flex;
	align-items: center;
	gap: 0;
}
.page-home .stat-item {
		padding: 0 36px;
		text-align: left;
		position: relative;
		transition: transform .3s ease;
	}
	.page-home .stat-item:hover { transform: translateY(-4px); }
	.page-home .stat-item:first-child { padding-left: 0; }
	.page-home .stat-num {
		font-size: 40px;
		font-weight: 800;
		color: #fff;
		line-height: 1;
		margin-bottom: 6px;
		text-shadow: 0 0 20px rgba(255,255,255,0.4), 0 0 40px rgba(199, 210, 254, 0.3);
	}
	.page-home .stat-num span {
		font-size: 22px;
		font-weight: 600;
		color: rgba(255,255,255,.85);
		margin-left: 2px;
	}
	.page-home .stat-label {
		font-size: 13px;
		color: rgba(255,255,255,.7);
		font-weight: 400;
		letter-spacing: 1px;
	}
	.page-home .stat-divider {
		width: 1px; height: 40px;
		background: linear-gradient(180deg, transparent, rgba(255,255,255,.4), transparent);
	}

/* Banner 右侧视觉面板 */
.page-home .banner-visual { padding: 20px 0; }
.page-home .visual-card-wrap {
	position: relative;
	min-height: 480px;
}
.page-home .visual-card {
	background: rgba(255,255,255,.95);
	backdrop-filter: blur(20px);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-2xl);
	overflow: hidden;
	animation: pageHomeVisualCardFloat 6s ease-in-out infinite;
}
@keyframes pageHomeVisualCardFloat {
	0%,100% { transform: translateY(0) rotate(-1deg); }
	50% { transform: translateY(-15px) rotate(1deg); }
}
.page-home .visual-card-1 {
	position: absolute;
	top: 40px; left: 40px;
	width: 420px; max-width: 100%;
}
.page-home .vc-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	background: linear-gradient(135deg,#f8fafc,#e2e8f0);
	border-bottom: 1px solid var(--border);
}
.page-home .vc-dots { display: flex; gap: 6px; }
.page-home .vc-dots span {
	width: 12px; height: 12px;
	border-radius: 50%;
	background: #cbd5e1;
}
.page-home .vc-dots span:nth-child(1) { background: #ef4444; }
.page-home .vc-dots span:nth-child(2) { background: #f59e0b; }
.page-home .vc-dots span:nth-child(3) { background: #10b981; }
.page-home .vc-title { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.page-home .vc-body { padding: 28px 24px; }
.page-home .vc-login-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 20px;
}
.page-home .vc-login-item {
	display: flex; flex-direction: column; align-items: center;
	gap: 10px;
	transition: var(--transition);
	cursor: pointer;
}
.page-home .vc-login-item:hover { transform: translateY(-4px); }
.page-home .vc-icon {
	width: 48px; height: 48px;
	border-radius: var(--radius-md);
	display: flex; align-items: center; justify-content: center;
	font-size: 22px;
	color: #fff;
	transition: var(--transition);
	box-shadow: var(--shadow-md);
}
.page-home .vc-login-item:hover .vc-icon { transform: scale(1.08); box-shadow: var(--shadow-lg); }
.page-home .vc-wechat { background: linear-gradient(135deg,#07c160,#00d26a); }
.page-home .vc-qq { background: linear-gradient(135deg,#12b7f5,#2684ff); }
.page-home .vc-weibo { background: linear-gradient(135deg,#e6162d,#ff6666); }
.page-home .vc-alipay { background: linear-gradient(135deg,#1677ff,#3d90ff); }
.page-home .vc-baidu { background: linear-gradient(135deg,#2932e1,#5b63ff); }
.page-home .vc-github { background: linear-gradient(135deg,#24292f,#57606a); }
.page-home .vc-gitee { background: linear-gradient(135deg,#c71d23,#ff4d4f); }
.page-home .vc-google { background: linear-gradient(135deg,#4285f4,#34a853,#fbbc05,#ea4335); }
.page-home .vc-login-item span { font-size: 12px; color: var(--text-muted); font-weight: 500; }

.page-home .floating-card {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xl);
	z-index: 10;
}
.page-home .floating-card i {
	width: 40px; height: 40px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}
.page-home .floating-card-1 {
	top: 20px; right: 0;
	animation: pageHomeFloat1 5s ease-in-out infinite;
}
.page-home .floating-card-1 i {
	background: linear-gradient(135deg,#dcfce7,#bbf7d0);
	color: #16a34a;
}
@keyframes pageHomeFloat1 {
	0%,100% { transform: translateY(0) rotate(2deg); }
	50% { transform: translateY(-10px) rotate(-1deg); }
}
.page-home .floating-card-2 {
	bottom: 30px; left: 0;
	animation: pageHomeFloat2 5.5s ease-in-out infinite;
	animation-delay: -1s;
}
.page-home .floating-card-2 i {
	background: linear-gradient(135deg,#dbeafe,#bfdbfe);
	color: #2563eb;
}
@keyframes pageHomeFloat2 {
	0%,100% { transform: translateY(0) rotate(-2deg); }
	50% { transform: translateY(-8px) rotate(1deg); }
}
.page-home .fc-title { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.page-home .fc-desc { font-size: 12px; color: var(--text-muted); }

/* ---------- B.4 区块 Section 通用 ---------- */
.page-home .clogin-section { padding: 100px 0; position: relative; z-index: 1; }

.page-home .section-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 3px;
	color: var(--primary);
	margin-bottom: 12px;
	text-transform: uppercase;
	padding: 6px 16px;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
	border: 1px solid rgba(102, 126, 234, 0.2);
	border-radius: 50px;
}
.page-home .clogin-section-title h2 {
	font-size: 42px;
	font-weight: 800;
	margin: 0 0 16px;
	letter-spacing: -.5px;
	line-height: 1.2;
	background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary) 50%, var(--primary-2) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.page-home .title-underline {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}
.page-home .title-underline span {
	display: block;
	width: 60px; height: 4px;
	background: var(--gradient-1);
	border-radius: 2px;
	position: relative;
	animation: titleUnderlineExpand 1.2s cubic-bezier(.16,1,.3,1) forwards;
	transform-origin: center;
}
@keyframes titleUnderlineExpand {
	0% { transform: scaleX(0); }
	100% { transform: scaleX(1); }
}
.page-home .title-underline span::before,
.page-home .title-underline span::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--gradient-1);
	box-shadow: 0 0 10px rgba(102, 126, 234, 0.6);
}
.page-home .title-underline span::before { left: -16px; }
.page-home .title-underline span::after { right: -16px; }

/* ---------- B.5 About Info ---------- */
.page-home .clogin-info { background: var(--bg-white); }
.page-home .info-desc-wrap {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	gap: 40px;
	background: linear-gradient(135deg,#f8fafc 0%,#f0f4ff 100%);
	padding: 48px;
	border-radius: var(--radius-xl);
	position: relative;
	overflow: hidden;
}
.page-home .info-desc-wrap::before {
	content: '';
	position: absolute;
	top: -50%; right: -20%;
	width: 300px; height: 300px;
	background: var(--gradient-1);
	border-radius: 50%;
	opacity: .08;
	filter: blur(60px);
}
.page-home .info-icon-big {
	width: 100px; height: 100px;
	background: var(--gradient-1);
	border-radius: var(--radius-xl);
	display: flex; align-items: center; justify-content: center;
	font-size: 48px;
	color: #fff;
	flex-shrink: 0;
	box-shadow: 0 12px 40px rgba(102,126,234,.3);
	position: relative; z-index: 1;
}
.page-home .info-desc {
	font-size: 16px;
	line-height: 1.9;
	color: var(--text-muted);
	margin: 0;
	position: relative; z-index: 1;
	flex: 1;
}
.page-home .info-desc .highlight {
	color: var(--text-dark);
	font-weight: 600;
	background: linear-gradient(180deg, transparent 60%, rgba(102,126,234,.15) 60%);
	padding: 0 2px;
}

/* ---------- B.6 Feature 功能卡片 ---------- */
.page-home .clogin-functions {
	background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}
.page-home .clogin-functions::before {
	content: '';
	position: absolute;
	top: 50%; left: 50%;
	width: 600px; height: 600px;
	background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
	transform: translate(-50%, -50%);
	pointer-events: none;
}
.page-home .feature-grid {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 32px;
	position: relative;
	z-index: 1;
}
.page-home .feature-card {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: var(--radius-xl);
	padding: 40px;
	position: relative;
	overflow: hidden;
	transition: all .4s cubic-bezier(.4,0,.2,1);
	border: 1px solid transparent;
	box-shadow: 0 4px 20px rgba(0,0,0,0.04);
	transform-style: preserve-3d;
	will-change: transform;
	background-image: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), var(--gradient-1);
	background-origin: border-box;
	background-clip: padding-box, border-box;
}
.page-home .feature-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--primary-2), var(--accent), var(--accent-2));
	background-size: 300% 100%;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s ease;
}
.page-home .feature-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 30px 60px -15px rgba(102, 126, 234, 0.25), 0 0 0 1px rgba(102, 126, 234, 0.1);
	border-color: transparent;
}
.page-home .feature-card:hover::before {
	transform: scaleX(1);
	animation: featureBorderFlow 3s linear infinite;
}
@keyframes featureBorderFlow {
	0% { background-position: 0% 50%; }
	100% { background-position: 300% 50%; }
}

/* 卡片鼠标跟随光斑 */
.page-home .feature-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(550px circle at var(--mx, 50%) var(--my, 50%), rgba(102,126,234,.18), transparent 45%);
	opacity: 0;
	transition: opacity .4s ease;
	pointer-events: none;
	z-index: 0;
	border-radius: inherit;
}
.page-home .feature-card:hover::after { opacity: 1; }

.page-home .feature-num {
	position: absolute;
	top: 24px; right: 32px;
	font-size: 72px;
	font-weight: 900;
	color: #f1f5f9;
	line-height: 1;
	z-index: 0;
	transition: var(--transition);
}
.page-home .feature-card:hover .feature-num { color: rgba(102,126,234,.1); }

.page-home .feature-icon-wrap {
	width: 72px; height: 72px;
	border-radius: var(--radius-lg);
	display: flex; align-items: center; justify-content: center;
	font-size: 32px;
	color: #fff;
	position: relative;
	margin-bottom: 28px;
	z-index: 1;
	transition: var(--transition);
	will-change: transform;
}
.page-home .feature-icon-wrap::before {
	content: '';
	position: absolute;
	inset: -8px;
	border-radius: inherit;
	opacity: .2;
	filter: blur(16px);
	transition: var(--transition);
}
.page-home .feature-icon-1 { background: var(--gradient-1); }
.page-home .feature-icon-1::before { background: var(--gradient-1); }
.page-home .feature-icon-2 { background: linear-gradient(135deg,#f093fb 0%,#f5576c 100%); }
.page-home .feature-icon-2::before { background: linear-gradient(135deg,#f093fb 0%,#f5576c 100%); }
.page-home .feature-icon-3 { background: var(--gradient-3); }
.page-home .feature-icon-3::before { background: var(--gradient-3); }
.page-home .feature-icon-4 { background: var(--gradient-4); color: #065f46; }
.page-home .feature-icon-4::before { background: var(--gradient-4); }
.page-home .feature-card:hover .feature-icon-wrap { transform: scale(1.05) rotate(-3deg); }
.page-home .feature-card:hover .feature-icon-wrap::before { opacity: .4; filter: blur(20px); }

.page-home .feature-content { position: relative; z-index: 1; }
.page-home .feature-content h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0 0 12px;
	line-height: 1.3;
}
.page-home .feature-content p {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.8;
	margin: 0 0 20px;
}

.page-home .platform-icons-mini { display: flex; gap: 10px; flex-wrap: wrap; }
.page-home .platform-icons-mini i {
	width: 36px; height: 36px;
	border-radius: var(--radius-sm);
	display: flex !important; align-items: center; justify-content: center;
	background: var(--bg-light-2);
	color: var(--text-muted);
	font-size: 16px;
	transition: var(--transition);
}
.page-home .platform-icons-mini i:hover { transform: translateY(-2px); }
.page-home .platform-icons-mini .fa-weixin { background: #dcfce7; color: #16a34a; }
.page-home .platform-icons-mini .fa-qq { background: #dbeafe; color: #2563eb; }
.page-home .platform-icons-mini .fa-weibo { background: #fee2e2; color: #dc2626; }
.page-home .platform-icons-mini .fa-alipay { background: #dbeafe; color: #1d4ed8; }
.page-home .platform-icons-mini .fa-paw { background: #c7d2fe; color: #4338ca; }
.page-home .platform-icons-mini .fa-github { background: #f1f5f9; color: #0f172a; }
.page-home .platform-icons-mini .fa-google { background: #fef3c7; color: #d97706; }
.page-home .platform-icons-mini .fa-tiktok { background: #1f2937; color: #fff; }

.page-home .code-mini {
	display: flex; align-items: center; gap: 10px;
	padding: 14px 18px;
	background: #0f172a;
	border-radius: var(--radius-md);
	font-family: 'JetBrains Mono', 'Fira Code', monospace;
	font-size: 13px;
	color: #7dd3fc;
}
.page-home .code-mini i { color: #94a3b8; font-size: 14px; }

.page-home .feature-check-list { list-style: none; padding: 0; margin: 0; }
.page-home .feature-check-list li {
	display: flex; align-items: center; gap: 10px;
	padding: 8px 0;
	color: var(--text-muted);
	font-size: 14px;
}
.page-home .feature-check-list li i {
	width: 20px; height: 20px;
	background: #dcfce7;
	color: #16a34a;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 10px;
	flex-shrink: 0;
}

.page-home .mini-chart {
	display: flex; align-items: flex-end;
	gap: 8px; height: 70px;
	padding: 16px;
	background: var(--bg-light);
	border-radius: var(--radius-md);
}
.page-home .chart-bar {
	flex: 1;
	background: var(--gradient-1);
	border-radius: 4px 4px 2px 2px;
	min-height: 10%;
	transition: var(--transition);
	opacity: .7;
}
.page-home .chart-bar:nth-child(odd) { background: var(--gradient-3); }
.page-home .feature-card:hover .chart-bar { opacity: 1; }

/* ---------- B.7 CTA Section ---------- */
.page-home .cta-section {
	padding: 80px 0;
	background: var(--bg-white);
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.page-home .cta-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 56px 64px;
	background: var(--gradient-1);
	border-radius: var(--radius-xl);
	position: relative;
	overflow: hidden;
	box-shadow: 0 25px 60px rgba(102,126,234,.35);
	animation: pageHomeCtaGlow 4.5s ease-in-out infinite;
}
@keyframes pageHomeCtaGlow {
	0%,100% { box-shadow: 0 25px 60px rgba(102,126,234,.35); }
	50% { box-shadow: 0 25px 85px rgba(240,147,251,.45); }
}
/* 流光扫过条带 */
.page-home .cta-card::before {
	content: '';
	position: absolute;
	top: 0; left: -150%;
	width: 75%; height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
	transform: skewX(-20deg);
	pointer-events: none;
	z-index: 1;
	animation: ctaShineSweep 5s ease-in-out infinite;
}
@keyframes ctaShineSweep {
	0% { left: -150%; }
	40%,100% { left: 150%; }
}
/* 装饰光球 */
.page-home .cta-card::after {
	content: '';
	position: absolute;
	bottom: -30%; left: -5%;
	width: 300px; height: 300px;
	background: rgba(240,147,251,.2);
	border-radius: 50%;
	filter: blur(50px);
	pointer-events: none;
	z-index: 0;
}
.page-home .cta-left { flex: 1; position: relative; z-index: 2; }
.page-home .cta-left h2 {
	font-size: 32px;
	font-weight: 800;
	margin: 0 0 10px;
	letter-spacing: -.3px;
	background: linear-gradient(110deg,#fff 0%,#ffe4f3 30%,#fff 55%,#dbeafe 100%);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: pageHomeTitleShine 5s linear infinite;
}
.page-home .cta-left p {
	font-size: 16px;
	color: rgba(255,255,255,.85);
	margin: 0;
}
.page-home .cta-right { position: relative; z-index: 2; }
.page-home .btn-cta {
	background: #fff !important;
	color: var(--primary) !important;
	padding: 16px 32px !important;
	font-size: 16px !important;
	box-shadow: 0 10px 40px rgba(0,0,0,.15);
}
.page-home .btn-cta:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 15px 50px rgba(0,0,0,.2);
	color: var(--primary-2) !important;
}

@media (max-width: 768px) {
	.page-home .cta-card {
		flex-direction: column;
		text-align: center;
		padding: 40px 32px;
	}
}

/* ---------- B.8 Links 友情链接 ---------- */
.page-home .clogin-links {
	background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}
.page-home .clogin-links::before {
	content: '';
	position: absolute;
	top: -100px; right: -100px;
	width: 400px; height: 400px;
	background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
.page-home .clogin-links::after {
	content: '';
	position: absolute;
	bottom: -80px; left: -80px;
	width: 300px; height: 300px;
	background: radial-gradient(circle, rgba(118, 75, 162, 0.06) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
.page-home .clogin-links .container { position: relative; z-index: 1; }

/* 标题区域 */
.page-home .links-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
	padding-bottom: 20px;
	border-bottom: 1px dashed var(--border);
}
.page-home .links-title-wrap {
	display: flex;
	align-items: center;
	gap: 16px;
}
.page-home .links-title-icon {
	width: 52px; height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-md);
	background: var(--gradient-1);
	color: #fff;
	font-size: 20px;
	box-shadow: 0 8px 20px rgba(102, 126, 234, 0.35);
	position: relative;
	overflow: hidden;
}
.page-home .links-title-icon::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 50%);
}
.page-home .links-title-icon i { position: relative; z-index: 1; }
.page-home .links-title-text h3 {
	font-size: 22px;
	font-weight: 800;
	color: var(--text-dark);
	margin: 0;
	line-height: 1.2;
	letter-spacing: -0.5px;
}
.page-home .links-subtitle {
	display: block;
	font-size: 11px;
	font-weight: 600;
	color: var(--text-light);
	letter-spacing: 2px;
	margin-top: 4px;
}
.page-home .links-deco {
	display: flex;
	align-items: center;
	gap: 6px;
}
.page-home .links-deco span {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--border);
	transition: var(--transition);
}
.page-home .links-deco span:nth-child(1) { background: var(--primary); }
.page-home .links-deco span:nth-child(2) { background: var(--primary-2); }
.page-home .links-deco span:nth-child(3) { background: var(--accent-2); }

/* 友链标签容器 */
.page-home .links-tabs-wrap {
	background: var(--bg-white);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md);
	overflow: hidden;
}
.page-home .links-tabs-header {
	display: flex;
	align-items: center;
	padding: 14px 20px;
	background: linear-gradient(135deg, #f8f9ff, #f0f4ff);
	border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}
.page-home .links-tabs-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-primary);
}

/* 链接内容容器 */
.page-home .links-content {
	padding: 20px;
	background: var(--bg-white);
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.6;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

/* 单个链接芯片 */
.page-home .links-content a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: var(--bg-light);
	color: var(--text-muted);
	text-decoration: none;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid var(--border);
	position: relative;
	overflow: hidden;
	margin: 0;
}
.page-home .links-content a::before {
	content: '';
	position: absolute;
	left: -100%;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.12), transparent);
	transition: left 0.6s ease;
}
.page-home .links-content a::after {
	content: '\f0c1';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 10px;
	opacity: 0;
	transform: translateX(-4px);
	transition: all 0.3s ease;
	color: var(--primary);
}
.page-home .links-content a:hover {
	color: #fff;
	background: var(--gradient-1);
	border-color: transparent;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}
.page-home .links-content a:hover::before {
	left: 100%;
}
.page-home .links-content a:hover::after {
	opacity: 1;
	transform: translateX(0);
	color: #fff;
}

/* 当前选中的友链 */
.page-home .links-content a.active {
	color: #fff;
	background: var(--gradient-1);
	border-color: transparent;
	box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
	position: relative;
}
.page-home .links-content a.active::after {
	content: '\f00c';
	opacity: 1;
	transform: translateX(0);
	color: #fff;
}
.page-home .links-content a.active::before {
	left: 100%;
}

/* 友情链接 iframe 预览窗口 */
.page-home .links-frame-wrap {
	margin-top: 24px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--bg-white);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	opacity: 1;
	max-height: 800px;
	transition: max-height 0.5s cubic-bezier(.4, 0, .2, 1), opacity 0.3s ease, margin-top 0.3s ease;
}
.page-home .links-frame-wrap:not(.active) {
	max-height: 0;
	opacity: 0;
	margin-top: 0;
}
.page-home .links-frame-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	background: linear-gradient(135deg, #1e293b, #334155);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.page-home .links-frame-title {
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 8px;
}
.page-home .links-frame-title::before {
	content: '\f0c1';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #667eea;
	font-size: 13px;
}
.page-home .links-frame-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}
.page-home .links-frame-refresh,
.page-home .links-frame-newtab,
.page-home .links-frame-close {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	border: none;
	background: rgba(255, 255, 255, 0.1);
	color: #cbd5e1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	text-decoration: none;
	font-size: 13px;
}
.page-home .links-frame-refresh:hover {
	background: #3b82f6;
	color: #fff;
	transform: rotate(180deg);
}
.page-home .links-frame-newtab:hover {
	background: #10b981;
	color: #fff;
	transform: translateY(-2px);
}
.page-home .links-frame-close:hover {
	background: #f59e0b;
	color: #fff;
	transform: scale(1.1);
}
.page-home .links-frame {
	width: 100%;
	height: 600px;
	border: none;
	display: block;
}

/* 响应式适配 */
@media (max-width: 768px) {
	.page-home .links-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.page-home .links-title-icon { width: 44px; height: 44px; font-size: 17px; }
	.page-home .links-title-text h3 { font-size: 19px; }
	.page-home .links-tabs-header {
		padding: 12px 16px;
	}
	.page-home .links-content {
		padding: 16px;
		gap: 8px;
	}
	.page-home .links-content a {
		padding: 6px 12px;
		font-size: 12px;
	}
	.page-home .links-frame {
		height: 350px;
	}
	.page-home .links-frame-header {
		padding: 10px 12px;
	}
	.page-home .links-frame-title {
		font-size: 12px;
		max-width: 150px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.page-home .links-frame-refresh,
	.page-home .links-frame-newtab,
	.page-home .links-frame-close {
		width: 28px;
		height: 28px;
		font-size: 12px;
	}
}

/* ---------- B.9 Footer 页脚（首页） ---------- */
.page-home .clogin-footer {
	background: linear-gradient(180deg,#0f172a 0%,#1e293b 100%);
	color: #94a3b8;
	padding: 80px 0 0;
	text-align: left;
	position: relative;
	z-index: 1;
}
.page-home .footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 48px;
}
.page-home .footer-logo {
	display: flex; align-items: center; gap: 12px;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
}
.page-home .footer-logo .logo-icon {
	width: 40px; height: 40px;
	background: var(--gradient-1);
	border-radius: var(--radius-md);
	display: flex; align-items: center; justify-content: center;
	color: #fff;
	box-shadow: 0 4px 15px rgba(102,126,234,.4);
}
.page-home .footer-desc {
	font-size: 14px;
	line-height: 1.8;
	color: #64748b;
	margin: 0 0 24px;
}
.page-home .footer-socials { display: flex; gap: 12px; }
.page-home .footer-socials a {
	width: 40px; height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.1);
	display: flex; align-items: center; justify-content: center;
	color: #94a3b8;
	transition: var(--transition);
	text-decoration: none;
}
.page-home .footer-socials a:hover {
	background: var(--gradient-1);
	color: #fff;
	border-color: transparent;
	transform: translateY(-3px);
}
.page-home .footer-links-col h4 {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 24px;
	position: relative;
	padding-bottom: 12px;
}
.page-home .footer-links-col h4::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0;
	width: 32px; height: 3px;
	background: var(--gradient-1);
	border-radius: 2px;
}
.page-home .footer-links-col ul { list-style: none; padding: 0; margin: 0; }
.page-home .footer-links-col li {
	padding: 8px 0;
	font-size: 14px;
	color: #64748b;
	display: flex; align-items: center;
	gap: 8px;
	transition: var(--transition);
}
.page-home .footer-links-col li:hover { color: #fff; transform: translateX(4px); }
.page-home .footer-links-col li i { font-size: 13px; width: 16px; }
.page-home .footer-links-col a { color: #64748b; text-decoration: none; transition: var(--transition); }
.page-home .footer-links-col a:hover { color: #fff; }
.page-home .footer-bottom {
	padding: 24px 0;
	border-top: 1px solid rgba(255,255,255,.08);
	text-align: center;
}
.page-home .footer-bottom p {
	margin: 0;
	font-size: 13px;
	color: #475569;
	line-height: 1.8;
}
.page-home .footer-bottom p .icp-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #94a3b8;
	text-decoration: none;
	transition: var(--transition);
	font-size: 12px;
}
.page-home .footer-bottom p .icp-link::before {
	content: '\f1ea';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 11px;
}
.page-home .footer-bottom p .icp-link:hover {
	color: #667eea;
}
.page-home .footer-bottom a {
	color: #64748b;
	text-decoration: none;
	transition: var(--transition);
}
.page-home .footer-bottom a:hover { color: #fff; }

/* ---------- B.10 Scroll Reveal ---------- */
.page-home .reveal {
	opacity: 0;
	transform: translateY(40px) scale(0.96);
	transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.page-home .reveal.revealed {
	opacity: 1;
	transform: translateY(0) scale(1);
}
.page-home .feature-card:nth-child(2).reveal { transition-delay: .12s; }
.page-home .feature-card:nth-child(3).reveal { transition-delay: .24s; }
.page-home .feature-card:nth-child(4).reveal { transition-delay: .36s; }
.page-home .clogin-section-title.reveal { transition-delay: 0s; }
.page-home .info-desc-wrap.reveal { transition-delay: .15s; }
.page-home .cta-card.reveal { transition-delay: .1s; }

/* 移动端减弱动画 */
@media (prefers-reduced-motion: reduce) {
	.noise-overlay,
	.page-home .banner-grid-bg, .page-home .banner-glow-orb,
	.page-home .blob { display: none !important; }
	.page-home { cursor: auto; }
	.page-home .reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ---------- B.11 Ripple 涟漪 ---------- */
.page-home .ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(255,255,255,.5);
	transform: scale(0);
	animation: pageHomeRipple .65s linear;
	pointer-events: none;
}
.page-home .btn-primary-grad .ripple,
.page-home .btn-cta .ripple { background: rgba(102,126,234,.3); }
.page-home .btn-login .ripple { background: rgba(255,255,255,.4); }
@keyframes pageHomeRipple { to { transform: scale(2.5); opacity: 0; } }

/* ---------- B.12 顶部滚动进度条 + 回到顶部 + 光晕 ---------- */
.page-home .scroll-progress {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 3px;
	z-index: 100000;
	background: transparent;
}
.page-home .scroll-progress span {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg,#667eea,#f093fb,#4facfe,#43e97b);
	background-size: 300% 100%;
	box-shadow: 0 0 10px rgba(102,126,234,.6);
	transition: width .1s linear;
	animation: pageHomeProgressGradient 3s linear infinite;
}
@keyframes pageHomeProgressGradient {
	0% { background-position: 0% 50%; }
	100% { background-position: 300% 50%; }
}

.page-home .cursor-glow {
	position: fixed;
	top: 0; left: 0;
	width: 500px; height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(102,126,234,.15) 0%, rgba(102,126,234,0) 70%);
	pointer-events: none;
	z-index: 1;
	/* 移除 mix-blend-mode 以确保鼠标指针正常显示 */
}

.page-home .back-to-top {
	position: fixed;
	bottom: 32px; right: 32px;
	width: 48px; height: 48px;
	border: none;
	background: #fff;
	border-radius: 50%;
	cursor: pointer;
	z-index: 9999;
	display: flex; align-items: center; justify-content: center;
	font-size: 16px;
	color: #667eea;
	box-shadow: 0 8px 30px rgba(0,0,0,.15);
	opacity: 0; visibility: hidden;
	transform: translateY(20px) scale(.8);
	transition: all .4s cubic-bezier(.4,0,.2,1);
	padding: 0;
}
.page-home .back-to-top.visible {
	opacity: 1; visibility: visible;
	transform: translateY(0) scale(1);
}
.page-home .back-to-top:hover {
	background: var(--gradient-1);
	color: #fff;
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 12px 40px rgba(102,126,234,.4);
}
.page-home .back-to-top i {
	position: relative; z-index: 2;
	transition: transform .3s;
}
.page-home .back-to-top:hover i { transform: translateY(-2px); }
.page-home .progress-ring {
	position: absolute;
	top: 0; left: 0;
	transform: rotate(-90deg);
	z-index: 1;
}
.page-home .progress-ring-circle {
	stroke: #667eea;
	stroke-linecap: round;
	transition: stroke-dashoffset .1s linear;
}

/* ---------- B.13 响应式 ---------- */
@media (max-width: 1200px) {
	.page-home .visual-card-1 { width: 100%; max-width: 360px; }
	.page-home .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
	.page-home .footer-links-col:last-child { grid-column: span 3; }
}
@media (max-width: 991px) {
	.page-home { padding-top: 70px; overflow-x: hidden; }
	.page-home .clogin-banner {
		padding: 120px 0 60px;
		margin-top: -70px;
	}
	.page-home .animate-gradient { font-size: 42px; }
	.page-home .stat-row { flex-wrap: wrap; gap: 20px; justify-content: center; }
	.page-home .stat-item { padding: 0 20px; }
	.page-home .stat-divider { display: none; }
	.page-home .banner-title { text-align: center; margin-bottom: 30px; }
	.page-home .feature-tags { justify-content: center; }
	.page-home .clogin-banner-buttons { justify-content: center; margin-bottom: 32px; }
	.page-home .stat-row { justify-content: center; }

	/* Mobile nav menu */
	.page-home .navbar-collapse {
		background: rgba(255,255,255,.95);
		backdrop-filter: blur(20px);
		border-radius: 16px;
		padding: 16px;
		margin-top: 12px;
		box-shadow: 0 20px 40px rgba(0,0,0,.15);
		border: 1px solid rgba(255,255,255,.3);
	}
	.page-home .navbar-nav {
		flex-direction: column;
		align-items: stretch !important;
	}
	.page-home .navbar-nav .nav-item {
		margin: 0 0 4px;
	}
	.page-home .clogin-header.clogin-header-white .navbar-collapse {
		background: #fff;
	}
	.page-home .clogin-header .navbar-collapse .nav-link {
		color: #55677b !important;
		border-bottom: 1px solid rgba(0,0,0,.05);
	}
	.page-home .clogin-header .navbar-collapse .nav-link:last-child {
		border-bottom: none;
	}
	.page-home .clogin-header .navbar-collapse .btn-login {
		margin: 12px 0 0;
		justify-content: center;
	}

	/* Visual card on mobile - full width, static flow */
	.page-home .banner-visual {
		display: block !important;
		padding: 20px 0 40px;
	}
	.page-home .visual-card-wrap {
		min-height: 0;
		margin: 0 auto;
		max-width: 400px;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}
	.page-home .visual-card-1 {
		position: relative;
		top: auto; left: auto;
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
		animation: pageHomeVisualCardFloatMobile 6s ease-in-out infinite;
	}
	@keyframes pageHomeVisualCardFloatMobile {
		0%,100% { transform: translateY(0); }
		50% { transform: translateY(-8px); }
	}

	/* Floating cards as inline row on mobile */
	.page-home .floating-card {
		position: static;
		transform: none !important;
		animation: none;
		margin: 0;
		flex-direction: row;
		width: 100%;
		max-width: 400px;
	}
	.page-home .floating-card-1 { animation: none; }
	.page-home .floating-card-2 { animation: none; }

	.page-home .feature-grid { grid-template-columns: 1fr; gap: 24px; }
	.page-home .info-desc-wrap {
		flex-direction: column;
		padding: 32px 24px; gap: 24px;
	}
	.page-home .info-icon-big { width: 72px; height: 72px; font-size: 34px; }
	.page-home .cta-card {
		flex-direction: column;
		text-align: center;
		padding: 36px 28px;
	}
	.page-home .footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
	.page-home .footer-brand { grid-column: span 2; }
	.page-home .clogin-section { padding: 60px 0; }
	.page-home .clogin-section-title h2 { font-size: 30px; }
	.page-home .cursor-glow { display: none; }
	.page-home .back-to-top {
		width: 44px; height: 44px;
		bottom: 20px; right: 20px;
	}
	.page-home .clogin-info { padding: 60px 0; }
}
@media (max-width: 576px) {
	.page-home .animate-gradient { font-size: 32px; }
	.page-home .subtitle { font-size: 15px; margin-bottom: 24px; }
	.page-home .clogin-banner {
		padding: 110px 0 50px;
	}
	.page-home .clogin-banner-buttons {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}
	.page-home .btn { justify-content: center; width: 100%; }
	.page-home .stat-row { justify-content: space-between; gap: 12px; }
	.page-home .stat-item { padding: 0; flex: 1; text-align: center; }
	.page-home .stat-num { font-size: 26px; }
	.page-home .stat-label { font-size: 12px; }
	.page-home .feature-card { padding: 28px 20px; }
	.page-home .feature-num { font-size: 48px; top: 12px; right: 16px; }
	.page-home .cta-card { padding: 28px 20px; }
	.page-home .cta-left h2 { font-size: 22px; }
	.page-home .footer-grid { grid-template-columns: 1fr; gap: 28px; }
	.page-home .footer-brand,
	.page-home .footer-links-col:last-child { grid-column: span 1; }
	.page-home .info-desc-wrap { padding: 24px 16px; }

	/* Visual card small screen */
	.page-home .visual-card-wrap { max-width: 340px; gap: 12px; }
	.page-home .visual-card-1 { max-width: 340px; }
	.page-home .vc-header {
		padding: 12px 16px;
	}
	.page-home .vc-dots span { width: 10px; height: 10px; }
	.page-home .vc-title { font-size: 12px; }
	.page-home .vc-body {
		padding: 16px 12px;
	}
	.page-home .vc-login-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 10px;
	}
	.page-home .vc-icon {
		width: 36px; height: 36px;
		font-size: 16px;
		border-radius: 10px;
	}
	.page-home .vc-login-item {
		gap: 4px;
	}
	.page-home .vc-login-item span {
		font-size: 10px;
	}

	/* Floating cards compact */
	.page-home .floating-card {
		padding: 10px 14px;
		gap: 8px;
		max-width: 340px;
	}
	.page-home .floating-card i {
		width: 30px; height: 30px;
		font-size: 13px;
	}
	.page-home .fc-title { font-size: 12px; }
	.page-home .fc-desc { font-size: 11px; }

	/* Feature card adjustments */
	.page-home .feature-icon-wrap {
		width: 60px; height: 60px;
		font-size: 26px;
		margin-bottom: 20px;
	}
	.page-home .feature-content h3 { font-size: 18px; }
	.page-home .feature-content p { font-size: 14px; }

	/* Section title */
	.page-home .clogin-section-title h2 { font-size: 26px; }
	.page-home .section-eyebrow { font-size: 11px; }

	/* Footer */
	.page-home .clogin-footer { padding: 50px 0 0; }
	.page-home .footer-desc { font-size: 13px; }

	/* Links section */
	.page-home .links-frame { height: 300px; }
	.page-home .links-content { padding: 16px; }
}

/* 减弱动画偏好 */
@media (prefers-reduced-motion: reduce) {
	.page-home *,
	.page-home *::before,
	.page-home *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
	.page-home .cursor-glow { display: none; }
}

/* ==========================================================================
   B.13 精细化打磨 - Refined Details
   ========================================================================== */

/* Logo 图标精致化 - 悬停旋转 + 光晕 */
.page-home .logo-icon {
	transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s ease;
}
.page-home .clogin-header.clogin-header-white .logo-icon {
	animation: logoIconPulse 4s ease-in-out infinite;
}
.page-home .logo-wrap:hover .logo-icon {
	transform: rotate(-8deg) scale(1.08);
}
.page-home .clogin-header.clogin-header-white .logo-wrap:hover .logo-icon {
	box-shadow: 0 6px 20px rgba(102,126,234,.5);
}
@keyframes logoIconPulse {
	0%,100% { box-shadow: 0 4px 12px rgba(102,126,234,.3); }
	50% { box-shadow: 0 4px 20px rgba(102,126,234,.5); }
}

/* 徽章添加跳动小圆点 */
.page-home .badge-float { gap: 10px; }
.page-home .badge-float::before {
	content: '';
	display: none;
}

/* 导航链接精致化 - active 状态小圆点 */
.page-home .nav-item.active .nav-link-inner::before {
	content: '';
	position: absolute;
	top: -2px; right: -10px;
	width: 6px; height: 6px;
	background: #ffd700;
	border-radius: 50%;
	box-shadow: 0 0 8px #ffd700;
	animation: navActiveDot 2s ease-in-out infinite;
}
@keyframes navActiveDot {
	0%,100% { opacity: 1; transform: scale(1); }
	50% { opacity: .5; transform: scale(.8); }
}

/* 标签 tag-item 精致化 - 添加左边色条 */
.page-home .tag-item {
	position: relative;
	overflow: hidden;
}
.page-home .tag-item::before {
	content: '';
	position: absolute;
	left: 0; top: 50%;
	transform: translateY(-50%);
	width: 3px; height: 60%;
	border-radius: 3px;
	background: currentColor;
	opacity: 0;
	transition: opacity .3s ease, height .3s ease;
}
.page-home .tag-item:hover::before {
	opacity: .4;
	height: 80%;
}
.page-home .tag-item:hover {
	padding-left: 22px;
}

/* About 区域图标精致化 - 浮动 + 光晕 */
.page-home .info-icon-big {
	animation: infoIconFloat 5s ease-in-out infinite;
}
.page-home .info-icon-big::after {
	content: '';
	position: absolute;
	inset: -4px;
	border: 2px solid rgba(102,126,234,.2);
	border-radius: inherit;
	animation: infoIconRing 3s ease-in-out infinite;
}
@keyframes infoIconFloat {
	0%,100% { transform: translateY(0) rotate(0); }
	50% { transform: translateY(-8px) rotate(3deg); }
}
@keyframes infoIconRing {
	0%,100% { transform: scale(1); opacity: .6; }
	50% { transform: scale(1.08); opacity: 0; }
}

/* About 描述文字精致化 - 首字下沉 */
.page-home .info-desc .highlight {
	position: relative;
	display: inline-block;
}
.page-home .info-desc .highlight::after {
	content: '';
	position: absolute;
	left: 0; bottom: 2px;
	width: 100%; height: 8px;
	background: linear-gradient(90deg, rgba(102,126,234,.25), rgba(118,75,162,.15));
	border-radius: 4px;
	z-index: -1;
}

/* 功能卡片图标精致化 - hover 时旋转弹跳 */
.page-home .feature-card:hover .feature-icon-wrap {
	transform: translateZ(40px) scale(1.05) rotate(-5deg);
}
.page-home .feature-icon-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(255,255,255,.3) 0%, transparent 50%);
	pointer-events: none;
}

/* 功能卡片标题精致化 - hover 渐变 */
.page-home .feature-content h3 {
	transition: background .3s ease, -webkit-background-clip .3s ease;
	background-image: linear-gradient(135deg, var(--text-dark), var(--text-dark));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.page-home .feature-card:hover .feature-content h3 {
	background-image: var(--gradient-1);
}

/* 功能卡片数字精致化 - 添加描边效果 */
.page-home .feature-num {
	-webkit-text-stroke: 1px transparent;
	transition: color .4s ease, -webkit-text-stroke .4s ease;
}
.page-home .feature-card:hover .feature-num {
	color: transparent;
	-webkit-text-stroke: 1px rgba(102,126,234,.15);
}

/* 页脚顶部渐变光线 */
.page-home .clogin-footer::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(102,126,234,.5), rgba(240,147,251,.5), transparent);
}
/* 页脚社交图标精致化 - 发光 */
.page-home .footer-socials a {
	position: relative;
	overflow: hidden;
}
.page-home .footer-socials a::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--gradient-1);
	border-radius: 50%;
	opacity: 0;
	transition: opacity .3s ease;
}
.page-home .footer-socials a:hover::before { opacity: 1; }
.page-home .footer-socials a i { position: relative; z-index: 1; }
.page-home .footer-socials a:hover {
	box-shadow: 0 8px 20px rgba(102,126,234,.4);
}

/* 页脚链接精致化 - hover 箭头 */
.page-home .footer-links-col a {
	display: inline-block;
	position: relative;
	padding-left: 0;
	transition: padding-left .3s ease, color .3s ease;
}
.page-home .footer-links-col a:hover { padding-left: 14px; }
.page-home .footer-links-col a::before {
	content: '\f105';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	left: 0; top: 50%;
	transform: translateY(-50%) translateX(-8px);
	opacity: 0;
	transition: all .3s ease;
	color: var(--primary);
}
.page-home .footer-links-col a:hover::before {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

/* 回到顶部按钮精致化 - 渐变背景 + 光环 */
.page-home .back-to-top {
	background: linear-gradient(135deg, #fff, #f8fafc);
	border: 1px solid rgba(102,126,234,.15);
}
.page-home .back-to-top::before {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 50%;
	background: var(--gradient-1);
	opacity: 0;
	z-index: -1;
	transition: opacity .3s ease;
	filter: blur(8px);
}
.page-home .back-to-top:hover::before { opacity: .5; }

/* Banner 按钮精致化 - 添加微光晕 */
.page-home .btn-primary-grad {
	box-shadow: 0 8px 30px rgba(255,255,255,.3), 0 0 0 0 rgba(255,255,255,.4);
	animation: btnGlowPulse 3s ease-in-out infinite;
}
@keyframes btnGlowPulse {
	0%,100% { box-shadow: 0 8px 30px rgba(255,255,255,.3), 0 0 0 0 rgba(255,255,255,0); }
	50% { box-shadow: 0 8px 30px rgba(255,255,255,.3), 0 0 0 12px rgba(255,255,255,0); }
}

/* 视觉卡片精致化 - 边框光晕 */
.page-home .visual-card-1 {
	border: 1px solid rgba(255,255,255,.6);
	box-shadow: 0 20px 60px rgba(102,126,234,.25), 0 0 0 1px rgba(255,255,255,.5);
}
.page-home .vc-login-item {
	transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.page-home .vc-login-item:hover {
	transform: translateY(-4px) scale(1.05);
}
.page-home .vc-login-item span {
	transition: opacity .3s ease;
}

/* 浮动卡片精致化 - 玻璃态增强 */
.page-home .floating-card {
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255,255,255,.8);
}

/* 平台小图标精致化 - hover 发光 */
.page-home .platform-icons-mini i {
	transition: all .3s cubic-bezier(.4,0,.2,1);
	cursor: default;
}
.page-home .platform-icons-mini i:hover {
	transform: translateY(-4px) scale(1.2);
	filter: drop-shadow(0 4px 8px rgba(102,126,234,.4));
}

/* 代码片段精致化 */
.page-home .code-mini {
	transition: transform .3s ease, box-shadow .3s ease;
}
.page-home .feature-card:hover .code-mini {
	transform: translateX(4px);
}

/* 迷你图表精致化 - hover 时柱子跳动 */
.page-home .chart-bar {
	transition: height .4s cubic-bezier(.4,0,.2,1), opacity .3s ease;
}
.page-home .feature-card:hover .chart-bar {
	animation: chartBarBounce .8s ease-in-out infinite;
}
.page-home .feature-card:hover .chart-bar:nth-child(1) { animation-delay: 0s; }
.page-home .feature-card:hover .chart-bar:nth-child(2) { animation-delay: .1s; }
.page-home .feature-card:hover .chart-bar:nth-child(3) { animation-delay: .2s; }
.page-home .feature-card:hover .chart-bar:nth-child(4) { animation-delay: .3s; }
.page-home .feature-card:hover .chart-bar:nth-child(5) { animation-delay: .4s; }
.page-home .feature-card:hover .chart-bar:nth-child(6) { animation-delay: .5s; }
.page-home .feature-card:hover .chart-bar:nth-child(7) { animation-delay: .6s; }
@keyframes chartBarBounce {
	0%,100% { transform: scaleY(1); }
	50% { transform: scaleY(1.15); }
}

/* 勾选列表精致化 - hover 时图标弹跳 */
.page-home .feature-check-list li {
	transition: padding-left .3s ease, color .3s ease;
}
.page-home .feature-check-list li:hover {
	padding-left: 6px;
	color: var(--text-dark);
}
.page-home .feature-check-list li:hover i {
	animation: checkIconBounce .4s ease;
}
@keyframes checkIconBounce {
	0%,100% { transform: scale(1); }
	50% { transform: scale(1.3); }
}

/* 章节间距统一调校 */
.page-home .clogin-section { padding: 110px 0; }
.page-home .clogin-info { padding: 100px 0; }

/* 容器最大宽度精致化 */
.page-home .container {
	max-width: 1200px;
}

/* 文字选中颜色 */
.page-home ::selection {
	background: rgba(102, 126, 234, 0.25);
	color: var(--text-dark);
}

/* 滚动条精致化 */
.page-home::-webkit-scrollbar { width: 10px; }
.page-home::-webkit-scrollbar-track { background: var(--bg-light); }
.page-home::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--primary), var(--primary-2));
	border-radius: 5px;
	border: 2px solid var(--bg-light);
}
.page-home::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, var(--primary-2), var(--accent));
}
