    :root {
      --qt-gold: #ecae44;
      --qt-deep: #0b1627;
      --qt-surface: #f3f6fa;
      --qt-text: #203040;
      --qt-muted: #66758a;
      --qt-border: rgba(77, 77, 77, 0.08);
      --qt-card-shadow: 0 18px 40px rgba(18, 36, 60, 0.1);
      --qt-wrap-max: 1460px;
      --qt-wrap-gutter: clamp(20px, 3.35vw, 48px);
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 92px;
    }

    body.qt-page {
      margin: 0;
      font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
      color: var(--qt-text);
      background: var(--qt-surface);
    }

    /* .qt-page a {
      color: inherit;
      text-decoration: none;
    } */

    .qt-page button {
      font: inherit;
    }

    .qt-wrap {
      width: min(var(--qt-wrap-max), calc(100% - (var(--qt-wrap-gutter) * 2)));
      margin: 0 auto;
    }

    .qt-main {
      min-height: calc(100vh - 360px);
      overflow: hidden;
    }

    .qt-page--inner .qt-main {
      padding-top: 65px;
    }

    .qt-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 60;
      background: rgba(255, 255, 255, 0.99);
      border-bottom: 1px solid var(--qt-border);
      box-shadow: 0 10px 30px rgba(8, 18, 34, 0.08);
      transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .qt-header--home-top {
      background: transparent;
      border-bottom-color: transparent;
      box-shadow: none;
    }

    .qt-header--home-top .qt-header__link {
      color: #fff;
    }

    .qt-header--home-top .qt-header__menu-toggle span {
      background: #fff;
    }

    .qt-header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 65px;
    }

    .qt-header__brand {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
    }

    .qt-header__logo {
      width: 170px;
    }

    .qt-header__nav {
      display: flex;
      align-items: stretch;
      justify-content: flex-end;
      flex: 1 1 auto;
    }

    .qt-header__nav-item {
      position: relative;
      display: flex;
      align-items: stretch;
      margin-left: 62px;
    }

    .qt-header__nav-item:first-child {
      margin-left: 0;
    }

    .qt-header__link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 65px;
      color: rgb(77, 77, 77);
      font-size: 15px;
      font-weight: 400;
      line-height: 1;
      white-space: nowrap;
      transition: color 0.16s ease;
    }

    .qt-header__link-text {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .qt-header__link-text::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -24px;
      width: clamp(96px, 8.7vw, 124px);
      height: 2px;
      background: var(--qt-gold);
      opacity: 0;
      transform: translateX(-50%);
      transition: opacity 0.16s ease;
    }

    .qt-header__nav-item--active>.qt-header__link .qt-header__link-text::after,
    .qt-header__nav-item:hover>.qt-header__link .qt-header__link-text::after,
    .qt-header__nav-item--has-children:focus-within>.qt-header__link .qt-header__link-text::after {
      opacity: 1;
    }

    .qt-header__link:focus-visible {
      outline: 2px solid rgba(236, 174, 68, 0.7);
      outline-offset: -8px;
      border-radius: 4px;
    }

    .qt-header__submenu {
      position: absolute;
      top: 100%;
      left: 50%;
      display: grid;
      width: 124px;
      background: rgb(77, 77, 77);
      border-top: 1px solid var(--qt-gold);
      opacity: 0;
      pointer-events: none;
      transform: translateX(-50%);
      transition: opacity 0.16s ease, transform 0.16s ease;
    }

    .qt-header__submenu--about {
      grid-template-rows: repeat(6, 42px);
    }

    .qt-header__submenu--products {
      grid-template-rows: repeat(5, 42px);
    }

    .qt-header__nav-item:hover .qt-header__submenu,
    .qt-header__nav-item:focus-within .qt-header__submenu {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%);
    }

    .qt-header__submenu-link {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 8px;
      color: rgb(153, 153, 153);
      font-size: 0.9rem;
      line-height: 1;
      text-align: center;
      border-top: 1px solid rgb(153, 153, 153);
      transition: color 0.16s ease, background-color 0.16s ease;
    }

    .qt-header__submenu-link:hover,
    .qt-header__submenu-link:focus-visible {
      color: rgb(255, 255, 255);
      background: transparent;
    }

    .qt-header__submenu-link--active {
      color: rgb(255, 255, 255);
      background: transparent;
    }

    .qt-header__menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: pointer;
    }

    .qt-header__menu-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      margin: 5px auto;
      background: #10223d;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .qt-header__mobile-panel {
      display: none;
      max-height: calc(100vh - 65px);
      max-height: calc(100dvh - 65px);
      overflow-x: hidden;
      overflow-y: auto;
      overscroll-behavior: contain;
      -webkit-overflow-scrolling: touch;
      background: rgba(255, 255, 255, 0.98);
      border-top: 1px solid var(--qt-border);
    }

    .qt-header__mobile-nav {
      display: grid;
      gap: 0;
      width: min(var(--qt-wrap-max), calc(100% - (var(--qt-wrap-gutter) * 2)));
      margin: 0 auto;
      padding: 12px 0 18px;
    }

    .qt-header__mobile-link {
      padding: 14px 0;
      color: #203040;
      font-size: 1rem;
      line-height: 1.4;
      letter-spacing: 0;
      border-bottom: 1px solid rgba(32, 48, 64, 0.08);
    }

    .qt-header__mobile-subnav {
      display: grid;
      gap: 0;
      padding: 0 0 8px 18px;
      border-bottom: 1px solid rgba(32, 48, 64, 0.08);
    }

    .qt-header__mobile-subnav .qt-header__mobile-link {
      padding: 9px 0;
      color: #5f6f82;
      font-size: 0.875rem;
      line-height: 1.5;
      border-bottom: 0;
    }

    .qt-header.is-mobile-open .qt-header__mobile-panel {
      display: block;
    }

    .qt-footer {
      margin-top: 64px;
      background: #4d4d4d;
      color: rgba(255, 255, 255, 0.7);
    }

    .qt-footer__top {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 46px 0 40px;
    }

    .qt-footer__nav {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 12px 26px;
    }

    .qt-footer__nav-link {
      position: relative;
      color: rgba(255, 255, 255, 0.72);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.4;
      transition: color 0.2s ease;
    }

    .qt-footer__nav-link:hover,
    .qt-footer__nav-link:focus-visible {
      color: #fff;
    }

    .qt-footer__mobile-divider {
      display: none;
    }

    .qt-footer__brand {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 38px;
    }

    .qt-footer__brand-logo {
      width: 172px;
      height: auto;
    }

    .qt-footer__social {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      gap: 44px;
      margin-top: 54px;
    }

    .qt-footer__social-item {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .qt-footer__social-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 64px;
      min-height: 48px;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: pointer;
    }

    .qt-footer__social-icon {
      width: auto;
      max-width: 52px;
      max-height: 44px;
    }

    .qt-footer__qr-card {
      position: absolute;
      left: 50%;
      bottom: calc(100% + 24px);
      width: 180px;
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, 0);
      transition: opacity 0.24s ease;
    }

    .qt-footer__social-item:hover .qt-footer__qr-card,
    .qt-footer__social-item:focus-within .qt-footer__qr-card {
      opacity: 1;
    }

    .qt-footer__qr-image {
      width: 100%;
      height: auto;
    }

    .qt-footer__contact {
      display: grid;
      gap: 10px;
      margin-top: 32px;
      text-align: center;
    }

    .qt-footer__contact-line {
      margin: 0;
      color: rgba(255, 255, 255, 0.62);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
      text-align: center;
    }

    .qt-footer__bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .qt-footer__bottom-inner {
      padding: 22px 0 26px;
      color: rgba(255, 255, 255, 0.52);
      font-size: 0.96rem;
      font-weight: 350;
      line-height: 1.6;
      text-align: center;
    }

    .qt-footer__bottom-mobile {
      display: none;
    }

    .qt-footer__record-link {
      color: #4aa3ff;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .qt-footer__record-link:hover,
    .qt-footer__record-link:focus-visible {
      color: #79bcff;
      text-decoration: underline;
    }

    @media (max-width: 1200px) {
      .qt-header__nav-item {
        margin-left: 28px;
      }

    }

    @media (max-width: 960px) {
      .qt-page--inner .qt-main {
        padding-top: 60px;
      }

      .qt-header__inner {
        height: 60px;
      }

      .qt-header__nav {
        display: none;
      }

      .qt-header__menu-toggle {
        display: inline-block;
      }

      .qt-header__mobile-panel {
        max-height: calc(100vh - 60px);
        max-height: calc(100dvh - 60px);
      }

      .qt-footer__top {
        padding-top: 34px;
      }

      .qt-footer__nav {
        gap: 10px 18px;
      }

      .qt-footer__nav-link {
        font-size: 0.96rem;
      }

      .qt-footer__social {
        flex-wrap: wrap;
        gap: 20px;
      }

      .qt-footer__social-item {
        gap: 12px;
      }

      .qt-footer__qr-card {
        position: static;
        width: 140px;
        opacity: 1;
        pointer-events: auto;
        transform: none;
      }

      .qt-footer__contact-line {
        text-align: center;
      }
    }

    @media (max-width: 640px) {
      :root {
        --qt-wrap-gutter: clamp(16px, 5vw, 20px);
      }

      .qt-wrap {
        width: min(var(--qt-wrap-max), calc(100% - (var(--qt-wrap-gutter) * 2)));
      }

      .qt-footer {
        margin-top: 40px;
      }

      .qt-footer .qt-wrap {
        width: min(100% - 48px, 291px);
      }

      .qt-footer__top {
        align-items: flex-start;
        padding: 32px 0 17px;
      }

      .qt-footer__nav {
        order: 2;
        justify-content: flex-start;
        gap: 8px 18px;
        width: 100%;
        margin-top: 27px;
      }

      .qt-footer__nav-link {
        font-size: 12px;
        line-height: 1.5;
      }

      .qt-footer__brand {
        order: 1;
        margin-top: 0;
      }

      .qt-footer__brand-logo {
        width: 112px;
      }

      .qt-footer__mobile-divider {
        order: 3;
        display: block;
        align-self: center;
        width: 100vw;
        height: 1px;
        margin-top: 27px;
        background: #333 url("/front/img/common/jiange.svg") center / 100% 1px no-repeat;
        filter: brightness(1.25);
        object-fit: fill;
      }

      .qt-footer__social {
        order: 4;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px;
        width: 100%;
        margin-top: 26px;
      }

      .qt-footer__social-item {
        flex: 0 0 88px;
        gap: 7px;
      }

      .qt-footer__social-button {
        width: 88px;
        min-height: 20px;
      }

      .qt-footer__social-icon {
        max-width: 26px;
        max-height: 20px;
      }

      .qt-footer__qr-card {
        width: 88px;
      }

      .qt-footer__bottom {
        border-top: 0;
      }

      .qt-footer__contact {
        order: 5;
        gap: 8px;
        margin-top: 51px;
        text-align: left;
      }

      .qt-footer__contact-line {
        font-size: 12px;
        line-height: 1.5;
        text-align: left;
      }

      .qt-footer__bottom-inner {
        display: none;
      }

      .qt-footer__bottom-mobile {
        display: block;
        padding: 0 0 31px;
        color: rgba(255, 255, 255, 0.52);
        font-size: 11px;
        font-weight: 350;
        line-height: 2.1;
        text-align: left;
      }
    }

  .qt-home-float {
    --qt-home-float-panel-width: clamp(24rem, 25.6vw, 27rem);
    --qt-home-float-panel-height: clamp(42rem, 42.9vw, 45rem);
    --qt-home-float-panel-padding-x: clamp(2.25rem, 2.39vw, 2.5rem);
    --qt-home-float-panel-padding-top: clamp(2.25rem, 2.63vw, 2.75rem);
    --qt-home-float-panel-padding-bottom: clamp(2rem, 2.27vw, 2.375rem);
    --qt-home-float-field-gap: clamp(0.625rem, 0.78vw, 0.8125rem);
    --qt-home-float-label-gap: clamp(0.875rem, 1.02vw, 1.0625rem);
    --qt-home-float-control-height: 3rem;
    --qt-home-float-control-padding-x: 0.75rem;
    --qt-home-float-counter-width: 3.75rem;
    --qt-home-float-demand-height: clamp(8rem, 8.95vw, 9.375rem);
    --qt-home-float-captcha-width: clamp(6.75rem, 7.04vw, 7.375rem);
    --qt-home-float-submit-gap: clamp(0.75rem, 1vw, 1rem);
    position: fixed;
    right: 44px;
    bottom: 40px;
    z-index: 72;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  .qt-home-float__item {
    position: relative;
    display: flex;
    align-items: center;
  }

  .qt-home-float__button {
    position: relative;
    display: inline-flex;
    width: 60px;
    height: 60px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .qt-home-float__button--contact {
    cursor: pointer;
  }

  .qt-home-float__button:focus-visible {
    outline: 2px solid rgba(236, 174, 68, 0.56);
    outline-offset: 4px;
    border-radius: 12px;
  }

  .qt-home-float__icon {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    transition: opacity 0.22s ease;
  }

  .qt-home-float__icon--default {
    opacity: 1;
  }

  .qt-home-float__icon--active {
    opacity: 0;
  }

  .qt-home-float__item:hover .qt-home-float__icon--default,
  .qt-home-float__item.is-hover .qt-home-float__icon--default,
  .qt-home-float__item:focus-within .qt-home-float__icon--default {
    opacity: 0;
  }

  .qt-home-float__item:hover .qt-home-float__icon--active,
  .qt-home-float__item.is-hover .qt-home-float__icon--active,
  .qt-home-float__item:focus-within .qt-home-float__icon--active {
    opacity: 1;
  }

  .qt-home-float__popup {
    position: absolute;
    top: 0;
    right: calc(100% + 10px);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(12px, 0, 0);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .qt-home-float__popup-image {
    display: block;
    width: 212px;
    height: auto;
  }

  .qt-home-float__item--hotline:hover .qt-home-float__popup,
  .qt-home-float__item--hotline.is-hover .qt-home-float__popup,
  .qt-home-float__item--hotline:focus-within .qt-home-float__popup {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }

  .qt-home-float__item--contact {
    z-index: 3;
  }

  .qt-home-float__item--contact.is-hover,
  .qt-home-float__item--contact.is-open {
    z-index: 6;
  }

  .qt-home-float__item--contact.is-hover .qt-home-float__icon--default,
  .qt-home-float__item--contact.is-open .qt-home-float__icon--default {
    opacity: 0;
  }

  .qt-home-float__item--contact.is-hover .qt-home-float__icon--active,
  .qt-home-float__item--contact.is-open .qt-home-float__icon--active {
    opacity: 1;
  }

  .qt-home-float__item--contact.is-hover .qt-home-float__contact-panel,
  .qt-home-float__item--contact.is-open .qt-home-float__contact-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .qt-home-float__contact-panel {
    position: absolute;
    right: calc(100% + 1.125rem);
    bottom: 0;
    width: var(--qt-home-float-panel-width);
    height: min(var(--qt-home-float-panel-height), calc(100vh - 2rem));
    height: min(var(--qt-home-float-panel-height), calc(100dvh - 2rem));
    max-height: calc(100vh - 2rem);
    max-height: calc(100dvh - 2rem);
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transform: translate3d(18px, 0, 0);
    background-color: #f2f2f2;
    background-image: url('/front/img/home/float/form-bg.svg');
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    box-shadow: 0 24px 48px rgba(10, 24, 46, 0.2);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  }

  .qt-home-float__contact-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    padding: var(--qt-home-float-panel-padding-top) var(--qt-home-float-panel-padding-x) var(--qt-home-float-panel-padding-bottom);
    box-sizing: border-box;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .qt-home-float__contact-inner::-webkit-scrollbar {
    display: none;
  }

  .qt-home-float__close {
    position: absolute;
    top: calc(var(--qt-home-float-panel-padding-top) - 0.59375rem);
    right: 1.125rem;
    z-index: 12;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    touch-action: manipulation;
  }

  .qt-home-float__close:focus-visible {
    outline: 2px solid rgba(236, 174, 68, 0.56);
    outline-offset: 2px;
    border-radius: 50%;
  }

  .qt-home-float__close-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.8125rem;
    height: 0.8125rem;
    transform: translate(-50%, -50%);
    transition: opacity 0.18s ease;
  }

  .qt-home-float__close-icon--hover {
    opacity: 0;
  }

  .qt-home-float__close:hover .qt-home-float__close-icon--default,
  .qt-home-float__close:focus-visible .qt-home-float__close-icon--default {
    opacity: 0;
  }

  .qt-home-float__close:hover .qt-home-float__close-icon--hover,
  .qt-home-float__close:focus-visible .qt-home-float__close-icon--hover {
    opacity: 1;
  }

  .qt-home-float__form {
    display: grid;
    grid-template-rows: auto auto auto minmax(0, 1fr) auto auto;
    row-gap: var(--qt-home-float-field-gap);
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 100%;
    padding-top: 0;
    box-sizing: border-box;
  }

  .qt-home-float__field {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 0;
    box-sizing: border-box;
  }

  .qt-home-float__field+.qt-home-float__field {
    margin-top: 0;
  }

  .qt-home-float__label {
    display: block;
    margin: 0 0 var(--qt-home-float-label-gap);
    color: rgb(77, 77, 77);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .qt-home-float__control {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    background-image: url('/front/img/home/float/input-bg.svg');
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }

  .qt-home-float__control:not(.qt-home-float__control--textarea) {
    height: var(--qt-home-float-control-height);
  }

  .qt-home-float__control--select {
    background-image: url('/front/img/home/float/select-bg.svg');
  }

  .qt-home-float__control--textarea {
    display: block;
    background-image: url('/front/img/home/float/textarea-bg.svg');
  }

  .qt-home-float__field--demand {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .qt-home-float__field--demand .qt-home-float__control--textarea {
    flex: 1 1 auto;
    min-height: var(--qt-home-float-demand-height);
    height: auto;
  }

  .qt-home-float__captcha-row {
    display: flex;
    align-items: stretch;
    gap: 0.625rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .qt-home-float__captcha-control {
    flex: 1 1 auto;
    min-width: 0;
  }

  .qt-home-float__captcha-refresh {
    flex: 0 0 var(--qt-home-float-captcha-width);
    height: var(--qt-home-float-control-height);
    padding: 0.125rem;
    border: 0;
    border-radius: 0.125rem;
    background: center / 100% 100% no-repeat url('/front/img/home/float/input-bg.svg'), #ffffff;
    box-sizing: border-box;
    cursor: pointer;
    overflow: hidden;
  }

  .qt-home-float__captcha-refresh:focus-visible {
    outline: 2px solid rgba(236, 174, 68, 0.56);
    outline-offset: 3px;
  }

  .qt-home-float__captcha-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .qt-home-float__input,
  .qt-home-float__textarea,
  .qt-home-float__select-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    box-sizing: border-box;
    color: #4d4d4d;
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 0;
  }

  .qt-home-float__input,
  .qt-home-float__select-trigger {
    height: 100%;
  }

  .qt-home-float__input {
    padding: var(--qt-home-float-control-padding-x);
  }

  .qt-home-float__control--counted .qt-home-float__input {
    padding-right: calc(var(--qt-home-float-control-padding-x) + var(--qt-home-float-counter-width));
  }

  .qt-home-float__select-trigger {
    padding: var(--qt-home-float-control-padding-x);
  }

  .qt-home-float__input:focus,
  .qt-home-float__textarea:focus,
  .qt-home-float__select-trigger:focus-visible {
    outline: none;
  }

  .qt-home-float__input::placeholder,
  .qt-home-float__textarea::placeholder {
    color: rgb(153, 153, 153);
    font-size: 0.875rem;
    font-weight: 350;
  }

  .qt-home-float__input.is-error::placeholder,
  .qt-home-float__textarea.is-error::placeholder {
    color: #d84d4d;
  }

  .qt-home-float__textarea {
    display: block;
    height: 100%;
    padding: calc(var(--qt-home-float-control-padding-x) * 2) var(--qt-home-float-control-padding-x);
    line-height: 1.5;
    resize: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .qt-home-float__textarea::-webkit-scrollbar {
    display: none;
  }

  .qt-home-float__control--counted .qt-home-float__textarea {
    padding-bottom: calc(var(--qt-home-float-control-padding-x) * 2);
  }

  .qt-home-float__select {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .qt-home-float__select-trigger {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    cursor: pointer;
  }

  .qt-home-float__select-text {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    color: rgb(153, 153, 153);
    font-size: 0.875rem;
    font-weight: 350;
  }

  .qt-home-float__select-text.is-value {
    color: rgb(77, 77, 77);
  }

  .qt-home-float__select-trigger.is-error .qt-home-float__select-text {
    color: #d84d4d;
  }

  .qt-home-float__dropdown {
    --qt-home-float-dropdown-line-inset: 1.75rem;
    --qt-home-float-dropdown-content-inset: 2.5rem;
    --qt-home-float-dropdown-action-width: 2.5rem;
    --qt-home-float-dropdown-side-column: 3.25rem;
    --qt-home-float-dropdown-column-gap: 0.75rem;
    --qt-home-float-dropdown-scrollbar-width: 0.375rem;
    --qt-home-float-dropdown-mark-right: 4.125rem;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    padding: 0.25rem 0 0.875rem;
    border-radius: 3px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 0.5rem, 0);
    background: center / 100% 100% no-repeat url('/front/img/home/float/dropdown-bg.svg'), #ffffff;
    box-shadow: 0 16px 34px rgba(10, 24, 46, 0.14);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 8;
  }

  .qt-home-float__select.is-open .qt-home-float__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .qt-home-float__dropdown-actions {
    position: relative;
    display: grid;
    grid-template-columns: var(--qt-home-float-dropdown-side-column) minmax(0, 1fr) var(--qt-home-float-dropdown-side-column);
    align-items: center;
    column-gap: var(--qt-home-float-dropdown-column-gap);
    height: 2.75rem;
    padding: 0 calc(var(--qt-home-float-dropdown-content-inset) + var(--qt-home-float-dropdown-scrollbar-width)) 0 var(--qt-home-float-dropdown-content-inset);
    box-sizing: border-box;
  }

  .qt-home-float__dropdown-action {
    grid-column: 1;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    width: var(--qt-home-float-dropdown-action-width);
    height: 100%;
    padding: 0;
    box-sizing: border-box;
    border: 0;
    background: transparent;
    color: rgb(77, 77, 77);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
  }

  .qt-home-float__dropdown-action--confirm {
    grid-column: 3;
    color: rgb(236, 174, 68);
  }

  .qt-home-float__dropdown-action:focus-visible {
    outline: none;
  }

  .qt-home-float__dropdown-scroll {
    position: relative;
    max-height: calc(2.75rem * 7);
    overflow-y: auto;
  }

  .qt-home-float__dropdown-scroll::-webkit-scrollbar {
    width: var(--qt-home-float-dropdown-scrollbar-width);
  }

  .qt-home-float__dropdown-scroll::-webkit-scrollbar-thumb {
    background: rgba(77, 77, 77, 0.22);
    border-radius: 999px;
  }

  .qt-home-float__option {
    position: relative;
    display: grid;
    grid-template-columns: var(--qt-home-float-dropdown-side-column) minmax(0, 1fr) var(--qt-home-float-dropdown-side-column);
    align-items: center;
    justify-content: flex-start;
    column-gap: var(--qt-home-float-dropdown-column-gap);
    width: 100%;
    height: 2.75rem;
    padding: 0 var(--qt-home-float-dropdown-content-inset);
    box-sizing: border-box;
    border: 0;
    background: center / 100% 100% no-repeat url('/front/img/home/float/input-bg.svg');
    color: rgb(153, 153, 153);
    font-size: 0.875rem;
    font-weight: 350;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: left;
    cursor: pointer;
  }

  .qt-home-float__option::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--qt-home-float-dropdown-line-inset);
    right: var(--qt-home-float-dropdown-line-inset);
    height: 2px;
    background: rgba(77, 77, 77, 0.12);
  }

  .qt-home-float__option:hover,
  .qt-home-float__option:focus-visible {
    outline: none;
  }

  .qt-home-float__option.is-selected {
    color: rgb(77, 77, 77);
    font-weight: 350;
  }

  .qt-home-float__option-text {
    grid-column: 2;
    min-width: 0;
    overflow: visible;
    white-space: nowrap;
    text-overflow: clip;
  }

  .qt-home-float__option-icons {
    position: relative;
    grid-column: 1;
    justify-self: center;
    width: 1.125rem;
    height: 1.125rem;
  }

  .qt-home-float__option-icon {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.18s ease;
  }

  .qt-home-float__option-icon--active {
    opacity: 0;
  }

  .qt-home-float__option.is-selected .qt-home-float__option-icon--default {
    opacity: 0;
  }

  .qt-home-float__option.is-selected .qt-home-float__option-icon--active {
    opacity: 1;
  }

  .qt-home-float__option-mark {
    position: absolute;
    top: 1.375rem;
    right: var(--qt-home-float-dropdown-mark-right);
    width: 0.75rem;
    height: 0.625rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%);
    transition: opacity 0.18s ease;
    z-index: 2;
  }

  .qt-home-float__field-message {
    min-height: 0;
    max-height: 0;
    margin-top: 0;
    color: #d84d4d;
    font-size: 0.75rem;
    line-height: 1.5;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.18s ease, max-height 0.18s ease, margin-top 0.18s ease;
  }

  .qt-home-float__field-message.is-visible {
    max-height: 2.25rem;
    margin-top: 0.25rem;
    opacity: 1;
  }

  .qt-home-float__char-count {
    position: absolute;
    bottom: 0.5rem;
    right: var(--qt-home-float-control-padding-x);
    z-index: 2;
    width: var(--qt-home-float-counter-width);
    margin: 0;
    color: rgb(153, 153, 153);
    font-size: 0.75rem;
    line-height: 1.25;
    letter-spacing: 0;
    text-align: right;
    pointer-events: none;
  }

  .qt-home-float__submit {
    flex: 0 0 auto;
    min-height: 0;
    margin-top: calc(var(--qt-home-float-submit-gap) - var(--qt-home-float-field-gap));
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .qt-home-float__submit-message {
    display: none;
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .qt-home-float__submit-message.is-visible {
    display: block;
    margin-bottom: 0.375rem;
  }

  .qt-home-float__submit-button {
    position: relative;
    width: 7.5rem;
    height: 2rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .qt-home-float__submit-button:focus-visible {
    outline: 2px solid rgba(236, 174, 68, 0.56);
    outline-offset: 4px;
  }

  .qt-home-float__submit-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.16s ease;
  }

  .qt-home-float__submit-image--hover,
  .qt-home-float__submit-image--pressed {
    opacity: 0;
  }

  .qt-home-float__submit-button:hover .qt-home-float__submit-image--default,
  .qt-home-float__submit-button:focus-visible .qt-home-float__submit-image--default {
    opacity: 0;
  }

  .qt-home-float__submit-button:hover .qt-home-float__submit-image--hover,
  .qt-home-float__submit-button:focus-visible .qt-home-float__submit-image--hover {
    opacity: 1;
  }

  .qt-home-float__submit-button:active .qt-home-float__submit-image--default,
  .qt-home-float__submit-button:active .qt-home-float__submit-image--hover,
  .qt-home-float__submit-button.is-loading .qt-home-float__submit-image--default,
  .qt-home-float__submit-button.is-loading .qt-home-float__submit-image--hover {
    opacity: 0;
  }

  .qt-home-float__submit-button:active .qt-home-float__submit-image--pressed,
  .qt-home-float__submit-button.is-loading .qt-home-float__submit-image--pressed {
    opacity: 1;
  }

  .qt-home-float__submit-button[disabled] {
    cursor: default;
  }

  .qt-home-float__success {
    position: fixed;
    inset: 0;
    z-index: 120;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .qt-home-float__success.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .qt-home-float__success-image {
    display: block;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
  }

  @media (max-width: 1200px) {
    .qt-home-clients {
      padding-bottom: 92px;
    }

    .qt-home-float__contact-panel {
      right: calc(100% + 0.875rem);
    }
  }

  @media (max-width: 960px) {
    .qt-home-clients {
      padding-bottom: 78px;
    }

    .qt-home-clients .qt-wrap {
      width: calc(100% - 28px);
    }

    .qt-home-clients__header {
      padding-top: 2.5rem;
      padding-bottom: 2rem;
    }

    .qt-home-clients__title {
      font-size: 1.125rem;
      line-height: 1.4;
    }

    .qt-home-float {
      right: 1.25rem;
      bottom: 1.25rem;
      gap: 0.25rem;
    }

    .qt-home-float__button {
      width: 2.75rem;
      height: 2.75rem;
    }

    .qt-home-float__popup-image {
      width: 11rem;
    }

    .qt-home-float__contact-panel {
      width: var(--qt-home-float-panel-width);
      right: calc(100% + 0.75rem);
    }

    .qt-home-float__contact-inner {
      padding: var(--qt-home-float-panel-padding-top) var(--qt-home-float-panel-padding-x) var(--qt-home-float-panel-padding-bottom);
    }

    .qt-home-float__form {
      padding-top: 0;
    }

    .qt-home-float__submit {
      padding-top: 0;
    }
  }

  @media (max-width: 640px) {

    html.qt-home-float-lock,
    body.qt-home-float-lock {
      overflow: hidden;
      touch-action: none;
    }

    .qt-home-clients {
      padding-bottom: 62px;
    }

    .qt-home-clients .qt-wrap {
      width: calc(100% - 24px);
    }

    .qt-home-clients__header {
      padding-top: 2rem;
      padding-bottom: 1.5rem;
    }

    .qt-home-clients__title {
      font-size: 1.125rem;
      line-height: 1.4;
    }

    .qt-home-clients__title-highlight::after {
      height: 3px;
    }

    .qt-home-float {
      --qt-home-float-panel-width: min(27rem, calc(100vw - 2rem));
      --qt-home-float-panel-padding-x: clamp(1.75rem, 8vw, 2.25rem);
      --qt-home-float-panel-padding-top: clamp(1.5rem, 7.5vw, 2rem);
      --qt-home-float-panel-padding-bottom: clamp(1.375rem, 6.5vw, 1.75rem);
      --qt-home-float-field-gap: clamp(0.625rem, 2.4vw, 0.875rem);
      --qt-home-float-label-gap: clamp(0.625rem, 2.8vw, 0.8125rem);
      --qt-home-float-control-height: 2.875rem;
      --qt-home-float-control-padding-x: 0.75rem;
      --qt-home-float-demand-height: clamp(5.75rem, 27vw, 7rem);
      --qt-home-float-captcha-width: clamp(6.5rem, 31vw, 7rem);
      --qt-home-float-submit-gap: clamp(0.625rem, 2.4vw, 0.875rem);
      right: 0.75rem;
      bottom: 0.75rem;
      gap: 6px;
    }

    .qt-home-float__button {
      width: 40px;
      height: 40px;
    }

    .qt-home-float__item:hover .qt-home-float__icon--default,
    .qt-home-float__item:focus-within .qt-home-float__icon--default {
      opacity: 1;
    }

    .qt-home-float__item:hover .qt-home-float__icon--active,
    .qt-home-float__item:focus-within .qt-home-float__icon--active {
      opacity: 0;
    }

    .qt-home-float__item--contact.is-hover .qt-home-float__icon--default,
    .qt-home-float__item--contact.is-open .qt-home-float__icon--default {
      opacity: 0;
    }

    .qt-home-float__item--contact.is-hover .qt-home-float__icon--active,
    .qt-home-float__item--contact.is-open .qt-home-float__icon--active {
      opacity: 1;
    }

    .qt-home-float__popup {
      right: calc(100% + 0.5rem);
    }

    .qt-home-float__popup-image {
      width: 8.75rem;
    }

    .qt-home-float__contact-panel {
      position: fixed;
      top: 50%;
      right: auto;
      bottom: auto;
      left: 50%;
      display: flex;
      flex-direction: column;
      width: var(--qt-home-float-panel-width);
      height: auto;
      min-height: 0;
      max-height: calc(100vh - 2rem);
      aspect-ratio: auto;
      box-sizing: border-box;
      overflow: hidden;
      transform: translate(-50%, -47%);
    }

    .qt-home-float__item--contact.is-hover .qt-home-float__contact-panel,
    .qt-home-float__item--contact.is-open .qt-home-float__contact-panel {
      transform: translate(-50%, -50%);
    }

    .qt-home-float__contact-inner {
      flex: 1 1 auto;
      min-height: 0;
      height: auto;
      max-height: calc(100vh - 2rem);
      padding: var(--qt-home-float-panel-padding-top) var(--qt-home-float-panel-padding-x) var(--qt-home-float-panel-padding-bottom);
      overflow-y: auto;
      overflow-x: hidden;
      overscroll-behavior: contain;
      scroll-padding-bottom: calc(var(--qt-home-float-control-height) + var(--qt-home-float-submit-gap) + env(safe-area-inset-bottom, 0px) + 1rem);
    }

    .qt-home-float__form {
      display: block;
      width: 100%;
      max-width: 100%;
      height: auto;
      min-height: 0;
      max-height: none;
      padding-top: 0;
      box-sizing: border-box;
    }

    .qt-home-float__form.is-keyboard-active {
      padding-bottom: calc(var(--qt-home-float-submit-gap) + env(safe-area-inset-bottom, 0px) + 1rem);
    }

    .qt-home-float__label {
      margin-bottom: var(--qt-home-float-label-gap);
      font-size: 0.875rem;
    }

    .qt-home-float__field+.qt-home-float__field {
      margin-top: var(--qt-home-float-field-gap);
    }

    .qt-home-float__submit {
      margin-top: calc(var(--qt-home-float-submit-gap) + 0.5rem);
    }

    .qt-home-float__input,
    .qt-home-float__select-trigger {
      font-size: 0.8125rem;
    }

    .qt-home-float__input::placeholder,
    .qt-home-float__textarea::placeholder,
    .qt-home-float__select-text {
      font-size: 0.8125rem;
    }

    .qt-home-float__captcha-row {
      gap: 0.5rem;
    }

    .qt-home-float__captcha-refresh {
      flex-basis: var(--qt-home-float-captcha-width);
    }

    .qt-home-float__field--demand .qt-home-float__control--textarea {
      flex: none;
      height: var(--qt-home-float-demand-height);
      min-height: var(--qt-home-float-demand-height);
      scroll-margin-bottom: calc(var(--qt-home-float-control-height) + var(--qt-home-float-submit-gap) + env(safe-area-inset-bottom, 0px) + 1rem);
    }

    .qt-home-float__textarea {
      height: 100%;
      min-height: var(--qt-home-float-demand-height);
      padding-top: calc(var(--qt-home-float-control-padding-x) * 2);
      padding-bottom: calc(var(--qt-home-float-control-padding-x) * 2);
      font-size: 0.8125rem;
      line-height: 1.5;
    }

    .qt-home-float__dropdown-action,
    .qt-home-float__option {
      font-size: 0.8125rem;
    }

    .qt-home-float__field-message {
      font-size: 0.75rem;
      line-height: 1.5;
    }

    .qt-home-float__dropdown-scroll {
      max-height: min(calc(2.75rem * 7), calc(100vh - 10rem));
    }
  }

  @media (max-width: 640px) and (max-height: 620px) {
    .qt-home-float {
      --qt-home-float-panel-padding-top: 1.5rem;
      --qt-home-float-panel-padding-bottom: 1.375rem;
      --qt-home-float-field-gap: clamp(0.5rem, 1.8vh, 0.625rem);
      --qt-home-float-label-gap: clamp(0.5rem, 1.8vh, 0.625rem);
      --qt-home-float-demand-height: clamp(5rem, 16vh, 5.75rem);
      --qt-home-float-submit-gap: clamp(0.5rem, 2vh, 0.75rem);
    }

    .qt-home-float__label {
      line-height: 1.15;
    }

    .qt-home-float__textarea {
      padding-top: calc(var(--qt-home-float-control-padding-x) * 2);
      padding-bottom: calc(var(--qt-home-float-control-padding-x) * 2);
    }

    .qt-home-float__dropdown-scroll {
      max-height: min(calc(2.75rem * 7), calc(100vh - 9rem));
    }
  }
  @media (max-width: 960px) {
    .qt-home-float {
      right: 16px;
      bottom: 16px;
      gap: 6px;
    }

    .qt-home-float__button {
      width: 42px;
      height: 42px;
    }
  }

  @media (max-width: 640px) {
    .qt-home-float {
      right: 10px;
      bottom: 10px;
      gap: 6px;
    }

    .qt-home-float__button {
      width: 40px;
      height: 40px;
    }
  }

  
