@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-cx-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 12px;
  align-items: end;
  margin-top: 32px;
  padding: 24px;
}
.mod-cx-form .btn {
  white-space: nowrap;
}
.mod-cx-form .opts {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.mod-cx-form .opts .chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.mod-cx-form .opts .tag {
  padding: 4px 12px;
  font-size: 12px;
  cursor: pointer;
}
.mod-cx-form .opts .note {
  font-size: 12px;
  color: rgba(29, 31, 32, 0.55);
  white-space: nowrap;
}

.mod-cx-result {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}
.mod-cx-result .score {
  padding: 24px;
  text-align: center;
}
.mod-cx-result .score .n {
  margin: 14px 0 4px;
  font-family: "Barlow Condensed", ui-sans-serif, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 600;
  font-size: 96px;
  line-height: 1;
  letter-spacing: 0.01em;
  font-feature-settings: "tnum" 1;
}
.mod-cx-result .score p {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 20px;
  color: rgba(29, 31, 32, 0.6);
}
.mod-cx-result .score .acts {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 16px;
}
.mod-cx-result .more {
  font-size: 13px;
  color: #416180;
  white-space: nowrap;
}

@media screen and (max-width: 799px) {
  .container > .inner {
    padding-top: 20px;
    padding-bottom: 28px;
  }
  .mod-cx-form {
    grid-template-columns: 1fr;
    margin-top: 20px;
    padding: 16px;
  }
  .mod-cx-result {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }
  .mod-cx-result .score .n {
    font-size: 64px;
  }
  .mod-cx-result .table {
    display: block;
    overflow-x: auto;
  }
}