
        /* 独享CSS部分 - 联系我们页面 */
        .contact-hero {
            background: linear-gradient(rgba(10, 42, 94, 0.85), rgba(10, 42, 94, 0.85)), url('/template/jia/images/10.jpg');
            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--light-color);
            margin-top: 70px;
        }
        
        .contact-hero-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }
        
        .contact-hero-content 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;
        }
        
        .contact-content {
            display: flex;
            gap: 50px;
            align-items: center;
        }
        
        .contact-info-section {
            flex: 1;
        }
        
        .contact-info-section h3 {
            font-size: 28px;
            margin-bottom: 30px;
            color: var(--primary-color);
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 20px;
            background-color: var(--light-color);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            transform: translateX(-30px);
            opacity: 0;
        }
        
        .contact-item.animate {
            transform: translateX(0);
            opacity: 1;
        }
        
        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light-color);
            font-size: 24px;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .contact-details h4 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .contact-details p {
            color: #666;
            margin-bottom: 5px;
        }
        
        .qr-section {
            flex: 1;
            text-align: center;
            padding: 40px;
            background-color: var(--light-color);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateX(30px);
            opacity: 0;
            transition: all 0.8s ease;
        }
        
        .qr-section.animate {
            transform: translateX(0);
            opacity: 1;
        }
        
        .qr-section h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .qr-section p {
            color: #666;
            margin-bottom: 30px;
        }
        
        .large-qr-code {
            width: 200px;
            height: 200px;
            background-color: #fff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            border: 1px solid #e0e0e0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .qr-text {
            font-size: 16px;
            color: var(--dark-color);
            text-align: center;
        }
        
                        .qr-text img {
            width: 100%;
            height: 100%;
          
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .contact-content {
                flex-direction: column;
            }
            
            .qr-section {
                margin-top: 30px;
            }
        }
        
        @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;
            }
            
            .contact-hero-content h1 {
                font-size: 36px;
            }
            
            .contact-hero-content p {
                font-size: 18px;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .contact-hero-content h1 {
                font-size: 28px;
            }
            
            .contact-hero-content p {
                font-size: 16px;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }