       /* 独享CSS部分 - 联系我们页面 */
        .page-header {
            padding-top: 120px;
            padding-bottom: 60px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: white;
            text-align: center;
        }

        .page-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

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

        .contact-section {
            background: var(--light-color);
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 171, 0, 0.05) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
            z-index: 0;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .contact-container {
            position: relative;
            z-index: 1;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .contact-info1 {
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 40px;
            animation: fadeInLeft 0.6s ease forwards;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .contact-info1 h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--secondary-color);
        }

        .contact-details {
            list-style: none;
        }

        .contact-details li {
            margin-bottom: 25px;
            display: flex;
            align-items: flex-start;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--light-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--primary-color);
            font-size: 1.5rem;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .contact-details li:hover .contact-icon {
            background: var(--primary-color);
            color: white;
            transform: scale(1.1);
        }

        .contact-text h4 {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .contact-text p {
            color: var(--gray-color);
            line-height: 1.6;
        }

        .contact-phone-large {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-top: 5px;
            display: block;
            animation: pulse 2s infinite;
        }

        /* 微信二维码部分 */
        .wechat-qr {
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 40px;
            text-align: center;
            animation: fadeInRight 0.6s ease forwards;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .wechat-qr h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .wechat-qr p {
            color: var(--gray-color);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .qr-code-large {
            max-width: 250px;
            margin: 0 auto 25px;
            border-radius: var(--radius);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .qr-code-large:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        /* 服务时间部分 */
        .service-hours {
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 30px;
            margin-top: 40px;
            text-align: center;
            animation: fadeInUp 0.6s ease 0.3s forwards;
            opacity: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-hours h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .hours-list {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .hour-item {
            background: var(--light-color);
            padding: 15px 25px;
            border-radius: var(--radius);
            text-align: center;
            transition: var(--transition);
        }

        .hour-item:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-5px);
        }

        .hour-day {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .hour-time {
            color: var(--gray-color);
        }

        .hour-item:hover .hour-time {
            color: rgba(255, 255, 255, 0.8);
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .hours-list {
                flex-direction: column;
                align-items: center;
            }
            
            .hour-item {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 768px) {
            .contact-info1, .wechat-qr {
                padding: 30px;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .contact-details li {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

        @media (max-width: 576px) {
            .contact-info1, .wechat-qr {
                padding: 25px;
            }
            
            .qr-code-large {
                max-width: 200px;
            }
        }