.inquire-now {
  width: 100%;
  height: max-content;
  padding: 40px 0;
  border-radius: 8px 0px 0px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 19;
  background: linear-gradient(135deg, #fcfdff 0%, #f4f7ff 100%);
}

.inquire-now-title {
  position: relative;
  font-family:
    PingFangSC,
    PingFang SC;
  font-weight: 600;
  font-size: 32px;
  color: #000000;
  line-height: 45px;
}

.inquire-now-title::before {
  content: "";
  position: absolute;
  left: 4px;
  bottom: -12px;
  background-image: url("../layout/image/title_befor.png");
  width: 126px;
  height: 5px;
}

.inquire-now-hint {
  margin-top: 40px;
  font-family:
    PingFangSC,
    PingFang SC;
  font-weight: 400;
  font-size: 18px;
  color: #36383f;
  line-height: 25px;
}

.inquire-now-content {
  width: 1441px;
  height: 738px;
  background: linear-gradient(134deg, #fafcff 0%, #f6f8fc 100%);
  box-shadow: 0px 0px 24px 0px rgba(20, 29, 39, 0.16);
  border-radius: 12px;
  border: 3px solid;
  border-image: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(234, 240, 255, 1)) 3 3;
  backdrop-filter: blur(4px);
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 480px);
  padding-top: 70px;
  box-sizing: border-box;
  grid-column-gap: 80px;
  grid-row-gap: 32px;
  justify-content: center;
  grid-template-rows: max-content max-content max-content max-content;
  align-items: center;
  position: relative;
}

.form-item {
  display: flex;
  flex-direction: column;
  height: max-content;
}

.form-label {
  font-family:
    PingFangSC,
    PingFang SC;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  line-height: 25px;
  margin-bottom: 16px;
}

.sign {
  font-size: 18px;
  color: #d11717;
}

.form-input {
  width: 480px;
  height: 42px;
  background: #f4f7fe;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  font-size: 18px;
  color: #9da3ba;
  text-indent: 20px;
}

.form-submit-btn {
  width: 320px;
  height: 48px;
  background: #1f70ff;
  border-radius: 8px;
  font-size: 20px;
  color: #ffffff;
  line-height: 48px;
  border: none;
  position: absolute;
  bottom: 130px;
  left: 50%;
  margin-left: -160px;
}

.form-submit-btn:hover {
  background: #0b58de;
  cursor: pointer;
}
.hint-popover {
  font-family:
    PingFangSC,
    PingFang SC;
  position: absolute;
  bottom: 120px;
  z-index: 1;
  right: 50%;
  height: 100px;
  text-align: center;
  color: #1f70ff;
  font-size: 18px;
  width: 628px;
  background: #f4f7fe;
  border-radius: 8px;
  border: 1px solid #cee3f6;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: -314px;
}
@media screen and (max-width: 1300px) {
  .hint-popover {
    width: 280px;
    right: 50%;
    margin-right: -140px;
  }
  .inquire-now {
    padding: 80px 16px 20px 16px;
    box-sizing: border-box;
  }
  .inquire-now-content {
    width: 100%;
    grid-template-columns: repeat(1, 100%);
    padding: 40px 0 170px 0;
    height: max-content;
  }
  .inquire-now-hint {
    width: 360px;
  }
  .form-item {
    align-items: center;
  }
  .form-label {
    width: 80%;
  }
  .form-input {
    width: 80%;
  }
  .form-submit-btn {
    bottom: 80px;
  }
}
.custom-dropdown {
  position: relative;
}
.dropdown-toggle {
  width: 480px;
  height: 42px;
  background: #f4f7fe;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  font-size: 18px;
  color: #9da3ba;
  text-indent: 20px;
  text-align: left;
  padding: 0;
}

.dropdown-menu {
  position: absolute;
  background-color: #f4f7fe;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  display: none;
  top: 46px;
  border-radius: 4px;
}

.dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-item {
  color: #606266;
  width: 480px;
  text-decoration: none;
  display: block;
  cursor: pointer;
  font-family:
    PingFangSC,
    PingFang SC;
  font-weight: 400;
  font-size: 16px;
  color: #36383f;
}

.dropdown-item:hover {
  background: #0e7aff;
  color: #fff;
}

/* 显示下拉列表 */
.custom-dropdown.show .dropdown-menu {
  display: block;
}

/* .dropdown-arrows {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
} */
@media screen and (max-width: 1300px) {
  .dropdown-toggle {
    min-width: 100%;
    /* padding: 9px 22px 9px 14px; */
    padding: 0;
    height: 40px;
    text-indent: 14px;
  }

  .dropdown-menu {
    width: 100%;
  }

  .dropdown-item {
    padding: 0;
    min-width: 100%;
    height: 40px;
    line-height: 40px;
    text-indent: 14px;
  }
}
