       /* ===== 转让知识库页面独享样式 ===== */
        .page-header {
            background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.9)), url('/template/jia/images/4.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0 80px;
            text-align: center;
            margin-top: 70px;
        }
        
        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .breadcrumb {
            background: white;
            padding: 15px 0;
            box-shadow: var(--shadow);
        }
        
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
        }
        
        .breadcrumb li {
            margin-right: 10px;
            color: var(--text-light);
        }
        
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
        }
        
        .breadcrumb a {
            color: var(--primary-color);
        }
        
        .breadcrumb a:hover {
            color: var(--secondary-color);
        }
        
        .knowledge-section {
            background: var(--light-color);
        }
        
        /* ===== 文章列表样式 ===== */
        .article-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .article-item {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .article-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .article-image {
            height: 200px;
            overflow: hidden;
        }
        
        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .article-item:hover .article-image img {
            transform: scale(1.05);
        }
        
        .article-content {
            padding: 25px;
        }
        
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        
        .article-meta span {
            display: flex;
            align-items: center;
        }
        
        .article-meta i {
            margin-right: 5px;
        }
        
        .article-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .article-content h3 a {
            color: var(--primary-color);
            text-decoration: none; /* 确保没有下划线 */
        }
        
        .article-content h3 a:hover {
            color: var(--secondary-color);
        }
        
        .article-excerpt {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .read-more {
            color: var(--secondary-color);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
        }
        
        .read-more i {
            margin-left: 5px;
            transition: var(--transition);
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        
        /* ===== 分页样式 ===== */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 50px;
            gap: 10px;
        }
        
        .page-num {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 4px;
            background: white;
            color: var(--primary-color);
            font-weight: 600;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .page-num:hover, .page-num-current {
            background: var(--secondary-color);
            color: white;
        }
        
        .page-num i {
            font-size: 0.9rem;
        }
        
        /* ===== 响应式样式 ===== */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .page-header p {
                font-size: 1rem;
            }
            
            .article-list {
                grid-template-columns: 1fr;
            }
            
            .pagination {
                flex-wrap: wrap;
            }
        }