
        /* 自定义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);
        }

        /* 流程步骤卡片 */
        .process-step {
            position: relative;
            padding: 30px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            height: 100%;
            transition: transform 0.3s ease;
        }
        .process-step:hover {
            transform: translateY(-5px);
        }
        .process-step::before {
            content: attr(data-step);
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 30px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            border: 3px solid white;
        }

        /* 标准卡片样式 */
        .standard-card {
            border-left: 4px solid var(--quality-color);
            background: white;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            height: 100%;
        }

        /* 检查图标样式 */
        .inspection-icon {
            font-size: 2.5rem;
            color: var(--quality-color);
            margin-bottom: 15px;
        }

        /* 认证图标样式（新增） */
        .certification-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }
        .certification-icon:hover {
            opacity: 1;
        }

        /* 质量指标数字样式 */
        .quality-metric {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
        }

        /* 时间轴（流程进度条）样式 */
        .timeline {
            position: relative;
            margin: 50px 0;
        }
        .timeline::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background-color: #e9ecef;
            transform: translateX(-50%);
        }
        .timeline-item {
            margin-bottom: 40px;
            position: relative;
        }
        .timeline-item:last-child {
            margin-bottom: 0;
        }
        .timeline-item:nth-child(odd) .timeline-content {
            text-align: right;
            padding-right: 50px;
        }
        .timeline-item:nth-child(even) .timeline-content {
            text-align: left;
            padding-left: 50px;
        }
        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 0;
            width: 20px;
            height: 20px;
            background-color: var(--primary-color);
            border-radius: 50%;
            transform: translateX(-50%);
            border: 4px solid white;
            box-shadow: 0 0 0 4px #e9ecef;
        }

        /* 响应式样式 - 大屏（992px以下） */
        @media (max-width: 992px) {
            .section-title {
                font-size: 1.8rem;
            }
            .quality-metric {
                font-size: 2rem;
            }
            .timeline::before {
                left: 20px;
            }
            .timeline-dot {
                left: 20px;
            }
            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                text-align: left;
                padding-left: 50px;
                padding-right: 0;
            }
            .certification-icon {
                font-size: 2.5rem;
            }
        }

        /* 响应式样式 - 中屏（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;
            }
            .inspection-icon {
                font-size: 2rem;
            }
            .certification-icon {
                font-size: 2.2rem;
            }
        }

        /* 响应式样式 - 小屏（576px以下） */
        @media (max-width: 576px) {
            .section-title {
                font-size: 1.5rem;
                margin-bottom: 30px;
            }
            .quality-metric {
                font-size: 1.8rem;
            }
            .process-step {
                padding: 20px;
            }
            .certification-icon {
                font-size: 2rem;
            }
        }
    