
        /* 独享CSS - 联系我们页面 */
        .page-hero {
            height: 50vh;
            background: linear-gradient(rgba(26, 54, 93, 0.8), rgba(26, 54, 93, 0.9)), url('/template/jia/images/5.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-light);
            margin-top: 70px;
        }

        .page-hero-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .page-hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1s ease 0.3s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .contact-section {
            padding: 100px 0;
            background-color: #f8f9fa;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .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: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .contact-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-bottom: 80px;
        }

        .contact-info-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 40px 30px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            transform: translateY(50px);
            opacity: 0;
        }

        .contact-info-card.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .contact-info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--secondary-color);
            font-size: 2rem;
            transition: var(--transition);
        }

        .contact-info-card:hover .contact-icon {
            background-color: var(--secondary-color);
            color: var(--text-light);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .contact-info-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .contact-info-card p {
            color: #666;
            margin-bottom: 20px;
        }

        .contact-detail {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-color);
        }

        .contact-note {
            font-size: 0.9rem;
            color: #888;
            margin-top: 10px;
            font-style: italic;
        }

        /* 二维码区域 */
        .qrcode-section {
            text-align: center;
            padding: 60px 0;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 80px;
        }

        .qrcode-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .qrcode-title {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .qrcode-description {
            color: #666;
            margin-bottom: 40px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .qrcode-image {
            width: 200px;
            height: 200px;
            background-color: #f0f0f0;
            margin: 0 auto 20px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .qrcode-image img {
            width: 100%;
            height: 100%;
             
        }


        .qrcode-image span {
            color: #666;
            font-size: 0.9rem;
        }

        .qrcode-instruction {
            color: #888;
            font-size: 0.9rem;
            max-width: 400px;
            margin: 0 auto;
        }

        /* 服务时间区域 */
        .service-time {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 60px 0;
            border-radius: 10px;
            text-align: center;
        }

        .service-time h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .service-time p {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .service-time .highlight {
            color: var(--secondary-color);
            font-weight: 700;
            font-size: 1.4rem;
        }

        /* 动画工具类 */
        .animate-on-scroll {
            transition: all 0.8s ease;
        }