     /* 独享CSS - 联系我们页面主体内容 */
        
        /* 页面顶部横幅 */
        .page-banner {
            background: linear-gradient(rgba(26, 58, 95, 0.85), rgba(26, 58, 95, 0.85)), url('/template/jia/images/9.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 150px 20px 80px;
            margin-top: 70px;
        }
        
        .page-banner h1 {
            font-size: 48px;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .page-banner p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 1s ease 0.3s both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 联系信息区域 */
        .contact-section {
            padding: 80px 0;
            background-color: var(--light-color);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: var(--text-color);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 联系信息网格 */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .contact-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            animation: fadeInUp 0.6s ease;
        }
        
        .contact-card:nth-child(1) { animation-delay: 0.1s; }
        .contact-card:nth-child(2) { animation-delay: 0.2s; }
        .contact-card:nth-child(3) { animation-delay: 0.3s; }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(255, 107, 53, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--accent-color);
            font-size: 32px;
            transition: var(--transition);
        }
        
        .contact-card:hover .contact-icon {
            background-color: var(--accent-color);
            color: white;
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
        }
        
        .contact-card h3 {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .contact-detail {
            margin-bottom: 10px;
            font-size: 16px;
            color: var(--text-color);
        }
        
        .contact-detail.phone {
            font-size: 20px;
            font-weight: 700;
            color: var(--accent-color);
        }
        
        /* 微信二维码区域 */
        .wechat-section {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 60px 40px;
            text-align: center;
            margin-top: 50px;
        }
        
        .wechat-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .wechat-text {
            flex: 1;
            text-align: left;
            padding-right: 40px;
        }
        
        .wechat-text h3 {
            font-size: 28px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .wechat-text p {
            font-size: 16px;
            color: var(--text-color);
            margin-bottom: 25px;
            line-height: 1.7;
        }
        
        .wechat-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }
        
        .wechat-feature {
            display: flex;
            align-items: center;
            background-color: rgba(26, 58, 95, 0.05);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
        }
        
        .wechat-feature i {
            color: var(--accent-color);
            margin-right: 8px;
        }
        
        .wechat-qrcode {
            flex: 0 0 250px;
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .qrcode-image {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
		 .qrcode-image img {
            width: 100%; 
            height: 100%;  }
			
        .qrcode-image span {
            color: white;
            font-size: 14px;
            text-align: center;
        }
        
        .qrcode-text {
            font-size: 16px;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .wechat-content {
                flex-direction: column;
            }
            
            .wechat-text {
                text-align: center;
                padding-right: 0;
                margin-bottom: 40px;
            }
            
            .wechat-features {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .page-banner h1 {
                font-size: 36px;
            }
            
            .page-banner p {
                font-size: 18px;
            }
            
            .wechat-section {
                padding: 40px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .page-banner {
                padding: 120px 20px 60px;
            }
            
            .page-banner h1 {
                font-size: 28px;
            }
            
            .page-banner p {
                font-size: 16px;
            }
            
            .contact-card {
                padding: 30px 20px;
            }
        }