
        /* 全站统一品牌配色 */
        :root {
            --primary-color: #0F2A1D;    /* 主色：深绿 */
            --accent-color: #C8A24A;     /* 强调色：按钮金 */
            --accent-hover: #B59038;     /* 按钮hover金 */
            --bg-main: #FFFBF5;          /* 页面奶白底色 */
            --bg-card: #FFFFFF;          /* 卡片白色背景 */
            --text-main: #0F2A1D;        /* 主文字色（深绿） */
            --text-secondary: #55665C;   /* 次要文字色（浅绿灰） */
            --border-color: #E8E3D8;     /* 边框色（浅奶咖） */
            --shadow-sm: 0 2px 8px rgba(15, 42, 29, 0.05); /* 轻阴影 */
            --content-max-width: 1200px; /* 内容区最大宽度 */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        }

        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-size: 18px;
            line-height: 1.8;
            padding: 80px 20px;
        }

        .content-wrapper {
            max-width: var(--content-max-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 页面标题 - 极简高级 */
        .page-title {
            font-size: 48px;
            font-weight: 700;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
            margin-bottom: 60px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--border-color);
            position: relative;
        }
        .page-title::after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: var(--accent-color);
        }

        /* 目录导航 - 极简悬浮式 */
        .toc-wrapper {
            margin-bottom: 80px;
            text-align: center;
        }
        nav.toc {
            display: inline-block;
            background: var(--bg-card);
            padding: 16px 40px;
            border-radius: 100px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
        }
        nav.toc a {
            margin: 0 24px;
            font-size: 18px;
            font-weight: 500;
            color: var(--text-main);
            text-decoration: none;
            position: relative;
            padding: 8px 0;
        }
        nav.toc a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }
        nav.toc a:hover::after {
            width: 100%;
        }

        /* 板块容器 - 模块化分区 */
        .section-container {
            background: var(--bg-card);
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            padding: 60px 70px;
            margin-bottom: 60px;
            border: 1px solid var(--border-color);
        }

        /* 标题层级 - 精致化设计 */
        h2 {
            font-size: 32px;
            font-weight: 600;
            color: var(--primary-color);
            text-transform: uppercase;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 16px;
        }
        h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--accent-color);
        }
        h3 {
            font-size: 22px;
            font-weight: 500;
            color: var(--primary-color);
            margin: 40px 0 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h3::before {
            content: "";
            display: inline-block;
            width: 4px;
            height: 20px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        /* 文本样式 - 层级分明 */
        p {
            color: var(--text-secondary);
            margin-bottom: 24px;
            font-size: 18px;
            line-height: 1.8;
        }
        strong {
            color: var(--primary-color);
            font-weight: 600;
        }
        em {
            color: var(--accent-color);
            font-style: italic;
        }

        /* 列表样式 - 修正序号逻辑，保证规整 */
        .list-wrapper {
            margin-left: 20px;
            margin-bottom: 32px;
        }
        /* 一级有序列表 - 规整序号 */
        .ol-level-1 {
            list-style: decimal;
            color: var(--text-secondary);
            margin-left: 20px;
            margin-bottom: 16px;
        }
        .ol-level-1 > li {
            margin-bottom: 20px;
            padding-left: 10px;
        }
        /* 二级无序列表 - 规整圆点 */
        .ul-level-2 {
            list-style: disc;
            color: var(--text-secondary);
            margin-left: 40px;
            margin-top: 10px;
            margin-bottom: 0;
        }
        .ul-level-2 > li {
            margin-bottom: 10px;
            padding-left: 10px;
        }
        /* 普通无序列表 */
        .ul-normal {
            list-style: disc;
            color: var(--text-secondary);
            margin-left: 20px;
            margin-bottom: 32px;
        }
        .ul-normal > li {
            margin-bottom: 16px;
            padding-left: 10px;
        }

        /* 按钮样式 - 轻奢质感 */
        .btn {
            display: inline-block;
            background: var(--accent-color);
            color: white !important;
            font-size: 16px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 16px 36px;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            margin-top: 20px;
            box-shadow: 0 4px 8px rgba(200, 162, 74, 0.15);
        }
        .btn:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(200, 162, 74, 0.2);
        }

        /* 链接样式 */
        a[href^="mailto"] {
            color: var(--accent-color);
            text-decoration: none;
            position: relative;
        }
        a[href^="mailto"]::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--accent-color);
            transition: height 0.2s ease;
        }
        a[href^="mailto"]:hover::after {
            height: 2px;
        }

        /* 返回顶部 - 极简设计 */
        .back-to-top {
            text-align: center;
            margin: 40px 0;
        }
        .back-to-top a {
            color: var(--text-main);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            position: relative;
            padding: 8px 0;
        }
        .back-to-top a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }
        .back-to-top a:hover::after {
            width: 100%;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            body {
                padding: 40px 15px;
                font-size: 16px;
            }
            .page-title {
                font-size: 32px;
                margin-bottom: 40px;
            }
            nav.toc {
                padding: 12px 20px;
                width: 100%;
            }
            nav.toc a {
                display: block;
                margin: 8px 0;
            }
            .section-container {
                padding: 30px 20px;
                margin-bottom: 40px;
            }
            h2 {
                font-size: 26px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
            }
            .ol-level-1 {
                margin-left: 10px;
            }
            .ul-level-2 {
                margin-left: 20px;
            }
            .ul-normal {
                margin-left: 10px;
            }
            .btn {
                width: 100%;
                text-align: center;
                padding: 14px 0;
            }
        }
    