       /* ====== 独享CSS部分（知识库页面） ====== */
        /* 页面顶部横幅 */
        .page-header {
            min-height: 60vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 120px;
            background: linear-gradient(135deg, #0f1a36 0%, #1c2b5c 70%, #283593 100%);
            margin-bottom: 80px;
        }
        
        .page-header:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .page-header:after {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            border-radius: 50%;
            animation: pulseGlow 8s ease-in-out infinite alternate;
        }
        
        @keyframes pulseGlow {
            0% { opacity: 0.3; transform: scale(1); }
            100% { opacity: 0.5; transform: scale(1.1); }
        }
        
        .page-header-content {
            position: relative;
            z-index: 2;
            color: white;
            max-width: 900px;
        }
        
        .page-header-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: badgePulse 3s infinite alternate;
        }
        
        @keyframes badgePulse {
            0% { box-shadow: 0 0 10px rgba(255, 255, 255, 0.2); }
            100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.4); }
        }
        
        .page-header-title {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .page-header-desc {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 800px;
        }
        
        /* 知识库搜索与筛选 */
        .knowledge-filters {
            margin-bottom: 60px;
        }
        
        .filters-container {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
        }
        
        .filter-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 25px;
            align-items: center;
        }
        
        .filter-row:last-child {
            margin-bottom: 0;
        }
        
        .filter-label {
            font-weight: 600;
            color: var(--primary);
            font-size: 1.1rem;
            min-width: 100px;
        }
        
        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            flex: 1;
        }
        
        .filter-tag {
            background: rgba(0, 180, 216, 0.1);
            color: var(--accent);
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
        }
        
        .filter-tag:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-3px);
        }
        
        .filter-tag.active {
            background: var(--gradient-accent);
            color: white;
            border-color: transparent;
        }
        
        .search-container {
            position: relative;
            flex: 1;
        }
        
        .search-input {
            width: 100%;
            padding: 16px 20px 16px 55px;
            border-radius: 50px;
            border: 2px solid rgba(15, 26, 54, 0.1);
            font-size: 1rem;
            transition: var(--transition);
            background: var(--light);
        }
        
        .search-input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 5px 20px rgba(0, 180, 216, 0.1);
        }
        
        .search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent);
            font-size: 1.2rem;
        }
        
        .btn-search {
            background: var(--gradient-accent);
            color: white;
            padding: 16px 30px;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 8px 20px rgba(0, 180, 216, 0.2);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-search:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 180, 216, 0.3);
        }
        
        /* 知识库文章列表 */
        .knowledge-articles {
            margin-bottom: 80px;
        }
        
        .articles-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .section-title {
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--accent);
            bottom: -10px;
            left: 0;
        }
        
        .articles-count {
            color: #666;
            font-size: 1.1rem;
        }
        
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .article-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .article-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .article-card:hover .article-image img {
            transform: scale(1.05);
        }
        
        .article-category {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--gradient-accent);
            color: white;
            padding: 6px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .article-content {
            padding: 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            color: #666;
            font-size: 0.9rem;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .meta-item i {
            color: var(--accent);
        }
        
        .article-title {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        /* H3链接无下划线样式 */
        .article-title a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .article-title a:hover {
            color: var(--accent);
        }
        
        .article-excerpt {
            color: #666;
            margin-bottom: 20px;
            flex: 1;
        }
        
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 25px;
        }
        
        .article-tag {
            background: rgba(0, 180, 216, 0.1);
            color: var(--accent);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .article-read-more {
            color: var(--accent);
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }
        
        .article-read-more:hover {
            gap: 12px;
        }
        
        /* 分页样式 */
        .pagination-container {
            display: flex;
            justify-content: center;
            margin-top: 60px;
        }
        
        .pagination {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .page-num {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: white;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(15, 26, 54, 0.08);
        }
        
        .page-num:hover {
            background: rgba(0, 180, 216, 0.1);
            color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(15, 26, 54, 0.12);
        }
        
        .page-num-current {
            background: var(--gradient-accent);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 180, 216, 0.2);
        }
        
        .page-num-current:hover {
            background: var(--gradient-accent);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 180, 216, 0.3);
        }
        
        /* 热门文章区域 */
        .featured-articles {
            margin-bottom: 80px;
        }
        
        .featured-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .featured-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }
        
        .featured-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .featured-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .featured-card:hover .featured-image img {
            transform: scale(1.05);
        }
        
        .featured-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(90deg, #FF9800, #FF5722);
            color: white;
            padding: 6px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .featured-content {
            padding: 25px;
        }
        
        .featured-title {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .featured-title a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .featured-title a:hover {
            color: var(--accent);
        }
        
        .featured-excerpt {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }
        
        /* 知识库CTA */
        .knowledge-cta {
            background: var(--gradient-primary);
            border-radius: var(--border-radius);
            padding: 80px 50px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
            margin-bottom: 80px;
        }
        
        .knowledge-cta:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%2300b4d8' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
        }
        
        .cta-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 40px;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background: var(--gradient-accent);
            color: white;
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0, 180, 216, 0.2);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 180, 216, 0.3);
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            color: white;
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-5px);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .page-header-title {
                font-size: 3rem;
            }
            
            .articles-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .filter-row {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .filter-label {
                min-width: auto;
            }
            
            .search-container {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .page-header-title {
                font-size: 2.5rem;
            }
            
            .page-header-desc {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .articles-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .articles-grid {
                grid-template-columns: 1fr;
            }
            
            .knowledge-cta {
                padding: 60px 30px;
            }
            
            .cta-title {
                font-size: 2.2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .page-header-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .filters-container {
                padding: 20px;
            }
            
            .filter-tag {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
            
            .article-content {
                padding: 20px;
            }
            
            .article-title {
                font-size: 1.3rem;
            }
            
            .featured-grid {
                grid-template-columns: 1fr;
            }
        }