/* 摸鱼热榜样式 */
.hot-topic-panel {
    margin-bottom: 20px;
}

.hot-topic-tabs {
    display: flex;
    border-bottom: 1px solid #e0e0e0; 
}

.hot-tab-btn {
    flex: 1;
    padding: 6px 12px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    text-align: center;
    transition: all 0.3s;
}

.hot-tab-btn:hover {
    color: #333;
    background: #f5f5f5;
}

.hot-tab-btn.active {
    color: #007bff;
    border-bottom-color: #007bff;
    font-weight: 600;
}

.hot-topic-content {
    position: relative;
}

.hot-topic-list {
    min-height: 200px;
}

.hot-topic-loading {
    padding: 20px;
    text-align: center;
    color: #999;
}

.hot-topic-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
}

.hot-topic-item:last-child {
    border-bottom: none;
}

.hot-topic-rank {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: #f0f0f0;
    border-radius: 4px;
    color: #666;
    font-size: 12px;
    font-weight: 600;
    margin-right: 10px;
    flex-shrink: 0;
}

.hot-topic-item:nth-child(1) .hot-topic-rank {
    background: #ff4757;
    color: #fff;
}

.hot-topic-item:nth-child(2) .hot-topic-rank {
    background: #ff6348;
    color: #fff;
}

.hot-topic-item:nth-child(3) .hot-topic-rank {
    background: #ff7675;
    color: #fff;
}

.hot-topic-title {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.hot-topic-title a {
    color: #333;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}

.hot-topic-title a:hover {
    color: #007bff;
}

.hot-topic-error {
    padding: 20px;
    text-align: center;
    color: #999;
}
