@charset "UTF-8";
html {
  color: #000;
  background: #FFF;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  *font-size: 100%;
}

legend {
  color: #000;
}

/*
* 设计系统色板 —— 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;
*/
.container {
  zoom: 1;
}
.container:before, .container:after {
  content: "";
  display: table;
}
.container:after {
  clear: both;
  overflow: hidden;
}

/*
* 小标题（栏目眉题）
* 调用方法：@include kicker; 或 @include kicker(12px);
* 例：01 · 快速查询 · LOOKUP
*/
/*
* 等宽数字，用于 IP、延迟、点数等数值
* 调用方法：@include tnum;
*/
/*
* 大号压缩字，用于 IP / 评分 / 点数
* 调用方法：@include display(48px);
*/
/*
* 单行省略
* 调用方法：@extend %ellipsis;
*/
.rows a .t, .rows .row .t {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*
* 响应式宏
* 调用方法：@include respond-to(small) { ... }
*/
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  height: 100%;
  background: #f2f2f3;
  font-family: ui-sans-serif, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #1d1f20;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Barlow Condensed", ui-sans-serif, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.02em;
  margin: 0;
}

a {
  text-decoration: none;
  color: #1d1f20;
  cursor: pointer;
}
a:hover {
  color: #5980a6;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

button, input, select, textarea {
  font-family: ui-sans-serif, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-size: inherit;
  line-height: inherit;
}

::selection {
  background: rgba(89, 128, 166, 0.3);
}

/*
* 页面骨架：header / container / footer 是 .wrapper 的直接子元素，
* 用 flex 列布局把页脚压到底部，不再需要给 .container 留固定高度。
*/
.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #f2f2f3;
  min-height: 100%;
}

.inner {
  position: relative;
  max-width: 1280px;
  padding: 0 48px;
  margin: 0 auto;
  width: 100%;
}

.container {
  flex: 1;
}

.footer {
  width: 100%;
}

.layout-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.layout-container .main {
  flex: 1;
  min-width: 0;
}
.layout-container .side {
  width: 300px;
}

.layout-flex {
  display: flex;
  flex-wrap: wrap;
}
.layout-flex .layout-flex-1 {
  flex: 1;
  min-width: 0;
}
.layout-flex .layout-flex-2 {
  flex: 2;
  min-width: 0;
}
.layout-flex .layout-flex-3 {
  flex: 3;
  min-width: 0;
}
.layout-flex .layout-flex-4 {
  flex: 4;
  min-width: 0;
}
.layout-flex .layout-flex-5 {
  flex: 5;
  min-width: 0;
}
.layout-flex .layout-flex-6 {
  flex: 6;
  min-width: 0;
}
.layout-flex .layout-flex-7 {
  flex: 7;
  min-width: 0;
}
.layout-flex .layout-flex-8 {
  flex: 8;
  min-width: 0;
}
.layout-flex .layout-flex-9 {
  flex: 9;
  min-width: 0;
}
.layout-flex .layout-flex-10 {
  flex: 10;
  min-width: 0;
}
.layout-flex .layout-flex-11 {
  flex: 11;
  min-width: 0;
}
.layout-flex .layout-flex-12 {
  flex: 12;
  min-width: 0;
}
.layout-flex .layout-flex-auto {
  flex: auto;
}

.layout-grid-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.layout-grid-1 > div {
  min-width: 0;
}

.layout-column-1 {
  grid-column: span 1;
}

.layout-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.layout-grid-2 > div {
  min-width: 0;
}

.layout-column-2 {
  grid-column: span 2;
}

.layout-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.layout-grid-3 > div {
  min-width: 0;
}

.layout-column-3 {
  grid-column: span 3;
}

.layout-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.layout-grid-4 > div {
  min-width: 0;
}

.layout-column-4 {
  grid-column: span 4;
}

.layout-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.layout-grid-5 > div {
  min-width: 0;
}

.layout-column-5 {
  grid-column: span 5;
}

.layout-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.layout-grid-6 > div {
  min-width: 0;
}

.layout-column-6 {
  grid-column: span 6;
}

.layout-grid-7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.layout-grid-7 > div {
  min-width: 0;
}

.layout-column-7 {
  grid-column: span 7;
}

.layout-grid-8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
.layout-grid-8 > div {
  min-width: 0;
}

.layout-column-8 {
  grid-column: span 8;
}

.layout-grid-9 {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
}
.layout-grid-9 > div {
  min-width: 0;
}

.layout-column-9 {
  grid-column: span 9;
}

.layout-grid-10 {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
}
.layout-grid-10 > div {
  min-width: 0;
}

.layout-column-10 {
  grid-column: span 10;
}

.layout-grid-11 {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
}
.layout-grid-11 > div {
  min-width: 0;
}

.layout-column-11 {
  grid-column: span 11;
}

.layout-grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.layout-grid-12 > div {
  min-width: 0;
}

.layout-column-12 {
  grid-column: span 12;
}

.layout-gap-0 {
  gap: 0px;
}

.layout-gap-1 {
  gap: 1px;
}

.layout-gap-2 {
  gap: 2px;
}

.layout-gap-3 {
  gap: 3px;
}

.layout-gap-4 {
  gap: 4px;
}

.layout-gap-5 {
  gap: 5px;
}

.layout-gap-6 {
  gap: 6px;
}

.layout-gap-7 {
  gap: 7px;
}

.layout-gap-8 {
  gap: 8px;
}

.layout-gap-9 {
  gap: 9px;
}

.layout-gap-10 {
  gap: 10px;
}

.layout-gap-11 {
  gap: 11px;
}

.layout-gap-12 {
  gap: 12px;
}

.layout-gap-13 {
  gap: 13px;
}

.layout-gap-14 {
  gap: 14px;
}

.layout-gap-15 {
  gap: 15px;
}

.layout-gap-16 {
  gap: 16px;
}

.layout-gap-17 {
  gap: 17px;
}

.layout-gap-18 {
  gap: 18px;
}

.layout-gap-19 {
  gap: 19px;
}

.layout-gap-20 {
  gap: 20px;
}

.module .btn, .module [class*=btn-] {
  position: relative;
  display: inline-block;
  min-width: 60px;
  height: 36px;
  padding: 0 16px;
  background: #5980a6;
  border: none medium;
  line-height: 34px;
  vertical-align: middle;
  text-align: center;
  font-family: Tahoma, Arial, Helvetica, "微软雅黑";
  font-size: 15px;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  box-sizing: content-box;
  outline: none;
}
.module .btn span, .module .btn img, .module [class*=btn-] span, .module [class*=btn-] img {
  vertical-align: middle;
}
.module .btn:hover, .module [class*=btn-]:hover {
  background: #597ea3;
  text-decoration: none !important;
}
.module .btn-large {
  display: inline-block;
  min-width: 72px;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
}
.module .btn-small {
  display: inline-block;
  min-width: 48px;
  padding: 0 12px;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
}
.module .btn-tiny {
  display: inline-block;
  min-width: 36px;
  padding: 0 8px;
  height: 28px;
  line-height: 28px;
  font-size: 13px;
}
.module .btn-gray {
  background: #eee;
  color: #333;
}
.module .btn-gray:hover {
  background: #ddd;
}
.module .btn-green {
  background: #4bae4f;
}
.module .btn-green:hover {
  background: #47a04b;
}
.module .btn-red {
  background: #f56954;
}
.module .btn-red:hover {
  background: #f4543c;
}
.module .btn-blue {
  background: #2095f2;
}
.module .btn-blue:hover {
  background: #207fcc;
}
.module .btn-cyan {
  background: #00c6bb;
}
.module .btn-cyan:hover {
  background: #00baaf;
}
.module .btn-gold {
  background: #cc9f47;
}
.module .btn-gold:hover {
  background: #b58b39;
}
.module .btn-purple {
  background: #cb6ed8;
}
.module .btn-purple:hover {
  background: #b562c1;
}
.module .btn-orange {
  background: #ff9000;
}
.module .btn-orange:hover {
  background: #d27600;
}
.module .btn-black {
  background: #333;
}
.module .btn-black:hover {
  background: #000;
}
.module .btn-disabled, .module .btn[disabled] {
  background: #eee;
  color: #999;
}
.module .btn-disabled:hover, .module .btn[disabled]:hover {
  background: #eee;
}
.module .text-green {
  color: #4bae4f;
}
.module .text-red {
  color: #f56954;
}
.module .text-blue {
  color: #2095f2;
}
.module .text-cyan {
  color: #00c6bb;
}
.module .text-gold {
  color: #cc9f47;
}
.module .text-purple {
  color: #cb6ed8;
}
.module .text-orange {
  color: #fc9000;
}
.module .text-gray {
  color: gray;
}
.module .text-small {
  font-size: 12px;
}
.module [class*=tag-] {
  display: inline-block;
  min-width: 42px;
  height: 24px;
  padding: 0 10px;
  background: #eee;
  line-height: 24px;
  text-align: center;
  color: #333;
  border-radius: 3px;
}
.module .tag-green {
  background: #e0f3e1;
  color: #4bae4f;
}
.module .tag-red {
  background: #ffe2de;
  color: #f56954;
}
.module .tag-blue {
  background: #d1ebff;
  color: #2095f2;
}
.module .tag-cyan {
  background: #d8f0ef;
  color: #00c6bb;
}
.module .tag-gold {
  background: #dfd9cd;
  color: #cc9f47;
}
.module .tag-purple {
  background: #f9e8fb;
  color: #cb6ed8;
}
.module .tag-orange {
  background: #fff1de;
  color: #ff9000;
}
.module [class*=notice-] {
  position: absolute;
  right: -20px;
  top: -12px;
  z-index: 9;
  display: inline-block;
  min-width: 30px;
  height: 20px;
  padding: 0 8px;
  background: #546d7e;
  line-height: 20px;
  text-align: center;
  font-style: normal;
  font-size: 12px;
  color: #fff;
  border-radius: 10px;
}
.module .notice-green {
  background: #4bae4f;
}
.module .notice-red {
  background: #f56954;
}
.module .notice-blue {
  background: #2095f2;
}
.module .notice-cyan {
  background: #00c6bb;
}
.module .notice-gold {
  background: #cc9f47;
}
.module .notice-purple {
  background: #cb6ed8;
}
.module .notice-orange {
  background: #ff9000;
}
.module [class*=badge-] {
  margin-bottom: 15px;
  padding: 5px 15px;
  background: #eee;
  line-height: 24px;
  color: #333;
  font-weight: bold;
  border-radius: 6px;
}
.module .badge-green {
  color: #4bae4f;
  background-color: rgba(75, 174, 79, 0.15);
}
.module .badge-red {
  color: #f56954;
  background-color: rgba(250, 92, 124, 0.15);
}
.module .badge-blue {
  color: #2095f2;
  background-color: rgba(57, 175, 209, 0.15);
}
.module .badge-cyan {
  color: #00c6bb;
  background-color: rgba(0, 198, 189, 0.15);
}
.module .badge-gold {
  color: #cc9f47;
  background-color: rgba(204, 159, 71, 0.15);
}
.module .badge-purple {
  color: #cb6ed8;
  background-color: rgba(114, 124, 245, 0.15);
}
.module .badge-orange {
  color: #ff9000;
  background-color: rgba(255, 188, 0, 0.15);
}

.J_link {
  cursor: pointer;
}

.mod-breadcrumb .bd {
  padding: 0 10px;
  margin-top: -10px;
  line-height: 30px;
  color: #666;
}
.mod-breadcrumb .bd span, .mod-breadcrumb .bd a, .mod-breadcrumb .bd strong {
  margin-right: 4px;
}
.mod-breadcrumb .bd a {
  color: #666;
}

@media screen and (max-width: 799px) {
  .inner {
    max-width: none;
    padding: 0 16px;
  }
  .layout-container {
    gap: 10px;
  }
  .layout-container .main, .layout-container .side {
    flex: none;
    width: 100%;
  }
  .layout-flex .layout-small-flex-1 {
    flex: 1;
    min-width: 0;
  }
  .layout-flex .layout-small-flex-2 {
    flex: 2;
    min-width: 0;
  }
  .layout-flex .layout-small-flex-3 {
    flex: 3;
    min-width: 0;
  }
  .layout-flex .layout-small-flex-4 {
    flex: 4;
    min-width: 0;
  }
  .layout-flex .layout-small-flex-5 {
    flex: 5;
    min-width: 0;
  }
  .layout-flex .layout-small-flex-6 {
    flex: 6;
    min-width: 0;
  }
  .layout-flex .layout-small-flex-7 {
    flex: 7;
    min-width: 0;
  }
  .layout-flex .layout-small-flex-8 {
    flex: 8;
    min-width: 0;
  }
  .layout-flex .layout-small-flex-9 {
    flex: 9;
    min-width: 0;
  }
  .layout-flex .layout-small-flex-10 {
    flex: 10;
    min-width: 0;
  }
  .layout-flex .layout-small-flex-11 {
    flex: 11;
    min-width: 0;
  }
  .layout-flex .layout-small-flex-12 {
    flex: 12;
    min-width: 0;
  }
  .layout-flex .layout-small-flex-auto {
    flex: auto;
  }
  .layout-small-grid-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .layout-small-grid-1 > div {
    min-width: 0;
  }
  .layout-small-column-1 {
    grid-column: span 1;
  }
  .layout-small-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .layout-small-grid-2 > div {
    min-width: 0;
  }
  .layout-small-column-2 {
    grid-column: span 2;
  }
  .layout-small-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .layout-small-grid-3 > div {
    min-width: 0;
  }
  .layout-small-column-3 {
    grid-column: span 3;
  }
  .layout-small-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .layout-small-grid-4 > div {
    min-width: 0;
  }
  .layout-small-column-4 {
    grid-column: span 4;
  }
  .layout-small-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
  .layout-small-grid-5 > div {
    min-width: 0;
  }
  .layout-small-column-5 {
    grid-column: span 5;
  }
  .layout-small-grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
  .layout-small-grid-6 > div {
    min-width: 0;
  }
  .layout-small-column-6 {
    grid-column: span 6;
  }
  .layout-small-grid-7 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }
  .layout-small-grid-7 > div {
    min-width: 0;
  }
  .layout-small-column-7 {
    grid-column: span 7;
  }
  .layout-small-grid-8 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
  }
  .layout-small-grid-8 > div {
    min-width: 0;
  }
  .layout-small-column-8 {
    grid-column: span 8;
  }
  .layout-small-grid-9 {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
  }
  .layout-small-grid-9 > div {
    min-width: 0;
  }
  .layout-small-column-9 {
    grid-column: span 9;
  }
  .layout-small-grid-10 {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
  }
  .layout-small-grid-10 > div {
    min-width: 0;
  }
  .layout-small-column-10 {
    grid-column: span 10;
  }
  .layout-small-grid-11 {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
  }
  .layout-small-grid-11 > div {
    min-width: 0;
  }
  .layout-small-column-11 {
    grid-column: span 11;
  }
  .layout-small-grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
  .layout-small-grid-12 > div {
    min-width: 0;
  }
  .layout-small-column-12 {
    grid-column: span 12;
  }
  .layout-small-gap-0 {
    gap: 0px;
  }
  .layout-small-gap-1 {
    gap: 1px;
  }
  .layout-small-gap-2 {
    gap: 2px;
  }
  .layout-small-gap-3 {
    gap: 3px;
  }
  .layout-small-gap-4 {
    gap: 4px;
  }
  .layout-small-gap-5 {
    gap: 5px;
  }
  .layout-small-gap-6 {
    gap: 6px;
  }
  .layout-small-gap-7 {
    gap: 7px;
  }
  .layout-small-gap-8 {
    gap: 8px;
  }
  .layout-small-gap-9 {
    gap: 9px;
  }
  .layout-small-gap-10 {
    gap: 10px;
  }
  .layout-small-gap-11 {
    gap: 11px;
  }
  .layout-small-gap-12 {
    gap: 12px;
  }
  .layout-small-gap-13 {
    gap: 13px;
  }
  .layout-small-gap-14 {
    gap: 14px;
  }
  .layout-small-gap-15 {
    gap: 15px;
  }
  .layout-small-gap-16 {
    gap: 16px;
  }
  .layout-small-gap-17 {
    gap: 17px;
  }
  .layout-small-gap-18 {
    gap: 18px;
  }
  .layout-small-gap-19 {
    gap: 19px;
  }
  .layout-small-gap-20 {
    gap: 20px;
  }
}
/*
* Industry 设计系统组件
* 方形、细边框、四角蓝图角标。
*
* 说明：设计稿里每个卡片都写了 4 个 <i class="corner">，这里改为用一个伪元素
* 画出全部四角，模板不再需要装饰性标签。
*/
/*
* 四角角标
* 调用方法：@include corners; 或 @include corners(#fff);
*/
.blueprint {
  position: relative;
  border: 1px solid rgba(29, 31, 32, 0.16);
  border-radius: 0;
}
.blueprint:before {
  content: "";
  position: absolute;
  inset: -6px;
  pointer-events: none;
  background-repeat: no-repeat;
  background-image: linear-gradient(rgba(29, 31, 32, 0.55), rgba(29, 31, 32, 0.55)), linear-gradient(rgba(29, 31, 32, 0.55), rgba(29, 31, 32, 0.55)), linear-gradient(rgba(29, 31, 32, 0.55), rgba(29, 31, 32, 0.55)), linear-gradient(rgba(29, 31, 32, 0.55), rgba(29, 31, 32, 0.55)), linear-gradient(rgba(29, 31, 32, 0.55), rgba(29, 31, 32, 0.55)), linear-gradient(rgba(29, 31, 32, 0.55), rgba(29, 31, 32, 0.55)), linear-gradient(rgba(29, 31, 32, 0.55), rgba(29, 31, 32, 0.55)), linear-gradient(rgba(29, 31, 32, 0.55), rgba(29, 31, 32, 0.55));
  background-size: 1px 11px, 11px 1px, 1px 11px, 11px 1px, 1px 11px, 11px 1px, 1px 11px, 11px 1px;
  background-position: left 5px top 0, left 0 top 5px, right 5px top 0, right 0 top 5px, left 5px bottom 0, left 0 bottom 5px, right 5px bottom 0, right 0 bottom 5px;
}

/* 深色卡片（接口示例、返回结果）里角标要反白 */
.blueprint-dark {
  background: #1d2d3d;
  border-color: #1d2d3d;
  color: #f2f2f3;
}
.blueprint-dark:before {
  content: "";
  position: absolute;
  inset: -6px;
  pointer-events: none;
  background-repeat: no-repeat;
  background-image: linear-gradient(rgba(242, 242, 243, 0.55), rgba(242, 242, 243, 0.55)), linear-gradient(rgba(242, 242, 243, 0.55), rgba(242, 242, 243, 0.55)), linear-gradient(rgba(242, 242, 243, 0.55), rgba(242, 242, 243, 0.55)), linear-gradient(rgba(242, 242, 243, 0.55), rgba(242, 242, 243, 0.55)), linear-gradient(rgba(242, 242, 243, 0.55), rgba(242, 242, 243, 0.55)), linear-gradient(rgba(242, 242, 243, 0.55), rgba(242, 242, 243, 0.55)), linear-gradient(rgba(242, 242, 243, 0.55), rgba(242, 242, 243, 0.55)), linear-gradient(rgba(242, 242, 243, 0.55), rgba(242, 242, 243, 0.55));
  background-size: 1px 11px, 11px 1px, 1px 11px, 11px 1px, 1px 11px, 11px 1px, 1px 11px, 11px 1px;
  background-position: left 5px top 0, left 0 top 5px, right 5px top 0, right 0 top 5px, left 5px bottom 0, left 0 bottom 5px, right 5px bottom 0, right 0 bottom 5px;
}

/* 不需要角标时 */
.blueprint-plain:before {
  content: none;
}

/* — 分隔线 — */
.hr {
  height: 1px;
  border: 0;
  margin: 0;
  background: rgba(29, 31, 32, 0.16);
}

/* — 栏目眉题 — */
.kicker {
  display: block;
  font-family: "Barlow", ui-sans-serif, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #416180;
}

/* 页面中部另起一段时用 */
.kicker.sec {
  margin-top: 40px;
  margin-bottom: 12px;
}

.hr.sec {
  margin: 12px 0 20px;
}

.kicker-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}
.kicker-row .kicker {
  margin: 0;
}
.kicker-row .note {
  font-size: 12px;
  color: rgba(29, 31, 32, 0.55);
}
.kicker-row a.more {
  font-size: 13px;
  color: #416180;
}

/* — 按钮 — */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 7px 13px;
  background: transparent;
  border: 1px solid rgba(29, 31, 32, 0.16);
  border-radius: 0;
  font-family: "Barlow Condensed", ui-sans-serif, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: #1d1f20;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
}
.btn:hover {
  text-decoration: none;
}
.btn[disabled], .btn.btn-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn-primary {
  background: #5980a6;
  border-color: #5980a6;
  color: #f2f2f3;
}
.btn-primary:hover {
  background: #597ea3;
  border-color: #597ea3;
  color: #f2f2f3;
}
.btn-primary:active {
  background: #416180;
  border-color: #416180;
}

.btn-secondary {
  border-color: rgba(29, 31, 32, 0.16);
}
.btn-secondary:hover {
  background: rgba(29, 31, 32, 0.07);
}
.btn-secondary:active {
  background: rgba(29, 31, 32, 0.14);
}

.btn-ghost {
  border-color: transparent;
  padding-left: 4px;
  padding-right: 4px;
  color: #416180;
}
.btn-ghost:hover {
  background: rgba(89, 128, 166, 0.1);
  color: #416180;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-lg {
  min-height: 44px;
  padding: 0 24px;
  font-size: 15px;
}

.btn-sm {
  min-height: 32px;
  font-size: 13px;
}

/* — 表单 — */
.field {
  display: block;
}
.field > label {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  color: rgba(29, 31, 32, 0.7);
}
.field > label .opt {
  color: rgba(29, 31, 32, 0.45);
}
.field + .field {
  margin-top: 14px;
}

.input {
  width: 100%;
  min-height: 36px;
  padding: 6px 10px;
  background: #f2f2f3;
  border: 1px solid rgba(29, 31, 32, 0.16);
  border-radius: 0;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  color: #1d1f20;
  caret-color: #5980a6;
  outline: none;
}
.input:hover {
  border-color: rgba(29, 31, 32, 0.45);
}
.input:focus {
  border-color: #5980a6;
}
.input::placeholder {
  color: rgba(29, 31, 32, 0.4);
}

textarea.input {
  min-height: 90px;
  resize: vertical;
  font-family: ui-monospace, Menlo, Consolas, "Courier New", monospace;
  line-height: 20px;
}

select.input {
  padding-right: 6px;
}

.input-lg {
  min-height: 44px;
  font-size: 15px;
}

.input-mono {
  font-family: ui-monospace, Menlo, Consolas, "Courier New", monospace;
  font-size: 13px;
}

/* 分段控件 */
.seg {
  display: inline-flex;
  border: 1px solid rgba(29, 31, 32, 0.16);
  border-radius: 0;
  overflow: hidden;
}
.seg .seg-opt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  font-size: 13px;
  color: #1d1f20;
  cursor: pointer;
}
.seg .seg-opt + .seg-opt {
  border-left: 1px solid rgba(29, 31, 32, 0.16);
}
.seg .seg-opt:hover {
  background: rgba(29, 31, 32, 0.07);
}
.seg .seg-opt.active {
  background: #5980a6;
  color: #f2f2f3;
}

/* — 标签 — */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 11px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.tag-accent {
  background: #eef6ff;
  color: #2c455d;
}

.tag-neutral {
  background: #f5f5f8;
  color: #424244;
}

.tag-outline {
  border-color: rgba(29, 31, 32, 0.16);
  color: #1d1f20;
}
.tag-outline:hover {
  border-color: #5980a6;
  color: #5980a6;
}

.tag-on {
  background: #eef6ff;
  border-color: #b5d9fd;
  color: #2c455d;
}

.tag-sm {
  padding: 1px 6px;
  font-size: 10px;
}

/* — 表格 — */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.table th {
  padding: 10px 0;
  border-bottom: 1px solid rgba(29, 31, 32, 0.16);
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(29, 31, 32, 0.6);
  white-space: nowrap;
}
.table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(29, 31, 32, 0.08);
}
.table tbody tr:hover {
  background: rgba(29, 31, 32, 0.04);
}
.table tbody tr:last-child td {
  border-bottom: 0;
}
.table .num {
  text-align: right;
  font-feature-settings: "tnum" 1;
}
.table .muted {
  color: rgba(29, 31, 32, 0.55);
}
.table .strong {
  font-weight: 500;
}
.table .mono {
  font-family: ui-monospace, Menlo, Consolas, "Courier New", monospace;
  font-size: 13px;
}

/* 名值对表格（归属地 / 运营商 …） */
.table-kv td:first-child {
  width: 140px;
  color: rgba(29, 31, 32, 0.6);
}

/* — 弹框 — */
.dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 14px;
  background: rgba(43, 43, 45, 0.5);
}

.dialog {
  width: min(440px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 28px;
  background: #f2f2f3;
  border: 1px solid rgba(29, 31, 32, 0.16);
  border-radius: 0;
  box-shadow: 0 12px 32px rgba(43, 43, 45, 0.22);
}
.dialog .dialog-hd {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.dialog .dialog-hd h2 {
  font-family: "Barlow Condensed", ui-sans-serif, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0.02em;
}
.dialog .dialog-intro {
  margin: 8px 0 18px;
  font-size: 13px;
  line-height: 20px;
  color: rgba(29, 31, 32, 0.65);
}

/* — 通用小件 — */
.text-muted {
  color: rgba(29, 31, 32, 0.55);
}

.text-accent {
  color: #416180;
}

.tnum {
  font-feature-settings: "tnum" 1;
}

.mono {
  font-family: ui-monospace, Menlo, Consolas, "Courier New", monospace;
}

/* 广告位：空置为虚线占位，放入 img 即为真实广告 */
.ad-slot {
  display: grid;
  place-items: center;
  border: 1px dashed rgba(29, 31, 32, 0.3);
  font-family: "Barlow", ui-sans-serif, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(29, 31, 32, 0.45);
}
.ad-slot img {
  display: block;
  width: 100%;
  height: auto;
}

a.ad-slot {
  border-style: solid;
  border-color: rgba(29, 31, 32, 0.16);
}

/* 面包屑 */
.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(29, 31, 32, 0.55);
}
.crumb a {
  color: rgba(29, 31, 32, 0.55);
}
.crumb a:hover {
  color: #5980a6;
}
.crumb .cur {
  color: #1d1f20;
  font-weight: 500;
}

/* 下划线式页签 */
.tabs {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(29, 31, 32, 0.16);
  font-size: 14px;
}
.tabs a {
  padding: 8px 14px 10px;
  margin-bottom: -1px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.tabs a:hover {
  border-bottom-color: #94bce3;
}
.tabs a.active {
  border-bottom-color: #5980a6;
  color: #5980a6;
  font-weight: 500;
}

/* 竖排链接列表：左标题右数值 */
.rows a, .rows .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(29, 31, 32, 0.08);
  font-size: 14px;
}
.rows a .t, .rows .row .t {
  min-width: 0;
}
.rows a .v, .rows .row .v {
  white-space: nowrap;
  font-size: 12px;
  color: rgba(29, 31, 32, 0.55);
  font-feature-settings: "tnum" 1;
}

/* 页面主标题 + 说明 */
.page-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.page-hd h1 {
  font-family: "Barlow Condensed", ui-sans-serif, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.01em;
}
.page-hd p {
  max-width: 52ch;
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: rgba(29, 31, 32, 0.78);
}

@media screen and (max-width: 799px) {
  .page-hd {
    gap: 12px;
  }
  .page-hd h1 {
    font-size: 32px;
  }
  .page-hd p {
    font-size: 14px;
    line-height: 22px;
  }
  .tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .tabs a {
    padding: 8px 12px 10px;
  }
  .dialog {
    padding: 20px;
  }
  .table {
    font-size: 13px;
  }
}
/*
* 充值 / 修改密码 / 新建监控任务 弹框
*
* 第一版只有静态结构，默认隐藏；接上开关逻辑时把 .mod-dlg-show 加到
* .mod-dlg 上即可（.dialog-backdrop 的基础样式在 blueprint 里）。
*/
.mod-dlg {
  display: none;
  overflow: auto;
  /* 角标是伪元素，会超出边框 6px；滚动交给遮罩层，弹框本身不裁切 */
}
.mod-dlg.mod-dlg-show {
  display: grid;
}
.mod-dlg .dialog {
  max-height: none;
  overflow: visible;
}
.mod-dlg .dialog-hd .close {
  color: rgba(29, 31, 32, 0.7);
}
.mod-dlg .field > label {
  font-size: 13px;
}

/* — 充值 — */
.dialog-recharge {
  width: min(480px, 100%);
}
.dialog-recharge .opts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dialog-recharge .opts .it {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  color: #1d1f20;
}
.dialog-recharge .opts .it:hover {
  border-color: #5980a6;
}
.dialog-recharge .opts .it.on {
  background: #eef6ff;
  border-color: #5980a6;
}
.dialog-recharge .opts .y {
  font-family: "Barlow Condensed", ui-sans-serif, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  font-feature-settings: "tnum" 1;
}
.dialog-recharge .opts .p {
  font-size: 12px;
  line-height: 16px;
  color: rgba(29, 31, 32, 0.6);
}
.dialog-recharge .field {
  margin-top: 14px;
}
.dialog-recharge .sum {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 18px 0 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(29, 31, 32, 0.16);
}
.dialog-recharge .sum .k {
  font-size: 13px;
  color: rgba(29, 31, 32, 0.6);
}
.dialog-recharge .sum .n {
  font-family: "Barlow Condensed", ui-sans-serif, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  font-feature-settings: "tnum" 1;
}
.dialog-recharge .sum .u {
  font-size: 16px;
}
.dialog-recharge .pays {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.dialog-recharge .note {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 18px;
  color: rgba(29, 31, 32, 0.55);
}

/* — 修改密码 — */
.dialog-pwd {
  width: min(420px, 100%);
}
.dialog-pwd .bd {
  margin-top: 20px;
}
.dialog-pwd .btn-block {
  margin-top: 20px;
}

/* — 新建监控任务 — */
.dialog-monitor {
  width: min(520px, 100%);
}
.dialog-monitor .two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
.dialog-monitor .two .field + .field {
  margin-top: 0;
}
.dialog-monitor .two + .field {
  margin-top: 14px;
}
.dialog-monitor .chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.dialog-monitor .chips .tag {
  padding: 4px 12px;
  font-size: 12px;
  cursor: pointer;
}
.dialog-monitor .checks {
  display: flex;
  gap: 16px;
  font-size: 14px;
}
.dialog-monitor .checks label {
  display: flex;
  gap: 6px;
  align-items: center;
  cursor: pointer;
}
.dialog-monitor .checks input {
  width: 14px;
  height: 14px;
}
.dialog-monitor .ft {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(29, 31, 32, 0.16);
}
.dialog-monitor .ft .note {
  font-size: 13px;
  color: rgba(29, 31, 32, 0.6);
}
.dialog-monitor .ft b {
  font-weight: 500;
  color: #1d1f20;
}
.dialog-monitor .ft .btn {
  min-height: 42px;
  padding: 0 24px;
}

@media screen and (max-width: 799px) {
  .dialog-recharge .opts {
    grid-template-columns: 1fr 1fr;
  }
  .dialog-recharge .pays {
    grid-template-columns: 1fr;
  }
  .dialog-monitor .two {
    grid-template-columns: 1fr;
  }
  .dialog-monitor .two .field + .field {
    margin-top: 14px;
  }
}
.mod-head {
  border-bottom: 1px solid rgba(29, 31, 32, 0.16);
  background: #f2f2f3;
}
.mod-head > .inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.mod-head .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 8px;
  white-space: nowrap;
}
.mod-head .logo img {
  display: block;
  height: 36px;
  width: 36px;
}
.mod-head .logo .txt {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mod-head .logo .name {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #1d1f20;
}
.mod-head .logo .url {
  font-family: "Barlow", ui-sans-serif, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 600;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.14em;
  color: #416180;
}
.mod-head .search {
  position: relative;
  flex: 1 1 200px;
  min-width: 160px;
  max-width: 300px;
  margin-right: auto;
}
.mod-head .search .input {
  min-height: 36px;
  padding-right: 44px;
  font-size: 13px;
  background: #f2f2f3;
}
.mod-head .search .key {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  padding: 1px 6px;
  border: 1px solid rgba(29, 31, 32, 0.16);
  font-family: "Barlow", ui-sans-serif, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(29, 31, 32, 0.45);
  pointer-events: none;
}
.mod-head .menu {
  display: flex;
  align-items: center;
  gap: 14px;
}
.mod-head .menu li {
  white-space: nowrap;
}
.mod-head .menu a {
  font-size: 14px;
}
.mod-head .menu .active a {
  color: #5980a6;
}
.mod-head .user {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  /* 点数 */
  /* 用户下拉 */
}
.mod-head .user > .account {
  font-size: 14px;
}
.mod-head .user .btn {
  min-height: 34px;
}
.mod-head .user .point {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px 5px 12px;
  font-size: 13px;
  line-height: 1;
}
.mod-head .user .point:hover {
  border-color: #5980a6;
}
.mod-head .user .point .label {
  color: rgba(29, 31, 32, 0.55);
}
.mod-head .user .point .num {
  font-family: "Barlow Condensed", ui-sans-serif, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #1d1f20;
  font-feature-settings: "tnum" 1;
}
.mod-head .user .point .act {
  padding-left: 8px;
  border-left: 1px solid rgba(29, 31, 32, 0.16);
  font-weight: 500;
  color: #416180;
}
.mod-head .user .card {
  position: relative;
}
.mod-head .user .card .name {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  font-size: 14px;
  cursor: pointer;
}
.mod-head .user .card .name i {
  font-style: normal;
  font-size: 10px;
  color: rgba(29, 31, 32, 0.5);
}
.mod-head .user .card .popup {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 40;
  min-width: 180px;
  padding: 6px 0;
  background: #f2f2f3;
  border: 1px solid rgba(29, 31, 32, 0.16);
  box-shadow: 0 12px 32px rgba(43, 43, 45, 0.22);
}
.mod-head .user .card .popup a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
}
.mod-head .user .card .popup a:hover {
  background: #e7e7ea;
}
.mod-head .user .card .popup .out {
  margin-top: 4px;
  border-top: 1px solid rgba(29, 31, 32, 0.12);
  color: #416180;
}
.mod-head .user .card:hover .popup {
  display: block;
}

@media screen and (max-width: 799px) {
  .mod-head > .inner {
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .mod-head .logo {
    margin-right: auto;
  }
  .mod-head .logo img {
    height: 30px;
    width: 30px;
  }
  .mod-head .logo .name {
    font-size: 16px;
  }
  .mod-head .search {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
  }
  .mod-head .menu {
    order: 4;
    flex: 1 1 100%;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid rgba(29, 31, 32, 0.08);
    padding-top: 6px;
  }
  .mod-head .menu li {
    padding-right: 16px;
  }
  .mod-head .user {
    gap: 10px;
  }
  .mod-head .user .account,
  .mod-head .user .point .label {
    display: none;
  }
}
.mod-foot {
  border-top: 1px solid rgba(29, 31, 32, 0.16);
  font-size: 13px;
  line-height: 22px;
  color: rgba(29, 31, 32, 0.7);
}
.mod-foot > .inner {
  padding-top: 24px;
  padding-bottom: 32px;
}
.mod-foot .bd {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}
.mod-foot .slogan {
  white-space: nowrap;
}
.mod-foot .navigation {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.mod-foot .navigation a {
  color: rgba(29, 31, 32, 0.7);
  white-space: nowrap;
}
.mod-foot .navigation a:hover {
  color: #5980a6;
}
.mod-foot .copy {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(29, 31, 32, 0.08);
  font-size: 12px;
  color: rgba(29, 31, 32, 0.55);
}
.mod-foot .copy span, .mod-foot .copy a {
  margin-right: 8px;
  white-space: nowrap;
}
.mod-foot .copy a {
  color: rgba(29, 31, 32, 0.55);
}
.mod-foot .copy a:hover {
  color: #5980a6;
}

.mod-fixedbar ul {
  position: fixed;
  right: 20px;
  bottom: 120px;
  z-index: 30;
}
.mod-fixedbar li {
  margin-bottom: 1px;
}
.mod-fixedbar li a {
  display: block;
  width: 48px;
  height: 48px;
  background: #e9e9ea;
  border: 1px solid rgba(29, 31, 32, 0.16);
  line-height: 46px;
  text-align: center;
}
.mod-fixedbar li a:hover {
  background: #e7e7ea;
  border-color: #5980a6;
}
.mod-fixedbar li a.report {
  background: #5980a6;
  border-color: #5980a6;
  color: #f2f2f3;
  line-height: 1;
}
.mod-fixedbar li a.report span {
  display: inline-block;
  width: 28px;
  margin: 8px auto;
  line-height: 16px;
  font-size: 13px;
}
.mod-fixedbar li a.report:hover {
  background: #597ea3;
}
.mod-fixedbar li img {
  position: relative;
  top: -1px;
  vertical-align: middle;
}

.mod-link {
  border-top: 1px solid rgba(29, 31, 32, 0.08);
}
.mod-link > .inner {
  padding-top: 15px;
  padding-bottom: 15px;
}
.mod-link .bd {
  font-size: 13px;
  line-height: 24px;
  color: rgba(29, 31, 32, 0.55);
}
.mod-link a {
  padding: 0 4px;
  color: rgba(29, 31, 32, 0.55);
}
.mod-link a:hover {
  color: #5980a6;
}

@media screen and (max-width: 799px) {
  .mod-foot > .inner {
    padding-top: 16px;
    padding-bottom: 20px;
  }
  .mod-foot .bd {
    gap: 10px;
  }
  .mod-foot .slogan {
    white-space: normal;
  }
  .mod-foot .navigation {
    gap: 14px;
  }
  .mod-fixedbar ul {
    right: 10px;
    bottom: 80px;
  }
  .mod-fixedbar li a {
    width: 40px;
    height: 40px;
    line-height: 38px;
  }
}
.mod-login {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  /* WebKit browsers */
  /* Mozilla Firefox 4 to 18 */
  /* Mozilla Firefox 19+ */
  /* Internet Explorer 10+ */
}
.mod-login a {
  text-decoration: none;
  color: rgba(29, 31, 32, 0.7);
}
.mod-login .widget-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(5px);
}
.mod-login .widget-container {
  width: 350px;
  height: fit-content;
  min-height: 420px;
  position: fixed;
  inset: 0;
  margin: auto;
  border: 1px solid rgba(29, 31, 32, 0.16);
  background: #f2f2f3;
  color: rgba(29, 31, 32, 0.7);
  z-index: 9999;
  overflow: auto;
  border-radius: 0;
}
.mod-login .widget-panel .hd {
  padding: 15px 0;
  font-size: 20px;
  color: #1d1f20;
  text-align: center;
}
.mod-login .widget-panel .hd .close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: url("/static/www/image/public/login/icon-close.png") center center/20px 20px no-repeat;
  cursor: pointer;
  text-indent: -33em;
  overflow: hidden;
}
.mod-login .widget-panel .bd {
  width: 300px;
  margin: 0 auto;
  padding-bottom: 15px;
}
.mod-login .widget-panel .tabs-container .tabs-navigation {
  display: flex;
  background: #f5f5f8;
  margin-bottom: 10px;
}
.mod-login .widget-panel .tabs-container .tabs-navigation li {
  width: 50%;
  line-height: 36px;
  text-align: center;
}
.mod-login .widget-panel .tabs-container .tabs-navigation li a {
  display: block;
}
.mod-login .widget-panel .tabs-container .tabs-navigation li.active {
  position: relative;
}
.mod-login .widget-panel .tabs-container .tabs-navigation li.active::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 3px;
  background: #5980a6;
}
.mod-login .widget-panel .tabs-container .tabs-navigation li.active a {
  background: rgba(0, 0, 0, 0.025);
  font-weight: bold;
  color: #1d1f20;
}
.mod-login .widget-panel .tabs-container .tabs-panel {
  display: none;
}
.mod-login .widget-panel .input-group-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.mod-login .widget-panel .input-group-container .input-group-item {
  min-width: 0;
  line-height: 18px;
}
.mod-login .widget-panel .widget-select {
  display: inline-block;
  width: 100%;
}
.mod-login .widget-panel .widget-select .widget-box {
  position: relative;
  width: 100%;
  background: #f2f2f3;
  border: 1px solid rgba(29, 31, 32, 0.16);
  box-sizing: border-box;
  border-radius: 0;
}
.mod-login .widget-panel .widget-select .widget-box:after {
  position: absolute;
  top: 50%;
  right: 12px;
  display: block;
  margin-top: -2px;
  content: "";
  width: 0;
  border: 4px solid transparent;
  border-top: 4px solid #1d1f20;
}
.mod-login .widget-panel .widget-select .widget-picker {
  margin-top: 1px;
  width: 200% !important;
  z-index: 999;
}
.mod-login .widget-panel .widget-select .widget-list {
  max-height: 240px;
  background: #f2f2f3;
  border: 1px solid rgba(29, 31, 32, 0.16);
  overflow-y: auto;
  border-radius: 0;
}
.mod-login .widget-panel .widget-select .widget-list li {
  padding: 4px 0;
  line-height: 16px;
}
.mod-login .widget-panel .widget-select .widget-list li.widget-active {
  background: rgba(29, 31, 32, 0.08);
}
.mod-login .widget-panel .widget-select .item {
  padding: 3px 8px;
  line-height: 16px;
}
.mod-login .widget-panel .widget-select .item .code {
  font-weight: bold;
  color: rgba(29, 31, 32, 0.7);
}
.mod-login .widget-panel .widget-select .item .place {
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.mod-login .widget-panel .J_userItem {
  height: 40px;
}
.mod-login .widget-panel .input-wrapper {
  position: relative;
  margin-bottom: 10px;
  line-height: 20px;
  *zoom: 1;
}
.mod-login .widget-panel label {
  display: inline-block;
  cursor: pointer;
  user-select: none;
}
.mod-login .widget-panel label input, .mod-login .widget-panel label span {
  vertical-align: middle;
}
.mod-login .widget-panel label input {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}
.mod-login .widget-panel label a {
  color: #5980a6;
}
.mod-login .widget-panel .error {
  height: 20px;
  margin-bottom: 6px;
  color: #b4472f;
  font-size: 12px;
}
.mod-login .widget-panel .error span {
  display: inline-block;
  height: 20px;
  padding-left: 20px;
  background: url("/static/www/image/public/login/icon-error.png") 0 center/16px 16px no-repeat;
  line-height: 20px;
}
.mod-login .widget-panel .captcha {
  position: absolute;
  top: 1px;
  right: 4px;
}
.mod-login .widget-panel .captcha img {
  height: 38px;
}
.mod-login .widget-panel .getcode {
  position: absolute;
  top: 0;
  right: 0;
  width: 102px;
  line-height: 40px;
  background: #5980a6;
  color: #f2f2f3;
  text-align: center;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.mod-login .widget-panel .disabled {
  background-color: rgba(29, 31, 32, 0.35);
  font-size: 12px;
  cursor: default;
}
.mod-login .widget-panel .forget {
  float: right;
}
.mod-login .widget-panel .line {
  position: relative;
  display: block;
  line-height: 20px;
  text-align: center;
}
.mod-login .widget-panel .line span {
  display: inline-block;
  position: relative;
  z-index: 9;
  padding: 0 10px;
  background: #f2f2f3;
}
.mod-login .widget-panel .line::after {
  position: absolute;
  left: 0;
  top: 10px;
  z-index: -1;
  content: "";
  width: 100%;
  height: 0;
  border-bottom: 1px solid rgba(29, 31, 32, 0.08);
}
.mod-login .widget-panel .js-error .input-text {
  border-color: #b4472f;
}
.mod-login .widget-panel .toggle {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  background: url("/static/www/image/public/login/icon-eye-close.png") center center/15px 15px no-repeat;
}
.mod-login .widget-panel .toggle-open {
  background: url("/static/www/image/public/login/icon-eye-open.png") center center/15px 15px no-repeat;
}
.mod-login .widget-panel select {
  width: 100%;
  height: 40px;
  padding: 9px 8px;
  border: 1px solid rgba(29, 31, 32, 0.16);
  border-radius: 0;
  outline: none;
}
.mod-login .widget-panel .input-text {
  width: 100%;
  height: 40px;
  line-height: 20px;
  padding: 9px 8px;
  border: 1px solid rgba(29, 31, 32, 0.16);
  outline: none;
  box-sizing: border-box;
  border-radius: 0;
}
.mod-login .widget-panel .input-text:focus {
  border-color: #5980a6;
}
.mod-login input[type=number]::-webkit-outer-spin-button, .mod-login input[type=number]::-webkit-inner-spin-button {
  display: none;
}
.mod-login input[type=number] {
  -moz-appearance: textfield;
}
.mod-login input::-webkit-input-placeholder {
  color: rgba(29, 31, 32, 0.7);
}
.mod-login input:-moz-placeholder {
  color: rgba(29, 31, 32, 0.7);
}
.mod-login input::-moz-placeholder {
  color: rgba(29, 31, 32, 0.7);
}
.mod-login input:-ms-input-placeholder {
  color: rgba(29, 31, 32, 0.7);
}
.mod-login .btn {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  background: #5980a6;
  border: none medium;
  line-height: 40px;
  vertical-align: middle;
  text-align: center;
  font-family: "Barlow Condensed", ui-sans-serif, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #f2f2f3;
  border-radius: 0;
  cursor: pointer;
  box-sizing: border-box;
  outline: none;
  appearance: none;
}
.mod-login .btn span, .mod-login .btn img {
  vertical-align: middle;
}
.mod-login .btn:hover {
  background: #597ea3;
  text-decoration: none !important;
}
.mod-login .btn-green {
  background: #2c455d;
  color: #f2f2f3;
}
.mod-login .btn-green:hover {
  background: #1d2d3d;
}

.mod-captcha {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
.mod-captcha .widget-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(5px);
}
.mod-captcha .widget-container {
  width: 350px;
  height: 120px;
  position: fixed;
  left: 50%;
  top: 50%;
  margin: -60px 0 0 -175px;
  border: 1px solid rgba(29, 31, 32, 0.16);
  background: #f2f2f3;
  color: rgba(29, 31, 32, 0.7);
  z-index: 9999;
  overflow: auto;
  border-radius: 0;
}
.mod-captcha .widget-container .hd {
  padding: 10px 0;
  margin: 0 15px;
  line-height: 36px;
}
.mod-captcha .widget-container .hd .title {
  font-size: 16px;
  font-weight: bold;
  color: #1d1f20;
}
.mod-captcha .widget-container .hd .close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: url("/static/www/image/public/login/icon-close.png") center center/20px 20px no-repeat;
  cursor: pointer;
  text-indent: -33em;
  overflow: hidden;
}
.mod-captcha .widget-container .bd {
  position: relative;
  margin: 0 15px;
}
.mod-captcha .widget-container .bd .sm-pop-inner {
  position: static;
  display: block;
  margin-bottom: 10px;
}
.mod-captcha .widget-container .bd .nc_wrapper {
  margin: 0 auto;
}
.mod-captcha .widget-container .bd input[type=text] {
  height: 40px;
  width: 210px;
  padding: 8px 12px;
  border: 1px solid rgba(29, 31, 32, 0.16);
  line-height: 22px;
  border-radius: 0;
  box-sizing: border-box;
  vertical-align: middle;
  outline: none;
}
.mod-captcha .widget-container .bd img {
  vertical-align: middle;
}

.mod-login-show .widget-overlay, .mod-captcha-show .widget-overlay {
  background: rgba(43, 43, 45, 0.5);
  transition: background 0.3s ease;
}
.mod-login-show .widget-container, .mod-captcha-show .widget-container {
  animation: bounce-down 0.5s 0s ease both;
}
@keyframes bounce-down {
  0% {
    transform: translateY(-2000px);
    opacity: 0;
  }
  60% {
    transform: translateY(30px);
    opacity: 1;
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.mod-login-hide .widget-overlay, .mod-captcha-hide .widget-overlay {
  transition: background 0.3s ease;
}
.mod-login-hide .widget-container, .mod-captcha-hide .widget-container {
  animation: bounce-up 0.5s 0s ease both;
}
@keyframes bounce-up {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-2000px);
    opacity: 0;
  }
}

@media screen and (max-width: 799px) {
  .mod-login .widget-container {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
  }
  .mod-login .widget-panel .widget-select .widget-box {
    background: #f5f5f8;
    border: none;
  }
  .mod-login .widget-panel .hd {
    padding: 0;
    height: 44px;
    border-bottom: 1px solid rgba(29, 31, 32, 0.16);
  }
  .mod-login .widget-panel .hd span {
    display: none;
  }
  .mod-login .widget-panel .hd .close {
    right: 0;
    top: 0;
    width: 44px;
    height: 44px;
    background-size: 16px 16px;
  }
  .mod-login .widget-panel .bd {
    padding-top: 80px;
    background: url("/static/www/image/public/logo.png") center 15px no-repeat;
    background-size: 140px auto;
  }
  .mod-login .widget-panel .captcha:after {
    position: absolute;
    top: 5px;
    left: -15px;
    display: block;
    content: "|";
    color: rgba(29, 31, 32, 0.16);
  }
  .mod-login .widget-panel .js-error .icon {
    border-color: #b4472f;
  }
  .mod-login .widget-panel .icon {
    display: block;
    padding: 0 10px 0 30px;
    background-color: #f2f2f3;
    background-position: 4px center;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(29, 31, 32, 0.16);
  }
  .mod-login .widget-panel .icon-account {
    background-image: url("/static/www/image/public/login/icon-account.png");
  }
  .mod-login .widget-panel .icon-mobile {
    background-image: url("/static/www/image/public/login/icon-mobile.png");
  }
  .mod-login .widget-panel .icon-email {
    background-image: url("/static/www/image/public/login/icon-email.png");
  }
  .mod-login .widget-panel .icon-password {
    background-image: url("/static/www/image/public/login/icon-password.png");
  }
  .mod-login .widget-panel .icon-captcha {
    background-image: url("/static/www/image/public/login/icon-captcha.png");
  }
  .mod-login .widget-panel .input-text {
    padding: 10px 0;
    border: none;
    border-radius: 0;
  }
}