
        /* ===== 独享CSS ===== */
        /* 页面标题样式 */
        .page-hero {
            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: 40vh;
            min-height: 300px;
            display: flex;
            align-items: center;
            margin-top: 80px;
            color: white;
            text-align: center;
        }
        
        .page-hero-content h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        .page-hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        /* 联系我们内容样式 */
        .contact-section {
            padding: 100px 0;
            background-color: var(--light-color);
        }
        
        .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: var(--gray-color);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 联系信息样式 */
        .contact-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .contact-info-card {
            background-color: white;
            border-radius: 8px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(20px);
        }
        
        .contact-info-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .contact-info-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(10, 36, 99, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--primary-color);
            font-size: 2rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .contact-info-card:hover .contact-icon {
            background-color: var(--primary-color);
            color: white;
        }
        
        .contact-icon::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 50%;
            border: 2px solid transparent;
            border-top-color: var(--secondary-color);
            border-right-color: var(--secondary-color);
            animation: contactIconSpin 3s linear infinite;
        }
        
        @keyframes contactIconSpin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        .contact-info-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .contact-info-card p {
            color: var(--gray-color);
            margin-bottom: 20px;
        }
        
        .contact-detail {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .contact-detail.phone {
            color: var(--secondary-color);
            font-size: 1.4rem;
        }
        
        /* 微信二维码区域 */
        .wechat-section {
            background-color: white;
            border-radius: 8px;
            padding: 60px 40px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .wechat-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }
        
        .wechat-title {
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .wechat-desc {
            color: var(--gray-color);
            max-width: 600px;
            margin: 0 auto 40px;
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        .wechat-qrcode {
            display: inline-block;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        .wechat-qrcode:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .wechat-qrcode img {
            width: 250px;
            height: 250px;
            display: block;
            margin-bottom: 15px;
        }
        
        .wechat-tip {
            color: var(--gray-color);
            font-size: 0.9rem;
        }
        
        /* 服务流程 */
        .process-section {
            padding: 80px 0 0;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 50px;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #e9ecef;
            z-index: 1;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .process-step.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background-color: white;
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary-color);
            font-size: 1.8rem;
            position: relative;
            transition: var(--transition);
        }
        
        .process-step.active .step-icon {
            background-color: var(--primary-color);
            color: white;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(10, 36, 99, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(10, 36, 99, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(10, 36, 99, 0);
            }
        }
        
        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            animation: numberPulse 2s infinite;
        }
        
        @keyframes numberPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }
        
        .process-step h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .process-step p {
            color: var(--gray-color);
            font-size: 0.9rem;
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .process-steps {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .process-step {
                flex: 0 0 calc(50% - 20px);
                margin-bottom: 40px;
            }
            
            .process-steps::before {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .page-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .page-hero-content p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                flex: 0 0 100%;
            }
            
            .wechat-qrcode img {
                width: 200px;
                height: 200px;
            }
        }
        
        @media (max-width: 576px) {
            .page-hero {
                height: 30vh;
                min-height: 250px;
            }
            
            .wechat-section {
                padding: 40px 20px;
            }
            
            .wechat-title {
                font-size: 1.6rem;
            }
        }