
        /* 全站统一品牌配色 */
        :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;     /* 边框色（浅奶咖） */
            --max-width: 1200px;         /* 内容最大宽度 */
        }

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

        body {
            background-color: var(--bg-main); /* 全局奶白底色 */
            color: var(--text-main);
            font-size: 16px;
            line-height: 1.7;
            padding: 40px 20px;
        }

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

        /* 标题样式 - 全大写+深绿主色 */
        h1, h2, h3 {
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        h1 {
            font-size: 32px;
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
        }
        h2 {
            font-size: 24px;
            margin-top: 40px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        /* 流程序号装饰（深绿底+金色字） */
        h2::before {
            content: attr(data-step);
            display: inline-block;
            width: 36px;
            height: 36px;
            line-height: 36px;
            text-align: center;
            background: var(--primary-color);
            color: var(--accent-color);
            border-radius: 50%;
            font-size: 18px;
        }

        p, ul, ol {
            margin-bottom: 20px;
            color: var(--text-secondary);
        }

        ul, ol {
            padding-left: 25px;
        }
        li {
            margin-bottom: 10px;
        }

        /* 导航目录 - 奶白卡片+深绿文字 */
        .toc-wrapper {
            background: var(--bg-card);
            padding: 25px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            margin-bottom: 50px;
        }
        .toc-title {
            font-size: 18px;
            text-transform: uppercase;
            margin-bottom: 15px;
            font-weight: 600;
            color: var(--primary-color);
        }
        .toc-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .toc-links a {
            color: var(--primary-color);
            text-decoration: none;
            border-bottom: 1.5px solid var(--accent-color);
            padding-bottom: 2px;
            font-size: 15px;
        }
        .toc-links a:hover {
            opacity: 0.8;
        }

        /* 流程板块 - 白色卡片+浅边框 */
        .process-section {
            background: var(--bg-card);
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
        }

        /* 全站统一按钮样式（金色按钮） */
        .btn {
            display: inline-block;
            background: var(--accent-color);
            color: #FFFFFF !important;
            padding: 12px 24px;
            text-decoration: none;
            border-radius: 4px;
            font-size: 14px;
            text-transform: uppercase;
            font-weight: 500;
            cursor: pointer;
            border: none;
            transition: background 0.3s ease;
        }
        .btn:hover {
            background: var(--accent-hover);
        }

        /* 返回顶部样式 */
        .back-to-top {
            text-align: right;
            margin-top: 30px;
        }
        .back-to-top a {
            color: var(--primary-color);
            text-decoration: none;
            border-bottom: 1.5px solid var(--accent-color);
            padding-bottom: 2px;
            text-transform: uppercase;
            font-size: 14px;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            body {
                padding: 20px 15px;
            }
            h1 {
                font-size: 26px;
            }
            h2 {
                font-size: 20px;
            }
            .toc-links {
                flex-direction: column;
                gap: 10px;
            }
            .process-section {
                padding: 20px;
            }
        }
    