   
        /* 独享CSS - 联系我们页面 */
        
        /* 页面横幅 */
        .page-banner {
            background: linear-gradient(rgba(10, 36, 99, 0.8), rgba(10, 36, 99, 0.7)), url('/template/jia/images/9.jpg');
            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 70px;
        }
        
        .banner-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .banner-content p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
        }
        
        /* 联系信息 */
        .contact-section {
            background: var(--light-color);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .contact-info-card {
            background: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .contact-info-card.animate {
            animation: fadeInUp 0.8s ease forwards;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .contact-info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .contact-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 25px;
        }
        
        .contact-info-card h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .contact-details {
            margin-top: 20px;
        }
        
        .contact-details li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-details i {
            margin-right: 10px;
            color: var(--secondary-color);
            margin-top: 3px;
            width: 20px;
        }
        
        .contact-details strong {
            color: var(--primary-color);
        }
        
        /* 微信二维码板块 */
        .wechat-section {
            text-align: center;
        }
        
        .wechat-container {
            background: white;
            border-radius: 8px;
            padding: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition);
        }
        
        .wechat-container.animate {
            animation: fadeInUp 0.8s ease 0.3s forwards;
        }
        
        .wechat-icon {
            width: 80px;
            height: 80px;
            background: #07c160;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 25px;
        }
        
        .wechat-container h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .wechat-container p {
            color: #666;
            margin-bottom: 30px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .wechat-qr {
            max-width: 250px;
            margin: 0 auto 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .wechat-qr img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .wechat-note {
            font-size: 0.9rem;
            color: #888;
            margin-top: 10px;
        }
        
        /* 服务时间 */
        .service-hours {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }
        
        .service-hours h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .hours-list li {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px dashed #eee;
        }
        
        .hours-list li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        /* 常见问题 */
        .faq-section {
            background: var(--light-color);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .faq-item.animate {
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .faq-question {
            padding: 20px 25px;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-color);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background: #f8f9fa;
        }
        
        .faq-question i {
            color: var(--secondary-color);
            transition: var(--transition);
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-answer.active {
            padding: 0 25px 25px;
            max-height: 500px;
        }
        
        .faq-answer p {
            margin-bottom: 15px;
        }
        
        .faq-answer p:last-child {
            margin-bottom: 0;
        }