     /* 独享CSS - 联系我们页面内容 */
        
        /* 全局样式增强 */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            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-color: var(--secondary-color);
        }
        
        .section-title p {
            color: var(--text-color);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 页面顶部横幅 */
        .page-hero {
            background: var(--gradient);
            color: white;
            padding: 150px 0 80px;
            text-align: center;
            margin-top: 80px;
        }
        
        .page-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .page-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* 联系信息样式 */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .contact-info-box {
            background-color: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .contact-info-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .contact-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(26, 43, 76, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--primary-color);
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .contact-details h3 {
            color: var(--primary-color);
            margin-bottom: 8px;
            font-size: 1.3rem;
        }
        
        .contact-details p {
            color: var(--text-color);
            margin-bottom: 5px;
        }
        
        .contact-details a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .contact-details a:hover {
            color: var(--secondary-color);
        }
        
        /* 微信二维码样式 */
        .qrcode-section {
            background-color: var(--light-color);
            text-align: center;
        }
        
        .qrcode-box {
            background-color: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: var(--shadow);
            display: inline-block;
            transition: var(--transition);
        }
        
        .qrcode-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .qrcode-img {
            width: 200px;
            height: 200px;
            margin: 0 auto 20px;
            border: 1px solid #ddd;
            padding: 10px;
            background-color: white;
        }
        
        .qrcode-img img {
            width: 100%;
            height: 100%;
            display: block;
        }
        
        .qrcode-info h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.5rem;
        }
        
        .qrcode-info p {
            color: var(--text-color);
            margin-bottom: 5px;
        }
        
        /* 服务时间样式 */
        .service-hours {
            background-color: var(--light-color);
        }
        
        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .hours-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .hours-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .hours-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--secondary-color);
            font-size: 1.8rem;
        }
        
        .hours-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .hours-list {
            list-style: none;
            text-align: left;
        }
        
        .hours-list li {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #eee;
        }
        
        .hours-list li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .hours-day {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .hours-time {
            color: var(--text-color);
        }
        
        /* 宣传语样式 */
        .promotion {
            background: var(--gradient);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .promotion-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .promotion h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .promotion p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .promotion-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 35px;
            background-color: var(--secondary-color);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .promotion-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: var(--transition);
        }
        
        .promotion-btn:hover::before {
            left: 100%;
        }
        
        .promotion-btn:hover {
            background-color: #b3913d;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .promotion-btn i {
            transition: var(--transition);
        }
        
        .promotion-btn:hover i {
            transform: translateX(5px);
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .contact-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .hours-grid {
                grid-template-columns: 1fr;
            }
            
            .promotion h2 {
                font-size: 1.8rem;
            }
            
            .promotion p {
                font-size: 1rem;
            }
        }