.contact-form-section {
  padding: 180px 50px 100px;
  background: #fff;
}
.contact-form-wrap {
  max-width: 1330px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 650px;
  gap: 32px;
  align-items: start;
}
.contact-form-intro {
  max-width: 520px;
  padding: 0 48px 0 0;
  justify-self: start;
  order: 1;
}
.contact-form-card {
  order: 2;
  width: 100%;
  max-width: 650px;
  justify-self: end;
}
.contact-form-kicker {
  color: #007dfc;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.contact-form-title {
  color: #172638;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -1.6px;
  font-weight: 700;
  margin-bottom: 22px;
}
.contact-form-copy,
.contact-form-note {
  color: #172638;
  font-size: 16px;
  line-height: 1.72;
  max-width: 470px;
}
.contact-form-note {
  margin-top: 14px;
}
.contact-form-points {
  display: grid;
  gap: 13px;
  margin-top: 34px;
  max-width: 470px;
}
.contact-form-point {
  position: relative;
  color: #172638;
  font-size: 15px;
  line-height: 1.5;
  padding-left: 32px;
}
.contact-form-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e8f3ff;
  border: 1px solid rgba(0, 125, 252, 0.22);
  transform: translateY(-50%);
}
.contact-form-point::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 5px;
  height: 9px;
  border: solid #007dfc;
  border-width: 0 2px 2px 0;
  transform: translateY(-58%) rotate(45deg);
}
.contact-form-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.contact-feedback {
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.7;
  padding: 14px 16px;
  margin-bottom: 20px;
}
.contact-feedback--success {
  background: #ecf9f1;
  border: 1px solid #b7ebc6;
  color: #18794e;
}
.contact-feedback--error {
  background: #fff1f0;
  border: 1px solid #ffc9c5;
  color: #c53030;
}
.theme-contact-form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.theme-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  column-gap: 18px;
}
.theme-contact-field {
  grid-column: 1 / -1;
  margin-bottom: 30px;
}
.theme-contact-field--half {
  grid-column: auto;
}
.theme-contact-control {
  position: relative;
}
.theme-contact-field label {
  display: block;
  color: #07182c;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 9px;
}
.theme-contact-field label.is-required::after {
  content: "*";
  color: #ff1e00;
  margin-left: 4px;
}
.theme-contact-control input,
.theme-contact-control select,
.theme-contact-control textarea {
  width: 100%;
  border: 1px solid #d7dee7;
  border-radius: 8px;
  background: #fff;
  color: #07182c;
  font-size: 15px;
  padding: 11px 14px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.theme-contact-control input,
.theme-contact-control textarea {
  padding-right: 44px;
}
.theme-contact-control input::placeholder,
.theme-contact-control textarea::placeholder {
  color: #b5becb;
  opacity: 1;
}
.theme-contact-select,
.theme-contact-custom-select,
.theme-contact-multiselect {
  position: relative;
}
.theme-contact-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #8a91a6;
  border-bottom: 1.5px solid #8a91a6;
  transform: translateY(-70%) rotate(45deg);
  transform-origin: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
  pointer-events: none;
}
.theme-contact-select.is-open::after {
  transform: translateY(-20%) rotate(-135deg);
  border-color: #0b0c1b;
}
.theme-contact-control select {
  color: #b5becb;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  background-image: none;
}
.theme-contact-control select.is-selected {
  color: #07182c;
}
.theme-contact-control select option {
  color: #07182c;
}
.theme-contact-control select option[value=""] {
  color: #b5becb;
}
.theme-contact-select-trigger,
.theme-contact-multiselect-toggle {
  position: relative;
  width: 100%;
  min-height: 44px;
  border: 1px solid #dfe4ea;
  border-radius: 8px;
  background: #fff;
  color: #b5becb;
  font-size: 15px;
  line-height: 1.5;
  padding: 11px 42px 11px 14px;
  text-align: left;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.theme-contact-select-trigger:hover,
.theme-contact-multiselect-toggle:hover {
  border-color: #cfd6df;
}
.theme-contact-custom-select.is-open .theme-contact-select-trigger,
.theme-contact-multiselect.is-open .theme-contact-multiselect-toggle {
  border-color: #d6dce4;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.1);
}
.theme-contact-select-trigger::after,
.theme-contact-multiselect-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #8a91a6;
  border-bottom: 1.5px solid #8a91a6;
  transform: translateY(-70%) rotate(45deg);
  transform-origin: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.theme-contact-custom-select.is-open .theme-contact-select-trigger::after,
.theme-contact-multiselect.is-open .theme-contact-multiselect-toggle::after {
  transform: translateY(-20%) rotate(-135deg);
  border-color: #7b8494;
}
.theme-contact-custom-select.has-value .theme-contact-select-trigger,
.theme-contact-multiselect.has-value .theme-contact-multiselect-toggle {
  color: #07182c;
}
.theme-contact-select-menu,
.theme-contact-multiselect-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 20;
  display: none;
  max-height: 260px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 6px;
  border: 1px solid #dfe4ea;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
  scrollbar-width: thin;
  scrollbar-color: #c9d1dc transparent;
}
.theme-contact-select-menu {
  scrollbar-gutter: auto;
}
.theme-contact-select-menu:has(button:nth-child(n + 8)),
.theme-contact-multiselect-menu {
  scrollbar-gutter: stable;
}
.theme-contact-select-menu::-webkit-scrollbar,
.theme-contact-multiselect-menu::-webkit-scrollbar {
  width: 8px;
}
.theme-contact-select-menu::-webkit-scrollbar-track,
.theme-contact-multiselect-menu::-webkit-scrollbar-track {
  margin: 7px 0;
  background: transparent;
}
.theme-contact-select-menu::-webkit-scrollbar-thumb,
.theme-contact-multiselect-menu::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background-color: #c9d1dc;
  background-clip: content-box;
}
.theme-contact-custom-select.is-open .theme-contact-select-menu,
.theme-contact-multiselect.is-open .theme-contact-multiselect-menu {
  display: grid;
  gap: 2px;
}
.theme-contact-select-menu button,
.theme-contact-multiselect-menu label {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 8px 9px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #07182c;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}
.theme-contact-select-menu button:hover,
.theme-contact-select-menu button.is-selected,
.theme-contact-multiselect-menu label:hover {
  background: #f4f4f5;
}
.theme-contact-multiselect-menu input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: #172638;
}
.theme-contact-control textarea {
  resize: none;
  min-height: 124px;
}
.theme-contact-control input:focus,
.theme-contact-control select:focus,
.theme-contact-control textarea:focus {
  outline: none;
  border-color: #99a8ba;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(23, 38, 56, 0.08);
}
.theme-contact-control.is-invalid input,
.theme-contact-control.is-invalid select,
.theme-contact-control.is-invalid textarea,
.theme-contact-control.is-invalid .theme-contact-select-trigger,
.theme-contact-control.is-invalid .theme-contact-multiselect-toggle {
  border-color: #ff1e00 !important;
}
.theme-contact-control.is-invalid input:focus,
.theme-contact-control.is-invalid select:focus,
.theme-contact-control.is-invalid textarea:focus,
.theme-contact-control.is-invalid .theme-contact-select-trigger:focus,
.theme-contact-control.is-invalid .theme-contact-multiselect-toggle:focus {
  border-color: #ff1e00;
  box-shadow: 0 0 0 3px rgba(255, 30, 0, 0.12);
}
.theme-contact-error-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  cursor: default;
  padding: 0;
}
.theme-contact-error-icon img {
  width: 100%;
  display: block;
}
.theme-contact-error-tooltip {
  display: none !important;
}
.theme-contact-control--select .theme-contact-error-icon {
  display: none !important;
}
.theme-contact-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #172638;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  margin: 4px 0 30px;
}
.theme-contact-consent input {
  appearance: none;
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  margin-top: 0;
  border: 1px solid #9ca3af;
  border-radius: 5px;
  background: #fff;
  flex: 0 0 auto;
  position: relative;
}
.theme-contact-consent input:focus,
.theme-contact-consent input:focus-visible,
.theme-contact-consent input:active {
  outline: none;
  box-shadow: none;
}
.theme-contact-consent input:checked {
  border-color: #0b0c1b;
  background: #0b0c1b;
}
.theme-contact-consent input:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.theme-contact-submit {
  border: 0;
  border-radius: 8px;
  background: #121826;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 24px;
  width: 100%;
  min-height: 52px;
}
.theme-contact-submit::after {
  content: "›";
  display: inline-block;
  margin-left: 12px;
  font-size: 24px;
  line-height: 0;
  transform: translateY(2px);
}
/* !----------------------------------------------------------------------------------------------------------- */
.adress {
  width: 100%;
  margin: auto;
  max-width: 1430px;
  padding: 80px 50px;
}
.adresstitle {
  color: #0b0c1b;
  font-size: 32px;
  font-weight: 600;
}
.adressremake {
  font-size: 17px;
  color: #5a5c76;
  line-height: 30px;
  margin-top: 24px;
  margin-bottom: 34px;
}
.adressconbig {
  font-size: 20px;
  margin-bottom: 12px;
  margin-top: 30px;

  color: #0b0c1b;
  height: 30px;
}
.adresscontitle {
  font-size: 15px;
  color: #5a5c76;
  line-height: 1.8;
}
.adressconremake {
  margin-top: 12px;
  font-size: 15px;
  color: #0b0c1b;
  line-height: 1.8;
}
.adressconbig img {
  height: 30px;
}
/* !---------------------------------------------------------------------------------------- */

@media only screen and (min-width: 769px) and (max-width: 975px) {
  .contact-form-wrap {
    grid-template-columns: 1fr;
  }
  .contact-form-intro,
  .contact-form-card {
    order: initial;
  }
  .contact-form-card {
    max-width: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 769px) {
  .contact-form-section {
    padding: 140px 24px 70px;
  }
  .contact-form-wrap {
    grid-template-columns: 1fr;
  }
  .contact-form-intro,
  .contact-form-card {
    order: initial;
  }
  .contact-form-card {
    max-width: none;
  }
  .contact-form-title {
    font-size: 32px;
  }
  .theme-contact-grid {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 575px) {
  .adress {
    padding: 60px 20px;
    max-width: 420px;
    width: 100%;
    margin: auto;
  }
  /* 关于对字体的调整 */
  .adresstitle {
    font-size: 26px;
  }

  /* header */
  .contact-form-section {
    padding: 105px 20px 52px;
  }
  .contact-form-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .contact-form-intro,
  .contact-form-card {
    order: initial;
  }
  .contact-form-intro {
    max-width: none;
    padding: 0;
  }
  .contact-form-kicker,
  .contact-form-copy,
  .contact-form-points {
    display: none;
  }
  .contact-form-card {
    max-width: none;
  }
  .contact-form-title {
    font-size: 30px;
    line-height: 1.16;
    letter-spacing: -0.8px;
    margin-bottom: 10px;
  }
  .contact-form-note {
    margin-top: 0;
    font-size: 15px;
    line-height: 1.6;
    max-width: 320px;
  }
  .contact-form-card {
    padding: 22px 18px;
    border-radius: 10px;
  }
  .theme-contact-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .istoliitem {
    width: calc(100% / 2);
    padding: 24px;
    border-top: 1px solid #ffffff1f;
    border-right: 1px solid #ffffff1f;
    text-align: center;
  }
  .istoliitem:nth-child(2n) {
    border-right: 0;
    margin-right: 0;
  }
}
