      
        /* 文章头部样式 */
        .article-header {
            padding: 150px 0 80px;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .article-header::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: 0;
        }
        
        .article-header-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .article-title {
            font-size: 3rem;
            font-weight: 700;
            color: #1a3a6c;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .article-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
            color: #666;
        }
        
        .article-meta-item {
            display: flex;
            align-items: center;
            font-size: 0.95rem;
        }
        
        .article-meta-item i {
            margin-right: 8px;
            color: #4a8cff;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            font-size: 0.9rem;
        }
        
        .breadcrumb a {
            color: #4a8cff;
        }
        
        .breadcrumb a:hover {
            color: #1a3a6c;
        }
        
        .breadcrumb span {
            margin: 0 10px;
            color: #999;
        }
        
        /* 文章内容样式 */
        .article-content {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 50px;
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }
        
        .article-intro {
            font-size: 1.2rem;
            color: #1a3a6c;
            margin-bottom: 30px;
            padding: 20px;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            border-radius: 10px;
            border-left: 5px solid #4a8cff;
        }
        
        .content-section {
            margin-bottom: 50px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .content-section.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .content-section h2 {
            font-size: 1.8rem;
            color: #1a3a6c;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
            position: relative;
        }
        
        .content-section h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: #4a8cff;
        }
        
        .content-section h3 {
            font-size: 1.4rem;
            color: #1a3a6c;
            margin: 25px 0 15px;
        }
        
        .content-section p {
            margin-bottom: 15px;
            line-height: 1.8;
        }
        
        .content-section ul, .content-section ol {
            margin-bottom: 20px;
        }
        
        .content-section li {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 5px solid #4a8cff;
            position: relative;
            overflow: hidden;
        }
        
        .highlight-box::before {
            content: '\f0eb';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 3rem;
            color: rgba(74, 140, 255, 0.1);
            z-index: 0;
        }
        
        .highlight-box h4 {
            color: #1a3a6c;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        
        /* 服务展示样式 */
        .services-showcase {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 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;
            text-align: center;
            padding: 40px 25px;
            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-icon {
            font-size: 3.5rem;
            color: #4a8cff;
            margin-bottom: 25px;
            transition: all 0.5s ease;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1a3a6c;
            transition: all 0.3s ease;
        }
        
        .service-card:hover h3 {
            color: #4a8cff;
        }
        
        .service-card p {
            color: #666;
            margin-bottom: 25px;
            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);
        }
        
        /* 相关文章样式 */
        .related-articles {
            margin-top: 50px;
        }
        
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .article-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .article-card.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .article-image {
            height: 200px;
            overflow: hidden;
        }
        
        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .article-card:hover .article-image img {
            transform: scale(1.1);
        }
        
        .article-card-content {
            padding: 25px;
        }
        
        .article-card-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #1a3a6c;
            line-height: 1.4;
        }
        
        .article-card-content p {
            color: #666;
            margin-bottom: 15px;
            font-size: 0.9rem;
            line-height: 1.6;
        }
        
        .article-date {
            font-size: 0.8rem;
            color: #999;
            display: flex;
            align-items: center;
        }
        
        .article-date i {
            margin-right: 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;
            animation: lineFlow 3s infinite linear;
        }
        
        @keyframes lineFlow {
            0% {
                background-position: 0% 0%;
            }
            100% {
                background-position: 100% 0%;
            }
        }
        
        .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: iconFloat 3s infinite ease-in-out;
        }
        
        @keyframes iconFloat {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .process-step:hover .step-icon {
            animation: none;
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .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: numberPulse 2s infinite;
        }
        
        @keyframes numberPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }
        
        .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;
        }
        
 
        
        /* 动画效果 */
        @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);
            }
        }
        
        /* 响应式设计 */
        @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;
            }
            
            .article-title {
                font-size: 2.5rem;
            }
        }
        
        @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;
            }
            
            .services-grid,
            .articles-grid {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                width: 100%;
            }
            
            .header-phone {
                display: none;
            }
            
            .article-title {
                font-size: 2rem;
            }
            
            .article-content {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .footer-links {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .article-header {
                padding: 120px 0 60px;
            }
        }