
        /* ===== 关于我们页面独享CSS部分 ===== */
        .about-page {
            margin-top: 100px;
            min-height: calc(100vh - 400px);
        }
        
        .page-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            animation: textGlow 3s infinite alternate;
        }
        
        @keyframes textGlow {
            0% { text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); }
            100% { text-shadow: 2px 2px 20px rgba(212, 175, 55, 0.7); }
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* 公司简介板块 */
        .company-intro {
            padding: 80px 0;
        }
        
        .intro-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .intro-text {
            flex: 1;
        }
        
        .intro-text h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .intro-text h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--secondary-color);
        }
        
        .intro-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        .intro-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: imageFloat 5s infinite ease-in-out;
        }
        
        @keyframes imageFloat {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        .intro-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* 数据统计板块 */
        .stats-section {
            background: #f8f9fa;
            padding: 80px 0;
        }
        
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        
        .stat-card {
            background: white;
            border-radius: 8px;
            padding: 40px 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .stat-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .stat-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            animation: iconFloat 3s infinite ease-in-out;
        }
        
        @keyframes iconFloat {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            display: block;
            margin-bottom: 10px;
            animation: numberPulse 2s infinite;
        }
        
        @keyframes numberPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .stat-text {
            font-size: 1.1rem;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        /* 核心优势板块 */
        .advantages-section {
            padding: 80px 0;
        }
        
        .advantages-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .advantage-card {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
        }
        
        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: left 0.5s;
        }
        
        .advantage-card:hover::before {
            left: 100%;
        }
        
        .advantage-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .advantage-icon {
            width: 70px;
            height: 70px;
            margin-bottom: 20px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
        }
        
        .advantage-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .advantage-card p {
            color: var(--gray-color);
            line-height: 1.6;
        }
        
        /* 服务流程板块 */
        .process-section {
            background: #f8f9fa;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .process-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--secondary-color);
            z-index: 1;
            animation: lineFlow 3s infinite linear;
        }
        
        @keyframes lineFlow {
            0% { background: linear-gradient(90deg, var(--secondary-color) 0%, transparent 100%); }
            50% { background: linear-gradient(90deg, transparent 0%, var(--secondary-color) 50%, transparent 100%); }
            100% { background: linear-gradient(90deg, transparent 0%, var(--secondary-color) 100%); }
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .process-step.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1.8rem;
            border: 2px solid var(--secondary-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            animation: stepPulse 2s infinite;
        }
        
        @keyframes stepPulse {
            0% { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
            50% { box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4); }
            100% { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
        }
        
        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            background: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            animation: numberRotate 5s infinite linear;
        }
        
        @keyframes numberRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .process-step h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .process-step p {
            color: var(--gray-color);
            font-size: 0.95rem;
        }
        
        /* 安全承诺板块 */
        .commitment-section {
            padding: 80px 0;
        }
        
        .commitment-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .commitment-content {
            background: white;
            border-radius: 8px;
            padding: 50px 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        .commitment-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 36, 99, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%);
            z-index: 1;
        }
        
        .commitment-text {
            position: relative;
            z-index: 2;
        }
        
        .commitment-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 30px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            animation: iconFloat 3s infinite ease-in-out;
        }
        
        .commitment-content h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .commitment-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 25px;
            color: var(--dark-color);
        }
        
        .highlight-text {
            color: var(--secondary-color);
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        @media (max-width: 992px) {
            .intro-container {
                flex-direction: column;
            }
            
            .process-steps {
                flex-direction: column;
                gap: 40px;
            }
            
            .process-steps::before {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .advantages-container {
                grid-template-columns: 1fr;
            }
        }