   /* 独享CSS - 关于我们页面主体内容 */
        
        /* 页面顶部横幅 */
        .page-banner {
            background: linear-gradient(rgba(26, 58, 95, 0.85), rgba(26, 58, 95, 0.85)), url('/template/jia/images/9.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 150px 20px 80px;
            margin-top: 70px;
        }
        
        .page-banner h1 {
            font-size: 48px;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .page-banner p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 1s ease 0.3s both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 关于我们内容区域 */
        .about-section {
            padding: 80px 0;
            background-color: var(--light-color);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .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;
            width: 70px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: var(--text-color);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 公司简介 */
        .company-intro {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 80px;
        }
        
        .intro-text {
            flex: 1;
        }
        
        .intro-text h3 {
            font-size: 30px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .intro-text p {
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.8;
        }
        
        .highlight {
            color: var(--accent-color);
            font-weight: 600;
        }
        
        .intro-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .intro-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* 核心价值 */
        .core-values {
            margin-bottom: 80px;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .value-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            animation: fadeInUp 0.6s ease;
        }
        
        .value-card:nth-child(1) { animation-delay: 0.1s; }
        .value-card:nth-child(2) { animation-delay: 0.2s; }
        .value-card:nth-child(3) { animation-delay: 0.3s; }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(255, 107, 53, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--accent-color);
            font-size: 32px;
            transition: var(--transition);
        }
        
        .value-card:hover .value-icon {
            background-color: var(--accent-color);
            color: white;
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
        }
        
        .value-card h3 {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .value-card p {
            font-size: 16px;
            color: var(--text-color);
            line-height: 1.6;
        }
        
        /* 服务优势 */
        .service-advantages {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 60px 40px;
        }
        
        .advantages-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .advantage-item {
            display: flex;
            align-items: flex-start;
            padding: 20px;
            background-color: var(--light-color);
            border-radius: 8px;
            transition: var(--transition);
        }
        
        .advantage-item:hover {
            transform: translateX(10px);
            background-color: rgba(255, 107, 53, 0.05);
        }
        
        .advantage-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(26, 58, 95, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--primary-color);
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .advantage-content h4 {
            font-size: 18px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .advantage-content p {
            font-size: 15px;
            color: var(--text-color);
            line-height: 1.6;
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .company-intro {
                flex-direction: column;
            }
            
            .values-grid, .advantages-list {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .page-banner h1 {
                font-size: 36px;
            }
            
            .page-banner p {
                font-size: 18px;
            }
            
            .service-advantages {
                padding: 40px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .page-banner {
                padding: 120px 20px 60px;
            }
            
            .page-banner h1 {
                font-size: 28px;
            }
            
            .page-banner p {
                font-size: 16px;
            }

            
            .value-card, .advantage-item {
                padding: 25px 20px;
            }
        }