@charset "utf-8";

/* ============================================================
   contact.css — 对齐 jirfine.com/contact.html 实测字号/间距
   （参考 1920 设计：1rem≈75px @1440 视口下的计算值）
   ============================================================ */

.page-contact {
  --ct-green: #C8161D;
  --ct-green-dark: #a81218;
  --ct-dark: #2b2f33;
  --ct-muted: #808080;
  --ct-text: #1a1a1a;
  --ct-gray: #f5f6f7;
  --ct-cut: polygon(7.5px 0, 100% 0, 100% calc(100% - 7.5px), calc(100% - 7.5px) 100%, 7.5px 100%, 0 100%, 0 7.5px);
  --ct-cut-lg: polygon(0 0, 100% 0, 100% calc(100% - 90px), calc(100% - 90px) 100%, 90px 100%, 0 100%);
  --ct-cut-md: polygon(0 0, 100% 0, 100% calc(100% - 45px), calc(100% - 45px) 100%, 45px 100%, 0 100%);
  --c-accent: #C8161D;
}

.page-contact .site-header {
  background: #fff;
  border-bottom: 1px solid var(--c-line, #eee);
}

.page-contact .site-wrap {
  width: var(--site-width-pct);
  max-width: var(--site-max-width);
}

.ct-main {
  background: #fff;
}

.ct-seo-h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- 总部信息卡 ---------- */
.ct-hq {
  margin-top: 0;
}

.ct-hq__media {
  position: relative;
  width: 100%;
  clip-path: var(--ct-cut-lg);
  overflow: hidden;
  background: #1a1a1a;
  line-height: 0;
}

.ct-hq__media > img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: unset;
  object-position: center;
}

.ct-hq__card {
  position: absolute;
  left: max(24px, calc(var(--site-gutter, 8vw) + 0px));
  bottom: 0;
  z-index: 2;
  width: min(405px, 88%);
  min-height: 0;
  padding: 30px;
  box-sizing: border-box;
  background: var(--ct-dark);
  clip-path: var(--ct-cut-md);
  color: #fff;
  line-height: 1.5;
}

.ct-hq__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  min-height: 0;
  padding-bottom: 16px;
  margin-bottom: 0;
}

.ct-hq__head h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.ct-hq__maplink {
  margin-top: 44px;
  font-size: 16px;
  font-weight: 400;
  color: var(--ct-green) !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}

.ct-hq__maplink::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--ct-green);
}

.ct-hq__maplink:hover {
  opacity: .85;
}

.ct-hq__body {
  margin-top: 22px;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, .4);
  line-height: 1.5;
}

.ct-hq__body p,
.ct-hq__body > div {
  margin: 0 0 12px;
}

.ct-hq__body p:last-child,
.ct-hq__body > div:last-child {
  margin-bottom: 0;
}

.ct-hq__body .ct-hq__list {
  margin-top: 0;
}

.ct-hq__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ct-hq__body li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.ct-hq__body li:last-child {
  margin-bottom: 0;
}

.ct-hq__body img {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 5px;
  object-fit: contain;
  vertical-align: middle;
}

.ct-hq__list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.ct-hq__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, .4);
  line-height: 1.5;
}

.ct-hq__list li:last-child {
  margin-bottom: 0;
}

.ct-hq__ico {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 5px;
  object-fit: contain;
  opacity: .9;
}

/* ---------- 左右分栏 ---------- */
.ct-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.ct-common-title {
  margin: 0;
  flex: 0 0 auto;
  max-width: 345px;
  font-size: 38px;
  font-weight: 600;
  color: var(--ct-text);
  line-height: 52px;
}

.ct-common-title::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 6px;
  margin-left: 4px;
  background: var(--ct-green);
  transform: skew(-20deg);
  vertical-align: middle;
}

/* ---------- 公司地图 ---------- */
.ct-map {
  padding: 110px 0;
  background: #fff;
}

.ct-map .ct-split {
  flex-direction: column;
  gap: 36px;
}

.ct-map .ct-common-title {
  max-width: none;
}

.ct-map__panel {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  max-width: none;
  height: 560px;
  overflow: hidden;
  background: #eef1eb;
  clip-path: var(--ct-cut-md);
}

.ct-map__canvas {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.ct-map__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 24px;
  color: #666;
  font-size: 15px;
  text-align: center;
  line-height: 1.5;
}

.ct-map__fallback a {
  color: var(--ct-green);
  margin-left: 4px;
}

.ct-map__iw {
  min-width: 180px;
  padding: 4px 2px;
  line-height: 1.5;
}

.ct-map__iw strong {
  display: block;
  margin-bottom: 4px;
  color: #1a1a1a;
  font-size: 14px;
}

.ct-map__iw p {
  margin: 0;
  color: #666;
  font-size: 12px;
}

.ct-map__bar {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 5;
}

.ct-map__link {
  display: inline-flex;
  align-items: center;
  height: 41px;
  padding: 0 18px;
  background: var(--ct-green);
  color: #fff !important;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none !important;
  clip-path: var(--ct-cut);
  transition: background .25s ease;
}

.ct-map__link:hover {
  background: var(--ct-green-dark);
}

/* ---------- 在线咨询表单（乔锋结构） ---------- */
.ct-form {
  padding: 110px 0;
  background: var(--ct-gray);
}

.ct-form__box {
  flex: 0 0 auto;
  width: 50%;
  min-width: 0;
}

.ct-form__el {
  margin: 0;
}

.ct-form__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ct-field {
  position: relative;
  width: calc(50% - 4px);
  margin-bottom: 30px;
  box-sizing: border-box;
}

.ct-field--full {
  width: 100%;
}

.ct-field__label {
  display: block;
  padding-bottom: 11px;
  font-size: 15px;
  font-weight: 400;
  color: var(--ct-text);
  line-height: 1;
}

.ct-field__label .req {
  color: var(--ct-green);
  margin-left: 2px;
}

.ct-field__input,
.ct-field select.ct-field__input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: 41px;
  padding: 0 15px;
  border: 0;
  outline: none;
  background: #fff;
  font-size: 14px;
  font-weight: 300;
  color: var(--ct-text);
  line-height: 41px;
  clip-path: var(--ct-cut);
  appearance: none;
  -webkit-appearance: none;
}

.ct-field__select-wrap {
  position: relative;
}

.ct-field__select-wrap::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-top: 6px solid #999;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  pointer-events: none;
}

.ct-field__textarea {
  height: auto;
  min-height: 120px;
  padding: 15px;
  line-height: 1.6;
  resize: vertical;
}

.ct-field__options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.ct-field__option {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 19px;
  background: #fff;
  clip-path: var(--ct-cut);
  font-size: 14px;
  font-weight: 400;
  color: var(--ct-muted);
  line-height: 34px;
  cursor: pointer;
  user-select: none;
  transition: background .2s ease, color .2s ease;
}

.ct-field__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ct-field__option:has(input:checked),
.ct-field__option.is-checked {
  background: var(--ct-green);
  color: #fff;
}

.ct-form__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin-top: 0;
}

.ct-form__privacy {
  flex: 1;
  max-width: 379px;
  margin: 0;
  font-size: 14px;
  color: var(--ct-muted);
  line-height: 1.57;
}

.ct-form__privacy a {
  color: var(--ct-text);
  margin-left: 4px;
  text-decoration: none;
}

.ct-form__privacy a:hover {
  text-decoration: underline;
}

.ct-form__btns {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 135px;
  height: 41px;
  padding: 0 19px;
  border: 0;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  clip-path: var(--ct-cut);
  transition: background .25s ease;
}

.ct-btn--primary {
  background: var(--ct-green);
  color: #fff;
}

.ct-btn--primary::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #fff;
}

.ct-btn--primary:hover {
  background: var(--ct-green-dark);
}

.ct-btn--primary:disabled {
  opacity: .55;
  cursor: wait;
}

.ct-btn--ghost {
  display: none;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .ct-split {
    flex-direction: column;
    gap: 30px;
  }

  .ct-common-title {
    max-width: none;
    font-size: 31px;
    line-height: 1.3;
  }

  .ct-form__box,
  .ct-map__panel {
    width: 100%;
  }

  .ct-map__panel {
    height: 480px;
  }

  .ct-map,
  .ct-form {
    padding: 80px 0;
  }
}

@media (max-width: 960px) {
  .ct-hq {
    margin-top: 44px;
  }

  .ct-hq__media {
    clip-path: none;
  }

  .ct-hq__media > img {
    min-height: 0;
    max-height: none;
  }

  .ct-hq__card {
    position: static;
    width: 100%;
    clip-path: none;
  }

  .ct-hq__head {
    min-height: 0;
  }

  .ct-hq__body,
  .ct-hq__list li {
    font-size: 15px;
  }

  .ct-hq__body img,
  .ct-hq__ico {
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    margin-top: 4px;
  }

  .ct-field,
  .ct-field--full {
    width: 100%;
  }

  .ct-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ct-form__privacy {
    max-width: none;
  }

  .ct-form__btns .ct-btn {
    width: 100%;
    justify-content: center;
  }

  .ct-map,
  .ct-form {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .ct-hq {
    margin-top: 36px;
  }

  .ct-hq__card {
    padding: 22px 18px;
  }

  .ct-map,
  .ct-form {
    padding: 52px 0;
  }

  .ct-map__panel {
    height: 360px;
    clip-path: none;
  }

  .ct-field__option {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   Leetx support.html?mt=1 对齐（内容区）
   强调色：品牌红 #C8161D
   ============================================================ */
.page-contact {
  --lx-accent: #C8161D;
  --lx-accent-soft: #f5f5f5;
  --lx-muted: #999;
  --lx-line: #f0f0f0;
  --lx-body: 16px; /* PC 正文 */
}

.lx-contact {
  padding: 120px 0;
  background: #fff;
}

.lx-contact__head {
  text-align: center;
}

.lx-contact__title {
  font-size: clamp(22px, 1.46vw, 28px);
  line-height: 1.3;
  color: #222;
  font-weight: 500;
}

.lx-contact__sub {
  margin-top: 8px;
  font-size: var(--lx-body);
  line-height: 1.6;
  color: var(--lx-muted);
}

.lx-form {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 3.6%;
}

.lx-form__hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

.lx-form__li {
  flex: 0 0 calc((100% - 3.6%) / 2);
  width: calc((100% - 3.6%) / 2);
  box-sizing: border-box;
  position: relative;
  border-bottom: 1px solid var(--lx-line);
  margin-bottom: 36px;
  z-index: 1;
}

.lx-form__li--gap {
  margin-left: 0;
}

.lx-form__li--dd {
  z-index: 2;
}

.lx-form__li.is-open {
  z-index: 20;
}

.lx-form__label {
  font-size: var(--lx-body);
  line-height: 1.3;
  color: #222;
}

.lx-form__input {
  background: transparent;
  border: 0;
  width: 100%;
  height: 42px;
  font-size: var(--lx-body);
  color: #333;
  box-sizing: border-box;
  padding: 0;
}

.lx-form__input:focus {
  outline: none;
}

.lx-form__input::placeholder {
  color: #bbb;
}

.lx-form__line {
  width: 0;
  height: 2px;
  background: var(--lx-accent);
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: width 0.5s;
}

.lx-form__li.is-on .lx-form__line,
.lx-form__li.is-open .lx-form__line {
  width: 100%;
}

.lx-form__arrow {
  position: absolute;
  width: 100%;
  height: 42px;
  bottom: 0;
  left: 0;
  cursor: pointer;
  background: transparent;
}

.lx-form__arrow::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -3px;
  border: 6px solid transparent;
  border-top-color: #999;
}

.lx-form__dd {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  padding: 1.5vw 0;
  margin-top: 1px;
  display: none;
  max-height: 240px;
  overflow-y: auto;
  z-index: 30;
}

.lx-form__li.is-open .lx-form__dd {
  display: block;
}

.lx-form__dd div {
  cursor: pointer;
  padding: 8px 16px;
  margin: 4px 0;
  font-size: var(--lx-body);
  color: #333;
  line-height: 1.5;
}

.lx-form__dd div:hover,
.lx-form__dd div.on {
  color: var(--lx-accent);
}

.lx-form__privacy {
  flex: 0 0 100%;
  width: 100%;
  border-bottom: 0;
  margin-bottom: 2vw;
}

.lx-form__privacy .lx-form__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--lx-muted);
  font-weight: 400;
}

.lx-form__privacy input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--lx-accent);
}

.lx-form__privacy-txt {
  color: var(--lx-muted);
}

.lx-form__actions {
  flex: 0 0 100%;
  width: 100%;
  text-align: center;
  border-bottom: 0;
  margin-top: 1vw;
}

.lx-form__btn {
  display: inline-block;
  vertical-align: top;
  height: 44px;
  line-height: 44px;
  min-width: 110px;
  padding: 0 24px;
  text-align: center;
  border: 0;
  background: var(--lx-accent-soft);
  color: var(--lx-muted);
  border-radius: 999px;
  margin: 0 8px;
  cursor: pointer;
  transition: 0.5s;
  font-size: var(--lx-body);
}

.lx-form__btn:hover {
  background: var(--lx-accent);
  color: #fff;
}

.lx-support {
  background: #f5f5f5;
}

.lx-support__inner {
  padding: 120px 0;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.lx-support__lt {
  flex: 0 0 31.25%;
  width: 31.25%;
  padding-right: 5%;
  box-sizing: border-box;
  min-width: 0;
}

.lx-support__title {
  font-size: clamp(22px, 1.46vw, 28px);
  line-height: 1.3;
  color: #222;
}

.lx-support__sub {
  margin-top: 8px;
  font-size: var(--lx-body);
  line-height: 1.6;
  color: var(--lx-muted);
}

.lx-support__bar {
  width: 32px;
  height: 3px;
  background: var(--lx-accent);
  margin: 28px 0;
}

.lx-support__phone {
  font-size: var(--lx-body);
  font-weight: 500;
  line-height: 1.7;
  color: #222;
}

.lx-support__phone p {
  margin: 0 0 0.4em;
  font-size: inherit;
}

.lx-support__rt {
  flex: 1 1 68.75%;
  width: 68.75%;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  min-width: 0;
  min-height: 520px;
  background: #eaeaea;
}

.lx-support__map {
  width: 100%;
  height: 520px;
}

.lx-support__map-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.lx-support__rt .ct-map__bar {
  position: absolute;
  left: auto;
  right: 16px;
  bottom: 16px;
  z-index: 5;
  text-align: right;
}

.lx-sales {
  padding: 120px 0 60px;
  background: #fff;
}

.lx-sales__div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 48px;
  position: relative;
}

.lx-sales__div::after {
  content: "";
  width: 2px;
  height: 100%;
  background: #ededed;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.lx-sales__li {
  flex: 0 0 40%;
  width: 40%;
  position: relative;
  box-sizing: border-box;
  min-width: 0;
}

.lx-sales__li:nth-child(2n) {
  margin-left: 0;
}

.lx-sales__icon {
  display: block;
  width: clamp(56px, 5.2vw, 100px);
  height: auto;
  position: absolute;
  top: 8px;
  right: 0;
  pointer-events: none;
}

.lx-sales__label {
  font-size: var(--lx-body);
  color: var(--lx-muted);
}

.lx-sales__lead {
  margin-top: 8px;
  padding-right: clamp(72px, 6vw, 120px);
  font-size: clamp(20px, 1.46vw, 26px);
  line-height: 1.4;
  color: #222;
}

.lx-sales__list {
  margin-top: 28px;
  font-size: var(--lx-body);
}

.lx-sales__item {
  font-size: var(--lx-body);
  line-height: 1.7;
  padding: 22px 0;
  border-top: 1px solid #ccc;
  opacity: 0.6;
  color: #222;
}

.lx-sales__item:first-child {
  border-top: 0;
}

/* 与首页模块间距一致：about 72/56，news/contact 64/72 */
@media (max-width: 1100px) {
  .page-contact {
    --lx-body: 14px; /* 平板 / 手机正文 */
  }

  .lx-support__phone {
    font-size: var(--lx-body);
  }

  .lx-contact {
    padding: 72px 0 56px;
  }

  .lx-support__inner {
    padding: 64px 0;
  }

  .lx-sales {
    padding: 64px 0 32px;
  }

  .lx-form {
    margin-top: 32px;
  }

  .lx-sales__div {
    margin-top: 32px;
  }
}

@media (max-width: 900px) {
  .lx-form {
    column-gap: 0;
  }

  .lx-form__li,
  .lx-form__li--gap {
    flex: 0 0 100%;
    width: 100%;
    margin-left: 0;
  }

  .lx-support__inner {
    flex-direction: column;
  }

  .lx-support__lt,
  .lx-support__rt {
    flex: 0 0 auto;
    width: 100%;
    padding-right: 0;
  }

  .lx-support__rt {
    margin-top: 28px;
    border-radius: 0;
    min-height: 360px;
  }

  .lx-support__map {
    height: 360px;
  }

  .lx-sales__div {
    flex-direction: column;
  }

  .lx-sales__div::after {
    display: none;
  }

  .lx-sales__li,
  .lx-sales__li:nth-child(2n) {
    flex: 0 0 auto;
    width: 100%;
    margin-left: 0;
    margin-bottom: 40px;
  }

  .lx-sales__lead {
    padding-right: 0;
  }
}

/* ============================================================
   底部产品分类切换（对齐 Leetx support idsty）
   ============================================================ */
.lx-idsty {
  padding: 60px 0 120px;
  background: #fff;
}

.lx-idsty__intro {
  font-size: clamp(22px, 1.56vw, 30px);
  line-height: 1.55;
  color: #222;
  font-weight: 500;
}

.lx-idsty__intro p {
  margin: 0;
}

.lx-idsty__list {
  display: flex;
  align-items: stretch;
  gap: 1%;
  margin-top: clamp(36px, 3.2vw, 60px);
  height: clamp(280px, 22.4vw, 430px);
}

.lx-idsty__item {
  position: relative;
  flex: 1 1 11.5%;
  min-width: 0;
  display: block;
  box-sizing: border-box;
  padding: clamp(28px, 3.125vw, 60px) clamp(20px, 2.5vw, 48px);
  background: var(--lx-accent, #C8161D);
  border-radius: clamp(18px, 2vw, 36px);
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  transition: flex 0.45s ease, background 0.45s ease, color 0.45s ease;
}

.lx-idsty__item.is-on {
  flex: 1 1 58%;
  background: #f3f3f3;
  color: #393939;
}

.lx-idsty__name {
  position: relative;
  z-index: 2;
  width: min(220px, 100%);
  font-size: clamp(18px, 1.56vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.lx-idsty__item.is-on .lx-idsty__name {
  opacity: 1;
}

.lx-idsty__cta {
  position: absolute;
  left: clamp(20px, 2.5vw, 48px);
  bottom: clamp(28px, 3.125vw, 60px);
  z-index: 2;
  font-size: var(--body-fs, 16px);
  line-height: 1.4;
  opacity: 0;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.45s ease;
}

.lx-idsty__item.is-on .lx-idsty__cta {
  opacity: 1;
}

.lx-idsty__img {
  position: absolute;
  top: 50%;
  left: clamp(16px, 2vw, 36px);
  right: auto;
  z-index: 1;
  height: auto;
  max-height: 70%;
  width: auto;
  max-width: calc(100% - clamp(32px, 4vw, 72px));
  margin-top: 0;
  transform: translateY(-50%);
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
  transition: left 0.45s ease, right 0.45s ease, opacity 0.45s ease, max-width 0.45s ease;
  opacity: 0.35;
}

.lx-idsty__item.is-on .lx-idsty__img {
  left: auto;
  right: clamp(20px, 2vw, 40px);
  max-width: 52%;
  opacity: 1;
}

@media (max-width: 1100px) {
  .lx-idsty {
    padding: 32px 0 72px;
    background: #f5f5f5;
  }

  .lx-idsty__list {
    height: auto;
    flex-wrap: wrap;
    gap: 12px;
  }

  .lx-idsty__item,
  .lx-idsty__item.is-on {
    flex: 1 1 calc(50% - 6px);
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
    background: #fff;
    color: #393939;
    padding: 18px 16px 20px;
  }

  .lx-idsty__name {
    order: 1;
    width: 100%;
    opacity: 1;
    margin: 0 0 16px;
    font-size: 16px;
  }

  .lx-idsty__img {
    order: 2;
    position: static;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    margin: 0;
    opacity: 1;
    object-fit: contain;
    object-position: center;
  }

  .lx-idsty__item.is-on .lx-idsty__img {
    left: auto;
    right: auto;
    max-width: 100%;
  }

  .lx-idsty__cta {
    order: 3;
    position: static;
    left: auto;
    bottom: auto;
    opacity: 1;
    margin-top: 16px;
  }
}

@media (max-width: 640px) {
  .lx-idsty__item,
  .lx-idsty__item.is-on {
    flex: 1 1 100%;
    padding: 20px 18px 22px;
  }

  .lx-idsty__name {
    margin-bottom: 18px;
  }

  .lx-idsty__cta {
    margin-top: 18px;
  }
}
