/* public css */
:root {
  /* 宽度 */
  --jq_w1200: 1200px;
  --jq_color1: #022134;
  --jq_color2: #ffffff;
  --jq_color3: #333333;
  --jq_color4: #868383;
  --jq_color5: #40484b;
  --jq_color6: #f4f5f6;
  --jq_color7: #ebebeb;
  --jq_color8: #8e8f91;
  --jq_color9: #f0f0ee;
  --jq_color10: #f4f5f6;
  --jq_color14: #007fc8;
  --jq_color16: #f6f9fc;
  --jq_color17: rgba(0,0,0,0.085);
  --jq_color19: #e60013;
  --jq_color20: #e13507;

  /* 字体大小 */
  --jq_fs1: 12px;
  --jq_fs2: 14px;
  --jq_fs3: 16px;
  --jq_fs4: 18px;
  --jq_fs5: 20px;
  --jq_fs6: 22px;
  --jq_fs7: 24px;
  --jq_fs8: 26px;
  --jq_fs9: 28px;
  --jq_fs10: 30px;
  --jq_fs11: 32px;
  --jq_fs12: 34px;

  /* 外边距 */
  --jq_ml1: 5px;
  --jq_ml2: 10px;
  --jq_ml3: 15px;
  --jq_ml4: 20px;
  --jq_ml5: 25px;
  --jq_ml6: 30px;
  --jq_ml7: 35px;
  --jq_ml8: 40px;
  --jq_ml9: 45px;
  --jq_ml10: 50px;

  --jq_mr1: 5px;
  --jq_mr2: 10px;
  --jq_mr3: 15px;
  --jq_mr4: 20px;
  --jq_mr5: 25px;
  --jq_mr6: 30px;
  --jq_mr7: 35px;
  --jq_mr8: 40px;
  --jq_mr9: 45px;
  --jq_mr10: 50px;

  --jq_mt1: 5px;
  --jq_mt2: 10px;
  --jq_mt3: 15px;
  --jq_mt4: 20px;
  --jq_mt5: 25px;
  --jq_mt6: 30px;
  --jq_mt7: 35px;
  --jq_mt8: 40px;
  --jq_mt9: 45px;
  --jq_mt10: 50px;

  --jq_mb1: 5px;
  --jq_mb2: 10px;
  --jq_mb3: 15px;
  --jq_mb4: 20px;
  --jq_mb5: 25px;
  --jq_mb6: 30px;
  --jq_mb7: 35px;
  --jq_mb8: 40px;
  --jq_mb9: 45px;
  --jq_mb10: 50px;

  /* 内边距 */
  --jq_pl1: 5px;
  --jq_pl2: 10px;
  --jq_pl3: 15px;
  --jq_pl4: 20px;
  --jq_pl5: 25px;
  --jq_pl6: 30px;
  --jq_pl7: 35px;
  --jq_pl8: 40px;
  --jq_pl9: 45px;
  --jq_pl10: 50px;

  --jq_pr1: 5px;
  --jq_pr2: 10px;
  --jq_pr3: 15px;
  --jq_pr4: 20px;
  --jq_pr5: 25px;
  --jq_pr6: 30px;
  --jq_pr7: 35px;
  --jq_pr8: 40px;
  --jq_pr9: 45px;
  --jq_pr10: 50px;

  --jq_pt1: 5px;
  --jq_pt2: 10px;
  --jq_pt3: 15px;
  --jq_pt4: 20px;
  --jq_pt5: 25px;
  --jq_pt6: 30px;
  --jq_pt7: 35px;
  --jq_pt8: 40px;
  --jq_pt9: 45px;
  --jq_pt10: 50px;

  --jq_pb1: 5px;
  --jq_pb2: 10px;
  --jq_pb3: 15px;
  --jq_pb4: 20px;
  --jq_pb5: 25px;
  --jq_pb6: 30px;
  --jq_pb7: 35px;
  --jq_pb8: 40px;
  --jq_pb9: 45px;
  --jq_pb10: 50px;
}
html, body, .app {
  width: 100%;
  height: 100%;
  color: var(--jq_color3);
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
a {
  color: var(--jq_color3);
  text-decoration: none;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  &:hover {
    color: var(--jq_color14);
  }
}
.box-1200 {
  width: var(--jq_w1200);
}
/* 公共 */
/* products-table */
.products-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  .theads {
    width: 100%;
    .ths {
      width: 100%;
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid var(--jq_color17);
      background: var(--jq_color16);
      .tds {
        width: 100%;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: var(--jq_fs2);
      }
      .tds.border {
        border: none;
        border-right: 1px solid var(--jq_color17);
      }
    }
  }
  .tbodys {
    width: 100%;
    .trs {
      width: 100%;
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid var(--jq_color17);
      .tds {
        width: 100%;
        display: flex;
        padding: var(--jq_pt1);
        font-size: var(--jq_fs1);
      }
      .tds.center {
        justify-content: center;
        align-items: center;
      }
      .tds.border {
        border: none;
        border-right: 1px solid var(--jq_color17);
      }
    }
    .trs:hover {
      background: var(--jq_color17);
    }
  }
}
.products-table.border {
  border: 1px solid var(--jq_color17);
}
/* form */
.jq-common-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  .form-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: var(--jq_mb4);
    .form-item {
      width: 100%;
      display: flex;
      margin-bottom: var(--jq_mb3);
      font-size: var(--jq_fs2);
      .field-label {
        width: 100px;
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
        flex-shrink: 0;
        padding-top: 7px;
      }
      .field-value {
        width: 100%;
        display: flex;
        flex-direction: column;
        .field-value-input {
          width: 100%;
          display: flex;
          .input, .textarea {
            width: 100%;
            height: 32px;
            padding: 0 var(--jq_pt2);
            border: 1px solid var(--jq_color17);
            outline: none;
            font-size: var(--jq_fs2);
            border-radius: 4px;
            transition: all 0.3s;
          }
          .textarea {
            min-height: 64px;
            height: auto;
            padding: var(--jq_pt1) var(--jq_pt2);
          }
          .input:hover, .textarea:hover {
            border: 1px solid var(--jq_color14);
          }
          .input.error, .textarea.error {
            border: 1px solid var(--jq_color19);
          }
          .imgs {
            width: 80px;
            height: 32px;
            margin-left: var(--jq_ml1);
            flex-shrink: 0;
          }
        }
        .field-value-error {
          width: 100%;
          font-size: var(--jq_fs1);
          color: var(--jq_color19);
          margin-top: 2px;
          display: none;
        }
        .field-value-error.active {
          display: block;
        }
      }
    }
  }
  .form-submit {
    width: 100%;
    .btn {
      height: 36px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: var(--jq_fs2);
      font-weight: bold;
      background: var(--jq_color14);
      border-radius: 5px;
      cursor: pointer;
      padding: 0 var(--jq_pt4);
      border: none;
      opacity: 0.8;
      color: var(--jq_color2);
      &:hover {
        opacity: 1;
      }
    }
  }
}
.input, .textarea {
  width: 100%;
  height: 32px;
  padding: 0 var(--jq_pt2);
  border: 1px solid var(--jq_color17);
  outline: none;
  font-size: var(--jq_fs2);
  border-radius: 4px;
  transition: all 0.3s;
}
.textarea {
  min-height: 64px;
  height: auto;
  padding: var(--jq_pt1) var(--jq_pt2);
}
.input:hover, .textarea:hover {
  border: 1px solid var(--jq_color14);
}
.input.error, .textarea.error {
  border: 1px solid var(--jq_color19);
}
.button {
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--jq_fs2);
  font-weight: bold;
  background: var(--jq_color14);
  border-radius: 5px;
  cursor: pointer;
  padding: 0 var(--jq_pt4);
  border: none;
  opacity: 0.8;
  color: var(--jq_color2);
  &:hover {
    opacity: 1;
  }
}
.button.danger {
  background: var(--jq_color19);
}
.button.info {
  background: var(--jq_color6);
}
.button.success {
  background: var(--jq_color24);
}

.wrap {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  .content {
    width: calc(100% - 288px);
    height: 100%;
    background-color: #f0f0f0;
    overflow: hidden auto;
  }
}
/* 菜单 */
.menu-pc {
  width: 288px;
  height: 100%;
  background-color: var(--jq_color1);
  display: flex;
  flex-direction: column;
  position: relative;
  .lang {
    width: 100%;
    padding: var(--jq_pt2);
    position: relative;
    display: flex;
    z-index: 3;
    a {
      width: 100%;
      color: var(--jq_color2);
      display: flex;
      align-items: center;
      i {
        margin-right: var(--jq_mr2);
      }
    }
    .lang-child {
      width: 100%;
      position: absolute;
      left: 0;
      flex-direction: column;
      box-shadow: 0 10px 10px var(--jq_color2);
      display: flex;
      overflow: hidden;
      transition: all 0.3s;
      top: -1000px;
      background: var(--jq_color1);
      z-index: 2;
      a {
        background-color: var(--jq_color1);
        padding: var(--jq_pt2);
        border-top: var(--jq_color2) 1px solid;
        &:hover {
          background-color: var(--jq_color2);
          color: var(--jq_color1);
        }
      }
    }
    &:hover {
      .lang-child {
        top: 44px;
      }
    }
  }
  .logo {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: var(--jq_pt6) 0;
    img {
      width: 80px;
      height: auto;
    }
  }
  .menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    a {
      width: 100%;
      color: var(--jq_color2);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: var(--jq_pt3) 0;
      font-size: var(--jq_fs4);
      transition: all 0.5s;
      position: relative;
      z-index: 2;
      span {
        position: relative;
        z-index: 2;
      }
      &:hover {
        color: var(--jq_color1);
      }
      &::before {
        content: '';
        width: 0;
        height: 100%;
        background-color: var(--jq_color2);
        position: absolute;
        left: 0;
        top: 0;
        transition: all 0.3s;
        z-index: 1;
      }
      &:hover::before {
        width: 100%;
      }
    }
  }
  .copyright {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    position: absolute;
    bottom: var(--jq_mb3);
    font-size: var(--jq_fs2);
    color: var(--jq_color4);
  }
}
.menu-phone {
  width: 100%;
  height: 60px;
  background: var(--jq_color1);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--jq_pt4);
  .logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    img {
      width: 100%;
      /* height: 100%; */
    }
  }
  .menuCheckLang {
    height: 100%;
    display: flex;
    align-items: center;
    .menu-check {
      width: 18px;
      height: 16px;
      justify-content: center;
      align-items: center;
      position: relative;
      margin-right: var(--jq_mr4);
      cursor: pointer;
      flex-shrink: 0;
      span {
        width: 100%;
        height: 2px;
        background-color: var(--jq_color2);
        position: absolute;
        top: 7px;
      }
      &::before {
        content: '';
        width: 100%;
        height: 2px;
        background-color: var(--jq_color2);
        position: absolute;
        top: 0px;
      }
      &::after {
        content: '';
        width: 100%;
        height: 2px;
        background-color: var(--jq_color2);
        position: absolute;
        bottom: 0px;
      }
    }
    .lang {
      width: 100%;
      height: 100%;
      padding: var(--jq_pt2);
      position: relative;
      display: flex;
      z-index: 3;
      align-items: center;
      a {
        width: 100%;
        color: var(--jq_color2);
        display: flex;
        align-items: center;
        i {
          margin-right: var(--jq_mr2);
        }
      }
      .lang-child {
        width: 100%;
        position: absolute;
        left: 0;
        flex-direction: column;
        box-shadow: 0 10px 10px var(--jq_color2);
        display: flex;
        overflow: hidden;
        transition: all 0.3s;
        top: -1000px;
        background: var(--jq_color1);
        z-index: 2;
        a {
          background-color: var(--jq_color1);
          padding: var(--jq_pt2);
          border-top: var(--jq_color2) 1px solid;
          &:hover {
            background-color: var(--jq_color2);
            color: var(--jq_color1);
          }
        }
      }
      &:hover {
        .lang-child {
          top: 60px;
        }
      }
    }
  }
  .menu {
    width: 100%;
    position: absolute;
    left: 0;
    top: 60px;
    display: none;
    flex-direction: column;
    background: var(--jq_color5);
    a {
      width: 100%;
      color: var(--jq_color2);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: var(--jq_pt3) 0;
      font-size: var(--jq_fs4);
      transition: all 0.5s;
      position: relative;
      z-index: 2;
      span {
        position: relative;
        z-index: 2;
      }
      &:hover {
        color: var(--jq_color5);
      }
      &::before {
        content: '';
        width: 0;
        height: 100%;
        background-color: var(--jq_color2);
        position: absolute;
        left: 0;
        top: 0;
        transition: all 0.3s;
        z-index: 1;
      }
      &:hover::before {
        width: 100%;
      }
    }
  }
  .menu.active {
    display: flex;
  }
}
/* AppBanner */
.banner-box {
  width: 100%;
  height: 500px;
  position: relative;
  .swiper {
    height: 100%;
    .swiper-wrapper {
      height: 100%;
      .swiper-slide {
        height: 100%;
        a {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          width: 100%;
          height: 100%;
          padding: 0 30px;
          img {
            width: 100%;
            height: 100%;
          }
          
        }
      }
    }
  }
}
/* 产品列表 */
.product-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  .product-title {
    width: 100%;
    height: 168px;
    background: url('icon/7.jpg') no-repeat left top;
    background-size: auto 100%;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    padding: 0 var(--jq_pt2);
    justify-content: center;
    color: var(--jq_color2);
    .max-title {
      font-size: var(--jq_fs4);
    }
    .min-title {
      font-size: var(--jq_fs2);
      margin-top: var(--jq_mt2);
    }
  }
  .product-title.brand-title {
    background: url('icon/6.jpg') no-repeat left top;
    background-size: cover;
  }
  .product-title.aboutus-title {
    background: url('icon/3.jpg') no-repeat left top;
    background-size: cover;
  }
  .product-title.contact-title {
    background: url('icon/4.jpg') no-repeat left top;
    background-size: cover;
  }
  .product-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    .tab-box {
      width: 100%;
      padding: var(--jq_pl6);
      background: var(--jq_color6);
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      .tab-active {
        width: 100%;
        height: 44px;
        display: flex;
        a {
          height: 100%;
          padding: 0 var(--jq_pl9);
          background: var(--jq_color7);
          margin-right: var(--jq_mr4);
          display: flex;
          justify-content: center;
          align-items: center;
          transition: all 0.3s;
          &:hover {
            background: var(--jq_color8);
          }
        }
        a.active {
          background: var(--jq_color8);
          color: var(--jq_color2);
        }
      }
      .tab-main {
        width: 100%;
        flex-shrink: 0;
        .tab-content {
          width: 100%;
          display: flex;
          flex-wrap: wrap;
          a {
            margin-right: var(--jq_mr4);
            margin-top: var(--jq_mt4);
            font-size: var(--jq_fs2);
          }
        }
      }
    }
    .product-list-box {
      width: 100%;
      height: 100%;
      background: var(--jq_color2);
      display: flex;
      flex-direction: column;
      padding-bottom: var(--jq_pb4);
      .prod-list-type {
        width: 100%;
        padding: var(--jq_pl2);
        display: flex;
        justify-content: flex-end;
        a {
          margin-left: var(--jq_ml2);
          color: var(--jq_color5);
          i {
            font-size: var(--jq_fs6);
          }
        }
      }
      .product-list {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        padding: 0 var(--jq_pt2);
        .product-list-item {
          width: calc(100% / 4 - 20px);
          margin: var(--jq_mt2);
          display: flex;
          border: 1px solid var(--jq_color9);
          padding: var(--jq_pt2);
          transition: all 0.3s;
          cursor: pointer;
          &:hover {
            border: 1px solid var(--jq_color8);
          }
          .img {
            width: 80px;
            height: 80px;
            flex-shrink: 0;
            img {
              width: 100%;
              height: 100%;
            }
          }
          .text {
            width: calc(100% - 80px);
            padding-left: var(--jq_pl2);
            display: flex;
            flex-direction: column;
            .max {
              font-weight: bold;
            }
            .min {
              width: 100%;
              font-size: var(--jq_fs2);
              display: flex;
              flex-direction: column;
            }
          }
        }
      }
    }
    .product-detail-box {
      width: 100%;
      background: var(--jq_color2);
      display: flex;
      flex-direction: column;
      padding: var(--jq_pt4);
      .product-detail-main {
        width: 100%;
        display: flex;
        justify-content: space-between;
        .product-detail-pic {
          width: calc(33.333333333% - 20px);
          height: 500px;
          border: 1px solid var(--jq_color9);
          margin-right: 20px;
          padding: var(--jq_pt2);
          .product-detail-banner {
            width: 100%;
            height: 100%;
          }
        }
        .product-detail-basicInfo {
          width: calc(33.333333333% - 20px);
          height: 500px;
          border: 1px solid var(--jq_color9);
          margin-right: 20px;
          padding: var(--jq_pt2);
          .basicInfor-title {
            font-size: var(--jq_fs4);
            font-weight: bold;
            margin-bottom: var(--jq_mb2);
          }
          .basicInfo-list-box {
            width: 100%;
            height: calc(100% - 35px);
            overflow: hidden auto;
            .basicInfo-list {
              width: 100%;
              display: flex;
              margin-bottom: var(--jq_mb2);
              font-size: var(--jq_fs2);
              .field-label {
                width: 100px;
                text-align: right;
                margin-right: var(--jq_mr2);
                font-weight: bold;
              }
              .field-value {
                width: calc(100% - 100px);
              }
            }
          }
        }
        .product-detail-from {
          width: calc(33.333333333% - 20px);
          height: 500px;
          border: 1px solid var(--jq_color9);
          padding: var(--jq_pt2);
          .product-detail-from-title {
            font-size: var(--jq_fs4);
            font-weight: bold;
            margin-bottom: var(--jq_mb2);
            flex-shrink: 0;
          }
          .product-detail-from-box {
            height: calc(100% - 35px);
            overflow: hidden auto;
          }
          .form-submit {
            display: flex;
            justify-content: center;
          }
        }
      }
      .product-other {
        width: 100%;
        margin-top: var(--jq_mt4);
        display: flex;
        flex-direction: column;
        .product-other-title {
          font-size: var(--jq_fs4);
          font-weight: bold;
          margin-bottom: var(--jq_mb2);
        }
        .product-other-main {
          width: 100%;
          padding-bottom: var(--jq_pb4);
        }
      }
    }
  }
}
.page-box {
  width: 100%;
  padding: var(--jq_pl4px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  a {
    height: 30px;
    padding: 0 var(--jq_pl2);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--jq_color9);
    margin-right: var(--jq_mr2);
    transition: all 0.3s;
    &:hover {
      border: 1px solid var(--jq_color8);
    }
  }
  a.active {
    background: var(--jq_color8);
    color: var(--jq_color2);
  }
}
.brand-box {
  width: 100%;
  background: var(--jq_color2);
  display: flex;
  flex-wrap: wrap;
  padding: var(--jq_pt2);
  .brand-list {
    width: calc(100% / 4 - 20px);
    margin-bottom: var(--jq_mb2);
    border: 1px solid var(--jq_color9);
    padding: var(--jq_pt2);
    display: flex;
    flex-direction: column;
    margin: var(--jq_mt2);
    transition: all 0.3s;
    &:hover {
      border: 1px solid var(--jq_color8);
    }
    .img {
      width: 100%;
      height: 80px;
      flex-shrink: 0;
      img {
        width: 100%;
        height: 100%;
      }
    }
    .title {
      width: 100%;
      font-size: var(--jq_fs6);
      font-weight: bold;
    }
    .text1 {
      width: 100%;
      display: flex;
      flex-direction: column;
      margin-top: var(--jq_mt3);
      font-size: var(--jq_fs2);
    }
    .text2 {
      width: 100%;
      margin-top: var(--jq_mt3);
      font-size: var(--jq_fs1);
    }
    .more {
      width: 100%;
      margin-top: var(--jq_mt3);
      font-size: var(--jq_fs2);
    }
  }
}
.aboutus-box {
  width: 100%;
  background: var(--jq_color2);
  display: flex;
  flex-direction: column;
  .aboutus-tab {
    width: 100%;
    height: 52px;
    background: var(--jq_color10);
    display: flex;
    padding: 0 40px;
    align-items: center;
    a {
      height: 100%;
      padding: 0 40px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    a.active {
      color: var(--jq_color14);
      background: var(--jq_color2);
      border-bottom: 2px solid var(--jq_color8);
    }
  }
  .aboutus-main {
    width: 100%;
    display: flex;
    padding: var(--jq_pt8);
    .aboutus-content {
      width: calc(100% - 250px);
      padding-right: var(--jq_pl2);
      font-size: var(--jq_fs2);
      p {
        /* text-indent: 2em; */
        margin-bottom: var(--jq_mb4);
        line-height: 26px;
      }
      p.bold {
        font-weight: bold;
      }
      span.title {
        font-weight: bold;
      }
    }
    .aboutus-img {
      width: 250px;
      padding: 0 var(--jq_pl2);
      flex-shrink: 0;
      img {
        width: 100%;
      }
    }
    .join-content {
      width: calc(100% - 250px);
      padding-right: var(--jq_pl2);
      font-size: var(--jq_fs2);
      .join-tips {
        width: 100%;
        display: flex;
        font-size: var(--jq_fs3);
        font-weight: bold;
      }
      .join-process {
        width: 100%;
        display: flex;
        margin: var(--jq_mt2) 0;
      }
      .join-main {
        width: 100%;
        .join-item {
          width: 100%;
          .join-item-title {
            width: 100%;
            display: flex;
            font-weight: bold;
            padding: var(--jq_pt2) 0;
            align-items: center;
            border-bottom: 1px solid var(--jq_color9);
            cursor: pointer;
            i {
              margin-right: var(--jq_mr2);
              transition: all 0.3s;
            }
          }
          .join-item-title.active {
            i {
              transform: rotate(90deg);
            }
          }
          .join-item-content {
            width: 100%;
            padding-top: var(--jq_pt2);
            background: var(--jq_color9);
            padding: var(--jq_pl2);
            display: none;
            p {
              /* text-indent: 2em; */
              margin-bottom: var(--jq_mb2);
              line-height: 20px;
            }
            p.bold {
              font-weight: bold;
            }
            span {
              font-weight: bold;
            }
          }
          .join-item-content.active {
            display: block;
          }
        }
      }
    }
  }
}
.contact-box {
  width: 100%;
  background: var(--jq_color2);
  display: flex;
  padding: var(--jq_pt4) var(--jq_pl2);
  .contact-item {
    width: calc(100% / 3 - 20px);
    display: flex;
    flex-direction: column;
    margin: 0 var(--jq_mt2);
    .contact-item-title {
      width: 100%;
      font-size: var(--jq_fs3);
      font-weight: bold;
      margin-bottom: var(--jq_mb2);
      flex-shrink: 0;
    }
    .contact-main {
      width: 100%;
      height: 100%;
      border: 1px solid var(--jq_color9);
      padding: var(--jq_pt2);
      .text {
        width: 100%;
        display: flex;
        margin-bottom: var(--jq_mb2);
        .field-label {
          font-size: var(--jq_fs2);
          font-weight: bold;
          flex-shrink: 0;
        }
        .field-value {
          font-size: var(--jq_fs2);
          img {
            width: 100px;
          }
        }
      }
    }
  }
}
.typeList {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--jq_color2);
  .typelist-items {
    width: 100%;
    border: 1px solid var(--jq_color17);
    margin-bottom: var(--jq_mb4);
    .typelist-title {
      width: 100%;
      height: 50px;
      line-height: 50px;
      padding: 0 20px;
      border-bottom: 1px solid var(--jq_color17);
      font-size: var(--jq_fs4);
    }
    .typelist-content {
      width: 100%;
      padding: 20px;
      display: flex;
      .imgModelBelong {
        display: flex;
        .modelBelong {
          padding-left: var(--jq_pl2);
        }
      }
      .img {
        width: 80px;
        height: 40px;
        overflow: hidden;
        border: 1px solid var(--jq_color17);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: var(--jq_pt1);
        img {
          width: 100%;
          /* height: 100%; */
          object-fit: cover;
        }
      }
      .brief-content {
        width: calc(100% - 210px);
        padding-left: 20px;
        font-size: var(--jq_fs2);
        line-height: 24px;
      }
    }
    .typelist-content.typelist-content-max {
      display: flex;
    }
    .typelist-content-min {
      display: none;
    }
    .typelist-content.products {
      flex-wrap: wrap;
      .page-box {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: var(--jq_mt4);
      }
    }
  }
}

.banner-max-text {
  width: 100%;
  font-size: 54px;
  color: var(--jq_color2);
  margin-bottom: 30px;
  white-space: pre-wrap;
}
.banner-min-text {
  width: 100%;
  font-size: 34px;
  color: var(--jq_color20);
  margin-bottom: 10px;
  white-space: pre-wrap;
}
.banner-en-text {
  width: 100%;
  font-size: 18px;
  color: var(--jq_color2);
  margin-bottom: 10px;
  white-space: pre-wrap;
}