       /* 独享CSS部分 - 联系我们页面内容 */
        .page-hero {
            height: 50vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 204, 153, 0.1) 100%);
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/9.jpg') center/cover no-repeat;
            opacity: 0.1;
            z-index: -1;
        }

        .page-hero-content {
            text-align: center;
            width: 100%;
        }

        .page-hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .page-hero h1 span {
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .page-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: #555;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* 联系我们内容样式 */
        .contact-content {
            background: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .contact-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }

        .contact-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }

        .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: 2rem;
            transition: var(--transition);
        }

        .contact-card:hover .contact-icon {
            transform: scale(1.1) rotate(10deg);
        }

        .contact-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .contact-card p {
            color: #666;
            margin-bottom: 20px;
        }

        .contact-info-large {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .contact-hours {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 15px;
        }

        .contact-hour {
            display: flex;
            justify-content: space-between;
            font-size: 0.95rem;
        }

        .contact-hour-day {
            color: #666;
        }

        .contact-hour-time {
            color: var(--dark);
            font-weight: 600;
        }

        /* 微信二维码区域 */
        .wechat-section {
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 204, 153, 0.05) 100%);
            padding: 80px 0;
            text-align: center;
        }

        .wechat-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .wechat-qr {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow);
            display: inline-block;
            margin-bottom: 30px;
            transition: var(--transition);
        }

        .wechat-qr:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .wechat-qr img {
            max-width: 250px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .wechat-qr h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .wechat-qr p {
            color: #666;
            margin-bottom: 0;
        }

        .wechat-description {
            max-width: 500px;
            margin: 0 auto;
        }

        .wechat-description h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .wechat-description p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .btn {
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            text-decoration: none;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(0, 102, 255, 0.4);
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .wechat-qr {
                padding: 30px 20px;
            }
        }

        @media (max-width: 576px) {
            .page-hero {
                height: 40vh;
            }
            
            .page-hero h1 {
                font-size: 2rem;
            }
            
            .contact-card {
                padding: 30px 20px;
            }
        }