   /* 独享CSS - 联系我们页面主体部分 */
        main {
            margin-top: 80px;
        }

        /* 页面标题区域 */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--text-light);
            padding: 60px 0;
            text-align: center;
        }

        .page-header h1 {
            font-size: 36px;
            margin-bottom: 15px;
        }

        .page-header p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* 联系我们区域 */
        .section {
            padding: 80px 0;
        }

        .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;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* 联系信息区域 */
        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: flex-start;
        }

        .contact-info-section {
            flex: 1;
            min-width: 300px;
        }

        .contact-card {
            background-color: var(--light-color);
            border-radius: 8px;
            padding: 30px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
            transition: var(--transition);
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .contact-card h3 {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .contact-card h3 i {
            margin-right: 10px;
            color: var(--accent-color);
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-detail i {
            color: var(--accent-color);
            margin-right: 15px;
            margin-top: 5px;
            font-size: 18px;
        }

        .contact-text h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--secondary-color);
        }

        .contact-text p {
            color: #666;
        }

        /* 二维码区域 */
        .qrcode-section {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .qrcode-container {
            background-color: var(--light-color);
            border-radius: 8px;
            padding: 40px;
            box-shadow: var(--shadow);
            text-align: center;
            max-width: 350px;
            width: 100%;
            transition: var(--transition);
        }

        .qrcode-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .qrcode-container h3 {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .qrcode-image {
            width: 200px;
            height: 200px;
            background-color: #fff;
            margin: 0 auto 20px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #eee;
        }
        
                .qrcode-image img {
            width: 100%;
            height: 100%;
       
        }

        .qrcode-image span {
            color: #666;
            font-size: 14px;
        }

        .qrcode-note {
            color: #666;
            margin-top: 15px;
            font-size: 14px;
        }

        /* 服务时间区域 */
        .service-time {
            background-color: var(--light-color);
            border-radius: 8px;
            padding: 30px;
            box-shadow: var(--shadow);
            margin-top: 30px;
        }

        .service-time h3 {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .service-time h3 i {
            margin-right: 10px;
            color: var(--accent-color);
        }

        .time-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
        }

        .time-item:last-child {
            border-bottom: none;
        }

        .time-day {
            font-weight: bold;
            color: var(--secondary-color);
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .contact-content {
                flex-direction: column;
            }
            
            .qrcode-section {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background-color: var(--primary-color);
                transition: var(--transition);
                padding: 20px 0;
                box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-item {
                margin: 10px 0;
                text-align: center;
            }
            
            .page-header h1 {
                font-size: 28px;
            }
            
            .page-header p {
                font-size: 16px;
            }
        }