        /* 文章头部样式 */
        .article-header {
            padding: 150px 0 80px;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            text-align: center;
            margin-top: 70px;
        }
        
        .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;
            margin-bottom: 30px;
            color: #666;
            font-size: 0.95rem;
        }
        
        .article-meta span {
            margin: 0 15px;
            display: flex;
            align-items: center;
        }
        
        .article-meta i {
            margin-right: 5px;
            color: #4a8cff;
        }
        
        .article-featured-image {
            max-width: 900px;
            margin: 0 auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            animation: float 6s ease-in-out infinite;
        }
        
        /* 文章内容样式 */
        .article-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 50px 0;
        }
        
        .article-content p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        
        .article-content h2, .article-content h3 {
            color: #1a3a6c;
            margin: 40px 0 20px;
        }
        
        .article-content h2 {
            font-size: 2rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .article-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #1a3a6c, #4a8cff);
            border-radius: 2px;
        }
        
        .article-content h3 {
            font-size: 1.5rem;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            border-left: 5px solid #4a8cff;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .highlight-box h4 {
            color: #1a3a6c;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .benefits-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        
        .benefit-item {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .benefit-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            color: #4a8cff;
            margin-bottom: 15px;
        }
        
        .benefit-item h4 {
            color: #1a3a6c;
            margin-bottom: 10px;
        }
        
        /* 服务流程样式 */
        .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;
        }
        
        .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;
        }
        
        .process-step:hover .step-icon {
            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;
        }
        
        .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;
        }
        
        /* 相关服务样式 */
        .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);
        }
        
       
        
        /* 动画效果 */
        @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 float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        /* 响应式设计 */
        @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;
            }
        }
        
        @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;
            }
            
            .article-title {
                font-size: 2.2rem;
            }
            
            .services-grid,
            .benefits-list {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                width: 100%;
            }
            
            .header-phone {
                display: none;
            }
        }
        
        @media (max-width: 576px) {
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .article-title {
                font-size: 1.8rem;
            }
            
            .article-meta {
                flex-direction: column;
            }

            
            .article-meta span {
                margin: 5px 0;
            }
            
            .footer-links {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
        }