    /* 独享CSS - 联系我们页面 */
        
        /* 页面标题样式 */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 联系我们内容样式 */
        .contact-section {
            padding: 80px 0;
        }
        
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-info h2 {
            color: var(--primary-color);
            font-size: 2.2rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .contact-info h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 0;
        }
        
        .contact-info p {
            margin-bottom: 30px;
            color: #555;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .contact-details {
            list-style: none;
        }
        
        .contact-details li {
            margin-bottom: 25px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
            animation: iconFloat 3s infinite ease-in-out;
        }
        
        @keyframes iconFloat {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        .contact-text h3 {
            color: var(--primary-color);
            margin-bottom: 8px;
            font-size: 1.3rem;
        }
        
        .contact-text p {
            color: #666;
            margin-bottom: 0;
            font-size: 1rem;
        }
        
        .contact-text a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .contact-text a:hover {
            color: var(--primary-color);
        }
        
        /* 微信二维码样式 */
        .qrcode-section {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .qrcode-section h2 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .qrcode-section p {
            color: #666;
            margin-bottom: 30px;
            max-width: 400px;
        }
        
        .qrcode-large {
            max-width: 250px;
            margin-bottom: 25px;
            border: 3px solid var(--secondary-color);
            padding: 10px;
            background: white;
            border-radius: 10px;
            animation: qrPulse 3s infinite;
        }
        
        @keyframes qrPulse {
            0% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(201, 162, 39, 0); }
            100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0); }
        }
        
        .qrcode-large img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .qrcode-instruction {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        /* 服务时间样式 */
        .service-hours {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 50px;
        }
        
        .service-hours h2 {
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .service-hours h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .hours-card {
            text-align: center;
            padding: 30px 20px;
            background: #f8f9fa;
            border-radius: 10px;
            transition: var(--transition);
        }
        
        .hours-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .hours-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.8rem;
        }
        
        .hours-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .hours-card p {
            color: #666;
            margin-bottom: 10px;
        }
        
        .hours-card .highlight {
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .contact-container {
                flex-direction: column;
            }
            
            .qrcode-section {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .contact-info h2 {
                font-size: 1.8rem;
            }
            
            .service-hours {
                padding: 30px 20px;
            }
            
            .hours-grid {
                grid-template-columns: 1fr;
            }
        }