   /* ===== 独享CSS样式 - 转让知识库页面 ===== */
        section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            margin-bottom: 70px;
            position: relative;
            text-align: center;
        }
        
        .section-title h2 {
            font-size: 3rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 30px auto 0;
        }
        
        /* ===== 几何背景元素 ===== */
        .bg-shape {
            position: absolute;
            z-index: -1;
            opacity: 0.05;
        }
        
        .shape-1 {
            top: 10%;
            right: 5%;
            width: 300px;
            height: 300px;
            background: var(--primary);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }
        
        .shape-2 {
            bottom: 10%;
            left: 5%;
            width: 200px;
            height: 200px;
            background: var(--accent);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation: morph 10s linear infinite;
        }
        
        .shape-3 {
            top: 50%;
            left: 10%;
            width: 150px;
            height: 150px;
            background: var(--secondary);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            animation: rotate 20s linear infinite;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }
        
        @keyframes morph {
            0%, 100% {
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            }
            25% {
                border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
            }
            50% {
                border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
            }
            75% {
                border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
            }
        }
        
        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        /* ===== 英雄区域 ===== */
        .hero {
            height: 70vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: var(--gradient);
        }
        
        .hero-content {
            max-width: 800px;
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3.8rem;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        /* ===== 知识库内容区 ===== */
        .knowledge {
            background-color: var(--light);
        }
        
        .knowledge-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .knowledge-list {
            list-style: none;
            margin-bottom: 60px;
        }
        
        .knowledge-item {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            gap: 25px;
        }
        
        .knowledge-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .knowledge-thumbnail {
            flex: 0 0 250px;
            height: 180px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }
        
        .knowledge-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .knowledge-item:hover .knowledge-thumbnail img {
            transform: scale(1.05);
        }
        
        .knowledge-content {
            flex: 1;
        }
        
        .knowledge-item h3 {
            font-size: 1.6rem;
            color: var(--primary);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .knowledge-item h3 a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }
        
        .knowledge-item h3 a:hover {
            color: var(--accent);
        }
        
        .knowledge-item h3 i {
            margin-right: 15px;
            color: var(--accent);
        }
        
        .knowledge-item p {
            color: var(--gray);
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .knowledge-meta {
            display: flex;
            justify-content: space-between;
            color: var(--gray);
            font-size: 0.9rem;
            border-top: 1px solid #eee;
            padding-top: 15px;
        }
        
        /* ===== 分页样式 ===== */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 50px;
            gap: 10px;
        }
        
        .page-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .page-num:hover {
            background: var(--gradient);
            color: white;
            transform: translateY(-3px);
        }
        
        .page-num-current {
            background: var(--gradient);
            color: white;
        }
        
        /* ===== 响应式设计 - 独享部分 ===== */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3.2rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero {
                height: auto;
                padding: 150px 0 100px;
            }
            
            .hero-content {
                max-width: 100%;
            }
            
            .knowledge-item {
                flex-direction: column;
            }
            
            .knowledge-thumbnail {
                flex: 0 0 auto;
                width: 100%;
                height: 200px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .knowledge-meta {
                flex-direction: column;
                gap: 10px;
            }
        }