body {
        font-family: 'Arial', sans-serif;
        background-color: #f4f6f9;
        margin: 0;
        padding: 0;
    }

    .banner {
        height: 180px;
        background-color: #F17F19;
        text-align: center;
        font-size: 36px;
        color: #fff;
        line-height: 40px;
        font-weight: 600;
        padding-top: 50px;
        letter-spacing: 3px;
    }

    .content {
        width: 1200px;
        margin: auto;
        margin-top: 140px;
        background-color: #fff;
        padding: 30px 0;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 50px;
    }

    .tabs {
        display: flex;
        justify-content: flex-end;
        padding-right: 55px;
        margin-bottom: 20px;
    }

    .tabs li {
        width: 113px;
        height: 36px;
        border: 1px solid rgba(187, 187, 187, 0.43);
        text-align: center;
        line-height: 36px;
        font-size: 18px;
        color: rgba(83, 77, 78, 1);
        border-left: none;
        cursor: pointer;
        transition: 0.3s;
        border-radius: 5px;
    }

    .tabs li:first-child {
        border-radius: 20px 0 0 20px;
    }

    .tabs li:last-child {
        border-radius: 0 20px 20px 0;
    }

    .tabs .act {
        background-color: #F17F19;
        color: #fff;
        border-color: #F17F19;
    }

    .rank {
        width: 100%;
        margin-top: 20px;
        border-collapse: collapse;
    }

    .rank th {
    background-color: #F17F19;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
    text-align: center;
}

    .rank tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .rank tr:hover {
        background-color: #ffe1b2;
    }
    .rank tr {
    height: 70px;  /* 设置合适的行高 */
    line-height: 70px;  /* 确保内容垂直居中 */
}

    .rank td {
    color: #333;
    font-size: 14px;
    padding: 12px;
    text-align: center;
    vertical-align: middle;  /* 确保内容垂直居中 */
}

    .rank td img {
        vertical-align: middle;
    }

    .pagination {
        text-align: center;
        margin-top: 20px;
    }

    .pagination a {
        margin: 0 5px;
        padding: 8px 12px;
        background-color: #F17F19;
        color: white;
        border-radius: 5px;
        text-decoration: none;
    }

    .pagination a:hover {
        background-color: #ff9f00;
    }

    .pagination .active {
        background-color: #FF9F00;
    }

    .pagination a.disabled {
        background-color: #d0d0d0;
        pointer-events: none;
    }

    .rank-desc {
    margin: 8px 5% 12px;
    font-size: 12px;
    color: #888;
    text-align: right;
}

.rank-desc b {
    color: #555;
    font-weight: 600;
}

#pagination .ellipsis{
  display:inline-block;
  padding:0 8px;
  color:#999;
  user-select:none;
}
#pagination a.disabled{
  pointer-events:none;
  opacity:.5;
}
.rank-meta{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin: 8px 5% 12px;
}

.rank-descs{
  flex: 1;
  min-width: 0;
}

/* 原 rank-desc 你现在写的是 margin: 8px 5% 12px; 这里改成 0 */
.rank-desc{
  margin: 0 0 6px 0;
  font-size: 12px;
  color: #888;
  text-align: right;
}
.rank-desc:last-child{
  margin-bottom: 0;
}

.my-ranks{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  color:#666;
  white-space:nowrap;
}

.my-ranks .label{
  color:#555;
  font-weight:600;
}

.my-ranks .item{
  padding: 4px 10px;
  background: #FFF4E6;
  border: 1px solid #FFC078;
  border-radius: 999px;
  line-height: 1.2;
}

.my-ranks .item b{
  color:#F17F19;
  font-weight:700;
}

/* 我的排名高亮 */
.rank tr.me-row{
  background-color: #FFF4E6 !important;
  box-shadow: inset 0 0 0 1px #FFC078;
}

.rank tr.me-row td{
  font-weight: 600;
}

.rank .me-tag{
  display:inline-block;
  margin-left:6px;
  padding:2px 8px;
  border-radius:999px;
  border:1px solid #FFC078;
  color:#D9480F;
  background:#FFF4E6;
  font-size:12px;
  line-height: 1.2;
}