   
        /* ===== 独享CSS部分 - 联系我们页面 ===== */
        
        /* 页面标题区域 */
        .page-header {
            background: var(--gradient-primary);
            color: white;
            padding: 180px 0 100px;
            margin-top: 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/template/jia/images/10.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            z-index: 0;
        }
        
        .page-header-content {
            position: relative;
            z-index: 1;
        }
        
        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }
        
        .page-header p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* 联系方式样式 */
        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .contact-card {
            background-color: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
        }
        
        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-secondary);
        }
        
        .contact-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.2rem;
            box-shadow: var(--shadow-medium);
            transition: var(--transition);
        }
        
        .contact-card:hover .contact-icon {
            transform: scale(1.1);
            background: var(--gradient-secondary);
            color: var(--primary-color);
        }
        
        .contact-card h3 {
            font-size: 1.6rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .contact-card p {
            color: var(--gray-color);
            margin-bottom: 20px;
        }
        
        .contact-details {
            list-style: none;
            text-align: left;
        }
        
        .contact-details li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-details i {
            color: var(--secondary-color);
            margin-right: 15px;
            font-size: 1.2rem;
            margin-top: 3px;
            flex-shrink: 0;
        }
        
        /* 微信二维码区域 */
        .wechat-section {
            background-color: var(--light-color);
            text-align: center;
            padding: 80px 0;
        }
        
        .wechat-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .wechat-card {
            background-color: white;
            border-radius: 20px;
            padding: 50px 40px;
            box-shadow: var(--shadow-medium);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .wechat-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .wechat-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }
        
        .wechat-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 3.5rem;
            box-shadow: var(--shadow-medium);
            transition: var(--transition);
        }
        
        .wechat-card:hover .wechat-icon {
            transform: scale(1.1);
            background: var(--gradient-secondary);
            color: var(--primary-color);
        }
        
        .wechat-card h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .wechat-card p {
            color: var(--gray-color);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        .qrcode-large {
            max-width: 250px;
            margin: 0 auto 30px;
            border-radius: 15px;
            box-shadow: var(--shadow-medium);
            transition: var(--transition);
        }
        
        .qrcode-large:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-heavy);
        }
        
        .wechat-note {
            color: var(--gray-color);
            font-size: 0.9rem;
            font-style: italic;
        }
        
        /* 工作时间样式 */
        .working-hours {
            background: var(--gradient-primary);
            color: white;
            text-align: center;
            padding: 80px 0;
        }
        
        .hours-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hours-card {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .hours-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .hours-card:hover {
            transform: translateY(-10px);
            background-color: rgba(255, 255, 255, 0.15);
            box-shadow: var(--shadow-medium);
        }
        
        .hours-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 25px;
        }
        
        .hours-card h2 {
            font-size: 2.2rem;
            margin-bottom: 30px;
        }
        
        .hours-list {
            list-style: none;
            text-align: left;
            max-width: 400px;
            margin: 0 auto;
        }
        
        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .hours-list li:last-child {
            border-bottom: none;
        }
        
        .day {
            font-weight: 600;
        }
        
        .time {
            color: var(--secondary-color);
        }
        
        /* 响应式设计 - 独享部分 */

        @media (max-width: 992px) {
            .contact-methods {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.3rem;
            }
            
            .contact-methods {
                grid-template-columns: 1fr;
            }
            
            .wechat-card {
                padding: 40px 30px;
            }
            
            .wechat-card h2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
            section {
                padding: 80px 0;
            }
            
            .page-header {
                padding: 150px 0 80px;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .page-header p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .wechat-card {
                padding: 30px 20px;
            }
            
            .hours-card {
                padding: 30px 20px;
            }
        }