
        /* ===== 独享CSS ===== */
        
        /* 页面头部样式 */
        .page-header {
            background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.8)), url('/template/jia/images/1.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 150px 0 80px;
            margin-top: 80px;
        }
        
        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
        }
        
        /* 公司简介样式 */
        .company-intro {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .company-intro.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .intro-text {
            flex: 1;
        }
        
        .intro-text h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .intro-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--gold-color);
        }
        
        .intro-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .intro-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .intro-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .intro-image:hover img {
            transform: scale(1.05);
        }
        
        .highlight {
            background: var(--gold-color);
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        
        /* 核心价值样式 */
        .core-values {
            background: var(--primary-color);
            color: white;
            padding: 80px 0;
            border-radius: 8px;
            margin: 40px 0;
        }
        
        .core-values .section-title h2 {
            color: white;
        }
        
        .core-values .section-title p {
            color: #cbd5e0;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .value-card {
            text-align: center;
            padding: 40px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .value-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }
        
        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: 0.5s;
        }
        
        .value-card:hover::before {
            left: 100%;
        }
        
        .value-icon {
            font-size: 3rem;
            color: var(--gold-color);
            margin-bottom: 20px;
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0);
            }
        }
        
        .value-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        
        /* 发展历程样式 */
        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 3px;
            background: var(--secondary-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -1.5px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .timeline-item.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--primary-color);
            border: 4px solid var(--gold-color);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        
        .timeline-item:nth-child(odd)::after {
            right: -10px;
        }
        
        .timeline-item:nth-child(even)::after {
            left: -10px;
        }
        
        .timeline-content {
            padding: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .timeline-year {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gold-color);
            margin-bottom: 10px;
        }
        
        .timeline-content h3 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        /* 服务理念样式 */
        .service-philosophy {
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 50px;
            margin: 40px 0;
        }
        
        .philosophy-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .philosophy-content h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
        
        .philosophy-content h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gold-color);
        }
        
        .philosophy-content p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .philosophy-quote {
            font-style: italic;
            background: var(--light-color);
            padding: 30px;
            border-radius: 8px;
            margin: 30px 0;
            position: relative;
        }
        
        .philosophy-quote::before,
        .philosophy-quote::after {
            content: '"';
            font-size: 3rem;
            color: var(--gold-color);
            position: absolute;
        }
        
        .philosophy-quote::before {
            top: 10px;
            left: 20px;
        }
        
        .philosophy-quote::after {
            bottom: 10px;
            right: 20px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .company-intro {
                flex-direction: column;
            }
            
            .intro-image {
                width: 100%;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            .timeline-item::after {
                left: 21px;
            }
            
            .timeline-item:nth-child(odd)::after,
            .timeline-item:nth-child(even)::after {
                left: 21px;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 0;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--primary-color);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: var(--transition);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .contact-phone {
                display: none;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .page-header {
                padding: 120px 0 60px;
            }
            
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .service-philosophy {
                padding: 30px 20px;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .intro-text h2 {
                font-size: 1.7rem;
            }
            
            .philosophy-content h2 {
                font-size: 1.7rem;
            }
        }