  /* ===== 页面标题 ===== */
        .page-header {
            padding: 150px 0 80px;
            background: linear-gradient(135deg, #e0f2fe 0%, #f0fdf4 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 300px;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 200" fill="%2310b981" opacity="0.05"><path d="M50,10 C60,10 70,30 70,60 C70,90 60,110 50,110 C40,110 30,90 30,60 C30,30 40,10 50,10 Z M45,110 L45,190 L55,190 L55,110 Z"/></svg>');
            background-repeat: no-repeat;
            background-position: left bottom;
            background-size: 300px 100%;
            z-index: 0;
        }
        
        .page-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 300px;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 200" fill="%232563eb" opacity="0.05"><path d="M50,10 C60,10 70,30 70,60 C70,90 60,110 50,110 C40,110 30,90 30,60 C30,30 40,10 50,10 Z M45,110 L45,190 L55,190 L55,110 Z"/></svg>');
            background-repeat: no-repeat;
            background-position: right bottom;
            background-size: 300px 100%;
            z-index: 0;
        }
        
        .page-title {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--dark-color);
            position: relative;
            z-index: 1;
        }
        
        .page-subtitle {
            font-size: 1.3rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        /* ===== 关于我们内容 ===== */
        .about-content {
            padding: 80px 0;
            background: white;
        }
        
        .about-section {
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .about-section.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .about-intro {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            padding-right: 30px;
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--dark-color);
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: var(--text-light);
        }
        
        .highlight {
            background: rgba(16, 185, 129, 0.05);
            padding: 20px;
            border-left: 4px solid var(--secondary-color);
            margin: 30px 0;
            font-weight: 500;
            border-radius: 0 10px 10px 0;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
            position: relative;
        }
        
        .about-image img {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        .about-image:hover img {
            transform: scale(1.02);
        }
        
        /* ===== 使命愿景板块 ===== */
        .mission-vision {
            background: var(--light-color);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .mission-vision::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 300px;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 200" fill="%2310b981" opacity="0.05"><path d="M50,10 C60,10 70,30 70,60 C70,90 60,110 50,110 C40,110 30,90 30,60 C30,30 40,10 50,10 Z M45,110 L45,190 L55,190 L55,110 Z"/></svg>');
            background-repeat: no-repeat;
            background-position: left bottom;
            background-size: 300px 100%;
            z-index: 0;
        }
        
        .mission-vision::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 300px;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 200" fill="%232563eb" opacity="0.05"><path d="M50,10 C60,10 70,30 70,60 C70,90 60,110 50,110 C40,110 30,90 30,60 C30,30 40,10 50,10 Z M45,110 L45,190 L55,190 L55,110 Z"/></svg>');
            background-repeat: no-repeat;
            background-position: right bottom;
            background-size: 300px 100%;
            z-index: 0;
        }
        
        .mission-vision-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .mission-card, .vision-card {
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            text-align: center;
        }
        
        .mission-card:hover, .vision-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .mission-icon, .vision-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 25px;
            animation: iconPulse 3s ease-in-out infinite;
        }
        
        @keyframes iconPulse {
            0% { 
                transform: scale(1); 
                box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
            }
            50% { 
                transform: scale(1.05); 
                box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
            }
            100% { 
                transform: scale(1); 
                box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
            }
        }
        
        .mission-card h3, .vision-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark-color);
        }
        
        .mission-card p, .vision-card p {
            color: var(--text-light);
            font-size: 1.1rem;
        }
        
        /* ===== 合作伙伴板块 ===== */
        .partners {
            padding: 80px 0;
            background: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .partner-card {
            background: var(--light-color);
            border-radius: 12px;
            padding: 30px 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
        }
        
        .partner-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .partner-card img {
            max-width: 100%;
            max-height: 60px;
            filter: grayscale(100%);
            transition: var(--transition);
        }
        
        .partner-card:hover img {
            filter: grayscale(0%);
        }
        
        /* ===== 独享部分响应式调整 ===== */
        @media (max-width: 992px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .page-subtitle {
                font-size: 1.1rem;
            }
            
            .about-text, .about-image {
                padding: 0;
                margin-bottom: 30px;
            }
            
            .about-text h2 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            /* 移动端隐藏背景图案 */
            .page-header::before,
            .page-header::after,
            .mission-vision::before,
            .mission-vision::after {
                display: none;
            }
        }