.top3-card {
    background: #fff;
    border-radius: 8px;
    margin: 10px auto;
    padding: 10px;
    box-sizing: border-box;
    max-width: 100%;
    position: relative;
}
.rank-tab-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 12px;
}
.rank-tab-left {
    display: flex;
    gap: 4px;
    align-items: center;
}
.rank-tab,
.rank-more {
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    color: #333;
    background: none;
    border: none;
    font-size: 12px;
    text-decoration: none;
    line-height: 1.2;
}
.rank-tab.active {
    background: transparent;
    color: #007bff;
    font-weight: bold;
    border-bottom: 2px solid #007bff;
    border-radius: 0;
}
.sign_mobile {
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    line-height: 1.2;
    border: none;
    background: #007bff;
    color: #fff;
}
.top3-panel {
    display: none;
}
.top3-panel.active {
    display: flex;
}
#top3-today.active {
  display: flex !important;
  flex-direction: row !important;
  gap: 6px !important;
  align-items: center !important;
}
#top3-week.active,
#top3-month.active,
#top3-lianxu.active,
#top3-zong.active {
    flex-direction: column;
    gap: 6px;
}
.top3-item {
    display: flex;
    align-items: center;
    gap: 2px;
    white-space: nowrap;
}
.top3-name, .top3-desc { line-height: 1; }
.top3-name { font-size: 12px; }
.top3-name a { color: #333; text-decoration: none; }
.top3-desc { font-size: 12px; color: #666; }
.rank-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #ddd;
}
.rank-icon {
    font-size: 12px;
    width: 16px;
    text-align: center;
}
.gift-icon {
    font-size: 12px;
    margin-left: 4px;
    cursor: pointer;
    position: relative;
}
.gift-tooltip {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 120%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 999;
}
.gift-icon:hover .gift-tooltip {
    display: block;
}
@media (min-width: 768px) {
  .top3-card {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    z-index: -999 !important;
  }
}
