   /* ===== 独享CSS部分 - 联系我们页面 ===== */
        
        /* 页面顶部横幅 */
        .page-banner {
            height: 400px;
            position: relative;
            margin-top: 70px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: #fff;
            text-align: center;
        }
        
        .page-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/template/jia/images/16.jpg') center/cover no-repeat;
            filter: brightness(0.3);
            z-index: 0;
        }
        
        .banner-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .banner-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .banner-content p {
            font-size: 20px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
        }
        
        /* 联系我们内容区域 */
        .contact-content {
            padding: 100px 0;
            background-color: #fff;
            position: relative;
        }
        
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* 联系信息板块 */
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .contact-card {
            background: #fff;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
            z-index: 2;
        }
        
        .contact-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .contact-card:hover::before {
            transform: scaleX(1);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.5s ease;
        }
        
        .contact-card:hover .contact-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .contact-icon i {
            font-size: 36px;
            color: #fff;
        }
        
        .contact-card h3 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .contact-card p {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .contact-phone {
            font-size: 28px;
            font-weight: 700;
            color: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 15px;
        }
        
        .contact-phone i {
            margin-right: 10px;
            font-size: 24px;
        }
        
        /* 微信二维码板块 */
        .wechat-section {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 80px 0;
            border-radius: 15px;
            margin-bottom: 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .wechat-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }
        
        .wechat-content {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .wechat-content h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .wechat-content p {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 40px;
            line-height: 1.7;
        }
        
        .wechat-qrcode {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            display: inline-block;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            transition: all 0.5s ease;
        }
        
        .wechat-qrcode:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .wechat-qrcode img {
            max-width: 250px;
            height: auto;
            display: block;
        }
        
        .wechat-tip {
            font-size: 16px;
            color: var(--gray);
            font-style: italic;
        }
        
        /* 服务时间板块 */
        .service-hours {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: #fff;
            padding: 60px 40px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .service-hours::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: rgba(255, 255, 255, 0.05);
            transform: rotate(30deg);
            z-index: -1;
        }
        
        .service-hours h2 {
            font-size: 36px;
            margin-bottom: 30px;
            font-weight: 600;
        }
        
        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hours-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .hours-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }
        
        .hours-item h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .hours-item p {
            font-size: 18px;
            margin-bottom: 0;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .contact-info {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .hours-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(13, 33, 69, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.5s ease;
                backdrop-filter: blur(10px);
            }
            
            nav ul.active {
                left: 0;
            }
            
            nav ul li {
                margin: 20px 0;
            }
            
            .banner-content h1 {
                font-size: 36px;
            }
            
            .banner-content p {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 36px;
            }
            
            .contact-card {
                padding: 30px 20px;
            }
            
            .contact-phone {
                font-size: 24px;
            }
            
            .wechat-content h2 {
                font-size: 30px;
            }
            
            .service-hours h2 {
                font-size: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .banner-content h1 {
                font-size: 28px;
            }
            
            .banner-content p {
                font-size: 16px;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .contact-card h3 {
                font-size: 22px;
            }
            
            .contact-card p {
                font-size: 16px;
            }
            
            .contact-phone {
                font-size: 22px;
            }
            
            .wechat-content h2 {
                font-size: 26px;
            }
            
            .wechat-content p {
                font-size: 16px;
            }
            
            .service-hours {
                padding: 40px 20px;
            }
            
            .service-hours h2 {
                font-size: 26px;
            }
            
            .hours-item h3 {
                font-size: 20px;
            }
            
            .hours-item p {
                font-size: 16px;
            }
        }