
        /* 独享CSS部分 - 关于我们页面主体 */
        /* 页面标题横幅 */
        .page-banner {
            background: linear-gradient(rgba(10, 42, 94, 0.8), rgba(10, 42, 94, 0.8)), url('/template/jia/images/1.jpg');
            background-size: cover;
            background-position: center;
            padding: 150px 0 80px;
            text-align: center;
            color: var(--light-color);
        }
        
        .page-banner h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }
        
        .page-banner p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        /* 通用板块样式 */
        .section {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary-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: 3px;
            background-color: var(--secondary-color);
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 关于我们内容样式 */
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 80px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #666;
            font-size: 18px;
            line-height: 1.8;
        }
        
        .highlight {
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 20px;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateX(30px);
            opacity: 0;
            transition: all 0.8s ease;
        }
        
        .about-image.animate {
            transform: translateX(0);
            opacity: 1;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* 使命与愿景样式 */
        .mission-vision {
            background-color: #f5f7fa;
        }
        
        .mission-container {
            display: flex;
            gap: 50px;
        }
        
        .mission-item {
            flex: 1;
            text-align: center;
            padding: 40px 30px;
            background-color: var(--light-color);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            transform: translateY(30px);
            opacity: 0;
        }
        
        .mission-item.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .mission-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .mission-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--light-color);
            font-size: 30px;
        }
        
        .mission-item h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .mission-item p {
            color: #666;
            line-height: 1.8;
        }
        
        /* 合作优势样式 */
        .cooperation-advantages {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .advantage-card {
            background-color: var(--light-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            transform: translateY(20px);
            opacity: 0;
        }
        
        .advantage-card.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .advantage-header {
            padding: 25px;
            background-color: var(--primary-color);
            color: var(--light-color);
            display: flex;
            align-items: center;
        }
        
        .advantage-icon {
            width: 60px;
            height: 60px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--primary-color);
            font-size: 24px;
        }
        
        .advantage-title {
            font-size: 22px;
            font-weight: 600;
        }
        
        .advantage-content {
            padding: 25px;
        }
        
        .advantage-content p {
            color: #666;
            line-height: 1.8;
        }
        
        /* 服务数据样式 */
        .stats-section {
            background: linear-gradient(rgba(10, 42, 94, 0.9), rgba(10, 42, 94, 0.9)), url('https://via.placeholder.com/1920x600');
            background-size: cover;
            background-position: center;
            color: var(--light-color);
            text-align: center;
        }
        
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        
        .stat-item {
            padding: 30px 20px;
            transform: scale(0.9);
            opacity: 0;
            transition: all 0.8s ease;
        }
        
        .stat-item.animate {
            transform: scale(1);
            opacity: 1;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .stat-text {
            font-size: 18px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                margin-top: 30px;
            }
            
            .mission-container {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .contact-phone {
                display: none;
            }
            
            .page-banner h1 {
                font-size: 36px;
            }
            
            .page-banner p {
                font-size: 18px;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .cooperation-advantages {
                grid-template-columns: 1fr;
            }
            
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .page-banner h1 {
                font-size: 28px;
            }
            
            .page-banner p {
                font-size: 16px;
            }
            
            .about-text h3 {
                font-size: 24px;
            }
            
            .stats-container {
                grid-template-columns: 1fr;
            }
        }