      
        
        /* 页面标题横幅 */
        .page-header {
            padding: 140px 0 80px;
            background: linear-gradient(135deg, rgba(26, 103, 198, 0.1), rgba(52, 199, 179, 0.1));
            text-align: center;
            margin-top: 70px;
        }
        
        .page-header h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .page-header p {
            font-size: 1.2rem;
            color: var(--gray-color);
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1.2s ease;
        }
        
        /* 广告横幅 */
        .ad-banner {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            padding: 30px 0;
            text-align: center;
            margin: 40px 0;
            border-radius: 10px;
            box-shadow: var(--shadow);
            animation: pulse 2s infinite ease-in-out;
        }
        
        .ad-banner h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .ad-banner p {
            font-size: 1.2rem;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .ad-banner .btn {
            background: white;
            color: var(--primary-color);
            font-weight: 700;
        }
        
        .ad-banner .btn:hover {
            background: var(--light-color);
            transform: translateY(-3px);
        }
        
        /* 文章列表样式 */
        .knowledge-section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            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(--accent-color);
        }
        
        .section-title p {
            color: var(--gray-color);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .filter-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .filter-tab {
            padding: 10px 25px;
            background: white;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .filter-tab.active, .filter-tab:hover {
            background: var(--primary-color);
            color: white;
        }
        
        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .knowledge-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            animation: fadeInUp 1s ease;
        }
        
        .knowledge-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .knowledge-img-container {
            height: 200px;
            overflow: hidden;
        }
        
        .knowledge-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .knowledge-card:hover .knowledge-img {
            transform: scale(1.05);
        }
        
        .knowledge-content {
            padding: 25px;
        }
        
        .knowledge-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark-color);
            line-height: 1.4;
        }
        
        .knowledge-content p {
            color: var(--gray-color);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .knowledge-meta {
            display: flex;
            justify-content: space-between;
            color: var(--gray-color);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        
        .knowledge-meta span {
            display: flex;
            align-items: center;
        }
        
        .knowledge-meta i {
            margin-right: 5px;
        }
        
        /* 服务流程部分 */
        .process {
            background-color: var(--light-color);
            padding: 80px 0;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin: 60px 0;
        }
        
        .process-steps:before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--accent-color);
            z-index: 1;
        }
        
        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            animation: pulse 2s infinite ease-in-out;
        }
        
        .step:nth-child(2) {
            animation-delay: 0.4s;
        }
        
        .step:nth-child(3) {
            animation-delay: 0.8s;
        }
        
        .step:nth-child(4) {
            animation-delay: 1.2s;
        }
        
        .step:nth-child(5) {
            animation-delay: 1.6s;
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background-color: white;
            border: 2px solid var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--accent-color);
            font-size: 30px;
            position: relative;
            box-shadow: var(--shadow);
        }
        
        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }
        
        .step h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--dark-color);
        }
        
        /* 服务展示部分 */
        .services-showcase {
            padding: 80px 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            padding: 30px;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(52, 199, 179, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--accent-color);
            font-size: 30px;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .service-card p {
            color: var(--gray-color);
            margin-bottom: 20px;
        }
        
        .price {
            font-size: 1.8rem;
            color: var(--primary-color);
            font-weight: 700;
            margin: 15px 0;
        }
        
        /* 分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 50px;
            gap: 10px;
        }
        
        .page-num {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: white;
            color: var(--dark-color);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .page-num.active, .page-num:hover {
            background: var(--primary-color);
            color: white;
        }
        
    
        
        /* 动画 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes pulse {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0);
            }
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .process-steps {
                flex-direction: column;
                gap: 40px;
            }
            
            .process-steps:before {
                display: none;
            }
            
            .nav-phone {
                font-size: 16px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: var(--transition);
                gap: 30px;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-phone {
                display: none;
            }
            
            .mobile-phone {
                display: block;
                margin-top: 20px;
                color: var(--primary-color);
                font-weight: 700;
                font-size: 18px;
            }
            
            .hamburger {
                display: block;
                font-size: 24px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .friend-links ul {
                flex-direction: column;
                gap: 10px;
            }
            
            .knowledge-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (min-width: 769px) {
            .mobile-phone {
                display: none;
            }
        }