@charset "UTF-8";
/*
* 设计系统色板 —— Industry
* 方形、细边框、蓝图角标。
*/
/* 警示色：表单报错、点数不足等 */
/* 旧变量别名，保证未改版页面继续编译并同步换色 */
/*
* 字体
* 不引入外部资源：默认使用系统字体栈。
* 若日后自托管 Barlow，把 woff2 放到 /static/www/font/ 下并打开下面的 @font-face 即可，
* 其余样式无需改动。
*/
/*
@font-face{
    font-family:'Barlow';
    src:url('/static/www/font/barlow-400.woff2') format('woff2');
    font-weight:400;
    font-display:swap;
}
@font-face{
    font-family:'Barlow';
    src:url('/static/www/font/barlow-600.woff2') format('woff2');
    font-weight:600;
    font-display:swap;
}
@font-face{
    font-family:'Barlow Condensed';
    src:url('/static/www/font/barlow-condensed-600.woff2') format('woff2');
    font-weight:600;
    font-display:swap;
}
*/
/* 内容区最大宽度 */
/*
* 清除浮动
* 调用方法：@extend %clearfix;
*/
/*
* 小标题（栏目眉题）
* 调用方法：@include kicker; 或 @include kicker(12px);
* 例：01 · 快速查询 · LOOKUP
*/
/*
* 等宽数字，用于 IP、延迟、点数等数值
* 调用方法：@include tnum;
*/
/*
* 大号压缩字，用于 IP / 评分 / 点数
* 调用方法：@include display(48px);
*/
/*
* 单行省略
* 调用方法：@extend %ellipsis;
*/
/*
* 响应式宏
* 调用方法：@include respond-to(small) { ... }
*/
.container > .inner {
  padding-top: 40px;
  padding-bottom: 56px;
}

.mod-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 8px;
}
.mod-top-bar .tabs {
  border-bottom: 1px solid rgba(29, 31, 32, 0.16);
}
.mod-top-bar .note {
  font-size: 12px;
  color: rgba(29, 31, 32, 0.55);
}

.mod-top th.rank {
  width: 56px;
}
.mod-top td {
  padding: 11px 0;
}
.mod-top .rk {
  font-family: "Barlow Condensed", ui-sans-serif, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: rgba(29, 31, 32, 0.6);
  font-feature-settings: "tnum" 1;
}
.mod-top .rk.hi {
  color: #416180;
}
.mod-top .dm {
  margin-left: 8px;
  font-size: 12px;
  color: rgba(29, 31, 32, 0.5);
}
.mod-top .sc {
  font-family: "Barlow Condensed", ui-sans-serif, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  font-feature-settings: "tnum" 1;
}
.mod-top .delta {
  color: rgba(29, 31, 32, 0.5);
}
.mod-top .delta.up {
  color: #416180;
}

.mod-top-foot {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 18px;
  color: rgba(29, 31, 32, 0.5);
}
.mod-top-foot a {
  color: #416180;
}

@media screen and (max-width: 799px) {
  .container > .inner {
    padding-top: 20px;
    padding-bottom: 28px;
  }
  .mod-top-bar {
    margin: 16px 0 8px;
  }
  .mod-top {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}