
        /* ===== 独享CSS部分 - 联系我们页面 ===== */
        
        /* 页面标题区域 */
        .page-header {
            background: linear-gradient(rgba(10, 36, 99, 0.8), rgba(10, 36, 99, 0.9)), url('/template/jia/images/9.jpg');
            background-size: cover;
            background-position: center;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            margin-top: 80px;
        }
        
        .page-header-content h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .page-header-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 联系信息区域 */
        .contact-section {
            background: var(--light-color);
        }
        
        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: flex-start;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-card {
            background: #fff;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: var(--transition);
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .contact-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }
        
        .contact-card h3 i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .contact-details {
            list-style: none;
        }
        
        .contact-details li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-details i {
            margin-right: 15px;
            color: var(--secondary-color);
            margin-top: 5px;
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
        }
        
        .contact-details span {
            flex: 1;
        }
        
        .contact-details strong {
            display: block;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        /* 二维码区域 */
        .qrcode-section {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .qrcode-container {
            background: #fff;
            border-radius: 8px;
            padding: 40px 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: var(--transition);
        }
        
        .qrcode-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .qrcode-container h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .qrcode-img {
            width: 200px;
            height: 200px;
            margin: 0 auto 20px;
            background: #f5f5f5;
            border: 2px solid var(--secondary-color);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 0.9rem;
        }
        
        
                .qrcode-img img {
            width: 100%;
            height: 100%;
           
        }
        
        .qrcode-text {
            color: #666;
            font-size: 0.95rem;
        }
        
        /* 服务流程区域 */
        .process-section {
            padding-bottom: 60px;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .process-step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 30px 20px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .step-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: var(--primary-color);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
        }
        
        .process-step h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        /* 动画效果 */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .page-header {
                height: 250px;
            }
            
            .page-header-content h1 {
                font-size: 2.2rem;
            }
            
            .contact-content {
                flex-direction: column;
                gap: 30px;
            }
            
            .process-steps {
                flex-direction: column;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }