 /* About Hero Section */
        .about-hero {
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
 
        }
        .about-hero-content {
            max-width: 800px;
            padding: 0 24px;
        }
        .about-hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 16px;
            text-shadow: 0 2px 15px rgba(0,0,0,0.3);
        }
        .about-hero-breadcrumb {
            display: flex;
            justify-content: center;
            gap: 8px;
            font-size: 16px;
            opacity: 0.9;
        }
        .about-hero-breadcrumb a {
            color: #ffd966;
            text-decoration: none;
        }
        .about-hero-breadcrumb a:hover {
            text-decoration: underline;
        }

        /* About Main Content */
        .about-main {
            padding: 40px 0;
        }

        /* About Intro Section */
        .about-intro {
            display: flex;
            gap: 48px;
            align-items: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .about-intro-content {
            flex: 1;
            min-width: 320px;
        }
        .about-title-block {
            background: #000000;
            display: flex;
            flex-wrap: nowrap;
            margin-bottom: 24px;
            width: fit-content;
        }


        .about-intro-content p {
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 16px;
        }
        .about-intro-content p strong {
            color: #e31e24;
            font-weight: 600;
        }

        /* Company Values */
        .company-values {
            background: #f8fafc;
            padding: 60px 0;
            margin-bottom: 40px;
            border-radius: 8px;
        }
        .values-title {
            text-align: center;
            margin-bottom: 48px;
        }
        .values-title h2 {
            font-size: 32px;
            color: #1f2937;
            margin-bottom: 12px;
        }
        .values-title p {
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }
        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }
        .value-card {
            background: white;
            padding: 32px 24px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 8px 24px rgba(0,0,0,0.04);
            transition: all 0.3s;
        }
        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px rgba(0,0,0,0.1);
        }
        .value-icon {
            font-size: 48px;
            color: #e31e24;
            margin-bottom: 20px;
        }
        .value-card h3 {
            font-size: 20px;
            color: #1f2937;
            margin-bottom: 16px;
            font-weight: 600;
        }
        .value-card p {
            color: #64748b;
            line-height: 1.6;
        }

        /* Contact CTA */
        .contact-cta {
            background: #e31e24;
            color: white;
            padding: 60px 0;
            text-align: center;
            border-radius: 8px;
        }
        .contact-cta h2 {
            font-size: 32px;
            margin-bottom: 16px;
        }
        .contact-cta p {
            font-size: 18px;
            margin-bottom: 24px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }
        .cta-btn {
            display: inline-block;
            padding: 12px 32px;
            background: white;
            color: #e31e24;
            font-weight: 600;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.2s;
        }
        .cta-btn:hover {
            background: #ffd966;
            transform: translateY(-2px);
        }
		
		
		



        /* 媒体查询：手机端（768px以下） */
        @media (max-width: 767.98px) {
            /* 1. 适配h1标题 */
            .about-hero-content h1.saf-fadeInUp.visible {
                font-size: 24px; /* 移动端字号缩小 */
                text-align: center; /* 居中对齐 */
                padding: 0 10px; /* 左右内边距 */
                line-height: 1.4; /* 行高优化 */
            }

       .about-main {
         padding: 20px 0;
        }

            /* 4. 适配核心价值观板块 */
            section.company-values.saf-fadeInUp.visible {
                padding: 20px 0; /* 上下内边距 */
            }
            .values-title {
                text-align: center; /* 标题居中 */
                margin-bottom: 25px;
            }
            .values-title h2 {
                font-size: 22px;
                margin-bottom: 8px;
            }
            .values-title p {
                font-size: 14px;
                color: #666;
            }
            /* 价值观卡片：移动端改为单列布局 */
            .values-grid {
                display: flex;
                flex-direction: column; /* 垂直排列 */
                gap: 20px; /* 卡片间距 */
            }
            .value-card {
                padding: 15px;
                border-radius: 8px;
                box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* 轻微阴影提升质感 */
            }
            .value-icon {
                font-size: 28px; /* 图标大小 */
                margin-bottom: 10px;
                color: #CC2936; /* 品牌色 */
            }
            .value-card h3 {
                font-size: 18px;
                margin-bottom: 8px;
            }
            .value-card p {
                font-size: 14px;
                line-height: 1.5;
                color: #333;
            }

            /* 补充：about-intro整体布局（移动端上下排列） */
            .about-intro {
                display: flex;
                flex-direction: column;
                padding: 20px 0;
            }
            .about-intro-content {
                padding: 0 10px;
            }
            .about-intro-content p {
                font-size: 14px;
                line-height: 1.6;
                margin-bottom: 10px;
            }
        }

        /* 桌面端样式（可选，保持原有布局） */
        @media (min-width: 768px) {
            .about-intro {
                display: flex;
                gap: 30px;
                align-items: center;
            }
    
            .about-intro-content {
                flex: 1;
            }
            .values-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
            }
        }
