@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 {
  width: 100%;
  min-width: auto;
  max-width: 800px;
}

.module {
  background: #f2f2f3;
  border: 1px solid rgba(29, 31, 32, 0.16);
  margin-bottom: 20px;
  font-size: 14px;
  font-family: ui-sans-serif, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  color: #1d1f20;
}

.mod-panel h1, .mod-panel h2, .mod-panel h3, .mod-panel h4, .mod-panel h5, .mod-panel h6 {
  line-height: 36px;
  font-weight: 600;
  color: #1d1f20;
}
.mod-panel h1, .mod-panel h2 {
  font-size: 20px;
  letter-spacing: 0.04em;
}
.mod-panel h3, .mod-panel h4 {
  margin: 20px 0 10px;
  font-size: 17px;
}
.mod-panel h5, .mod-panel h6 {
  margin: 10px 0 5px;
  font-size: 15px;
}
.mod-panel .hd {
  position: relative;
  padding: 30px 35px 0;
  text-align: center;
  border-bottom: 1px solid rgba(29, 31, 32, 0.08);
}
.mod-panel .hd h1 {
  padding-bottom: 18px;
}
.mod-panel .hd .page-print {
  display: none;
  position: absolute;
  right: 20px;
  top: 24px;
}
.mod-panel .bd {
  padding: 30px 35px 35px;
  line-height: 1.5;
}
.mod-panel .bd p {
  margin-bottom: 8px;
  line-height: 26px;
  text-indent: 2em;
  font-size: 15px;
  color: rgba(29, 31, 32, 0.55);
}
.mod-panel .bd ul {
  padding-left: 24px;
  margin-bottom: 12px;
  list-style: square;
  color: rgba(29, 31, 32, 0.55);
}
.mod-panel .bd li {
  margin-bottom: 6px;
  line-height: 24px;
  font-size: 15px;
}
.mod-panel .bd code, .mod-panel .bd pre {
  font-family: ui-monospace, Menlo, Consolas, "Courier New", monospace;
  word-break: break-all;
  white-space: pre-wrap;
  line-height: 26px;
}
.mod-panel .bd code {
  display: block;
  padding: 10px 20px;
  margin-bottom: 15px;
  background: #e9e9ea;
  border: 1px solid rgba(29, 31, 32, 0.08);
}
.mod-panel table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid rgba(29, 31, 32, 0.16);
  margin-bottom: 10px;
}
.mod-panel table thead {
  border-bottom: 1px solid rgba(29, 31, 32, 0.16);
  background-color: #e9e9ea;
}
.mod-panel table tr {
  line-height: 24px;
  font-size: 13px;
}
.mod-panel table tr th, .mod-panel table tr td {
  border-left: 1px solid rgba(29, 31, 32, 0.08);
  word-break: break-all;
  word-wrap: break-word;
  padding: 5px 10px;
  line-height: 24px;
  font-weight: normal;
  color: rgba(29, 31, 32, 0.55);
}
.mod-panel table tr th {
  color: #1d1f20;
  white-space: nowrap;
  text-align: left;
}

@media screen and (max-width: 799px) {
  .inner {
    width: auto;
  }
  .mod-panel h1, .mod-panel h2, .mod-panel h3, .mod-panel h4, .mod-panel h5, .mod-panel h6 {
    line-height: 32px;
  }
  .mod-panel h1, .mod-panel h2 {
    font-size: 18px;
  }
  .mod-panel h3, .mod-panel h4 {
    margin: 15px 0 10px;
    font-size: 16px;
  }
  .mod-panel h5, .mod-panel h6 {
    margin: 10px 0 5px;
    font-size: 15px;
  }
  .mod-panel .hd {
    padding: 20px 10px 0;
  }
  .mod-panel .hd .page-print {
    right: 8px;
    top: 16px;
  }
  .mod-panel .bd {
    padding: 20px 10px;
  }
  .mod-panel .bd p {
    line-height: 22px;
    font-size: 14px;
  }
}
@media print {
  @page {
    size: A4 portrait;
    margin: 35px;
  }
  body, html {
    background-color: white;
    color: black;
  }
  table {
    page-break-inside: avoid;
    -webkit-region-break-inside: avoid;
  }
  thead, tfoot {
    display: table-row-group;
  }
  .header, .footer {
    display: none !important;
  }
  .container {
    padding: 0;
  }
  .page-view {
    border: none;
    box-shadow: none;
    -webkit-print-color-adjust: exact;
  }
  .page-view .page-print {
    display: none !important;
  }
  .page-view p {
    page-break-inside: avoid;
    line-height: 24px;
  }
}