
        /* ====== 联系我们页面独享CSS部分 ====== */
        
        /* 页面标题样式 */
        .page-header {
            padding: 150px 0 80px;
            background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/9.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
        }
        
        .page-title {
            font-size: 48px;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .page-subtitle {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        /* 联系我们内容样式 */
        .contact-content {
            padding: 80px 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
            margin-bottom: 60px;
        }
        
        .contact-info-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            padding: 40px;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .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.15);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background: #0066cc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: white;
            font-size: 32px;
            position: relative;
            z-index: 2;
            animation: iconFloat 3s ease-in-out infinite;
        }
        
        @keyframes iconFloat {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0);
            }
        }
        
        .contact-info-card h3 {
            font-size: 24px;
            color: #003366;
            margin-bottom: 20px;
        }
        
        .contact-details {
            list-style: none;
        }
        
        .contact-details li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .contact-details i {
            color: #0066cc;
            font-size: 18px;
            margin-top: 3px;
            flex-shrink: 0;
        }
        
        .contact-details span {
            color: #555;
            line-height: 1.6;
        }
        
        .contact-details .highlight {
            color: #0066cc;
            font-weight: 600;
            font-size: 20px;
        }
        
        /* 微信二维码板块 */
        .wechat-section {
            background: #f0f7ff;
            padding: 80px 0;
            text-align: center;
        }
        
        .wechat-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            font-size: 36px;
            color: #003366;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #0066cc;
        }
        
        .section-subtitle {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto 40px;
        }
        
        .wechat-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            padding: 50px;
            display: inline-block;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .wechat-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(transparent, rgba(0, 102, 204, 0.1), transparent 30%);
            animation: rotate 8s linear infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .wechat-card:hover::before {
            opacity: 1;
        }
        
        .wechat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .wechat-qrcode {
            width: 200px;
            height: 200px;
            background: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
		
		.wechat-qrcode img {
            width: 100%;
            height: 100%;
        }
        
        .wechat-qrcode::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(transparent, rgba(0, 102, 204, 0.1), transparent 30%);
            animation: rotate 6s linear infinite;
        }
        
        .wechat-qrcode span {
            color: #003366;
            font-weight: 600;
            position: relative;
            z-index: 1;
        }
        
        .wechat-info {
            text-align: center;
        }
        
        .wechat-info h3 {
            font-size: 22px;
            color: #003366;
            margin-bottom: 10px;
        }
        
        .wechat-info p {
            color: #666;
            margin-bottom: 5px;
        }
        
        /* 服务流程样式 */
        .process-section {
            padding: 80px 0;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #0066cc;
            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-number {
            width: 80px;
            height: 80px;
            background: #0066cc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 24px;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
            position: relative;
            overflow: hidden;
            animation: stepPulse 2s infinite;
        }
        
        @keyframes stepPulse {
            0% {
                box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
            }
            50% {
                box-shadow: 0 5px 25px rgba(0, 102, 204, 0.6);
            }
            100% {
                box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
            }
        }
        
        .step-number::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(transparent, rgba(255, 255, 255, 0.3), transparent 30%);
            animation: rotate 6s linear infinite;
        }
        
        .process-step h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #003366;
        }
        
        .process-step p {
            color: #666;
            padding: 0 10px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .process-steps {
                flex-wrap: wrap;
                gap: 30px;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .process-step {
                flex: 0 0 calc(50% - 15px);
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background: white;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
                transition: all 0.4s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-item {
                margin: 15px 0;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .page-title {
                font-size: 36px;
            }
            
            .page-subtitle {
                font-size: 18px;
            }
            
            .process-step {
                flex: 0 0 100%;
            }
        }
        
        @media (max-width: 576px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .page-title {
                font-size: 28px;
            }
            
            .page-subtitle {
                font-size: 16px;
            }
            
            .contact-info-card {
                padding: 25px;
            }
            
            .wechat-card {
                padding: 30px 20px;
            }
            
            .wechat-qrcode {
                width: 180px;
                height: 180px;
            }
        }