.piyrl54-products {
  --ink: #101820;
  --muted: #475569;
  --panel_bg: rgba(255, 255, 255, .94);
  --card_shadow: 0 18px 42px rgba(31, 41, 55, .1);
  --panel_shadow: 0 18px 38px rgba(15, 23, 42, .12);
  box-sizing: border-box;
  width: 100%;
  padding-top: var(--padding_tb);
  padding-bottom: var(--padding_tb);
  overflow: hidden;
  color: #0f172a;
  background: #f4f7fa;
}

.piyrl54-products,
.piyrl54-products * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.piyrl54-products a {
  color: inherit;
  text-decoration: none;
}

.piyrl54-products__inner {
  width: 100%;
  max-width: var(--custom-content-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--padding_lr);
  padding-right: var(--padding_lr);
}

.piyrl54-products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.piyrl54-products__heading {
  width: min(760px, 100%);
}

.piyrl54-products__eyebrow {
  margin: 0 0 8px;
  color: var(--theme_color);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 800;
  text-transform: uppercase;
}

.piyrl54-products__title {
  margin: 0;
  max-width: 770px;
  color: #111827;
  font-size: clamp(33px, 2.35vw, 42px);
  line-height: 1.15;
  font-weight: 800;
}

.piyrl54-products__inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 135px;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--theme_color);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 14px 28px color-mix(in srgb, var(--theme_color) 16%, transparent);
  transition: transform .28s ease, background .28s ease, box-shadow .28s ease;
}

.piyrl54-products__inquiry:hover,
.piyrl54-products__inquiry:focus-visible {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--theme_color) 82%, #000);
  box-shadow: 0 18px 34px color-mix(in srgb, var(--theme_color) 24%, transparent);
  outline: 0;
}

.piyrl54-products .yiyingbaoicon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-style: normal;
  line-height: 1;
}

.piyrl54-products__rail {
  width: 100%;
}

.piyrl54-products__list {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  height: 460px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.piyrl54-products__item {
  flex: 1 1 0;
  min-width: 0;
  height: 460px;
  transition: flex .5s ease;
}

.piyrl54-products__item.is-active,
.piyrl54-products__item:hover,
.piyrl54-products__item:focus-within,
.piyrl54-products__item[data-active="true"] {
  flex: 1.65 1 0;
}

.piyrl54-products__card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--card_shadow);
  isolation: isolate;
}

.piyrl54-products__image {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 112%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateX(-7%) scale(1.02);
  filter: saturate(1.02) contrast(1.02) brightness(1.02);
  transition: transform .55s ease, filter .55s ease;
}

.piyrl54-products__item.is-active .piyrl54-products__image,
.piyrl54-products__item:hover .piyrl54-products__image,
.piyrl54-products__item:focus-within .piyrl54-products__image,
.piyrl54-products__item[data-active="true"] .piyrl54-products__image {
  transform: translateX(0) scale(1.04);
  filter: saturate(1.08) contrast(1.05) brightness(1.02);
}

.piyrl54-products__copy {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  width: min(280px, calc(100% - 48px));
  min-height: 0;
  padding: 18px 20px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 8px;
  background: var(--panel_bg);
  box-shadow: var(--panel_shadow);
  text-align: left;
  opacity: .92;
  transform: translateX(-16px);
  backdrop-filter: blur(8px);
  transition: opacity .34s ease, transform .4s ease, background .34s ease;
}

.piyrl54-products__item.is-active .piyrl54-products__copy,
.piyrl54-products__item:hover .piyrl54-products__copy,
.piyrl54-products__item:focus-within .piyrl54-products__copy,
.piyrl54-products__item[data-active="true"] .piyrl54-products__copy {
  opacity: 1;
  transform: translateX(0);
  background: rgba(255, 255, 255, .96);
}

.piyrl54-products__name {
  margin: 0;
  color: var(--ink);
  font-size: clamp(19px, 1.25vw, 22px);
  line-height: 1.35;
  font-weight: 800;
}

.piyrl54-products__desc {
  max-height: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  transform: translateX(-12px);
  transition: max-height .34s ease, margin-top .34s ease, opacity .32s ease, transform .36s ease;
}

.piyrl54-products__item.is-active .piyrl54-products__desc,
.piyrl54-products__item:hover .piyrl54-products__desc,
.piyrl54-products__item:focus-within .piyrl54-products__desc,
.piyrl54-products__item[data-active="true"] .piyrl54-products__desc {
  max-height: 5em;
  margin-top: 10px;
  opacity: 1;
  transform: translateX(0);
}

.piyrl54-products__solution {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-height: 0;
  min-width: 136px;
  height: 40px;
  margin-top: 0;
  padding: 0 16px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--theme_color);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  transform: translateX(-12px);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--theme_color) 24%, transparent);
  transition: max-height .34s ease, margin-top .34s ease, opacity .32s ease, transform .36s ease, background-color .28s ease;
}

.piyrl54-products__item.is-active .piyrl54-products__solution,
.piyrl54-products__item:hover .piyrl54-products__solution,
.piyrl54-products__item:focus-within .piyrl54-products__solution,
.piyrl54-products__item[data-active="true"] .piyrl54-products__solution {
  max-height: 40px;
  margin-top: 18px;
  opacity: 1;
  transform: translateX(0);
}

.piyrl54-products__mobileNav {
  display: none;
  margin-top: 18px;
  justify-content: center;
  align-items: center;
  gap: 9px;
}

.piyrl54-products__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, .22);
  cursor: pointer;
  transition: width .22s ease, background .22s ease;
}

.piyrl54-products__dot.is-active,
.piyrl54-products__dot[aria-selected="true"],
.piyrl54-products__dot:hover,
.piyrl54-products__dot:focus-visible {
  width: 24px;
  background: var(--theme_color);
  outline: 0;
}

.rtlAr .piyrl54-products__header {
  direction: rtl;
}

.rtlAr .piyrl54-products__copy {
  right: 24px;
  left: auto;
  align-items: flex-start;
  text-align: right;
  transform: translateX(16px);
}

.rtlAr .piyrl54-products__item.is-active .piyrl54-products__copy,
.rtlAr .piyrl54-products__item:hover .piyrl54-products__copy,
.rtlAr .piyrl54-products__item:focus-within .piyrl54-products__copy,
.rtlAr .piyrl54-products__item[data-active="true"] .piyrl54-products__copy {
  transform: translateX(0);
}

.rtlAr .piyrl54-products__image {
  transform: translateX(7%) scale(1.02);
}

.rtlAr .piyrl54-products__item.is-active .piyrl54-products__image,
.rtlAr .piyrl54-products__item:hover .piyrl54-products__image,
.rtlAr .piyrl54-products__item:focus-within .piyrl54-products__image,
.rtlAr .piyrl54-products__item[data-active="true"] .piyrl54-products__image {
  transform: translateX(0) scale(1.04);
}

.rtlAr .piyrl54-products__desc,
.rtlAr .piyrl54-products__solution {
  transform: translateX(12px);
}

.rtlAr .piyrl54-products__item.is-active .piyrl54-products__desc,
.rtlAr .piyrl54-products__item:hover .piyrl54-products__desc,
.rtlAr .piyrl54-products__item:focus-within .piyrl54-products__desc,
.rtlAr .piyrl54-products__item[data-active="true"] .piyrl54-products__desc,
.rtlAr .piyrl54-products__item.is-active .piyrl54-products__solution,
.rtlAr .piyrl54-products__item:hover .piyrl54-products__solution,
.rtlAr .piyrl54-products__item:focus-within .piyrl54-products__solution,
.rtlAr .piyrl54-products__item[data-active="true"] .piyrl54-products__solution {
  transform: translateX(0);
}

.rtlAr .piyrl54-products__inquiry .yiyingbaoicon,
.rtlAr .piyrl54-products__solution .yiyingbaoicon {
  transform: scaleX(-1);
}

@media (max-width: 980px) {
  .piyrl54-products__header {
    align-items: flex-start;
  }

  .piyrl54-products__title {
    font-size: 30px;
  }

  .piyrl54-products__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
  }

  .piyrl54-products__item,
  .piyrl54-products__item.is-active,
  .piyrl54-products__item:hover,
  .piyrl54-products__item:focus-within,
  .piyrl54-products__item[data-active="true"] {
    flex: none;
    height: 420px;
  }

  .piyrl54-products__card {
    min-height: 420px;
  }

  .piyrl54-products__copy,
  .piyrl54-products__item.is-active .piyrl54-products__copy,
  .piyrl54-products__item:hover .piyrl54-products__copy,
  .piyrl54-products__item:focus-within .piyrl54-products__copy,
  .piyrl54-products__item[data-active="true"] .piyrl54-products__copy,
  .rtlAr .piyrl54-products__copy {
    transform: none;
  }

  .piyrl54-products__desc,
  .piyrl54-products__solution,
  .rtlAr .piyrl54-products__desc,
  .rtlAr .piyrl54-products__solution {
    transform: none;
  }
}

@media (max-width: 767px) {
  .piyrl54-products__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width: 760px) {
  .piyrl54-products__header {
    display: block;
    margin-bottom: 24px;
  }

  .piyrl54-products__title {
    font-size: 28px;
    line-height: 1.18;
  }

  .piyrl54-products__inquiry {
    margin-top: 20px;
  }

  .piyrl54-products__list {
    grid-template-columns: 1fr;
  }

  .piyrl54-products__item {
    display: none;
  }

  .piyrl54-products__item.is-active,
  .piyrl54-products__item[data-active="true"] {
    display: block;
  }

  .piyrl54-products__item,
  .piyrl54-products__item.is-active,
  .piyrl54-products__item:hover,
  .piyrl54-products__item:focus-within,
  .piyrl54-products__item[data-active="true"],
  .piyrl54-products__card {
    min-height: 420px;
    height: 420px;
  }

  .piyrl54-products__copy,
  .rtlAr .piyrl54-products__copy {
    inset: auto 18px 18px;
    width: auto;
    padding: 18px;
  }

  .piyrl54-products__desc {
    max-height: 5em;
    margin-top: 10px;
    opacity: 1;
  }

  .piyrl54-products__solution {
    max-height: 40px;
    margin-top: 18px;
    opacity: 1;
  }

  .piyrl54-products__mobileNav {
    display: flex;
  }
}
