.contact {
  position: relative;
  padding-bottom: 60px;
  .contact-bg {
    z-index: -1;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 97px;
    background: linear-gradient(180deg, #e6eeff 0%, #ffffff 100%);
  }

  .contact-right-bg {
    z-index: -1;
    width: 89px;
    height: 58px;
    background-image: url("../images/contact/contact-right-bg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    position: absolute;
    top: 21px;
    right: 10px;
  }

  .contact-title {
    position: relative;
    padding-top: 29px;
    padding-bottom: 12px;
    font-weight: 500;
    font-size: 18px;
    color: #333333;
    line-height: 29px;
    text-align: center;
  }

  .contact-form {
    padding-inline: 20px;
    .form-item {
      margin-bottom: 15px;

      .form-item-label {
        font-weight: 500;
        font-size: 14px;
        color: rgba(0, 0, 0, 0.85);
        line-height: 20px;

        .required-icon {
          font-weight: 500;
          font-size: 14px;
          color: #ff0d00;
          line-height: 20px;
          margin-left: 2px;
        }
      }

      .form-item-input {
        margin-top: 6px;

        .required-tip {
          font-weight: 400;
          font-size: 12px;
          color: rgba(255, 13, 0, 0.85);
          line-height: 17px;
          display: none;
        }

        input {
          width: 100%;
          height: 38px;
          border-radius: 6px;
          border: 1px solid RGBA(164, 169, 178, 1);
          font-weight: 400;
          font-size: 11px;
          color: rgba(0, 0, 0, 0.85);
          line-height: 15px;
          padding: 12px 6px;
        }

        .radio-btns {
          display: flex;
          gap: 10px;

          .radio-item {
            padding: 8px 16px;
            background: #f2f6ff;
            font-weight: 400;
            font-size: 10px;
            color: rgba(0, 0, 0, 0.85);
            border-radius: 6px;
            border: 1px solid #f2f6ff;
            box-sizing: border-box;
          }
          .radio-item:hover,
          .radio-item.active {
            border: 1px solid #3274f9;
            color: #3274f9;
            transition: all 0.3s;
          }
        }

        .form-textarea {
          position: relative;
          > textarea {
            display: block;
            min-height: 76px;
            width: 100%;
            background: #ffffff;
            border-radius: 6px;
            border: 1px solid #a4a9b2;
            padding: 8px;
            padding-bottom: 18px;
            font-size: 10px;
            color: rgba(0, 0, 0, 0.85);
            min-width: 100%;
            max-width: 100%;
            resize: vertical;
            box-sizing: border-box;
          }

          .text-count {
            position: absolute;
            right: 11px;
            bottom: 6px;
            font-weight: 400;
            font-size: 9px;
            color: #a4a9b2;
            line-height: 9px;
          }
        }
      }
    }

    .business-help {
      margin-top: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
  
      .check-box-wrap {
        margin-right: 4px;
        .check {
          width: 10px;
          height: 10px;
          display: none;
        }
        .check.active {
          display: block;
        }
      }

      .text {
        font-weight: 400;
        font-size: 12px;
        color: #666666;
        line-height: 18px;

        .click-policy {
          color: rgba(53, 118, 250, 1)
        }
      }
    }

    .form-submit {
      width: 311px;
      height: 44px;
      margin: 0 auto;
      text-align: center;
      line-height: 44px;
      background: #3576FA;
      border-radius: 3px;
      margin-top: 16px;
      color: #fff;
    }
  }
  
}


.modal-root {
  display: none;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1000000;
  overflow: hidden;

  .modal-mask {
    position: fixed;
    inset: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    pointer-events: none;
  }

  .modal-wrap {
    position: fixed;
    inset: 0;
    z-index: 1001;
    width: 100%;
    height: 100%;
    overflow: auto;

    .modal-box {
      width: 315px;
      min-width: 315px;
      margin: 0 auto;
      top: 120px;
      padding: 26px 24px 24px;
      background-color: #fff;
      border-radius: 12px;
      position: relative;
    }

    .modal-title {
      font-weight: 500;
      font-size: 18px;
      color: #333333;
      line-height: 25px;
      text-align: center;
    }

    .modal-body {
      margin-top: 10px;
      font-size: 14px;
      color: #444444;
      line-height: 21px;

      .text {
        max-height: 295px;
        overflow: auto;
      }

      .text .text-block {
          margin-bottom: 32px;
      }

      .text .text-block .bold-span {
        font-weight: 700;
      }
    }

    .modal-btn {
      margin-top: 13px;
      text-align: center;
      height: 45px;
      line-height: 45px;
      background: #3576FA;
      border-radius: 3px;
      color: #fff;
    }
  }
}

.msg-check {
  background: transparent;
  border-radius: 6px;
  box-shadow: none;
}

.msg-check .layui-layer-title,
.msg-check .layui-layer-btn {
  display: none;
}

.layui-layer-border.msg-check {
  border: none;
  background: transparent;
  border-radius: 6px;
}

.layui-layer-dialog {
  min-width: auto !important;
}

.layui-layer-dialog.msg-check .layui-layer-content {
  padding: 0;
  background: transparent;
  border-radius: 6px;
}

.message {
  padding: 4px 5px;
  border-radius: 6px;
  box-shadow: 0px 4px 6px 0px rgba(52, 159, 70, 0.12);
  height: 40px;
  font-weight: 400;
  font-size: 10px;
  line-height: 16px;
  width: max-content;
  display: flex;
  align-items: center;
}

.message.error-message {
  box-shadow: none;
}

.message img {
  width: 10px;
  height: 10px;
  margin-right: 8px;
}

.success-message {
  color: #52C265;
  border: 1px solid #68D079;
  background: #EDFFF0;
}

.error-message {
  color: #CC3E3E;
  border: 1px solid #E24E4E;
  background: #FFECEC;
}

/* .modal-root {
  display: none;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1000000;
  overflow: hidden;
}

.modal-mask {
  position: fixed;
  inset: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.modal-root-policy .modal-wrap .modal-box .modal-content {
  padding-left: 20px;
  padding-right: 20px;
}

.modal-root-policy .text {
  max-height: 553px;
  overflow: auto;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 14px;
  color: #1f2329;
  line-height: 26px;
  padding: 0 16px;
}

.modal-root-policy .text .text-block {
  margin-bottom: 32px;
}

.modal-root-policy .text .text-block .bold-span {
  font-weight: 700;
}

.modal-wrap {
  position: fixed;
  inset: 0;
  z-index: 1001;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.modal-wrap .modal-box {
  width: 960px;
  min-width: 960px;
  margin: 0 auto;
  top: 120px;
  padding-bottom: 24px;
  background-color: #fff;
  border-radius: 12px;
  position: relative;
}

.modal-wrap .modal-box .modal-content {
  padding-left: 36px;
  padding-right: 36px;
  padding-top: 45px;
  padding-bottom: 24px;
  position: relative;
}

.modal-wrap .modal-box .modal-content::after {
  position: absolute;
  content: "";
  top: 6px;
  right: 60px;
  width: 176px;
  height: 116px;
  background-image: url(../images/bg-modal.png);
  background-size: 176px auto;
  background-repeat: no-repeat;
  background-position: top right;
}

.modal-wrap .modal-box .modal-content::before {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  position: absolute;
  z-index: 0;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 116px;
  background: linear-gradient(180deg, #E6EEFF 0%, #FFFFFF 100%);
}

.modal-wrap .modal-box .modal-content .modal-close {
  position: relative;
  width: 32px;
  height: 32px;
  position: absolute;
  right: 12px;
  top: 12px;
  color: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.modal-wrap .modal-box .modal-content .modal-close:hover {
  cursor: pointer;
  color: rgba(0, 0, 0, 0.88);
  background-color: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.modal-wrap .modal-box .modal-content .modal-header {
  position: relative;
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}

.modal-wrap .modal-box .modal-content .modal-header .title {
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 24px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 33px;
  text-align: center;
}

.modal-wrap .modal-box .modal-content .modal-body {
  position: relative;
}

.modal-wrap .modal-box .modal-content .modal-body .modal-form .form-col {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 24px;
}

.modal-wrap .modal-box .modal-content .modal-body .modal-form .form-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 24px;
}

.modal-wrap .modal-box .modal-content .modal-body .modal-form .form-item .form-item-label {
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 22px;
  width: 100%;
  margin-bottom: 8px;
}

.modal-wrap .modal-box .modal-content .modal-body .modal-form .form-item .form-item-label .required-icon {
  font-weight: 500;
  font-size: 14px;
  color: #FF0D00;
  line-height: 20px;
  margin-left: 2px;
}

.modal-wrap .modal-box .modal-content .modal-body .modal-form .form-item .form-item-input {
  width: 100%;
  position: relative;
}

.modal-wrap .modal-box .modal-content .modal-body .modal-form .form-item .form-item-input input,
.modal-wrap .modal-box .modal-content .modal-body .modal-form .form-item .form-item-input textarea {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #A4A9B2;
  padding: 10px 12px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.85);
}

.modal-wrap .modal-box .modal-content .modal-body .modal-form .form-item .form-item-input input:focus,
.modal-wrap .modal-box .modal-content .modal-body .modal-form .form-item .form-item-input textarea:focus {
  border-radius: 6px;
  border: 1px solid #3274F9;
}

.modal-wrap .modal-box .modal-content .modal-body .modal-form .form-item .form-item-input .required-tip {
  position: absolute;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 13, 0, 0.85);
  line-height: 17px;
  left: 0;
  bottom: -18px;
  display: none;
}

.modal-wrap .modal-box .modal-content .modal-body .modal-form .form-item .form-item-textarea {
  position: relative;
}

.modal-wrap .modal-box .modal-content .modal-body .modal-form .form-item .form-item-textarea textarea {
  min-width: 100%;
  max-width: 100%;
  resize: vertical;
  box-sizing: border-box;
}

.modal-wrap .modal-box .modal-content .modal-body .modal-form .form-item .form-item-textarea .text-count {
  position: absolute;
  right: 20px;
  bottom: 6px;
  font-weight: 400;
  font-size: 12px;
  color: #A4A9B2;
  line-height: 18px;
}

.modal-wrap .modal-box .modal-content .modal-body .modal-form .form-item .form-item-textarea .count {
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 18px;
}

.modal-wrap .modal-box .modal-content .modal-body .modal-form .form-item .radio-btns {
  display: flex;
  align-items: center;
  column-gap: 16px;
}

.modal-wrap .modal-box .modal-content .modal-body .modal-form .form-item .radio-btns .radio-item {
  width: 88px;
  height: 42px;
  background: #F2F6FF;
  border-radius: 6px;
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.modal-wrap .modal-box .modal-content .modal-body .modal-form .form-item .radio-btns .radio-item:hover {
  color: #3274F9;
  cursor: pointer;
}

.modal-wrap .modal-box .modal-content .modal-body .modal-form .form-item .radio-btns .radio-item.active {
  border: 1px solid #3274F9;
  color: #3274F9;
  transition: all .3s;
}

.modal-wrap .modal-box .modal-content .modal-body .business-help {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 12px 0;
}

.modal-wrap .modal-box .modal-content .modal-body .business-help .text {
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 20px;
  margin-left: 8px;
}

.modal-wrap .modal-box .modal-content .modal-body .business-help .click-policy {
  color: #3274F9;
  cursor: pointer;
}

.modal-wrap .modal-box .modal-content .modal-body .business-help .check-box-wrap {
  width: 16px;
  height: 16px;
  cursor: pointer;
  position: relative;
}

.modal-wrap .modal-box .modal-content .modal-body .business-help .check-box-wrap .check {
  width: 16px;
  height: 16px;
  vertical-align: text-top;
  position: absolute;
  z-index: 1;
  background-color: #fff;
}

.modal-wrap .modal-box .modal-content .modal-body .business-help .check-box-wrap .active {
  display: block;
  z-index: 2;
}

.modal-wrap .modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-wrap .modal-footer .btn {
  width: 120px;
  height: 46px;
  background: #3274F9;
  border-radius: 6px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-wrap .modal-footer .btn:hover {
  background-color: #5088f9;
}

.modal-wrap .read-policy {
  margin-top: 12px;
}

.msg-check {
  background: transparent;
  border-radius: 6px;
  box-shadow: none;
}

.msg-check .layui-layer-title,
.msg-check .layui-layer-btn {
  display: none;
}

.layui-layer-border.msg-check {
  border: none;
  background: transparent;
  border-radius: 6px;
}

.layui-layer-dialog {
  min-width: auto !important;
}

.layui-layer-dialog.msg-check .layui-layer-content {
  padding: 0;
  background: transparent;
  border-radius: 6px;
}

.message {
  padding: 8px 10px;
  border-radius: 6px;
  box-shadow: 0px 4px 6px 0px rgba(52, 159, 70, 0.12);
  height: 40px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  width: max-content;
  display: flex;
  align-items: center;
}



@media screen and (max-height: 900px) {
  .modal-wrap .modal-box {
    top: 20px;
    transition: all .3s;
  }
} */
