@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) { ... }
*/
.mod-panel {
  background: #f2f2f3;
  border: 1px solid rgba(29, 31, 32, 0.16);
}
.mod-panel .hd {
  padding: 14px 20px;
  line-height: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.mod-panel .hd .title {
  display: inline-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;
}
.mod-panel .bd {
  padding: 20px 15px;
}
.mod-panel .bd .input-wrapper {
  margin-bottom: 10px;
  overflow: hidden;
}
.mod-panel .bd .input-wrapper p {
  line-height: 30px;
  margin-bottom: 5px;
}
.mod-panel .bd .input-wrapper label {
  display: inline-block;
  min-width: 80px;
  margin-right: 10px;
}
.mod-panel .bd .input-wrapper label input, .mod-panel .bd .input-wrapper label span {
  vertical-align: middle;
}
.mod-panel .bd .input-wrapper select {
  height: 32px;
  border: 1px solid rgba(29, 31, 32, 0.16);
  outline: none;
}
.mod-panel .bd .input-wrapper .input-title {
  float: left;
  width: 120px;
  line-height: 30px;
  text-align: right;
}
.mod-panel .bd .input-wrapper .input-content {
  margin-left: 132px;
  line-height: 30px;
}
.mod-panel .bd .input-wrapper .input-text {
  width: 454px;
  height: 20px;
  padding: 5px 10px;
  border: 1px solid rgba(29, 31, 32, 0.16);
  outline: none;
}
.mod-panel .bd .input-wrapper .input-text-small {
  width: 113px;
}
.mod-panel .bd .input-wrapper .input-text-middle {
  width: 165px;
}
.mod-panel .bd .input-wrapper textarea {
  display: block;
  width: 454px;
  height: 240px;
  padding: 5px 10px;
  border: 1px solid rgba(29, 31, 32, 0.16);
  outline: none;
}
.mod-panel .bd .input-wrapper .btn {
  position: relative;
  display: inline-block;
  min-width: 100px;
  height: 36px;
  padding: 0 20px;
  margin: 15px 0;
  border: medium none;
  background: #5980a6;
  line-height: 36px;
  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: #fff;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  outline: none;
  -webkit-appearance: none;
}
.mod-panel .bd .input-wrapper .btn:hover {
  background: #597ea3;
}

@media screen and (max-width: 799px) {
  .mod-search .bd img {
    width: 120px;
    height: 40px;
  }
  .mod-panel {
    margin: 0 10px;
  }
  .mod-panel .bd {
    padding: 15px 10px;
  }
  .mod-panel .bd .input-wrapper .input-title {
    float: none;
    width: auto;
    text-align: left;
  }
  .mod-panel .bd .input-wrapper .input-content {
    margin-left: 0;
  }
  .mod-panel .bd .input-wrapper .input-text {
    width: 100%;
    height: 30px;
    padding: 5px 10px;
    box-sizing: border-box;
  }
  .mod-panel .bd .input-wrapper textarea {
    width: 100%;
    box-sizing: border-box;
  }
}