/* PC 排行榜：左侧栏目 + 右侧榜单（门户彩色皮肤） */

.rwrap{max-width:1200px;margin:0 auto;}

.rhero{
  border-radius:18px;
  padding:18px;
  background:
    radial-gradient(640px 260px at 6% 35%, rgba(109,40,217,.20), transparent 65%),
    radial-gradient(640px 260px at 56% 0%, rgba(37,99,235,.18), transparent 62%),
    radial-gradient(640px 260px at 90% 55%, rgba(6,182,212,.16), transparent 62%),
    rgba(255,255,255,.94);
  border:1px solid rgba(226,232,255,.95);
  box-shadow:0 18px 44px rgba(15,23,42,.10);
}
.rh1{margin:0;font-size:22px;font-weight:1000;color:#0f172a;}
.rsub{margin-top:8px;color:#475569;font-size:13px;line-height:1.7;}

.layout{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:14px;
  margin-top:14px;
}
@media(max-width:980px){
  .layout{grid-template-columns:1fr;}
}

.card{
  background:rgba(255,255,255,.94);
  border:1px solid rgba(226,232,255,.95);
  border-radius:18px;
  box-shadow:0 14px 38px rgba(15,23,42,.08);
  overflow:hidden;
}
.card-hd{
  padding:14px 14px;
  border-bottom:1px solid rgba(226,232,255,.92);
}
.card-hd .t{
  margin:0;
  font-size:16px;
  font-weight:1000;
  color:#0f172a;
  display:flex;
  align-items:center;
  gap:10px;
}
.card-hd .t::after{
  content:"";
  flex:1;
  height:1px;
  background:linear-gradient(90deg,rgba(37,99,235,.28),rgba(6,182,212,0));
}
.card-bd{padding:12px 12px;}

/* 左侧栏目 */
.side{
  position:sticky;
  top:12px;
  align-self:start;
}
@media(max-width:980px){
  .side{position:relative;top:auto;}
}
.nav{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.nav a{
  text-decoration:none;
  color:#0f172a;
  background:#fff;
  border:1px solid rgba(226,232,255,.95);
  border-radius:16px;
  padding:12px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  transition:transform .12s ease, box-shadow .12s ease;
}
.nav a:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(15,23,42,.08);
}
.nav .is{
  background:linear-gradient(135deg,#6d28d9,#2563eb);
  border-color:rgba(99,102,241,.25);
  color:#fff;
  box-shadow:0 18px 36px rgba(37,99,235,.16);
}
.nav .l{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav .ico{
  width:34px;height:34px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:#f1f5ff;border:1px solid #e2e8ff;
  font-weight:1000;
}
.nav .is .ico{
  background:rgba(255,255,255,.16);
  border-color:rgba(255,255,255,.22);
}
.nav .ttl{
  font-weight:1000;
  font-size:14px;
  line-height:1.2;
}
.nav .desc{
  margin-top:4px;
  font-size:12px;
  opacity:.82;
  line-height:1.4;
}
.nav .arrow{
  opacity:.85;
  font-weight:1000;
}

/* 右侧榜单头部（紧凑，不留空白） */
.rank-hd{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.rank-name{margin:0;font-size:16px;font-weight:1000;color:#0f172a;}
.rank-note{color:#64748b;font-size:12px;line-height:1.6;}
.rank-note b{color:#0f172a;font-weight:1000;}

/* 榜单列表 */
.list{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:10px;}
.item{
  display:grid;
  grid-template-columns:36px 58px 1fr;
  gap:10px;
  align-items:center;
  background:#fff;
  border:1px solid rgba(226,232,255,.95);
  border-radius:16px;
  padding:10px;
}
.no{
  width:36px;height:36px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  font-weight:1000;font-size:14px;color:#0f172a;
  background:#f1f5ff;border:1px solid #e2e8ff;
}
.no.top1{background:linear-gradient(135deg,#fde68a,#f59e0b);border-color:#f59e0b;color:#7c2d12;}
.no.top2{background:linear-gradient(135deg,#e2e8f0,#94a3b8);border-color:#94a3b8;color:#0f172a;}
.no.top3{background:linear-gradient(135deg,#fed7aa,#fb923c);border-color:#fb923c;color:#7c2d12;}

.logo img{
  width:58px;height:58px;border-radius:18px;object-fit:cover;
  background:#f3f4f6;border:1px solid rgba(229,231,235,.9);
}
.name{
  margin:0;
  font-size:14px;
  font-weight:1000;
  color:#0f172a;
  line-height:1.25;
  max-height:38px;
  overflow:hidden;
}
.meta{
  margin-top:7px;
  color:#64748b;
  font-size:12px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.meta b{color:#0f172a;font-weight:1000;}
.link{color:inherit;text-decoration:none;}
.link:hover .name{color:#2563eb;}

/* 右侧底部提示（紧凑） */
.tip{
  margin-top:12px;
  color:#64748b;
  font-size:12px;
  line-height:1.8;
}
