
 /* 搜索区域样式 - 清新渐变设计 */
        .page-downloads__search-section {
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.95) 0%, 
                rgba(240, 247, 255, 0.95) 100%);
            border-radius: 0px;
            padding: 3rem;
            box-shadow: 0 15px 40px rgba(57, 73, 171, 0.15);
            position: relative;
            z-index: 20;
            margin-left: auto;
            margin-right: auto;
            border: 1px solid rgba(255,255,255,0.3);
            backdrop-filter: blur(10px);
            overflow: hidden;
        }
        
        .page-downloads__search-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(57, 73, 171, 0.05));
            border-radius: 50%;
            z-index: 0;
        }
        
        .page-downloads__search-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -15%;
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, rgba(156, 39, 176, 0.05), rgba(103, 58, 183, 0.1));
            border-radius: 50%;
            z-index: 0;
        }
        
        .page-downloads__search-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #1a237e;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
        }
        
        .page-downloads__search-title i {
            margin-right: 1rem;
            background: linear-gradient(135deg, #3949ab, #5c6bc0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.8rem;
        }
        
        .page-downloads__search-form {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }
        
        .page-downloads__search-input {
            flex: 1;
            padding: 1.2rem 1.8rem;
            border: 2px solid rgba(224, 224, 224, 0.5);
            border-radius: 12px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.9);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .page-downloads__search-input:focus {
            border-color: #3949ab;
            box-shadow: 0 5px 20px rgba(57, 73, 171, 0.2);
            outline: none;
            background: white;
        }
        
        .page-downloads__search-btn {
            background: linear-gradient(135deg, #3949ab, #5c6bc0);
            color: white;
            border: none;
            padding: 0 2.5rem;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(57, 73, 171, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .page-downloads__search-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(57, 73, 171, 0.4);
        }
        
        .page-downloads__quick-search {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            position: relative;
            z-index: 1;
        }
        
        .page-downloads__quick-search-tag {
            background: linear-gradient(135deg, rgba(57, 73, 171, 0.1), rgba(103, 58, 183, 0.1));
            color: #3949ab;
            padding: 0.6rem 1.3rem;
            border-radius: 25px;
            font-size: 0.95rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(57, 73, 171, 0.2);
            display: flex;
            align-items: center;
        }
        
        .page-downloads__quick-search-tag i {
            margin-right: 0.5rem;
            font-size: 0.9rem;
        }
        
        .page-downloads__quick-search-tag:hover {
            background: linear-gradient(135deg, #3949ab, #5c6bc0);
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(57, 73, 171, 0.3);
            border-color: transparent;
        }
        
        /* 文件类型图标样式 */
        .page-downloads__file-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            margin-right: 0.8rem;
            font-size: 1.2rem;
        }
        
        .page-downloads__file-icon--pdf {
            background: linear-gradient(135deg, #ff5252, #ff8a80);
            color: white;
        }
        
        .page-downloads__file-icon--ppt {
            background: linear-gradient(135deg, #ff9800, #ffb74d);
            color: white;
        }
        
        .page-downloads__file-icon--excel {
            background: linear-gradient(135deg, #4caf50, #81c784);
            color: white;
        }
        
        .page-downloads__file-icon--word {
            background: linear-gradient(135deg, #2196f3, #64b5f6);
            color: white;
        }
        
        .page-downloads__file-icon--zip {
            background: linear-gradient(135deg, #9c27b0, #ba68c8);
            color: white;
        }
        
        .page-downloads__file-icon--video {
            background: linear-gradient(135deg, #673ab7, #9575cd);
            color: white;
        }
        
        .page-downloads__file-icon--data {
            background: linear-gradient(135deg, #607d8b, #90a4ae);
            color: white;
        }
        
        
         /* 分类区域 */
        .download-categories {
            padding: 30px 0;
            margin-bottom: 30px;
        }
        
        .download-categories .section-title {
            font-size: 24px;
            color: #1a3c8b;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eaeff7;
            display: flex;
            align-items: center;
        }
        
        .download-categories .section-title i {
            margin-right: 12px;
            color: #2a5bd7;
        }
        
        .download-categories .categories-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .download-categories .category-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-top: 4px solid #2a5bd7;
        }
        
        .download-categories .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .download-categories .category-card .category-header {
            padding: 20px;
            background-color: #f8fafe;
            border-bottom: 1px solid #eaeff7;
        }
        
        .download-categories .category-card .category-title {
            font-size: 18px;
            font-weight: 700;
            color: #1a3c8b;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .download-categories .category-card .category-title i {
            margin-right: 10px;
            font-size: 20px;
            color: #2a5bd7;
        }
        
        .download-categories .category-card .category-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }
        
        .download-categories .category-card .category-links {
            padding: 15px 20px;
        }
        
        .download-categories .category-card .category-link {
            display: block;
            padding: 10px 0;
            border-bottom: 1px dashed #eaeff7;
            color: #555;
            transition: all 0.2s ease;
            font-size: 15px;
        }
        
        .download-categories .category-card .category-link:hover {
            color: #2a5bd7;
            padding-left: 5px;
        }
        
        .download-categories .category-card .category-link:last-child {
            border-bottom: none;
        }
        
        
         /* 内容区域 - 推荐和热门 */
        .download-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        @media (max-width: 1100px) {
            .download-content {
                grid-template-columns: 1fr;
            }
        }
        
        .download-content .content-section {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .download-content .section-header {
            padding: 20px 25px;
            background: linear-gradient(to right, #f8fafe, #eef2fc);
            border-bottom: 1px solid #eaeff7;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .download-content .section-header h3 {
            font-size: 20px;
            color: #1a3c8b;
            display: flex;
            align-items: center;
        }
        
        .download-content .section-header h3 i {
            margin-right: 10px;
            color: #2a5bd7;
        }
        
        .download-content .section-header .view-all {
            color: #2a5bd7;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.2s ease;
        }
        
        .download-content .section-header .view-all:hover {
            color: #1a3c8b;
            text-decoration: underline;
        }
        
        .download-content .files-list {
            padding: 0;
        }
        
        .download-content .file-item {
            display: flex;
            align-items: center;
            padding: 18px 25px;
            border-bottom: 1px solid #eaeff7;
            transition: all 0.2s ease;
        }
        
        .download-content .file-item:hover {
            background-color: #f8fafe;
        }
        
        .download-content .file-item:last-child {
            border-bottom: none;
        }
        
        .download-content .file-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
            font-size: 22px;
            color: white;
            flex-shrink: 0;
        }
        
        .download-content .file-icon.pdf {
            background-color: #e74c3c;
        }
        
        .download-content .file-icon.word {
            background-color: #2a5bd7;
        }
        
        .download-content .file-icon.excel {
            background-color: #27ae60;
        }
        
        .download-content .file-icon.image {
            background-color: #f39c12;
        }
        
        .download-content .file-icon.text {
            background-color: #8e44ad;
        }
        
        .download-content .file-info {
            flex: 1;
        }
        
        .download-content .file-name {
            font-weight: 600;
            font-size: 16px;
            color: #333;
            margin-bottom: 5px;
            display: block;
        }
        
        .download-content .file-desc {
            font-size: 14px;
            color: #666;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .download-content .file-meta {
            display: flex;
            font-size: 13px;
            color: #888;
            margin-top: 5px;
        }
        
        .download-content .file-size {
            margin-right: 15px;
        }
        
        .download-content .file-downloads {
            display: flex;
            align-items: center;
        }
        
        .download-content .file-downloads i {
            margin-right: 5px;
        }
        
        .download-content .download-btn {
            background-color: #f0f5ff;
            color: #2a5bd7;
            border: none;
            border-radius: 6px;
            padding: 8px 16px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        
        .download-content .download-btn:hover {
            background-color: #2a5bd7;
            color: white;
        }
        
        
         /* 分类展示板块样式 */
        .category-display-section {
            margin: 30px 0;
        }
        
        .category-display-section .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .category-display-section .section-title {
            font-size: 32px;
            color: #1a3c8b;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .category-display-section .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 5px;
            background: linear-gradient(to right, #2a5bd7, #ffcc00);
            border-radius: 3px;
        }
        
        .category-display-section .section-subtitle {
            color: #666;
            font-size: 18px;
            max-width: 900px;
            margin: 25px auto 0;
            line-height: 1.8;
        }
        
        /* 分类展示主容器 */
        .category-display-container {
            border: 2px solid #d1d9e6;
            border-radius: 15px;
            overflow: hidden;
            background-color: white;
            box-shadow: 0 12px 40px rgba(26, 60, 139, 0.12);
        }
        
        /* 三栏布局 - 优化比例 */
        .category-display-layout {
            display: flex;
            min-height: 700px;
        }
        
        /* 左侧分类信息栏 - 加宽 */
        .category-info-sidebar {
            width: 320px; /* 加宽 */
            background: linear-gradient(180deg, #f8fafe 0%, #f0f5ff 100%);
            padding: 40px 25px;
            border-right: 2px solid #eaeff7;
            display: flex;
            flex-direction: column;
        }
        
        .category-info-sidebar .category-icon {
            width: 90px;
            height: 90px;
            border-radius: 18px;
            background: linear-gradient(135deg, #2a5bd7 0%, #1a3c8b 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 40px;
            color: white;
            box-shadow: 0 8px 20px rgba(42, 91, 215, 0.4);
        }
        
        .category-info-sidebar .category-name {
            font-size: 28px;
            font-weight: bold;
            color: #1a3c8b;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .category-info-sidebar .category-description {
            color: #555;
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 30px;
            flex: 1;
        }
        
        .category-info-sidebar .category-stats {
            background-color: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border: 2px solid #eaeff7;
            margin-bottom: 25px;
        }
        
        .category-info-sidebar .stat-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 2px dashed #eaeff7;
        }
        
        .category-info-sidebar .stat-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .category-info-sidebar .stat-label {
            color: #666;
            font-size: 16px;
            display: flex;
            align-items: center;
        }
        
        .category-info-sidebar .stat-label i {
            margin-right: 10px;
            color: #2a5bd7;
        }
        
        .category-info-sidebar .stat-value {
            color: #2a5bd7;
            font-weight: bold;
            font-size: 18px;
        }
        
        .category-info-sidebar .category-action {
            margin-top: 20px;
        }
        
        .category-info-sidebar .view-all-btn {
            display: block;
            width: 100%;
            padding: 15px;
            background: linear-gradient(to right, #2a5bd7, #1a3c8b);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: bold;
            font-size: 17px;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            box-shadow: 0 5px 15px rgba(42, 91, 215, 0.3);
        }
        
        .category-info-sidebar .view-all-btn:hover {
            background: linear-gradient(to right, #1a3c8b, #0d2a6e);
            box-shadow: 0 8px 20px rgba(42, 91, 215, 0.4);
            transform: translateY(-3px);
        }
        
        /* 中间内容区域 - 调整宽度 */
        .category-content-main {
            flex: 1;
            padding: 35px 40px;
            display: flex;
            flex-direction: column;
            min-width: 0; /* 防止内容溢出 */
        }
        
        /* 小分类标签切换 */
        .subcategory-tabs {
            display: flex;
            border-bottom: 3px solid #eaeff7;
            margin-bottom: 30px;
            overflow-x: auto;
            padding-bottom: 5px;
        }
        
        .subcategory-tabs::-webkit-scrollbar {
            height: 6px;
        }
        
        .subcategory-tabs::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }
        
        .subcategory-tabs::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 3px;
        }
        
        .subcategory-tab {
            padding: 15px 28px;
            font-size: 17px;
            font-weight: 600;
            color: #666;
            background: none;
            border: none;
            border-bottom: 4px solid transparent;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
            position: relative;
            margin-right: 5px;
        }
        
        .subcategory-tab:hover {
            color: #2a5bd7;
            background-color: #f8fafe;
            border-radius: 8px 8px 0 0;
        }
        
        .subcategory-tab.active {
            color: #1a3c8b;
            border-bottom-color: #2a5bd7;
            background-color: #f0f5ff;
            border-radius: 8px 8px 0 0;
        }
        
        .subcategory-tab .tab-badge {
            position: absolute;
            top: 8px;
            right: 8px;
            background-color: #ff6b6b;
            color: white;
            font-size: 11px;
            padding: 3px 8px;
            border-radius: 12px;
            font-weight: bold;
        }
        
        /* 切换内容区域 */
        .tab-content {
            flex: 1;
            display: none;
            overflow-y: auto;
            padding-right: 10px;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .tab-content-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f5ff;
        }
        
        .tab-content-title {
            font-size: 24px;
            color: #1a3c8b;
            font-weight: bold;
        }
        
        .tab-content-subtitle {
            color: #666;
            font-size: 16px;
        }
        
        .tab-content-files {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }
        
        .tab-file-item {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            border: 2px solid #eaeff7;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .tab-file-item:hover {
            border-color: #2a5bd7;
            box-shadow: 0 10px 25px rgba(42, 91, 215, 0.15);
            transform: translateY(-5px);
        }
        
        .tab-file-header {
            display: flex;
            align-items: center;
            margin-bottom: 18px;
        }
        
        .tab-file-icon {
            width: 55px;
            height: 55px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
            font-size: 24px;
            color: white;
            flex-shrink: 0;
        }
        
        .tab-file-icon.pdf {
            background: linear-gradient(135deg, #e74c3c 0%, #ff6b6b 100%);
        }
        
        .tab-file-icon.word {
            background: linear-gradient(135deg, #2a5bd7 0%, #4a7bf0 100%);
        }
        
        .tab-file-icon.excel {
            background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
        }
        
        .tab-file-icon.image {
            background: linear-gradient(135deg, #f39c12 0%, #ffcc00 100%);
        }
        
        .tab-file-icon.zip {
            background: linear-gradient(135deg, #9b59b6 0%, #be90d4 100%);
        }
        
        .tab-file-icon.video {
            background: linear-gradient(135deg, #3498db 0%, #5dade2 100%);
        }
        
        .tab-file-title {
            font-weight: bold;
            font-size: 18px;
            color: #1a3c8b;
            line-height: 1.3;
            flex: 1;
            margin-bottom: 5px;
        }
        
        .tab-file-desc {
            color: #666;
            font-size: 15px;
            margin-bottom: 20px;
            line-height: 1.6;
            flex: 1;
        }
        
        .tab-file-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }
        
        .tab-file-tag {
            font-size: 12px;
            padding: 4px 10px;
            border-radius: 15px;
            font-weight: bold;
        }
        
        .tab-file-tag.hot {
            background-color: #ffeaa7;
            color: #d63031;
        }
        
        .tab-file-tag.new {
            background-color: #a29bfe;
            color: white;
        }
        
        .tab-file-tag.popular {
            background-color: #74b9ff;
            color: white;
        }
        
        .tab-file-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 10px;
        }
        
        .tab-file-size {
            color: #888;
            font-size: 14px;
            font-weight: 600;
        }
        
        .tab-file-downloads {
            color: #888;
            font-size: 14px;
            display: flex;
            align-items: center;
            font-weight: 600;
        }
        
        .tab-file-downloads i {
            margin-right: 8px;
            color: #2a5bd7;
        }
        
        .tab-file-download-btn {
            background: linear-gradient(to right, #2a5bd7, #1a3c8b);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 10px 22px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(42, 91, 215, 0.3);
        }
        
        .tab-file-download-btn:hover {
            background: linear-gradient(to right, #1a3c8b, #0d2a6e);
            box-shadow: 0 6px 15px rgba(42, 91, 215, 0.4);
            transform: translateY(-2px);
        }
        
        /* 右侧推荐栏 - 加宽 */
        .category-recommend-sidebar {
            width: 360px; /* 加宽 */
            background: linear-gradient(180deg, #fef9e7 0%, #fef5e7 100%);
            padding: 35px 25px;
            border-left: 2px solid #eaeff7;
            display: flex;
            flex-direction: column;
        }
        
        .category-recommend-sidebar .recommend-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 3px solid #ffcc00;
        }
        
        .category-recommend-sidebar .recommend-title {
            font-size: 24px;
            color: #1a3c8b;
            font-weight: bold;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .category-recommend-sidebar .recommend-title i {
            color: #ff9900;
            margin-right: 12px;
            font-size: 26px;
        }
        
        .category-recommend-sidebar .recommend-subtitle {
            color: #666;
            font-size: 16px;
        }
        
        /* 推荐内容 */
        .recommend-content {
            flex: 1;
            margin-bottom: 30px;
        }
        
        .recommend-item {
            background-color: white;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            border: 2px solid #fdebd0;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .recommend-item:hover {
            border-color: #ffcc00;
            box-shadow: 0 8px 20px rgba(255, 204, 0, 0.15);
            transform: translateY(-3px);
        }
        
        .recommend-item .recommend-badge {
            display: inline-block;
            background: linear-gradient(to right, #ff9900, #ffcc00);
            color: white;
            font-size: 12px;
            padding: 4px 12px;
            border-radius: 15px;
            margin-bottom: 12px;
            font-weight: bold;
            box-shadow: 0 3px 8px rgba(255, 153, 0, 0.3);
        }
        
        .recommend-item .recommend-item-title {
            font-weight: bold;
            font-size: 17px;
            color: #1a3c8b;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        
        .recommend-item .recommend-item-desc {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .recommend-item .recommend-item-meta {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: #888;
            font-weight: 600;
        }
        
        .recommend-item .recommend-item-meta i {
            margin-right: 5px;
            color: #2a5bd7;
        }
        
        /* 推荐列表 */
        .recommend-list {
            margin-top: 25px;
        }
        
        .recommend-list-header {
            font-size: 20px;
            color: #1a3c8b;
            font-weight: bold;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            padding-bottom: 12px;
            border-bottom: 2px solid #f0f5ff;
        }
        
        .recommend-list-header i {
            color: #2a5bd7;
            margin-right: 10px;
            font-size: 22px;
        }
        
        .recommend-list-item {
            display: flex;
            align-items: center;
            padding: 16px 0;
            border-bottom: 2px dashed #eaeff7;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .recommend-list-item:hover {
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 8px;
            padding-left: 10px;
            padding-right: 10px;
        }
        
        .recommend-list-item:last-child {
            border-bottom: none;
        }
        
        .recommend-list-rank {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f0f5ff 0%, #e1e8f7 100%);
            color: #2a5bd7;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 15px;
            margin-right: 15px;
            flex-shrink: 0;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        }
        
        .recommend-list-rank.top {
            background: linear-gradient(135deg, #2a5bd7 0%, #1a3c8b 100%);
            color: white;
            box-shadow: 0 4px 10px rgba(42, 91, 215, 0.4);
        }
        
        .recommend-list-content {
            flex: 1;
        }
        
        .recommend-list-title {
            font-weight: 600;
            font-size: 16px;
            color: #333;
            margin-bottom: 5px;
        }
        
        .recommend-list-meta {
            font-size: 13px;
            color: #888;
            font-weight: 600;
        }