.rank-list { background: var(--white); margin-top: 15px; border-radius: var(--radius); padding: 0 15px; }
.rank-item { display: flex; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--bg-color); }
.rank-item:last-child { border-bottom: none; }

.rank-num { width: 30px; font-size: 16px; font-weight: 700; color: #9ca3af; text-align: center; margin-right: 10px; font-style: italic; }
/* 前三名特殊样式 */
.num-1 { color: #ef4444; font-size: 20px; }
.num-2 { color: #f97316; font-size: 19px; }
.num-3 { color: #eab308; font-size: 18px; }

.rank-content { flex: 1; display: flex; align-items: center; overflow: hidden; }
.r-icon { width: 50px; height: 50px; border-radius: 10px; margin-right: 12px; object-fit: contain; }
.r-info h3 { font-size: 15px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.r-info p { font-size: 12px; color: var(--text-sub); margin-top: 3px; }

.rank-item .btn-dl { margin-left: 10px; padding: 6px 15px; background: var(--secondary-color); color: var(--primary-color); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-head small {
  color: var(--text-soft);
}
i,em{
  font-style: normal;
}
.u-more-btn {
    width: 100%;
    height: auto;
    padding: 10px 0;
    font-size: 15px;
    font-weight: normal;
    color: #999;
    text-align: center;
    display: none;
    overflow: hidden;
}
@media (min-width: 768px) {
    .rank-list,.section-head{
        margin: 0;
    }
    .rank-list { padding: 0 30px; }
    .rank-item { padding: 20px 0; }
    .r-icon { width: 60px; height: 60px; }
}