.rank-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rank-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
}

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

.rank-num {
    width: 24px;
    height: 24px;
    background: #f0f0f0;
    color: #999;
    border-radius: 4px;
    text-align: center;
    line-height: 24px;
    font-size: 14px;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
}

.rank-item:nth-child(1) .rank-num {
    background: #ff4646;
    color: #fff;
}

.rank-item:nth-child(2) .rank-num {
    background: #ff7700;
    color: #fff;
}

.rank-item:nth-child(3) .rank-num {
    background: #ffb400;
    color: #fff;
}

.rank-info {
    flex: 1;
    min-width: 0;
}

.rank-title {
    display: block;
    font-size: 14px;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.rank-title:hover {
    color: var(--primary);
}

.rank-meta {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-item {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
}

.news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-title {
    display: block;
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.news-title:hover {
    color: var(--primary);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
}

.news-category {
    color: var(--primary);
    max-width: 55%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

.news-category:hover {
    text-decoration: underline;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    font-size: 13px;
    color: var(--text-muted);
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 14px;
    transition: all 0.2s;
}

.tag-item:hover {
    background: var(--primary);
    color: #fff;
}

