    /* 独享CSS - 联系我们页面 */
        
        /* 页面头部 */
        .page-header {
            background: var(--gradient);
            color: white;
            padding: 150px 0 80px;
            margin-top: 70px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,128L48,117.3C96,107,192,85,288,101.3C384,117,480,171,576,170.7C672,171,768,117,864,101.3C960,85,1056,107,1152,122.7C1248,139,1344,149,1392,154.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }
        
        .page-header-content {
            position: relative;
            z-index: 1;
        }
        
        .page-header h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .page-header p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* 联系信息 */
        .contact-info-section {
            padding: 80px 0;
            background-color: var(--light-color);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .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: var(--gradient-accent);
        }
        
        .section-title p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .contact-card {
            background: white;
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .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);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 32px;
            transition: all 0.3s ease;
        }
        
        .contact-card:hover .contact-icon {
            background: var(--gradient-accent);
            transform: scale(1.1);
        }
        
        .contact-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .contact-card p {
            color: #666;
            margin-bottom: 20px;
        }
        
        .contact-phone {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary-color);
            display: block;
            margin-bottom: 10px;
        }
        
        .contact-btn {
            display: inline-block;
            padding: 10px 25px;
            background: var(--gradient-accent);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }
        
        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* 微信二维码 */
        .wechat-section {
            padding: 80px 0;
            background: white;
        }
        
        .wechat-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
        }
        
        .wechat-text {
            flex: 1;
            max-width: 500px;
        }
        
        .wechat-text h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .wechat-text p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }
        
        .wechat-features {
            list-style: none;
            margin-top: 25px;
        }
        
        .wechat-features li {
            padding: 8px 0;
            position: relative;
            padding-left: 30px;
        }
        
        .wechat-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
            font-size: 18px;
        }
        
        .wechat-qrcode {
            flex: 1;
            text-align: center;
            max-width: 400px;
        }
        
        .qrcode-container {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow-heavy);
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .qrcode-container:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .qrcode-container img {
            max-width: 250px;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        
        .qrcode-container h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .qrcode-container p {
            color: #666;
            font-size: 14px;
        }
        
        /* 服务时间 */
        .service-hours {
            padding: 80px 0;
            background-color: var(--light-color);
        }
        
        .hours-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
        }
        
        .hours-text {
            flex: 1;
            max-width: 500px;
        }
        
        .hours-text h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .hours-text p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }
        
        .hours-list {
            list-style: none;
            margin-top: 25px;
        }
        
        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }
        
        .hours-list li:last-child {
            border-bottom: none;
        }
        
        .day {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .time {
            color: var(--secondary-color);
            font-weight: 500;
        }
        
        .hours-image {
            flex: 1;
            text-align: center;
            max-width: 400px;
        }
        
        .hours-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: var(--shadow-heavy);
            transition: transform 0.5s ease;
        }
        
        .hours-image:hover img {
            transform: scale(1.05);
        }
        
        /* 响应式设计 - 独享部分 */
        @media (max-width: 992px) {
            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .wechat-content, .hours-content {
                flex-direction: column;
                text-align: center;
            }
            
            .wechat-text, .hours-text {
                max-width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 36px;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .wechat-qrcode, .hours-image {
                max-width: 100%;
            }
        }