:root {
  --red: #e60012;
  --ink: #333;
  --muted: #687078;
  --surface: #f8fafc;
  --line: #dadde2;
  --content: 1200px;
  --font-english: Arial, sans-serif;
  --font-sans: Arial, "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ui-icon {
  display: inline-block;
  width: var(--ui-icon-size, 1em);
  height: var(--ui-icon-size, 1em);
  flex: 0 0 auto;
  color: inherit;
  fill: currentcolor;
  vertical-align: middle;
}

.content {
  width: min(var(--content), 90vw);
  margin: 0 auto;
}

.lined-title {
  margin: 0 0 32px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.lined-title::after {
  display: block;
  width: 93px;
  height: 3px;
  margin-top: 12px;
  content: "";
  background: var(--red);
}

.site-header {
  position: sticky;
  z-index: 99;
  top: 0;
  height: 70px;
  border-bottom: 1px solid #00000021;
  background: #fff;
}

.header-inner {
  display: flex;
  width: min(var(--content), 90vw);
  height: 100%;
  align-items: center;
  margin: 0 auto;
}

.brand {
  /* display: block; */
  height: 100%;
  padding: 12px 0;
  flex-shrink: 0;
}

.brand img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.menu-toggle {
  display: none;
}

.main-nav {
  display: flex;
  height: 100%;
  align-items: stretch;
  gap: min(3vw, 56px);
  margin: 0 auto 0 min(6vw, 115px);
}

.home-nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.home-nav-item > a {
  color: #333;
  font-size: 16px;
  white-space: nowrap;
}

.home-nav-item > a::after {
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transition: width .3s ease;
}

.home-nav-item > a.is-active {
  color: var(--red);
}

.home-nav-item > a.is-active::after {
  width: 100%;
}

@media (width > 1100px) and (hover: hover) and (pointer: fine) {
.home-nav-item > a:hover {
    color: var(--red);
  }

.home-nav-item > a:hover::after {
    width: 100%;
  }
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  font-size: 16px;
  white-space: nowrap;
}

.global-search {
  display: flex;
  width: 145px;
  height: 30px;
  align-items: center;
  flex: 0 0 145px;
  overflow: hidden;
  border: 1px solid #333;
  border-radius: 15px;
  background: transparent;
}

.global-search input {
  width: 100%;
  padding: 0 4px 0 14px;
  border: 0;
  outline: 0;
  background: transparent;
}

.global-search button {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 12px;
}

.global-search button img {
  width: 18px;
  height: 18px;
}

.language {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 14px;
  color: var(--red);
}

.mobile-language {
  display: none;
}

.stock-ticker {
  display: flex;
  height: 24px;
  line-height: 24px;
  align-items: center;
  gap: 6px;
  color: #333;
}

.stock-ticker-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.stock-code-swiper {
  /* width: 90px; */
  height: 24px;
  /* flex: 0 0 90px; */
  overflow: hidden;
}

.stock-code-swiper .swiper-slide {
  display: flex;
  height: 100%;
  align-items: center;
}

@media (width > 1100px) and (width <= 1200px) {
.main-nav {
    gap: 24px;
    margin-left: 48px;
  }
}

.section-subnav {
  position: absolute;
  z-index: 99;
  top: 100%;
  left: 0;
  display: flex;
  width: max-content;
  height: 70px;
  align-items: center;
  gap: 25px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
  visibility: hidden;
}

.home-nav-item:focus-within > .section-subnav,
.home-nav-item.is-subnav-open > .section-subnav {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.section-subnav a {
  display: flex;
  align-items: center;
  color: #333;
  font-size: 16px;
  text-align: center;
  transition: color .3s ease;
}

@media (width > 1100px) and (hover: hover) and (pointer: fine) {
.home-nav-item:hover > .section-subnav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

.section-subnav a:hover {
    color: var(--red);
  }
}

.section-subnav a::after {
  width: 1px;
  height: 20px;
  margin-left: 25px;
  background: #d9d9d9;
  content: "";
}

.section-subnav a:last-child::after {
  display: none;
}

.section-subnav::before {
  position: fixed;
  z-index: -1;
  top: 70px;
  right: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #fff;
  box-shadow: 0 8px 16px rgb(0 0 0 / 7%);
  content: "";
}

.contact-rail {
  position: fixed;
  z-index: 15;
  right: 18px;
  bottom: 95px;
  display: flex;
  width: 82px;
  flex-direction: column;
  padding: 12px 7px;
  border-radius: 42px;
  background: #fff;
  box-shadow: 0 4px 12px rgb(0 0 0 / 15%);
}

.contact-rail a,
.contact-rail button {
  display: flex;
  min-height: 78px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-bottom: 1px solid #ddd;
  color: var(--red);
  background: transparent;
  font-size: 28px;
}

.contact-rail span {
  color: var(--ink);
  font-size: 13px;
}

.back-top {
  position: fixed;
  z-index: 15;
  right: 24px;
  bottom: 22px;
  display: grid;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgb(0 0 0 / 15%);
  font-size: 40px;
  place-items: center;
}

/* Shared floating contact toolbar for both home-page languages. */
.contact-toolbar {
  position: fixed;
  z-index: 999;
  right: clamp(16px, 2vw, 30px);
  bottom: clamp(24px, 10vh, 96px);
  width: 100px;
}

.contact-toolbar__list {
  padding: 14px 12px;
  margin-bottom: 17px;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 4px 11.6px rgb(0 0 0 / 14%);
}

.contact-toolbar__item {
  position: relative;
  padding: 12px 0 22px;
  border-bottom: 1px solid rgb(0 0 0 / 14%);
}

.contact-toolbar__item:first-child { padding-top: 0; }
.contact-toolbar__item:last-child { border-bottom: 0; }
.contact-toolbar__item-msg { cursor: pointer; }
.contact-toolbar__link { display: block; color: inherit; text-decoration: none; }
.contact-toolbar__icon { display: flex; align-items: center; justify-content: center; }
.contact-toolbar__icon-msg { position: relative; width: 76px; height: 76px; }

.contact-toolbar__icon-msg::before,
.contact-toolbar__icon-msg::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.contact-toolbar__icon-msg::before {
  z-index: 1;
  width: 60px;
  height: 60px;
  background: #f91616;
}

.contact-toolbar__icon-msg::after {
  width: 76px;
  height: 76px;
  background: #ffa4a4;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 25%);
}

.contact-toolbar img {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.contact-toolbar__label { margin-top: 10px; text-align: center; }
.contact-toolbar__label p { margin: 0; color: #333; font-size: 16px; font-weight: 400; line-height: 1.2; text-align: center; }

.contact-toolbar__phone {
  position: absolute;
  top: 50%;
  right: calc(100% + 18px);
  width: max-content;
  padding: 13px 18px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 4px 16px rgb(0 0 0 / 16%);
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
  visibility: hidden;
}

.contact-toolbar__phone::after {
  position: absolute;
  top: 50%;
  left: 100%;
  border: 7px solid transparent;
  border-left-color: #fff;
  content: "";
  transform: translateY(-50%);
}

.contact-toolbar__phone::before {
  position: absolute;
  top: 0;
  left: 100%;
  width: 18px;
  height: 100%;
  content: "";
}

.contact-toolbar__phone a {
  color: #333;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.contact-toolbar__item-tel:hover .contact-toolbar__phone,
.contact-toolbar__item-tel:focus .contact-toolbar__phone,
.contact-toolbar__item-tel:focus-within .contact-toolbar__phone {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
  visibility: visible;
}

.contact-toolbar__back {
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 11.6px rgb(0 0 0 / 14%);
}

.contact-toolbar__back a { display: grid; width: 100%; height: 100%; place-items: center; }

@media (width <= 1100px) {
  .contact-toolbar { right: 16px; bottom: 24px; width: 82px; }
  .contact-toolbar__list { padding: 11px 9px; margin-bottom: 12px; }
  .contact-toolbar__item { padding: 9px 0 15px; }
  .contact-toolbar__icon-msg { width: 64px; height: 64px; }
  .contact-toolbar__icon-msg::before { width: 50px; height: 50px; }
  .contact-toolbar__icon-msg::after { width: 64px; height: 64px; }
  .contact-toolbar img { width: 34px; height: 34px; }
  .contact-toolbar__label { margin-top: 7px; }
  .contact-toolbar__label p { font-size: 14px; }
  .contact-toolbar__back { height: 82px; }
}

@media (width <= 760px) {
  .contact-toolbar { right: 10px; bottom: 12px; width: 64px; }
  .contact-toolbar__list { padding: 8px 7px; margin-bottom: 8px; }
  .contact-toolbar__item { padding: 7px 0 11px; }
  .contact-toolbar__icon-msg { width: 50px; height: 50px; }
  .contact-toolbar__icon-msg::before { width: 40px; height: 40px; }
  .contact-toolbar__icon-msg::after { width: 50px; height: 50px; }
  .contact-toolbar img { width: 28px; height: 28px; }
  .contact-toolbar__label { margin-top: 5px; }
  .contact-toolbar__label p { font-size: 12px; }
  .contact-toolbar__back { height: 64px; }
}

.site-footer {
  border-top: 1px solid var(--red);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 150px 1fr 1fr 1.4fr 120px;
  gap: 60px;
  padding: 70px 0 55px;
}

.footer-logo {
  width: 112px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 16px;
}

.footer-grid div a {
  display: block;
  margin: 4px 0;
}

.footer-grid address {
  font-style: normal;
}

.footer-grid p {
  margin: 3px 0;
}

.site-footer address a,
.copyright a {
  text-decoration: underline;
}

.qr-code {
  width: 120px;
  height: 120px;
}

.copyright {
  padding: 22px 0;
  border-top: 1px solid #eee;
  font-size: 12px;
}

.copyright a,
.copyright p {
  color: #333;
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
}

.copyright__top,
.copyright__bottom {
  width: min(var(--content), 90vw);
  margin: 0 auto;
}

.copyright__bottom {
  display: flex;
  align-items: center;
  gap: 4px;
}

.toast {
  position: fixed;
  z-index: 30;
  bottom: 30px;
  left: 50%;
  padding: 10px 20px;
  border-radius: 4px;
  opacity: 0;
  color: #fff;
  background: #222;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: .25s;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (width <= 1100px) {
.site-header {
    height: 62px;
  }

.brand {
    padding: 11px 0;
  }

.footer-grid {
    gap: 28px;
  }

.menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin-left: 0;
    border-radius: 50%;
    transition: background-color .2s ease, transform .2s ease;
  }

.menu-toggle:active {
    transform: scale(.92);
  }

.menu-toggle span {
    position: absolute;
    left: 8px;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: top .25s ease, opacity .2s ease, transform .25s ease;
  }

.menu-toggle span:nth-child(1) {
    top: 12px;
  }

.menu-toggle span:nth-child(2) {
    top: 19px;
  }

.menu-toggle span:nth-child(3) {
    top: 26px;
  }

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
  }

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(.35);
  }

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
  }

.main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    height: auto;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0 24px;
    overflow: hidden auto;
    opacity: 0;
    background: #fff;
    box-shadow: 0 8px 18px rgb(0 0 0 / 10%);
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height .35s ease, padding .35s ease, opacity .2s ease, transform .25s ease, visibility .25s ease;
    visibility: hidden;
  }

.main-nav.is-open {
    max-height: calc(100vh - 62px);
    padding-top: 10px;
    padding-bottom: 18px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

.home-nav-item {
    display: block;
  }

.home-nav-item > a {
    position: relative;
    display: block;
    padding: 14px 0;
  }

.home-nav-item.has-subnav > a {
    padding-right: 36px;
  }

.home-nav-item.has-subnav > a::before {
    position: absolute;
    top: 50%;
    right: 4px;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentcolor;
    border-bottom: 1.5px solid currentcolor;
    content: "";
    transform: translateY(-70%) rotate(45deg);
    transition: transform .25s ease;
  }

.home-nav-item.has-subnav.is-subnav-open > a::before {
    transform: translateY(-25%) rotate(225deg);
  }

.home-nav-item > a::after {
    bottom: 8px;
  }

.header-tools {
    display: none;
  }

.section-subnav {
    position: static;
    display: grid;
    width: auto;
    height: auto;
    max-height: 0;
    align-items: stretch;
    gap: 0;
    padding: 0 0 0 18px;
    overflow: hidden;
    opacity: 0;
    transition: max-height .3s ease, opacity .2s ease, visibility .2s ease;
    visibility: hidden;
  }

.home-nav-item:not(.is-subnav-open) > .section-subnav {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

.home-nav-item.is-subnav-open > .section-subnav {
    max-height: 360px;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

.section-subnav::before,
.section-subnav a::after {
    display: none;
  }

.section-subnav a {
    display: block;
    padding: 11px 0;
    color: #666;
    font-size: 14px;
    text-align: left;
  }

.mobile-language {
    display: flex;
    min-height: 40px;
    align-items: center;
    gap: 6px;
    margin: 0 10px 0 auto;
    font-size: 14px;
  }
}

@media (width <= 1100px) and (hover: hover) and (pointer: fine) {
.menu-toggle:hover {
    background: #f5f5f5;
  }
}

@media (width <= 900px) {
.footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 22px;
    padding: 48px 0 35px;
  }

.footer-logo {
    grid-column: 1 / -1;
  }

.footer-grid address {
    grid-column: 1 / -1;
  }

.qr-code {
    width: 100px;
    height: 100px;
  }
}

@media (width <= 760px) {
.content {
    width: calc(100vw - 32px);
  }

.lined-title {
    margin-bottom: 24px;
    font-size: 26px;
    line-height: 1.35;
  }

.lined-title::after {
    width: 64px;
    height: 3px;
    margin-top: 9px;
  }

.contact-rail,
.back-top {
    display: none;
  }

.copyright__top a {
    display: block;
  }
}

/* Shared inner-page banner */
.page-banner {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 445px;
  padding: 40px 0;
  box-sizing: border-box;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-banner::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgb(0 0 0 / 64%), rgb(0 0 0 / 22%));
}

.page-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(var(--content), 90vw);
  height: auto;
  min-height: calc(445px - 80px);
  align-items: center;
  margin: 0 auto;
}

.page-banner__content > .content {
  width: 100%;
}

.page-banner__text,
.page-banner__content > .content > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
}

.page-section { padding: 59px 0 69px; }
.content-layout { display: grid; grid-template-columns: 230px 1fr; gap: 45px; }

.page-subnav {
  display: flex;
  min-height: 56px;
  justify-content: center;
  gap: 55px;
  border-bottom: 1px solid #eee;
}

.page-subnav a { padding: 16px 5px 12px; }

.page-subnav a.is-active {
  color: var(--red);
  border-bottom: 2px solid var(--red);
}

/* Shared inner-page sidebar, based on the services navigation. */
.page-sidebar {
  min-width: 250px;
  align-self: start;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  list-style: none;
}

.page-sidebar > a,
.page-sidebar > li > a {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 16px;
  gap: 12px;
  align-items: center;
  /* min-height: 56px; */
  padding: 16px;
  border-bottom: 1px solid #f3f4f6;
  color: #333;
  transition: color .2s ease, background-color .2s ease;
}

.page-sidebar > :last-child,
.page-sidebar > li:last-child > a { border-bottom: 0; }

.page-sidebar > a::before {
  width: 20px;
  height: 18px;
  background: currentcolor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='14' viewBox='0 0 16 14'%3E%3Cpath d='M5 0C4.448 0 4 .448 4 1s.448 1 1 1h6a1 1 0 1 0 0-2H5ZM2 4a1 1 0 0 1 1-1h10a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1ZM0 8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V8Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='14' viewBox='0 0 16 14'%3E%3Cpath d='M5 0C4.448 0 4 .448 4 1s.448 1 1 1h6a1 1 0 1 0 0-2H5ZM2 4a1 1 0 0 1 1-1h10a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1ZM0 8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V8Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.page-sidebar--icons > a::before { display: none; }

.page-sidebar__icon-wrap {
  display: flex;
  width: 20px;
  height: 18px;
  align-items: center;
  justify-content: center;
}

.page-sidebar__icon {
  width: 20px;
  height: 18px;
  object-fit: contain;
}

.page-sidebar__icon--active { display: none; }

.page-sidebar--icons > a.is-active .page-sidebar__icon--default { display: none; }
.page-sidebar--icons > a.is-active .page-sidebar__icon--active { display: block; }

.page-sidebar > a::after,
.page-sidebar .solutions__category-arrow {
  width: 7px;
  height: 7px;
  justify-self: end;
  border-top: 1px solid currentcolor;
  border-right: 1px solid currentcolor;
  content: "";
  transform: rotate(45deg);
}

.page-sidebar > a:hover,
.page-sidebar > a:focus-visible,
.page-sidebar > li > a:hover,
.page-sidebar > li > a:focus-visible { color: var(--red); }

.page-sidebar > a.is-active,
.page-sidebar > li.is-active > a,
.page-sidebar > li.solutions__category-item--active > a {
  color: #fff;
  background: var(--red);
}

.solutions__category-icon { display: flex; width: 20px; height: 20px; align-items: center; justify-content: center; }
.solutions__category-text { color: inherit; font-size: 16px; line-height: 1.5; }

.resource-list {
  min-width: 0;
}

.resource-row {
  position: relative;
  display: flex;
  gap: 33px;
  /* align-items: flex-start; */
  align-items: center;
  /* min-height: 127px; */
  padding-bottom: 28px;
}

.resource-row + .resource-row {
  margin-top: 28px;
}

.resource-row::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #e6e6e6;
  content: "";
}

.resource-row__media {
  /* flex: 0 0 230px; */
  /* overflow: hidden; */
  /* width: 230px; */
  height: 110px;
  border-radius: 5px;
  background: #f4f4f4;
}

.resource-row__media img{
  height: 100%;
}

.resource-row__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.resource-row:hover .resource-row__image,
.resource-row:focus-within .resource-row__image {
  transform: scale(1.04);
}

.resource-row__body {
  display: flex;
  /* flex: 1 1 auto; */
  flex: 1;
  flex-direction: column;
  min-width: 0;
  /* min-height: 127px; */
}

.resource-row__header {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  min-width: 0;
}

.resource-row__title {
  min-width: 0;
  margin: 0;
  color: #0f0f11;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  word-break: break-word;
  transition: color 0.25s ease;
}

.resource-row:hover .resource-row__title,
.resource-row:focus-within .resource-row__title {
  color: var(--red);
}

.resource-row__date {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  white-space: nowrap;
  text-align: right;
}

.resource-row__description p {
  display: -webkit-box;
  overflow: hidden;
  margin: 10px 0 0;
  color: #73737a;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.resource-row__action {
  margin-top: auto;
  padding-top: 12px;
}

.resource-row__download {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0 10px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  color: #73737a;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border: 0;
  background: #f1f1f1;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.resource-row__download span,
.resource-row__download svg {
  position: relative;
  z-index: 1;
}

.resource-row__download svg {
  flex: none;
}

.resource-row__download::after {
  position: absolute;
  bottom: 5px;
  left: 10px;
  width: 0;
  height: 1px;
  background: #fff;
  content: "";
  transition: width 0.4s ease;
}

.resource-row:hover .resource-row__download,
.resource-row:focus-within .resource-row__download {
  color: #fff;
  background: var(--red);
}

.resource-row:hover .resource-row__download::after,
.resource-row:focus-within .resource-row__download::after {
  width: calc(100% - 20px);
}

.resource-row__download:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.accordion { margin: 45px 0; }

.accordion h2 { font-size: 30px; }

.accordion article { border-bottom: 1px solid #eee; }

.accordion button {
  width: 100%;
  padding: 15px 8px;
  text-align: left;
  font-size: 17px;
}

.accordion p {
  display: none;
  padding: 0 14px 18px;
}

.accordion article.is-open p { display: block; }

.resource-download-modal {
  position: fixed;
  inset: 0;
  width: min(935px, calc(100vw - 40px));
  height: fit-content;
  max-height: calc(100vh - 40px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 10px;
  overflow: auto;
  color: #333;
  background: #fff;
}

.resource-download-modal::backdrop {
  background: rgb(0 0 0 / 40%);
}

.resource-download-modal__inner {
  position: relative;
  padding: 50px;
}

.resource-download-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  place-items: center;
  color: #73737a;
  background: #f4f4f4;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.resource-download-modal__close::before,
.resource-download-modal__close::after {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentcolor;
  content: "";
}

.resource-download-modal__close::before {
  transform: rotate(45deg);
}

.resource-download-modal__close::after {
  transform: rotate(-45deg);
}

.resource-download-modal__close:hover,
.resource-download-modal__close:focus-visible {
  color: #fff;
  background: var(--red, #e60012);
}

.resource-download-modal__close:active {
  transform: scale(0.94);
}

.resource-download-modal__title {
  margin: 0 50px 10px 0;
  color: #333;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
}

.resource-download-modal__intro {
  margin: 10px 50px 25px 0;
  color: #333;
  font-size: 18px;
  line-height: 1.6;
}

.resource-download-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0;
}

.resource-download-form__field {
  display: flex;
  width: 49%;
  min-height: 58px;
  align-items: center;
  margin-bottom: 15px;
  padding: 12px 22px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.resource-download-form__field:focus-within {
  border-color: var(--red, #e60012);
  box-shadow: 0 0 0 3px rgb(230 0 18 / 9%);
}

.resource-download-form__field--wide {
  width: 100%;
}

.message-form .resource-download-form__field {
  width: 100%;
}

.resource-download-form__label {
  position: relative;
  /* flex: 0 0 64px; */
  /* width: 64px; */
  color: #333;
  font-size: 16px;
  line-height: 1.5;
}

.resource-download-form__label.is-required::after {
  position: absolute;
  top: 0;
  right: -10px;
  margin-left: 3px;
  color: var(--red, #e60012);
  content: "*";
  font-size: 16px;
  line-height: 1;
}

.resource-download-form input,
.resource-download-form textarea {
  width: calc(100% - 64px);
  min-width: 0;
  padding: 5px 15px;
  border: 0;
  outline: 0;
  color: #333;
  background: transparent;
  font-size: 16px;
  line-height: 1.5;
}

.resource-download-form textarea {
  min-height: 110px;
  resize: vertical;
}

.resource-download-form__field--textarea {
  align-items: flex-start;
}

.resource-download-form__field--textarea .resource-download-form__label {
  /* flex-basis: 80px;
  width: 80px; */
  padding-top: 5px;
}

.resource-download-form__field--textarea textarea {
  width: calc(100% - 80px);
}

.resource-download-form__actions {
  width: 100%;
  text-align: right;
}

.resource-download-form__submit:disabled,
[data-resource-action].is-loading {
  cursor: wait;
  opacity: 0.65;
  pointer-events: none;
}

.resource-download-form__submit {
  width: 128px;
  height: 46px;
  border: 1px solid var(--red, #e60012);
  border-radius: 8px;
  color: #fff;
  background: var(--red, #e60012);
  font-size: 16px;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.resource-download-form__submit:hover,
.resource-download-form__submit:focus-visible {
  background: #c90010;
}

.resource-download-form__submit:active {
  transform: translateY(1px);
}

.message-success-modal {
  position: fixed;
  inset: 0;
  width: min(430px, calc(100vw - 32px));
  height: fit-content;
  max-height: calc(100vh - 32px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 12px;
  overflow: auto;
  background: #fff;
  box-shadow: 0 24px 70px rgb(0 0 0 / 22%);
}

.message-success-modal::backdrop {
  background: rgb(0 0 0 / 55%);
}

.message-success-modal__inner {
  padding: 42px 32px 34px;
  text-align: center;
}

.message-success-modal__icon {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #27ae60;
}

.message-success-modal__icon::after {
  position: absolute;
  top: 17px;
  left: 15px;
  width: 30px;
  height: 16px;
  border-bottom: 4px solid #fff;
  border-left: 4px solid #fff;
  content: "";
  transform: rotate(-45deg);
}

.message-success-modal__title {
  margin: 0 0 12px;
  color: #333;
  font-size: 26px;
  line-height: 1.35;
}

.message-success-modal__text {
  margin: 0 0 26px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.message-success-modal__button {
  min-width: 128px;
  height: 44px;
  padding: 0 28px;
  border: 1px solid var(--red, #e60012);
  border-radius: 8px;
  color: #fff;
  background: var(--red, #e60012);
  font-size: 16px;
  cursor: pointer;
}

.message-success-modal__button:hover,
.message-success-modal__button:focus-visible {
  background: #c90010;
}

@media (width <= 760px) {
  .page-banner {
    min-height: 320px;
  }
  .page-banner__content {
    min-height: calc(320px - 80px);
  }
  .page-banner__text,
  .page-banner__content > .content > p { font-size: 24px !important; }
  .page-section { padding: 45px 0; }
  .content-layout { grid-template-columns: 1fr; gap: 28px; }
  .page-sidebar { display: grid; min-width: 0; grid-template-columns: minmax(0, 1fr); }
  .page-subnav { justify-content: flex-start; gap: 24px; padding-inline: 16px; overflow-x: auto; }
  .page-subnav a { flex: 0 0 auto; }
}

@media (max-width: 640px) {
  .resource-download-modal {
    width: calc(100vw - 32px);
  }

  .resource-download-modal__inner {
    padding: 24px 20px 28px;
  }

  .resource-download-modal__close {
    top: 18px;
    right: 18px;
  }

  .resource-download-modal__title {
    margin-right: 48px;
    font-size: 24px;
  }

  .resource-download-modal__intro {
    margin-right: 0;
    font-size: 15px;
  }

  .resource-download-form__field {
    width: 100%;
    padding: 11px 14px;
  }

  .resource-download-form__submit {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .resource-row {
    gap: 24px;
  }

  .resource-row__media {
    flex-basis: 200px;
    width: 200px;
    height: 113px;
  }

  .resource-row__body {
    min-height: 113px;
  }
}

@media (max-width: 760px) {
  .resource-row {
    display: block;
  }

  .resource-row__media {
    display: none;
  }
}

@media (max-width: 640px) {
  .resource-row {
    padding-bottom: 24px;
  }

  .resource-row__body {
    width: 100%;
    min-height: 0;
  }

  .resource-row__header {
    display: block;
  }

  .resource-row__date {
    display: block;
    margin-top: 14px;
    text-align: left;
  }

  .resource-row__action {
    padding-top: 14px;
  }

  .resource-row__download {
    height: 44px;
  }
}

html.site-grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.solutions__details::after{
  content: "";
  display: block;
  clear: both;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin: 0;
  padding: 16px 0;
  list-style: none;
}

.pagination > li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination > li > a,
.pagination > li > span {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;
  padding: 0;
  box-sizing: border-box;

  color: #102235;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;

  border: 0;
  border-radius: 50%;
  background: transparent;

  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

/* 当前页 */
.pagination > li.active > span {
  color: #fff;
  font-weight: 500;
  background-color: #e5091b;
}

/* 普通页码悬停 */
.pagination > li:not(.active):not(.disabled) > a:hover {
  color: #e5091b;
  background-color: #f5f5f5;
}

/* 禁用状态 */
.pagination > li.disabled > span {
  color: #102235;
  cursor: default;
}

/* 键盘聚焦 */
.pagination > li > a:focus-visible {
  outline: 2px solid rgba(229, 9, 27, 0.35);
  outline-offset: 2px;
}
