/* 排行榜页特定样式 */
.rank-section {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 20px;
}

.rank-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.rank-item {
  display: flex;
  align-items: center;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  padding: 15px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.rank-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.rank-number {
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.rank-number:nth-child(1) {
  background-color: #ff6b6b;
}

.rank-number:nth-child(2) {
  background-color: #ff9e4f;
}

.rank-number:nth-child(3) {
  background-color: #ffcc4f;
}

.rank-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

.rank-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rank-info {
  flex-grow: 1;
}

.rank-title {
  font-size: 16px;
  margin-bottom: 5px;
}

.rank-meta {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: var(--text-light);
}

.rank-downloads,
.rank-rating {
  display: flex;
  align-items: center;
}


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-item {
    padding: 20px;
  }
  
  .rank-icon {
    width: 60px;
    height: 60px;
  }
  
  .rank-title {
    font-size: 18px;
  }
  
  .rank-meta {
    font-size: 14px;
  }
}