
        /* 独享CSS部分 - 联系我们页面内容 */
        
        /* 页面横幅样式 */
        .page-hero {
            height: 60vh;
            position: relative;
            overflow: hidden;
            background: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: 70px;
        }

        .page-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            filter: brightness(0.7);
        }

        .page-hero-content {
            color: var(--light-color);
            max-width: 800px;
            padding: 0 20px;
            transform: translateY(30px);
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .page-hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }

        .page-hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }

        /* 联系信息部分 */
        .contact-section {
            background: var(--light-color);
            position: relative;
        }

        .contact-section::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 100 100" width="100" height="100" opacity="0.05"><path d="M30,30 Q50,10 70,30 T90,50 T70,70 T50,90 T30,70 T10,50 T30,30 Z" fill="none" stroke="%231a365d" stroke-width="2"/></svg>');
            z-index: 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .contact-card {
            background: white;
            border-radius: 8px;
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            transform: translateY(30px);
            opacity: 0;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
            background-size: 200% 100%;
            animation: gradientShift 3s ease-in-out infinite;
        }

        .contact-card.animated {
            transform: translateY(0);
            opacity: 1;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }

        .contact-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .contact-icon::before {
            content: '';
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(212,175,55,0.2);
            z-index: -1;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(0.8); opacity: 0.8; }
            50% { transform: scale(1.2); opacity: 0.4; }
            100% { transform: scale(0.8); opacity: 0.8; }
        }

        .contact-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .contact-card p {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .contact-phone-number {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin: 15px 0;
        }

        /* 微信二维码部分 */
        .wechat-section {
            background: var(--primary-color);
            color: var(--light-color);
            position: relative;
            overflow: hidden;
        }

        .wechat-section::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 100 100" width="100" height="100" opacity="0.05"><circle cx="50" cy="50" r="40" fill="none" stroke="%23d4af37" stroke-width="2"/></svg>');
            z-index: 0;
        }

        .wechat-section .section-title h2 {
            color: var(--light-color);
        }

        .wechat-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            position: relative;
            z-index: 1;
        }

        .wechat-info {
            flex: 1;
            max-width: 500px;
        }

        .wechat-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }

        .wechat-info p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .wechat-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .wechat-feature {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .wechat-feature i {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }

        .wechat-qrcode {
            flex: 1;
            text-align: center;
            transform: translateX(50px);
            opacity: 0;
            transition: all 0.8s ease;
        }

        .wechat-qrcode.animated {
            transform: translateX(0);
            opacity: 1;
        }

        .qrcode-large {
            width: 250px;
            height: 250px;
            margin: 0 auto 20px;
            border: 3px solid var(--secondary-color);
            padding: 10px;
            background: white;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }

        .qrcode-large img {
            width: 100%;
            height: 100%;
            display: block;
        }

        .qrcode-text {
            font-size: 1.1rem;
            font-weight: 600;
        }

        /* 服务时间部分 */
        .service-hours {
            background: var(--light-color);
            position: relative;
        }

        .hours-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
            position: relative;
            z-index: 1;
        }

        .hours-info {
            padding: 30px;
            background: white;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transform: translateX(-50px);
            opacity: 0;
            transition: all 0.8s ease;
        }

        .hours-info.animated {
            transform: translateX(0);
            opacity: 1;
        }

        .hours-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 10px;
        }

        .hours-info h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
        }

        .hours-list {
            margin-top: 20px;
        }

        .hour-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .hour-item:last-child {
            border-bottom: none;
        }

        .hour-day {
            font-weight: 600;
            color: var(--primary-color);
        }

        .hour-time {
            color: var(--secondary-color);
            font-weight: 600;
        }

        .hours-note {
            margin-top: 30px;
            padding: 20px;
            background: rgba(212,175,55,0.1);
            border-radius: 8px;
            border-left: 4px solid var(--secondary-color);
        }

        .hours-note h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .hours-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transform: translateX(50px);
            opacity: 0;
            transition: all 0.8s ease;
            position: relative;
        }

        .hours-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(212,175,55,0.2), transparent);
            z-index: 1;
        }

        .hours-image.animated {
            transform: translateX(0);
            opacity: 1;
        }

        .hours-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* 响应式设计 */
        @media screen and (max-width: 992px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .wechat-content {
                flex-direction: column;
                gap: 40px;
            }

            .hours-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .hours-info {
                order: 2;
            }

            .hours-image {
                order: 1;
            }
        }

        @media screen and (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                gap: 0;
                flex-direction: column;
                background: var(--primary-color);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
                padding: 20px 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                margin: 15px 0;
            }

            .page-hero-content h1 {
                font-size: 2.5rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .wechat-features {
                grid-template-columns: 1fr;
            }
        }

        @media screen and (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }

            .qrcode-large {
                width: 200px;
                height: 200px;
            }
        }