
        .mission-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            border-left: 5px solid var(--anqie-primary);
        }
        
        .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .mission-icon {
            width: 70px;
            height: 70px;
            background: rgba(13, 110, 253, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .mission-icon i {
            font-size: 2rem;
            color: var(--anqie-primary);
        }

        /* 时间线 */
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--anqie-primary);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -13px;
            background-color: white;
            border: 4px solid var(--anqie-primary);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        
        .left {
            left: 0;
        }
        
        .right {
            left: 50%;
        }
        
        .right::after {
            left: -13px;
        }
        
        .timeline-content {
            padding: 20px 30px;
            background-color: white;
            position: relative;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        /* 团队卡片 */
        .team-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .team-img {
            height: 250px;
            overflow: hidden;
        }
        
        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .team-card:hover .team-img img {
            transform: scale(1.05);
        }

        /* 认证卡片 */
        .certification-item {
            background: white;
            border-radius: 10px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            min-height: 150px;
            margin: 0 0 30px;
        }
        
        .certification-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        /* 优势卡片 (复用首页) */
        .advantage-card {
            background: #fff;
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(13, 110, 253, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(13, 110, 253, 0.1);
        }
        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
            border-color: var(--anqie-primary);
        }
        .advantage-card i {
            font-size: 3rem;
            color: var(--anqie-primary);
            margin-bottom: 20px;
        }
        .advantage-card h4 {
            font-weight: 600;
            margin-bottom: 15px;
            color: #1a2b3c;
        }
        .advantage-card p {
            color: #5d6e7e;
            margin-bottom: 0;
        }

        /* 信任数据 */
        .trust-stats {
            background: linear-gradient(135deg, var(--anqie-primary) 0%, var(--anqie-secondary) 100%);
            color: white;
            padding: 60px 0;
            border-radius: 20px;
        }
        
        .trust-stat-number {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 10px;
            line-height: 1;
        }
        
        .trust-stat-label {
            font-size: 1.2rem;
            opacity: 0.9;
        }
