    /* 排行榜页面 */
    .rank-page {
        background: #f5f6fa;
        min-height: 100vh;
        padding-bottom: 40px;
    }

    /* 顶部横幅 */
    .rank-banner {
        background: #667eea;
        padding: 100px 0 90px;
        text-align: center;
    }

    .rank-banner h1 {
        color: #fff;
        font-size: 32px;
        font-weight: 600;
        margin: 0;
    }

    .rank-banner p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 16px;
        margin-top: 10px;
    }

    /* 主容器 */
    .rank-container {
        max-width: 1200px;
        margin: -50px auto 0;
        padding: 0 15px;
        position: relative;
        z-index: 10;
    }

    .rank-wrapper {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    /* Tab导航 */
    .rank-tabs {
        display: flex;
        background: #f0f0f0;
    }

    .rank-tabs .tab-item {
        flex: 1;
        text-align: center;
        font-size: 16px;
        color: #909399;
        cursor: pointer;
        transition: all 0.3s;
        background: #f0f0f0;
        height: 70px;
        line-height: 70px;
        position: relative;
    }

    .rank-tabs .tab-item:hover {
        color: #667eea;
    }

    .rank-tabs .tab-item.active {
        color: #667eea;
        background: #fff;
        font-weight: 600;
        height: 80px;
        line-height: 80px;
        border-radius: 6px 6px 0 0;
        margin-top: -10px;
    }

    /* 列表容器 */
    .rank-content {
        display: none;
        padding: 10px 0;
    }

    .rank-content.active {
        display: block;
    }

    /* 列表项 */
    .rank-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 25px;
        border-bottom: 1px solid #f5f5f5;
        transition: all 0.25s;
    }

    .rank-item:last-child {
        border-bottom: none;
    }

    .rank-item:hover {
        background: linear-gradient(90deg, #f8f9ff 0%, #fff 100%);
    }

    /* 左侧：排名+图标 */
    .rank-left {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        margin-right: 20px;
    }

    /* 排名数字 */
    .rank-num {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 700;
        color: #fff;
        margin-right: 12px;
        flex-shrink: 0;
    }

    .rank-item:nth-child(1) .rank-num {
        background: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
    }

    .rank-item:nth-child(2) .rank-num {
        background: linear-gradient(135deg, #c0c0c0 0%, #8e8e8e 100%);
    }

    .rank-item:nth-child(3) .rank-num {
        background: linear-gradient(135deg, #cd7f32 0%, #8b4513 100%);
    }

    .rank-item:nth-child(n+4) .rank-num {
        background: #e8eaed;
        color: #666;
    }

    /* 图标 */
    .rank-icon {
        width: 70px;
        height: 70px;
        border-radius: 16px;
        overflow: hidden;
        flex-shrink: 0;
        background: #f0f0f0;
    }

    .rank-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 右侧：信息+标签 */
    .rank-right {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex: 1;
        min-width: 0;
        gap: 30px;
    }

    /* 信息区 */
    .rank-info {
        flex: 1;
        min-width: 0;
        max-width: 350px;
    }

    .rank-info .name {
        font-size: 16px;
        color: #333;
        font-weight: 500;
        margin-bottom: 6px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: block;
    }

    .rank-info .name:hover {
        color: #667eea;
    }

    .rank-info .desc {
        font-size: 13px;
        color: #999;
        line-height: 1.5;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }

    /* 标签和数据 */
    .rank-meta {
        display: flex;
        align-items: center;
        gap: 15px;
        flex-shrink: 0;
        color: #999;
        font-size: 14px;
    }

    .rank-meta .meta-top {
        display: flex;
        align-items: center;
    }

    .rank-meta .rank-tag {
        color: #999;
    }

    .rank-meta .divider {
        margin: 0 8px;
        color: #ddd;
    }

    .rank-meta .size {
        color: #999;
    }

    .rank-meta .date {
        color: #667eea;
    }

    /* 按钮 */
    .rank-btn {
        padding: 10px 30px;
        background-image: linear-gradient(-40deg, #f53939, #fbcf33);
        color: #fff;
        font-size: 14px;
        border-radius: 4px;
        text-decoration: none;
        transition: all 0.3s;
        flex-shrink: 0;
    }

    .rank-btn:hover {
        opacity: 0.9;
        color: #fff;
    }

    /* 响应式 */
    @media (max-width: 768px) {
        .rank-banner {
            padding: 80px 0 70px;
        }

        .rank-banner h1 {
            font-size: 24px;
        }

        .rank-container {
            margin-top: -40px;
            padding: 0 15px;
        }

        .rank-tabs .tab-item {
            font-size: 14px;
            height: 50px;
            line-height: 50px;
        }

        .rank-tabs .tab-item.active {
            height: 60px;
            line-height: 60px;
            margin-top: -10px;
        }

        .rank-item {
            padding: 15px;
        }

        .rank-left {
            margin-right: 12px;
        }

        .rank-num {
            width: 26px;
            height: 26px;
            font-size: 12px;
            margin-right: 10px;
        }

        .rank-icon {
            width: 55px;
            height: 55px;
            border-radius: 12px;
        }

        .rank-right {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .rank-info {
            max-width: none;
        }

        .rank-info .name {
            font-size: 15px;
        }

        .rank-info .desc {
            display: none;
        }

        .rank-meta {
            font-size: 12px;
            flex-direction: column;
            align-items: flex-start;
        }

        .rank-btn {
            padding: 8px 18px;
            font-size: 13px;
        }
    }