
        /* 自定义CSS变量 - 统一管理主题色 */
        :root {
            --primary-color: #0d6efd;       /* 主色调（蓝色） */
            --secondary-color: #198754;     /* 辅助色（绿色） */
            --dark-color: #212529;          /* 深色 */
            --light-color: #f8f9fa;         /* 浅色 */
            --quality-color: #dc3545;       /* 品质主题色（红色） */
        }

        /* 基础样式 */
        body {
            font-family: Arial, Helvetica, sans-serif;
            line-height: 1.6;
        }

        /* 章节标题样式 */
        .section-title {
            position: relative;
            margin-bottom: 40px;
            padding-bottom: 20px;
        }
        .section-title::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }

        /* 响应式样式 - 大屏（992px以下） */
        @media (max-width: 992px) {
            .section-title {
                font-size: 1.8rem;
            }
        }

        /* 响应式样式 - 中屏（768px以下） */
        @media (max-width: 768px) {
            .py-10 {
                padding-top: 3rem !important;
                padding-bottom: 3rem !important;
            }
            .py-md-15 {
                padding-top: 4rem !important;
                padding-bottom: 4rem !important;
            }
        }

        /* 响应式样式 - 小屏（576px以下） */
        @media (max-width: 576px) {
            .section-title {
                font-size: 1.5rem;
                margin-bottom: 30px;
            }
        }
    