:root {
            --primary: #16a34a;
            --accent: #84cc16;
            --bg: #f7fee7;
            --text: #1a2e05;
            --shadow-heavy: 6px 8px 0 rgba(22, 163, 74, 0.2), 12px 16px 20px rgba(0,0,0,0.1);
            --shadow-card: 5px 6px 0 rgba(132, 204, 22, 0.3), 8px 10px 15px rgba(0,0,0,0.08);
            --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
        }
        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        /* 滚动进度条 */
        #scroll-progress {
            position: fixed; top: 0; left: 0; height: 4px; width: 0%;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            z-index: 9999; border-radius: 0 4px 4px 0;
            box-shadow: 0 2px 6px rgba(22,163,74,0.5);
        }
        /* 拟物厚重风格，投影+渐变高光 */
        .heavy-card {
            background: #ffffff;
            border: 2px solid var(--text);
            border-radius: 20px;
            box-shadow: var(--shadow-heavy);
            transition: all 0.2s ease;
        }
        .heavy-card:hover {
            transform: translate(-2px, -3px);
            box-shadow: 8px 12px 0 rgba(22,163,74,0.25), 16px 20px 25px rgba(0,0,0,0.12);
        }
        .btn-glossy {
            position: relative; overflow: hidden;
            background: var(--primary); border: 2px solid var(--text);
            color: white; font-weight: 700; padding: 10px 22px; border-radius: 40px;
            box-shadow: 0 5px 0 #0f3d24, 0 8px 15px rgba(0,0,0,0.15);
            transition: 0.1s linear;
        }
        .btn-glossy::after {
            content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
            transform: skewX(-25deg); transition: 0.5s;
        }
        .btn-glossy:hover {
            background: var(--accent); border-color: var(--text); color: #1a2e05;
            box-shadow: 0 3px 0 #3f6212, 0 8px 15px rgba(0,0,0,0.1);
        }
        .btn-glossy:hover::after { left: 120%; }
        .typewriter h1 {
            display: inline-block;
            font-weight: 900; font-size: 3.2rem; letter-spacing: -0.02em;
            border-right: 0.1em solid var(--primary); 
            animation: blink-caret 0.75s step-end infinite;
        }
        @keyframes blink-caret { 50% { border-color: transparent; } }
        .step-number {
            font-family: var(--font-mono); font-size: 1.2rem; font-weight: 700;
            background: var(--primary); color: white; width: 30px; height: 30px;
            display: inline-flex; align-items: center; justify-content: center;
            border-radius: 8px; border: 2px solid var(--text); box-shadow: 2px 2px 0 #0f3d24;
        }
        .table-bento {
            background: white; border: 2px solid var(--text); border-radius: 18px;
            box-shadow: var(--shadow-card); overflow: hidden;
        }
        .table-bento table { margin-bottom: 0; }
        .table-bento th, .table-bento td { padding: 0.8rem 1rem; border-bottom: 1px solid #d1e4b0; }
        .table-bento th { background: var(--primary); color: white; font-weight: 600; }
        .table-bento tr:last-child td { border-bottom: none; }
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
        }
        .bento-grid .span-2 { grid-column: span 2; }
        .bento-grid .span-3 { grid-column: span 3; }
        .bento-grid .span-4 { grid-column: span 4; }
        .bento-grid .row-span-2 { grid-row: span 2; }
        @media (max-width: 992px) {
            .bento-grid { grid-template-columns: repeat(2, 1fr); }
            .bento-grid .span-3, .span-4 { grid-column: span 2; }
        }
        @media (max-width: 576px) {
            .bento-grid { grid-template-columns: 1fr; }
            .bento-grid .span-2, .span-3, .span-4 { grid-column: span 1; }
        }
        /* 滚动淡入 */
        .fade-up {
            opacity: 0; transform: translateY(25px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-up.visible { opacity: 1; transform: translateY(0); }
        .navbar-brand {
            font-weight: 900; font-size: 1.8rem; 
            display: flex; align-items: center;
        }
        .navbar { background: #f7fee7; border-bottom: 3px solid var(--text); box-shadow: 0 3px 0 var(--primary); }
        .nav-link { font-weight: 600; color: var(--text); margin-right: 1rem; }
        .nav-link:hover { color: var(--primary); }
        .mono-data { font-family: var(--font-mono); background: #e0f2b0; padding: 0.1rem 0.4rem; border-radius: 6px; }
        footer { border-top: 3px solid var(--text); background: #ffffff; }
        .friend-links a { margin-right: 20px; font-weight: 600; color: var(--primary); }
        .faq-item { border-bottom: 1px solid #bbda7a; padding: 0.8rem 0; }
        .faq-question { font-weight: 700; cursor: pointer; }
        .faq-answer { margin-top: 6px; color: #2c4a1e; }

/* --- 子页面追加 --- */
/* 本页专属补充样式(不影响站点全局) */
        .about-hero {
            padding: 80px 0 40px;
        }
.about-section {
            margin-bottom: 50px;
        }
.stat-card {
            background: var(--bg);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: transform 0.2s;
        }
.stat-card:hover {
            transform: translateY(-3px);
        }
.stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary);
            font-family: var(--font-mono);
        }
.stat-label {
            color: var(--text);
            font-weight: 600;
            margin-top: 5px;
        }
.timeline-item {
            border-left: 3px solid var(--accent);
            padding-left: 20px;
            margin-bottom: 30px;
            position: relative;
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 5px;
            width: 13px;
            height: 13px;
            background: var(--primary);
            border-radius: 50%;
            border: 2px solid var(--accent);
        }
.timeline-date {
            font-family: var(--font-mono);
            color: var(--primary);
            font-weight: 700;
            font-size: 0.9rem;
        }
.value-item {
            background: var(--bg);
            border: 2px solid var(--accent);
            border-radius: 10px;
            padding: 20px;
            height: 100%;
            transition: box-shadow 0.2s;
        }
.value-item:hover {
            box-shadow: var(--shadow-card);
        }
.value-item i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 12px;
        }
.value-item h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
.value-item p {
            font-size: 0.9rem;
            color: var(--text);
            opacity: 0.85;
            margin-bottom: 0;
        }
.about-list {
            padding-left: 0;
            list-style: none;
        }
.about-list li {
            padding: 8px 0;
            padding-left: 28px;
            position: relative;
            border-bottom: 1px dashed rgba(22, 163, 74, 0.15);
        }
.about-list li:last-child {
            border-bottom: none;
        }
.about-list li::before {
            content: '▹';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
        }

/* --- 子页面追加 --- */
/* 本页专属微调 */
        .article-hero {
            background: var(--bg);
            border-bottom: 4px solid var(--primary);
            padding: 4rem 0 2.5rem;
            position: relative;
        }
.article-hero::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 4px;
            background: repeating-linear-gradient(90deg, var(--accent) 0 20px, transparent 20px 40px);
        }
.article-meta {
            font-family: var(--font-mono);
            font-size: 0.85rem;
            color: var(--text);
            opacity: 0.7;
            letter-spacing: 0.02em;
        }
.article-body {
            font-size: 1.05rem;
            line-height: 1.9;
            color: var(--text);
        }
.article-body p {
            margin-bottom: 1.5rem;
        }
.article-body h2 {
            font-weight: 800;
            font-size: 1.6rem;
            margin: 2.5rem 0 1rem;
            padding-left: 0.75rem;
            border-left: 5px solid var(--primary);
        }
.article-body h3 {
            font-weight: 700;
            font-size: 1.25rem;
            margin: 2rem 0 0.75rem;
            color: var(--primary);
        }
.highlight-box {
            background: rgba(132, 204, 22, 0.08);
            border: 2px dashed var(--accent);
            border-radius: 12px;
            padding: 1.5rem 1.75rem;
            margin: 2rem 0;
            font-family: var(--font-mono);
            font-size: 0.95rem;
        }
.data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
.data-table th {
            background: var(--primary);
            color: #fff;
            padding: 0.75rem 1rem;
            text-align: left;
            font-weight: 600;
        }
.data-table td {
            padding: 0.75rem 1rem;
            border-bottom: 1px solid rgba(22, 163, 74, 0.2);
        }
.data-table tr:nth-child(even) {
            background: rgba(132, 204, 22, 0.06);
        }
.quote-block {
            border-left: 4px solid var(--primary);
            background: rgba(22, 163, 74, 0.05);
            padding: 1.25rem 1.5rem;
            margin: 1.5rem 0;
            font-style: italic;
            border-radius: 0 8px 8px 0;
        }
.tag-pill {
            display: inline-block;
            background: var(--accent);
            color: var(--text);
            font-family: var(--font-mono);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
            letter-spacing: 0.03em;
        }
.tag-pill i {
            margin-right: 0.3rem;
        }
.related-card {
            background: #fff;
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            height: 100%;
        }
.related-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card);
        }
.related-card h5 {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.75rem;
            font-size: 1rem;
        }
.related-card p {
            font-size: 0.9rem;
            color: var(--text);
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }
.related-card .read-more {
            font-family: var(--font-mono);
            font-size: 0.8rem;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
        }
.related-card .read-more:hover {
            text-decoration: underline;
        }
.breadcrumb-custom {
            font-family: var(--font-mono);
            font-size: 0.8rem;
            color: var(--text);
            opacity: 0.6;
            margin-bottom: 1.5rem;
        }
.breadcrumb-custom a {
            color: var(--primary);
            text-decoration: none;
        }
.breadcrumb-custom a:hover {
            text-decoration: underline;
        }
.breadcrumb-custom i {
            margin: 0 0.5rem;
            font-size: 0.6rem;
        }
.article-nav {
            display: flex;
            justify-content: space-between;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 2px solid rgba(22, 163, 74, 0.2);
        }
.article-nav a {
            font-family: var(--font-mono);
            font-size: 0.85rem;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            max-width: 45%;
        }
.article-nav a:hover {
            text-decoration: underline;
        }
.article-nav a i {
            font-size: 0.7rem;
        }
.article-nav .next {
            text-align: right;
        }

/* --- 子页面追加 --- */
/* 本页专属样式 - 免责声明页面 */
        .disclaimer-hero {
            background: linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(132, 204, 22, 0.08) 100%);
            border-bottom: 3px solid var(--primary);
            padding: 60px 0 40px;
        }
.disclaimer-section {
            padding: 50px 0;
            border-bottom: 1px dashed rgba(22, 163, 74, 0.2);
        }
.disclaimer-section:last-of-type {
            border-bottom: none;
        }
.disclaimer-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
.disclaimer-list {
            padding-left: 0;
            list-style: none;
        }
.disclaimer-list li {
            padding: 10px 0 10px 30px;
            position: relative;
            color: var(--text);
            line-height: 1.8;
        }
.disclaimer-list li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary);
        }
.notice-box {
            background: rgba(132, 204, 22, 0.1);
            border-left: 4px solid var(--accent);
            padding: 20px 25px;
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
        }
.notice-box p {
            margin: 0;
            color: var(--text);
        }
.last-updated {
            font-family: var(--font-mono);
            font-size: 0.85rem;
            color: var(--primary);
            margin-top: 20px;
        }

/* --- 子页面追加 --- */
/* 本页专属微量增强, 保持与站点整体风格一致 */
        .guideline-hero {
            background: linear-gradient(145deg, var(--bg) 0%, #f0fcd8 100%);
            border: 2px solid var(--primary);
            box-shadow: var(--shadow-heavy);
        }
.table-bento td, .table-bento th {
            border-bottom: 1px dashed rgba(22,163,74,0.2);
        }
from { opacity: 0; transform: translateY(12px); }
/* 导航栏保证与首页一致 */
        .navbar {
            background: var(--bg) !important;
            border-bottom: 2px solid var(--primary);
        }
.nav-link.active {
            border-bottom-color: var(--primary);
            color: var(--primary) !important;
            font-weight: 700;
        }
.navbar-toggler {
            border-color: var(--primary);
        }
.navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(22, 163, 74, 0.9)' stroke-width='2' linecap='round' linejoin='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.table { color:#1a2e05 !important; border-color:rgba(0,0,0,.12) !important; --bs-table-bg:transparent !important; --bs-table-color:#1a2e05 !important; }
