        
        /* 联系我们页面特有样式 */
        
        /* 页面横幅 */
        .contact-banner {
            margin-top: 70px;
            background: linear-gradient(135deg, #1a3a6c 0%, #4a8cff 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .contact-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/28.jpg') center/cover no-repeat;
            opacity: 0.1;
            z-index: 1;
        }
        
        .contact-banner-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 1s ease;
        }
        
        .contact-banner h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .contact-banner p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .contact-highlights {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        
        .contact-highlight {
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 30px 20px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            width: 200px;
        }
        
        .contact-highlight:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.2);
        }
        
        .contact-highlight i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #ffd700;
        }
        
        .contact-highlight h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        /* 联系信息部分 */
        .contact-info-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
        }
        
        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .contact-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }
        
        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #1a3a6c, #4a8cff);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        
        .contact-card:hover::before {
            transform: scaleX(1);
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .contact-card i {
            font-size: 3.5rem;
            color: #4a8cff;
            margin-bottom: 25px;
            transition: all 0.5s ease;
        }
        
        .contact-card:hover i {
            transform: scale(1.1) rotate(5deg);
        }
        
        .contact-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1a3a6c;
        }
        
        .contact-card p {
            color: #666;
            margin-bottom: 10px;
        }
        
        .phone-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #4a8cff;
            margin: 15px 0;
        }
        
        /* 微信二维码板块 */
        .wechat-qr-section {
            background: white;
        }
        
        .wechat-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
        }
        
        .wechat-card {
            text-align: center;
            max-width: 300px;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.5s ease;
            background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
        }
        
        .wechat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .qr-code {
            width: 200px;
            height: 200px;
            margin: 0 auto 20px;
            border: 10px solid white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .qr-code img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .wechat-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1a3a6c;
        }
        
        .wechat-card p {
            color: #666;
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .wechat-id {
            display: inline-block;
            background: #f0f7ff;
            color: #4a8cff;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            margin-top: 10px;
        }
        
        /* 主要业务部分 */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.5s ease;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .service-card.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #1a3a6c, #4a8cff);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-image {
            height: 200px;
            overflow: hidden;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1a3a6c;
            transition: all 0.3s ease;
        }
        
        .service-card:hover h3 {
            color: #4a8cff;
        }
        
        .service-content p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .price {
            font-size: 1.8rem;
            font-weight: 700;
            color: #4a8cff;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .price::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #4a8cff;
            transition: width 0.5s ease;
        }
        
        .service-card:hover .price::after {
            width: 100%;
        }
        
        .detail-link {
            display: inline-block;
            color: #4a8cff;
            font-weight: 600;
            position: relative;
            padding: 5px 0;
            transition: all 0.3s ease;
        }
        
        .detail-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #4a8cff;
            transition: width 0.3s ease;
        }
        
        .detail-link:hover {
            color: #1a3a6c;
            transform: translateX(5px);
        }
        
        .detail-link:hover::after {
            width: 100%;
        }
        
        .detail-link i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .detail-link:hover i {
            transform: translateX(5px);
        }
        
        /* 服务流程样式 - 增强动画效果 */
        .process-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .process-line {
            position: absolute;
            top: 50px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, #1a3a6c, #4a8cff);
            z-index: 1;
            overflow: hidden;
        }
        
        .process-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
            animation: shimmer 3s infinite;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }
        
        .process-step {
            text-align: center;
            width: 20%;
            animation: pulse 2s infinite;
        }
        
        .step-icon {
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            font-size: 2.5rem;
            color: #4a8cff;
            position: relative;
            transition: all 0.5s ease;
            animation: rotate 10s infinite linear;
        }
        
        .process-step:hover .step-icon {
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            animation-play-state: paused;
        }
        
        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            background: #4a8cff;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: 700;
            animation: bounce 2s infinite;
        }
        
        .process-step h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #1a3a6c;
            line-height: 1.4;
        }
        
        .process-step p {
            line-height: 1.6;
            padding: 0 10px;
        }
        
        /* 文章列表样式 */
        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .knowledge-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.5s ease;
        }
        
        .knowledge-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .knowledge-image {
            height: 200px;
            overflow: hidden;
        }
        
        .knowledge-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .knowledge-card:hover .knowledge-image img {
            transform: scale(1.1);
        }
        
        .knowledge-content {
            padding: 25px;
        }
        
        .knowledge-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #1a3a6c;
        }
        
        .knowledge-content p {
            color: #666;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .knowledge-date {
            font-size: 0.8rem;
            color: #999;
        }
  
        
        /* 新增动画效果 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }
        
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        @keyframes shimmer {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .process-steps {
                flex-wrap: wrap;
            }
            
            .process-step {
                width: 50%;
                margin-bottom: 30px;
            }
            
            .process-line {
                display: none;
            }
            
            .header-phone {
                font-size: 1rem;
            }
            
            .wechat-container {
                gap: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.3s ease;
            }
            
            nav ul.active {
                left: 0;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .contact-banner h1 {
                font-size: 2.5rem;
            }
            
            .contact-banner p {
                font-size: 1.1rem;
            }
            
            .services-grid,
            .contact-info-grid,
            .knowledge-grid {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                width: 100%;
            }
            
            .header-phone {
                display: none;
            }
            
            .wechat-container {
                flex-direction: column;
                gap: 30px;
            }
            
            .wechat-card {
                max-width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .contact-banner h1 {
                font-size: 2rem;
            }
            
            .footer-links {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .contact-highlights {
                gap: 20px;
            }
            
            .contact-highlight {
                width: 100%;
                max-width: 250px;
            }
            
            .qr-code {
                width: 180px;
                height: 180px;
            }
        }