    /* 独享CSS部分 - 联系我们页面 */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: var(--text-light);
            padding: 150px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/12.jpg') no-repeat center center;
            background-size: cover;
            opacity: 0.2;
            z-index: 0;
        }

        .page-header-content {
            position: relative;
            z-index: 1;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .contact-page {
            padding: 100px 0;
            background: var(--light-color);
        }

        .contact-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            align-items: center;
        }

        .contact-info-section {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }

        .contact-info-section.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .contact-info-section h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .contact-info-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 3px;
            background: var(--secondary-color);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            color: var(--text-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 20px;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }

        .contact-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(45deg);
            animation: icon-shine 3s infinite;
        }

        @keyframes icon-shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .contact-details h3 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .contact-details p {
            color: #666;
            margin-bottom: 5px;
        }

        .phone-number {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin: 10px 0;
        }

        .work-hours {
            display: flex;
            flex-direction: column;
            margin-top: 10px;
        }

        .work-hour-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }

        .work-hour-day {
            font-weight: 600;
            color: var(--primary-color);
        }

        .work-hour-time {
            color: #666;
        }

        /* 微信二维码部分 */
        .qrcode-section {
            text-align: center;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }

        .qrcode-section.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .qrcode-card {
            background: white;
            padding: 40px 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            max-width: 350px;
            margin: 0 auto;
        }

        .qrcode-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .qrcode-card h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .qrcode-image {
            width: 200px;
            height: 200px;
            margin: 0 auto 20px;
            border: 1px solid #eee;
            padding: 10px;
            background: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .qrcode-image img {
            max-width: 100%;
            height: auto;
        }

        .qrcode-card p {
            color: #666;
            margin-bottom: 10px;
        }

        .consultation-section {
            text-align: center;
            margin-top: 60px;
            padding: 40px;
            background: white;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }

        .consultation-section h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .consultation-section p {
            color: #666;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .contact-content {
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--primary-color);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: var(--transition);
            }
            
            nav ul.active {
                left: 0;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
            }
            
            .contact-info-section, .qrcode-section {
                transform: translateY(30px);
            }
            
            .qrcode-section.animate {
                transform: translateY(0);
            }
        }

        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .page-header p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .phone-number {
                font-size: 1.2rem;
            }
        }