/* Main7.31.xd visual polish layer. Loaded after redesign.css by redesign.js. */
:root {
  --bg: #f4f2f1;
  --red: #e6001e;
  --blue: #23558e;
  --text: #050505;
  --line: #d8d5d2;
  --w: 1440px;
  --content: 1200px;
  --header-logo-shift: 46px;
  --header-nav-shift: 18px;
  --footer-logo-shift: calc(max(48px, calc((100vw - 1800px) / 2)) + var(--header-logo-shift) - max(48px, calc((100vw - 1440px) / 2)));
}

body {
  background: var(--bg);
  color: var(--text);
  font-family:  "Microsoft YaHei", Arial, "PingFang SC", sans-serif;
  font-size: 15px;
  line-height: 1.78;
  letter-spacing: 0;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 50px;
  z-index: 20;
  transform: translateY(0);
  transition: transform .42s cubic-bezier(.55, 0, .1, 1);
  will-change: transform;
}

.site-header.nav-scroll-hidden {
  transform: translateY(calc(-100% - 16px));
  pointer-events: none;
}

.site-header.nav-scroll-visible {
  transform: translateY(0);
}

.mega-backdrop {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: none;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, .55);
  cursor: default;
}

.mega-backdrop.show {
  display: block;
}

.nav-shell {
  width: calc(100% - 96px);
  height: 80px;
  padding: 0 64px 0 0;
  border-radius: 8px;
  box-shadow: none;
}

.brand {
  margin-left: var(--header-logo-shift);
}

.brand img {
  width: 90px;
}

.main-nav {
  position: relative;
  gap: 38px;
  font-size: 15px;
  line-height: 1;
  transform: translateX(var(--header-nav-shift));
}

.main-nav>a {
  padding: 12px 0;
}

.main-nav a:not(.pill)::after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  height: 3px;
  width: 0;
  bottom: 2px;
  background: var(--red);
  /*transition: width .3s ease;*/
}

.main-nav a.active:not(.pill)::after,
.main-nav > a:nth-of-type(-n+5):hover::after,
.main-nav a.open_now:not(.pill)::after,
.main-nav a[aria-expanded="true"]:not(.pill)::after {
  width: 100%;
}

.main-nav .pill {
  min-width: 74px;
  padding: 11px 20px;
  border-radius: 24px;
  text-align: center;
}

.main-nav .language-option {
  position: relative;
  z-index: 2;
  min-width: 74px;
  padding: 11px 20px;
  border-radius: 24px;
  text-align: center;
  transition: color .18s ease;
}

.main-nav .language-slider {
  position: absolute;
  z-index: 1;
  width: var(--language-slider-width, 74px);
  height: var(--language-slider-height, 37px);
  left: 0;
  top: 0;
  border-radius: 999px;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transform: translate(var(--language-slider-x, 0), var(--language-slider-y, 0));
  transition: none;
}

.main-nav.language-slider-ready .language-slider {
  transition: transform .34s cubic-bezier(.55, 0, .1, 1), width .34s cubic-bezier(.55, 0, .1, 1), height .34s cubic-bezier(.55, 0, .1, 1), opacity .18s ease;
}

.main-nav.has-language-slider .language-slider {
  opacity: 1;
}

.main-nav:has(a:nth-of-type(6):hover) {
  --language-slider-x: var(--language-slider-0-x);
  --language-slider-y: var(--language-slider-0-y);
  --language-slider-width: var(--language-slider-0-width);
  --language-slider-height: var(--language-slider-0-height);
}

.main-nav:has(a:nth-of-type(7):hover) {
  --language-slider-x: var(--language-slider-1-x);
  --language-slider-y: var(--language-slider-1-y);
  --language-slider-width: var(--language-slider-1-width);
  --language-slider-height: var(--language-slider-1-height);
}

.main-nav:has(a:nth-of-type(8):hover) {
  --language-slider-x: var(--language-slider-2-x);
  --language-slider-y: var(--language-slider-2-y);
  --language-slider-width: var(--language-slider-2-width);
  --language-slider-height: var(--language-slider-2-height);
}

.main-nav a:nth-of-type(6) {
  margin-left: 16px;
}

.main-nav a:nth-of-type(7),
.main-nav a:nth-of-type(8) {
  margin-left: -18px;
}

.main-nav .language-option.active {
  background: #000;
  color: #fff;
}

.main-nav.has-language-slider .language-option,
.main-nav.has-language-slider .language-option:hover {
  background: transparent;
}

.main-nav.has-language-slider .language-option:not(.is-language-active) {
  color: #050505;
}

.main-nav.has-language-slider .language-option.is-language-active {
  color: #fff;
}

.main-nav:has(a:nth-of-type(6):hover) a:nth-of-type(6),
.main-nav:has(a:nth-of-type(7):hover) a:nth-of-type(7),
.main-nav:has(a:nth-of-type(8):hover) a:nth-of-type(8) {
  color: #fff;
}

.main-nav .group-option {
  position: relative;
}

.main-nav .group-option-menu {
  position: absolute;
  top: calc(100% + 44px);
  left: 50%;
  z-index: 45;
  width: 260px;
  padding: 12px 14px;
  display: grid;
  gap: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
  color: #050505;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity .2s ease, transform .2s ease;
}

.main-nav:not(.group-menu-ready) .group-option-menu {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate(-50%, -8px) !important;
  transition: none;
}

.main-nav .group-option-menu a {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  padding: 5px 0;
}

.main-nav .group-option-menu a:hover {
  text-decoration: underline;
}

.main-nav .group-option::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 44px;
}

.main-nav.group-menu-ready .group-option:hover .group-option-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.main-nav .group-option:hover .group-option-menu,
.main-nav .group-option.is-language-active .group-option-menu,
.main-nav .group-option-menu:hover {
  color: #050505;
}

.mega-menu {
  top: 152px;
  width: min(1160px, calc(100% - 140px));
  min-height: 132px;
  padding: 34px 50px;
  gap: 36px;
  border-radius: 6px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, .14);
  transform-origin: top center;
  will-change: transform, opacity;
}

.mega-menu-img-link {
  display: block;
  flex: 0 0 auto;
  cursor: pointer;
  line-height: 0;
}

.mega-menu-img-link img {
  display: block;
}

.mega-menu.show {
  animation: megaDropDown .5s ease both;
}

.mega-menu.is-closing {
  pointer-events: none;
  animation: megaFoldUp .5s ease both;
}

@keyframes megaDropDown {
  from {
    opacity: 0;
    transform: translate(-50%, -1000px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes megaFoldUp {
  from {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  to {
    opacity: 0;
    transform: translate(-50%, -1000px);
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  :root {
    --header-logo-shift: 30px;
    --header-nav-shift: 0px;
  }

  .nav-shell {
    padding-right: 30px;
  }

  .brand img {
    width: 86px;
  }

  .main-nav {
    gap: 18px;
    font-size: 13px;
  }

  .main-nav .pill,
  .main-nav .language-option {
    min-width: 58px;
    padding: 9px 12px;
  }

  .main-nav a:nth-of-type(6) {
    margin-left: 8px;
  }

  .main-nav a:nth-of-type(7),
  .main-nav a:nth-of-type(8) {
    margin-left: -8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mega-menu.show,
  .mega-menu.is-closing {
    animation: none;
  }
}

.mega-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mega-close::before,
.mega-close::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 13px;
  width: 16px;
  height: 2px;
  background: #050505;
  border-radius: 999px;
}

.mega-close::before {
  transform: rotate(45deg);
}

.mega-close::after {
  transform: rotate(-45deg);
}

.mega-close:hover::before,
.mega-close:hover::after {
  background: var(--red);
}

.about-panel {
  min-height: 186px;
  padding: 22px 30px 30px;
  display: none;
  grid-template-columns: 1fr 186px;
  grid-template-rows: auto 1fr;
  gap: 18px 44px;
  align-items: start;
  background: rgba(255, 255, 255, .94);
  overflow: hidden;
}

.about-panel.show {
  display: grid;
}

.about-panel.is-closing {
  display: grid;
}

/*.about-panel::before {*/
/*  content: "OPTORUN";*/
/*  position: absolute;*/
/*  left: 34px;*/
/*  bottom: -18px;*/
/*  z-index: -1;*/
/*  color: rgba(31, 74, 130, .035);*/
/*  font-size: 140px;*/
/*  font-weight: 900;*/
/*  line-height: .8;*/
/*  letter-spacing: 0;*/
/*  pointer-events: none;*/
/*}*/

.about-panel h2 {
  grid-column: 1;
  margin: 0;
  color: #050505;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.about-panel-links {
  grid-column: 1;
  display: grid;
  grid-template-columns: 220px 220px 160px;
  gap: 18px 34px;
  align-content: start;
}

.about-panel-links a {
  min-height: 40px;
  margin: 0;
  padding: 10px 18px;
  color: #050505;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.about-panel-links a:hover {
  background: #e5e5e5;
  color: var(--blue);
  text-decoration: none;
}

.about-panel img {
  position: absolute;
  top: 50%;
  right: 72px;
  width: 186px;
  height: 125px;
  margin: 0;
  object-fit: cover;
  transform: translateY(-50%);
}

.product-panel {
  min-height: 186px;
  padding: 22px 30px 30px;
  display: none;
  grid-template-columns: 1fr 186px;
  grid-template-rows: auto 1fr;
  gap: 18px 44px;
  align-items: start;
  background: rgba(255, 255, 255, .94);
  overflow: hidden;
}

.product-panel.show {
  display: grid;
}

.product-panel.is-closing {
  display: grid;
}

/*.product-panel::before {*/
/*  content: "OPTORUN";*/
/*  position: absolute;*/
/*  left: 34px;*/
/*  bottom: -18px;*/
/*  z-index: -1;*/
/*  color: rgba(31, 74, 130, .035);*/
/*  font-size: 140px;*/
/*  font-weight: 900;*/
/*  line-height: .8;*/
/*  letter-spacing: 0;*/
/*  pointer-events: none;*/
/*}*/

.product-panel h2 {
  grid-column: 1;
  margin: 0;
  color: #050505;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.product-panel-links {
  grid-column: 1;
  display: grid;
  grid-template-columns: 220px 260px 180px;
  gap: 18px 34px;
  align-content: start;
}

.product-panel-links a {
  min-height: 40px;
  margin: 0;
  padding: 10px 18px;
  color: #050505;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.product-panel-links a:hover {
  background: #e5e5e5;
  color: var(--blue);
  text-decoration: none;
}

.product-panel img {
  position: absolute;
  top: 50%;
  right: 72px;
  width: 186px;
  height: 125px;
  margin: 0;
  object-fit: contain;
  transform: translateY(-50%);
}

.hero {
  position: relative;
  margin-top: 0;
  padding-top: 0;
  background: var(--red);
  overflow: visible;
}

.hero-top-spacer {
  height: 130px;
  background: #db0e1d;
}

.hero-slogan {
  position: absolute;
  left: 72.6%;
  top: 66.5%;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.hero-slogan strong,
.hero-slogan em {
  display: inline-block;
  justify-self: start;
  font-style: normal;
  line-height: 1.18;
}

.hero-slogan strong {
  padding: 10px 18px 12px;
  background: #050505;
  color: #fff;
  font-size: clamp(32px, 3.05vw, 58px);
  font-weight: 900;
}

.hero-slogan em {
  padding: 8px 15px;
  background: #fff;
  color: #050505;
  font-size: clamp(13px, .92vw, 18px);
  font-weight: 900;
}

.hero > img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.hero-nav {
  display: none;
}

.section-pad {
  width: min(var(--content), calc(100% - 96px));
  padding: 92px 0;
}

.intro.section-pad {
  width: 100%;
  padding-right: max(48px, calc((100vw - var(--content)) / 2));
  padding-left: max(48px, calc((100vw - var(--content)) / 2));
  padding-top: 97px;
  padding-bottom: 180px;
  margin-top: -5px;
  background: url("/themes/default/public/assets/cn/images/design/1首页/首页光波上部@2x.png") center bottom / contain no-repeat;
}

.intro {
  min-height: clamp(720px, 56vw, 880px);
  grid-template-columns: .86fr 1.14fr;
  gap: 70px;
}

.intro h1 {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 0;
  background: transparent;
  color: #fff;
  font-size: 34px;
  line-height: 1.24;
  font-weight: 900;
}

.intro-title-line {
  display: inline-block;
  padding: 7px 12px 9px;
  background: #050505;
}

.intro p {
  max-width: 560px;
  margin-top: 58px;
  color: #222;
  font-size: 14px;
}

.intro-copy-line {
  display: block;
  width: calc(100% + 80px);
}

.intro-copy-line + .intro-copy-line {
  margin-top: 12px;
}

.intro img {
  width: 100%;
  transform: translateX(24px);
  margin-top: -115px;
}

.wide-image {
  width: min(var(--content), calc(100% - 96px));
  margin: 0 auto;
  display: none;
}

.wide-image img {
  height: auto;
  max-height: none;
  object-fit: contain;
}

.home-video {
  width: calc(100% - (max(48px, calc((100vw - var(--content)) / 2)) * 2));
  margin: -108px auto 0;
  overflow: hidden;
}

.home-video video {
  display: block;
  width: 100%;
  aspect-ratio: 1.92;
  background: transparent;
  cursor: pointer;
  object-fit: cover;
  transform: scale(1.015);
  transform-origin: center;
}

.home-products {
  margin-top: 110px;
  padding: 78px 0 96px;
  background-color: #06111d;
}

.section-title {
  width: min(1020px, calc(100% - 96px));
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .26);
}

.section-title h2 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.2;
}

.section-title a,
.blue-button {
  min-height: 34px;
  padding: 10px 22px;
  background: var(--blue);
  font-size: 14px;
  line-height: 1.2;
}

.section-title a:hover,
.blue-button:hover {
  background: #050505;
}

.home-products .section-title a {
  position: relative;
  width: 126px;
  height: 34px;
  margin-bottom: 18px;
  padding: 0 34px 0 18px;
  align-self: end;
  justify-content: flex-start;
  background-color: #fff;
  background-image: linear-gradient(#1f4a82, #1f4a82);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0 100%;
  color: #1f4a82;
  overflow: hidden;
  transition: background-size .3s ease;
}

.home-products .section-title a::first-letter {
  letter-spacing: 0;
}

.home-products .section-title a {
  font-size: 0;
}

.home-products .section-title a::before {
  content: "更多产品";
  font-size: 14px;
}

.home-products .section-title a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 19.414px;
  height: 12.823px;
  transform: translateY(-50%);
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.414' height='12.823' viewBox='0 0 19.414 12.823'%3E%3Cg transform='translate(-1722.261 -3092.567)'%3E%3Cline x2='17' transform='translate(1723.261 3098.976)' fill='none' stroke='%23000' stroke-linecap='round' stroke-width='2'/%3E%3Cline x2='6' y2='5' transform='translate(1734.261 3093.976)' fill='none' stroke='%23000' stroke-linecap='round' stroke-width='2'/%3E%3Cline y1='5' x2='5' transform='translate(1735.261 3098.976)' fill='none' stroke='%23000' stroke-linecap='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.414' height='12.823' viewBox='0 0 19.414 12.823'%3E%3Cg transform='translate(-1722.261 -3092.567)'%3E%3Cline x2='17' transform='translate(1723.261 3098.976)' fill='none' stroke='%23000' stroke-linecap='round' stroke-width='2'/%3E%3Cline x2='6' y2='5' transform='translate(1734.261 3093.976)' fill='none' stroke='%23000' stroke-linecap='round' stroke-width='2'/%3E%3Cline y1='5' x2='5' transform='translate(1735.261 3098.976)' fill='none' stroke='%23000' stroke-linecap='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.home-products .section-title a:hover {
  background-color: #fff;
  background-image: linear-gradient(#1f4a82, #1f4a82);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #fff;
}

.home-product-grid {
  width: min(1020px, calc(100% - 96px));
  gap: 24px 34px;
}

.product-card {
  padding: 0;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .13);
}

.home-products .product-card:hover {
  transform: none;
}

.product-img {
  height: 225px;
  background: #fff;
}

main.home-page .product-img {
  background: var(--bg);
}

.product-info {
  min-height: 62px;
  padding: 11px 54px 12px 18px;
}

.product-info strong {
  font-size: 24px;
  letter-spacing: 0;
}

.product-info em {
  font-size: 14px;
  line-height: 1.25;
}

.product-info b {
  right: 0;
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-size: 0;
}

.product-info b::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("/themes/default/public/assets/cn/images/design/通用切图/向右箭头蓝色@3x.png") center/contain no-repeat;
  filter: brightness(0) invert(1);
}

.story-news {
  width: min(1020px, calc(100% - 96px));
  gap: 110px;
  padding-top: 98px;
  padding-bottom: 46px;
}

.story-copy h2,
.topics h2 {
  margin: 0 0 34px;
  font-size: 34px;
  font-weight: 900;
}

.story-copy h2 span,
.topics h2 span {
  display: block;
  margin-top: 6px;
  font-size: 24px;
  font-weight: 800;
}

.story-copy p {
  max-width: 480px;
  margin: 0;
  font-size: 14px;
}

.story-copy p + p {
  margin-top: 18px;
}

.story-copy p:last-of-type {
  margin-bottom: 34px;
}

.story-copy .story-button {
  width: 158px;
  box-sizing: border-box;
  padding: 6px 15px;
  justify-content: space-between;
  gap: 8px;
  white-space: nowrap;
}

.story-copy .story-button::after,
.topics > div:first-child .topic-button::after {
  content: "";
  width: 19.414px;
  height: 12.823px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.414' height='12.823' viewBox='0 0 19.414 12.823'%3E%3Cg transform='translate(-1722.261 -3092.567)'%3E%3Cline x2='17' transform='translate(1723.261 3098.976)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='2'/%3E%3Cline x2='6' y2='5' transform='translate(1734.261 3093.976)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='2'/%3E%3Cline y1='5' x2='5' transform='translate(1735.261 3098.976)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
  flex: 0 0 auto;
}

.story-photo {
  height: auto;
  object-fit: contain;
}

.topics {
  position: relative;
  width: min(1020px, calc(100% - 96px));
  grid-template-columns: 240px 1fr;
  gap: 96px;
  padding-top: 34px;
  /*padding-bottom: clamp(260px, 34.21875vw, 657px);*/
}

.topics::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: -1;
  width: 100vw;
  height: clamp(260px, 34.21875vw, 657px);
  transform: translateX(-50%);
  background: url("/themes/default/public/assets/cn/images/design/1首页/首页光波底部@2x.png") center bottom/100% auto no-repeat;
  opacity: .92;
  pointer-events: none;
}

.topics > div:first-child .blue-button {
  display: flex;
  width: 158px;
  box-sizing: border-box;
  padding: 6px 15px;
  justify-content: space-between;
  white-space: nowrap;
}

.topics > div:first-child .topic-button + .topic-button {
  display: flex;
  margin-top: 18px;
}

.topic-list a {
  min-height: 126px;
  grid-template-columns: minmax(0, 1fr) 160px;
  grid-template-rows: auto 1fr;
  gap: 4px 48px;
  align-items: start;
  padding: 26px 0 24px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.65;
}

.topic-list a:first-child {
  padding-top: 0;
}

.topic-list span {
  grid-column: 1;
  grid-row: 1;
  font-size: 12px;
  font-weight: 700;
}

.topic-list .topic-title {
  grid-column: 1;
  grid-row: 2;
  max-width: 560px;
  color: #050505;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.65;
}

.topic-list a:hover .topic-title {
  text-decoration: underline;
  text-decoration-color: #050505;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.topic-list b {
  margin-left: 8px;
  padding: 2px 5px;
  border: 1px solid #df3142;
  color: #df3142;
  font-size: 12px;
  font-weight: 400;
}

.topic-list b.is-product-tag {
  border-color: #1f4a82;
  color: #1f4a82;
}

.topic-list img {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 160px;
  height: 92px;
  align-self: start;
  object-fit: cover;
}

.topic-list a:not(:has(img)) {
  grid-template-columns: 1fr;
}

.page-lead {
  width: min(1080px, calc(100% - 372px));
  margin: 166px auto 58px;
}

.page-lead p {
  margin-bottom: 20px;
  font-size: 23px;
}

.page-lead h1 {
  font-size: 46px;
}

.product-detail-page > .page-lead {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.product-detail-page {
  width: min(1080px, calc(100% - 372px));
}

.overview,
.about-columns,
.product-tabs,
.filters,
.product-section,
.field-grid,
.cert-grid,
.detail-layout,
.jobs,
.news-filter,
.news-list-page,
.pager,
.tech-content,
.content-card,
.news-article {
  width: min(1080px, calc(100% - 372px));
}

.contact-buttons,
.contact-card {
  width: min(var(--content), calc(100% - 96px));
}

.locations-page .page-lead {
  margin-bottom: 44px;
}

.locations-map {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 887;
  min-height: 0;
  margin: 0 0 120px;
  background: none;
  overflow: hidden;
}

.locations-map img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1920 / 887;
  /*object-fit: contain;*/
  opacity: 1;
}

.our-story-page .story-network .story-network-map {
  width: 100%;
  margin: 0;
}

.our-story-page .story-network .story-network-map img {
  width: 100%;
  max-width: none;
  height: 100%;
  aspect-ratio: 1920 / 887;
  /*object-fit: contain;*/
  transform: none;
}

.locations-map-label {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: .22em;
  padding: .18em .36em;
  /*background: rgba(247, 248, 246, .94);*/
  color: #050505;
  font-size: clamp(7px, 1.04vw, 20px);
  font-weight: 800;
  line-height: 1.32;
  white-space: nowrap;
  pointer-events: auto;
  cursor: pointer;
  text-decoration: none;
}

.locations-map-label:visited {
  color: #050505;
}

.locations-map-label:hover strong,
.locations-map-label:focus-visible strong {
  text-decoration: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
  color: #DB011E;
}

.locations-map-label:focus-visible {
  outline: 2px solid #e50012;
  outline-offset: 2px;
}

.locations-map-label strong {
  display: block;
  font-size: 1em;
  font-weight: 900;
}

.locations-map-label span {
  display: flex;
  align-items: center;
  gap: .45em;
}

.map-dot {
  width: .68em;
  height: .68em;
  border-radius: 50%;
  flex: 0 0 auto;
}

.map-dot-produce {
  background: #ff9d22;
}

.map-dot-rd {
  background: #126ee8;
}

.map-dot-cs {
  background: #7d2df0;
}

.map-dot-marketing {
  background: #2d9822;
}

.map-label-afly {
  left: 9.8%;
  top: 26.1%;
}

.map-label-shanghai {
  left: 21.7%;
  top: 15.8%;
}

.map-label-semiconductor {
  left: 22.4%;
  top: 33.3%;
}

.map-label-trading {
  left: 22.5%;
  top: 50.9%;
}

.map-label-vina {
  left: 17.3%;
  top: 76.4%;
}

.map-label-japan {
  left: 59.9%;
  top: 23.8%;
}

.map-label-nano {
  left: 59.8%;
  top: 37.5%;
}

.map-label-taiwan {
  left: 57.9%;
  top: 64.8%;
}

.map-label-usa {
  left: 75.5%;
  top: 56.6%;
}

.our-story-page .story-network-map .map-label-afly {
  top: 27.1%;
}

.our-story-page .story-network-map .map-label-shanghai {
  top: 16.8%;
}

.our-story-page .story-network-map .map-label-semiconductor {
  top: 34.3%;
}

.our-story-page .story-network-map .map-label-trading {
  top: 51.9%;
}

.our-story-page .story-network-map .map-label-vina {
  top: 77.4%;
}

.our-story-page .story-network-map .map-label-japan {
  top: 24.8%;
}

.our-story-page .story-network-map .map-label-nano {
  top: 38.5%;
}

.our-story-page .story-network-map .map-label-taiwan {
  top: 65.8%;
}

.our-story-page .story-network-map .map-label-usa {
  top: 57.6%;
}

@media (max-width: 1100px) {
  .our-story-page .story-network-map .map-label-afly {
    top: 29.3%;
  }

  .our-story-page .story-network-map .map-label-shanghai {
    top: 19%;
  }

  .our-story-page .story-network-map .map-label-semiconductor {
    top: 36.5%;
  }

  .our-story-page .story-network-map .map-label-trading {
    top: 54.1%;
  }

  .our-story-page .story-network-map .map-label-vina {
    top: 79.6%;
  }

  .our-story-page .story-network-map .map-label-japan {
    top: 27%;
  }

  .our-story-page .story-network-map .map-label-nano {
    top: 40.7%;
  }

  .our-story-page .story-network-map .map-label-taiwan {
    top: 68%;
  }

  .our-story-page .story-network-map .map-label-usa {
    top: 59.8%;
  }
}

@media (max-width: 900px) {
  .our-story-page .story-network-map .map-label-afly {
    top: 30.5%;
  }

  .our-story-page .story-network-map .map-label-shanghai {
    top: 20.2%;
  }

  .our-story-page .story-network-map .map-label-semiconductor {
    top: 37.7%;
  }

  .our-story-page .story-network-map .map-label-trading {
    top: 55.3%;
  }

  .our-story-page .story-network-map .map-label-vina {
    top: 80.8%;
  }

  .our-story-page .story-network-map .map-label-japan {
    top: 28.2%;
  }

  .our-story-page .story-network-map .map-label-nano {
    top: 41.9%;
  }

  .our-story-page .story-network-map .map-label-taiwan {
    top: 69.2%;
  }

  .our-story-page .story-network-map .map-label-usa {
    top: 61%;
  }
}

.overview {
  grid-template-columns: .94fr 1.06fr;
  gap: 96px;
}

.speech {
  max-width: none;
  padding: 0 34px 0 0;
  background: transparent;
  box-shadow: none;
}

.speech p {
  margin: 0 0 24px;
  color: #222;
  font-size: 16px;
  /*font-weight: 600;*/
  line-height: 2.15;
  text-indent: 2em;
}

.speech .speech-signature {
  margin: 44px 0 0 auto;
  width: max-content;
  min-width: 210px;
  text-align: right;
  text-indent: 0;
  line-height: 2.2;
}

.speech .speech-signature span {
  display: block;
}

.locations-list {
  width: min(1080px, calc(100% - 372px));
  margin: -54px auto 0;
}

.locations-list h2 {
  margin: 72px 0 28px;
  color: #050505;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 900;
}

.location-row {
  scroll-margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(180px, .9fr) minmax(260px, 1.3fr) 260px;
  gap: 44px;
  align-items: start;
  min-height: 150px;
  padding: 28px 0;
  border-bottom: 1px solid #d8d5d2;
}

.location-row:last-child {
  border-bottom: none;
}

.location-row > strong {
  color: #050505;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 900;
}

.location-row p {
  margin: 0 0 8px;
  color: #111;
  font-size: 14px;
  line-height: 1.65;
}

.location-row a {
  color: #1f5f9f;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.location-row a:hover {
  color: #050505;
}

.location-row > img {
  width: 260px;
  height: 128px;
  object-fit: cover;
  justify-self: end;
}

.location-image-empty {
  display: block;
  width: 260px;
  height: 128px;
  justify-self: end;
  background: transparent;
}

.history-page .content-card {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.history-timeline {
  position: relative;
  width: 100%;
  margin: 0 auto 0;
}

.history-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 301px;
  width: 4px;
  background: #ddd;
}

.history-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 72px;
  align-items: center;
  min-height: 120px;
  padding: 30px 0;
  border-top: 1px solid #e2dfdc;
}

.history-row:last-child {
  border-bottom: 1px solid #e2dfdc;
}

.history-row h2 {
  margin: 0;
  color: #050505;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
}

.history-points {
  display: grid;
  gap: 30px;
}

.history-event {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 46px;
  align-items: center;
}

.history-dot {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--red);
}

.history-body p {
  margin: 0;
  color: #111;
  font-size: 15px;
  line-height: 1.8;
}

.history-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 42px;
  align-items: center;
}

.history-media img {
  width: 180px;
  height: auto;
  object-fit: contain;
  justify-self: end;
}

.president-page .page-lead,
.president-page .content-card {
  width: min(1080px, calc(100% - 372px));
  margin-left: auto;
  margin-right: auto;
}

.president-hero-image {
  width: min(1080px, calc(100% - 372px));
  margin: 0 auto 54px;
  padding-top: 48px;
}

.president-hero-image img {
  width: 100%;
  display: block;
}

/* About Us sub-pages: align top-left title with CompanyNews page */
main.about-sub-page .page-lead {
  width: min(1080px, calc(100% - 372px));
  margin: 166px auto 0;
}

/* Title below content: same left edge as the title, spaced with padding-top */
main.about-sub-page .overview,
main.about-sub-page .about-columns,
main.about-sub-page .content-card,
main.about-sub-page .cert-grid,
main.about-sub-page .locations-list {
  width: min(1080px, calc(100% - 372px));
  margin-left: auto;
  margin-right: auto;
}

main.about-sub-page .overview {
  margin-top: 0;
  padding-top: 48px;
}

main.about-sub-page .content-card {
  padding-top: 48px;
}

main.about-sub-page .cert-grid {
  padding-top: 48px;
}

main.about-sub-page .locations-map {
  padding-top: 48px;
}

.about-sub-page .page-lead h1 {
  font-size: 34px;
}

.about-sub-page.president-page .page-lead,
.about-sub-page.president-page .content-card,
.about-sub-page.president-page .president-hero-image {
  margin-left: auto;
  margin-right: auto;
}

.overview .large {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.9;
}

.overview-media {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.overview-media img {
  width: 100%;
  height: auto;
  border-radius: 999px 0 0 999px;
}

.overview-media p {
  width: min(100%, 560px);
  margin: 72px 0 0;
  font-size: 20px;
  line-height: 1.9;
  font-weight: 500;
  color: #050505;
}

.overview dl {
  font-size: 16px;
}

.about-columns {
  margin-top: 82px;
  /*margin-bottom: 30px;*/
  padding-top: 76px;
}

.about-dynamic-content {
  margin: 1em 0;
}

.about-dynamic-content p {
  margin: 0 0 1em;
}

.about-dynamic-content p:last-child {
  margin-bottom: 0;
}

.product-tabs {
  height: 70px;
  margin-bottom: 44px;
}

.product-tabs button {
  height: 70px;
  background: #fff;
  font-size: 17px;
}

.filters {
  grid-template-columns: repeat(3, 1fr);
  gap: 66px;
  margin-bottom: 54px;
  row-gap: 0;
}

.filters button {
  min-height: 58px;
  font-size: 18px;
}

.filters button:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

.filters button:hover span {
  background-image: url("/themes/default/public/assets/cn/images/design/通用切图/向下箭头红色@3x.png");
}

.product-grid {
  gap: 44px 72px;
}

.product-section h2 {
  margin: 0 0 28px;
  font-size: 34px;
}

.field-grid a,
.cert-card {
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .11);
}

.cert-grid {
  margin-right: auto;
  margin-left: auto;
}

.cert-card {
  position: relative;
  padding: 14px 18px 16px;
}

.cert-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .18) url("/themes/default/public/assets/cn/images/design/2关于我们/企业资质放大镜@3x.png") center / 56px 56px no-repeat;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.cert-card:hover::after {
  opacity: 1;
}

.cert-card img {
  width: min(100%, 465px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.cert-card span {
  display: none;
}

@media (min-width: 901px) and (max-width: 1180px) {
  .cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.our-story-page .story-film-card {
  align-self: start;
  width: min(100%, 500px);
  min-height: 288px;
  padding: 12px 52px;
  background: var(--bg);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #D90F1E;
}

.our-story-page .story-film-card h2 {
  margin: 0 0 22px;
  color: var(--red);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
}

.our-story-page .story-film-card p,
.our-story-page .story-film-card strong {
  margin: 0 auto;
  max-width: 350px;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 900;
}

.our-story-page .story-film-card p {
  color: #333;
}

.our-story-page .story-film-card p::first-letter {
  color: inherit;
}

.our-story-page .story-film-card .story-film-inline {
  color: #1874ff;
}

.our-story-page .story-film-card strong {
  display: block;
  margin-top: 22px;
  color: #1874ff;
}

.our-story-page .story-film-card > span {
  display: block;
  width: min(100%, 380px);
  margin: 0 auto 0;
  padding: 12px 20px;
  /*border-top: 8px solid #1874ff;*/
  background: #8b8b8b;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 900;
}

.tech-content {
  max-width: 1280px;
}

.tech-content h2 {
  margin: 64px 0 18px;
  font-size: 36px;
  line-height: 1.25;
}

.tech-content p {
  font-size: 15px;
}

.tech-content img {
  width: min(1040px, 100%);
  margin: 40px auto 0;
}

@media (min-width: 901px) {
  .technical-page .page-lead,
  .technical-page .tech-content {
    width: min(1080px, calc(100% - 372px));
  }
}

.news-list-page a {
  min-height: 112px;
  grid-template-columns: 190px 1fr 140px;
  padding: 18px 0;
}

.news-page .page-lead,
.news-layout {
  width: min(1080px, calc(100% - 372px));
  margin-left: auto;
  margin-right: auto;
}

.news-page .page-lead {
  margin-bottom: 36px;
}

.news-layout {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 76px;
  align-items: start;
}

.news-sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
  margin-top: 28px;
}

.news-category-form {
  display: grid;
  gap: 18px;
}

.news-sidebar select {
  width: 100%;
  height: 32px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: #111;
  font-size: 13px;
  appearance: none;
  -webkit-appearance: none;
}

.news-select-wrap {
  position: relative;
}

.news-select-wrap::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--blue);
  transform: translateY(-50%);
  pointer-events: none;
}

.news-sidebar label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.news-sidebar input {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

.news-page .news-filter {
  display: none;
}

.news-page .news-list-page,
.news-page .pager {
  width: auto;
  /*margin-bottom: 40px;*/
}

.news-page .news-list-page a {
  grid-template-columns: minmax(0, 1fr) 220px;
  /*gap: 10px;*/
  min-height: 142px;
  padding: 28px 0;
  row-gap: 10px;
  column-gap: 40px;
  overflow: hidden;
}

.news-page .news-list-page span,
.news-page .news-list-page .news-copy,
.news-page .news-list-page strong {
  grid-column: 1;
}

.news-page .news-list-page span {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: end;
}

.news-page .news-list-page strong {
  align-self: start;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
}

.news-page .news-list-page .news-copy {
  align-self: start;
}

.news-page .news-list-page a:hover strong {
  color: #050505;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.news-page .news-list-page img,
.news-page .news-list-page .news-thumb-placeholder {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 220px;
  height: 130px;
  aspect-ratio: 22 / 13;
  align-self: center;
}

.news-page .news-list-page img {
  object-fit: cover;
  transition: transform .35s ease;
}

.news-page .news-list-page .news-thumb-placeholder {
  display: block;
}

.news-page .news-list-page img:hover {
  transform: scale(1.15);
}

.news-list-page em.is-industry {
  border-color: #1F4A82;
  color: #1F4A82;
}

.news-page .pager {
  justify-content: flex-start;
}

.news-page .pager a,
.news-page .pager span {
  border: 0;
  background: #ddd;
  min-width: 42px;
  height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1F4A82;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.news-page .pager a.active,
.news-page .pager span.active {
  background: #000;
  color: #fff;
}

.news-page .pager span.disabled {
  opacity: .45;
  cursor: default;
}

.contact-buttons {
  gap: 0;
  background: #fff;
}

.contact-buttons a {
  padding: 22px 10px;
  border-right: 1px solid var(--line);
}

.contact-card {
  padding: 58px 64px;
  box-shadow: none;
}

.contact-menu-page {
  /*min-height: 440px;*/
  /*padding-bottom: 92px;*/
}

.contact-menu-page .page-lead {
  width: min(1080px, calc(100% - 372px));
  /*margin-top: 136px;*/
  margin-bottom: 36px;
}

.contact-entry-grid {
  width: min(1080px, calc(100% - 372px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.contact-entry-grid a {
  min-height: 58px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blue);
  background-image: linear-gradient(#050505, #050505);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0 100%;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: background-size .3s ease;
}

.contact-entry-grid a:hover,
.contact-entry-grid a:focus-visible {
  background-color: var(--blue);
  background-size: 100% 100%;
}

.contact-entry-grid svg {
  width: 19px;
  height: 13px;
  flex: 0 0 auto;
}

.product-consult-page {
  /*padding-bottom: 92px;*/
}

.product-consult-page .page-lead {
  width: min(880px, calc(100% - 96px));
  /*margin-top: 96px;*/
  margin-bottom: 44px;
}

.product-consult-form-section {
  width: min(880px, calc(100% - 96px));
  margin: 0 auto;
}

.product-consult-form {
  display: grid;
  gap: 28px;
  font-size: 15px;
}

.product-consult-form .form-row {
  display: grid;
  grid-template-columns: 160px 58px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.product-consult-form label {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}

.product-consult-form .form-row > span {
  width: 48px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: transparent;
  font-size: 15px;
  font-weight: 700;
}

.product-consult-form .form-row.is-required > span {
  background: #e60020;
  color: #fff;
}

.product-consult-form input,
.product-consult-form textarea {
  width: 100%;
  border: 1px solid #bdbdbd;
  background: #fff;
  color: #111;
  font: inherit;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.product-consult-form input {
  height: 42px;
  padding: 0 14px;
}

.product-consult-form textarea {
  min-height: 166px;
  padding: 12px 14px;
  resize: vertical;
}

.product-consult-form input:focus,
.product-consult-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(31, 74, 130, .12);
}

.form-row-textarea {
  align-items: start;
}

.form-row-textarea label,
.form-row-textarea > span {
  margin-top: 0;
}

.captcha-field {
  display: grid;
  grid-template-columns: minmax(150px, 208px) 140px;
  align-items: center;
  gap: 22px;
}

.captcha-image {
  height: 42px;
  width: 140px;
  display: block;
  overflow: hidden;
  object-fit: contain;
}

.product-consult-form .form-actions {
  margin-top: 25px;
  margin-left: 266px;
  width: calc(100% - 266px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
}

@media (min-width: 901px) {
  .product-consult-form .form-submit {
    order: 1;
  }

  .product-consult-form .form-reset {
    order: 2;
  }
}

.product-consult-form .form-submit {
  width: 158px;
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}

.product-consult-form .form-submit svg {
  width: 19px;
  height: 13px;
  flex: 0 0 auto;
}

.product-consult-form .form-reset {
  width: 130px;
  min-height: 42px;
  border: 0;
  background: #d4d4d4;
  color: #222;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease;
}

.product-consult-form .form-reset:hover,
.product-consult-form .form-reset:focus-visible {
  background: #c4c4c4;
}

.site-footer {
  margin-top: 0;
  padding-top: 62px;
}

.footer-inner {
  width: min(1440px, calc(100% - 96px));
  grid-template-columns: 110px 360px 158px repeat(4, 1fr);
  gap: 48px;
}

.footer-inner > div:first-of-type {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 10px 18px;
  align-content: start;
}

.footer-inner > div:first-of-type strong {
  grid-column: 1 / -1;
}

.footer-inner > div:first-of-type .footer-heading-link {
  grid-column: 1 / -1;
}

.footer-inner > div:first-of-type .footer-heading-link:hover {
  text-decoration: none;
}

.footer-inner .footer-heading-link {
  display: block;
}

.footer-inner a:hover {
  text-decoration: none;
}

.footer-inner > div:first-of-type a {
  margin: 0;
  line-height: 1.35;
  white-space: nowrap;
}

.footer-inner > div a:hover {
  text-decoration: underline;
}

.footer-inner strong {
  margin-bottom: 8px;
}

.footer-inner strong span {
  display: inline-block;
  margin-top: 2px;
}

.footer-inner a {
  white-space: nowrap;
}

.footer-logo img {
  width: 90px;
}

.footer-logo {
  transform: none;
}

.story-link {
  transform: none;
}

.story-link span {
  border-radius: 6px;
}

.story-link img {
  height: 106px;
}

body:has(.news-article) .page-lead,
body:has(.news-article) .news-article {
  width: min(1080px, calc(100% - 372px));
  margin-left: auto;
  margin-right: auto;
}

.news-article-feature > h1,
.news-article-feature > .news-detail-date {
  text-align: center;
}

.news-article-feature > h1 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.4;
}

.news-detail-date {
  margin: 0 0 34px;
  color: #111;
  font-size: 14px;
  line-height: 1.5;
}

.news-detail-intro {
  max-width: none;
  margin: 0 0 30px;
  text-align: left;
  text-indent: 2em;
  font-size: 14px;
  line-height: 1.9;
}

.news-article-feature > img {
  width: min(540px, 100%);
  max-height: none;
  margin: 28px auto;
  object-fit: contain;
}

.news-article-feature .blue-button,
.product-consult-button,
.story-copy .story-button,
.topics > div:first-child .topic-button {
  position: relative;
  overflow: hidden;
}

.news-article-feature .blue-button {
  width: 180px;
  margin: 0 auto 0;
  justify-content: space-between;
}

.news-article-feature .blue-button,
.product-consult-button,
.story-copy .story-button,
.topics > div:first-child .topic-button {
  background-color: var(--blue);
  background-image: linear-gradient(#050505, #050505);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: background-size .3s ease;
}

.news-article-feature .blue-button:hover,
.news-article-feature .blue-button:focus-visible,
.product-consult-button:hover,
.product-consult-button:focus-visible,
.story-copy .story-button:hover,
.story-copy .story-button:focus-visible,
.topics > div:first-child .topic-button:hover,
.topics > div:first-child .topic-button:focus-visible {
  background-color: var(--blue);
  background-image: linear-gradient(#050505, #050505);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.news-article-feature .blue-button svg {
  flex: 0 0 auto;
  margin-left: 12px;
}

@media (min-width: 901px) and (max-width: 1320px) {
  body:has(.news-article) .page-lead,
  body:has(.news-article) .news-article {
    width: min(1080px, calc(100% - 372px));
    margin-left: auto;
    margin-right: auto;
  }

  .news-page .page-lead,
  .news-layout {
    width: min(1080px, calc(100% - 372px));
  }

  .footer-inner {
    width: calc(100% - 64px);
    grid-template-columns: 88px minmax(260px, 300px) minmax(112px, max-content) minmax(88px, max-content) minmax(112px, max-content) minmax(88px, max-content) minmax(88px, max-content);
    gap: 24px;
  }

  .footer-inner > div {
    min-width: max-content;
  }

  .footer-inner strong,
  .footer-inner strong span,
  .footer-inner a {
    white-space: nowrap;
  }

  .story-link {
    transform: none;
  }
}

@media (max-width: 900px) {
  body:has(.news-article) .page-lead,
  body:has(.news-article) .news-article {
    width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
  }
}

.go-top {
  right: 30px;
  bottom: 120px;
  width: 24px;
  height: 108px;
  border: 0;
  background: url("/themes/default/public/assets/cn/images/common/go-top-gray.png") center/contain no-repeat;
  color: transparent;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  writing-mode: horizontal-tb;
}

.go-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #e60020;
  opacity: 0;
  transition: opacity 0.2s ease;
  -webkit-mask: url("/themes/default/public/assets/cn/images/common/go-top-gray.png") center/contain no-repeat;
  mask: url("/themes/default/public/assets/cn/images/common/go-top-gray.png") center/contain no-repeat;
}

.go-top:hover::before,
.go-top:focus-visible::before {
  opacity: 1;
}

.dialog-card {
  padding: 40px;
  border-radius: 0;
}

.dialog-close {
  background: #050505 url("/themes/default/public/assets/cn/images/design/通用切图/对话框关闭按钮默认@3x.png") center/18px 18px no-repeat;
  color: transparent;
}

.dialog-close:hover {
  background-color: var(--blue);
  background-image: url("/themes/default/public/assets/cn/images/design/通用切图/对话框关闭按钮悬停@3x.png");
}

@media (max-width: 900px) {
  :root {
    --header-logo-shift: 0px;
    --header-nav-shift: 0px;
    --footer-logo-shift: 14px;
  }

  .site-header {
    position: absolute;
    padding-top: 12px;
  }

  .nav-shell {
    width: calc(100% - 24px);
    min-height: 64px;
    padding: 0 18px;
  }

  .brand {
    margin-left: 0;
  }

  .brand img {
    width: 86px;
  }

  .locations-list {
    width: calc(100% - 32px);
    margin: -36px auto 0;
  }

  .locations-list h2 {
    margin: 46px 0 18px;
    font-size: 32px;
  }

  .locations-map {
    width: 100%;
  }

  .location-row {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 24px 0;
  }

  .location-row > img {
    width: 100%;
    max-width: 300px;
    height: auto;
    justify-self: start;
  }

  .history-timeline::before {
    left: 133px;
  }

  .history-row {
    grid-template-columns: 96px 1fr;
    gap: 28px;
    min-height: 96px;
    padding: 26px 0;
  }

  .history-row h2 {
    font-size: 20px;
  }

  .history-event {
    grid-template-columns: 18px 1fr;
    gap: 22px;
  }

  .history-media {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .history-media img {
    width: 150px;
    justify-self: start;
  }

  .main-nav {
    top: 76px;
    gap: 12px;
    font-size: 15px;
  }

  .hero > img {
    width: auto;
    height: 520px;
    max-width: none;
    object-fit: cover;
    transform: translateX(-32%);
  }

  .hero-top-spacer {
    height: 0;
  }

  .hero-slogan {
    display: none;
  }

  .section-pad,
  .story-news,
  .topics,
  .wide-image,
  .overview,
  .about-columns,
  .product-tabs,
  .filters,
  .product-section,
  .field-grid,
  .cert-grid,
  .detail-layout,
  .contact-buttons,
  .contact-card,
  .jobs,
  .news-filter,
  .news-list-page,
  .pager,
  .tech-content,
  .content-card,
  .news-article,
  .page-lead {
    width: calc(100% - 32px);
  }

  .about-sub-page .page-lead {
    width: calc(100% - 32px);
    margin: 20px auto 0;
  }

  .about-sub-page .page-lead h1 {
    font-size: 24px;
  }

  main.about-sub-page .overview,
  main.about-sub-page .about-columns,
  main.about-sub-page .content-card,
  main.about-sub-page .cert-grid,
  main.about-sub-page .locations-list {
    width: calc(100% - 32px);
  }

  main.about-sub-page .overview,
  main.about-sub-page .content-card,
  main.about-sub-page .cert-grid {
    padding-top: 32px;
  }

  .intro.section-pad {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    margin-top: 0;
    /*padding-bottom: 88px;*/
    background-size: contain;
    background-position: center bottom;
  }

  .intro {
    min-height: clamp(560px, 120vw, 720px);
    gap: 36px;
    padding-top: 60px;
  }

  .intro h1 {
    font-size: 24px;
    line-height: 1.28;
    gap: 8px;
  }

  .intro p {
    margin-top: 36px;
  }

  .intro img {
    transform: none;
  }

  .intro-copy-line {
    width: 100%;
  }

  .overview-media {
    align-items: stretch;
  }

  .overview-media p {
    width: 100%;
    margin-top: 32px;
    font-size: 17px;
    line-height: 1.8;
  }

  .speech {
    padding: 0 0 0;
  }

  .speech p {
    font-size: 16px;
    /*font-weight: 600;*/
    line-height: 2;
  }

  .speech .speech-signature {
    min-width: 160px;
  }

  .president-page .page-lead,
  .president-page .content-card,
  .president-hero-image {
    width: calc(100% - 32px);
    margin-right: auto;
    margin-left: auto;
  }

  .president-hero-image {
    margin-top: -18px;
    margin-bottom: 34px;
  }

  .president-hero-image img {
    aspect-ratio: auto;
  }

  .news-layout {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .news-sidebar {
    gap: 12px;
    margin-top: 0;
  }

  .news-page .news-list-page a {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 22px 0;
  }

  .news-page .news-list-page img,
  .news-page .news-list-page .news-thumb-placeholder,
  .news-page .news-list-page span,
  .news-page .news-list-page .news-copy,
  .news-page .news-list-page strong {
    grid-column: 1;
    grid-row: auto;
  }

  .news-page .news-list-page img,
  .news-page .news-list-page .news-thumb-placeholder {
    width: 100%;
    height: auto;
    max-height: 180px;
  }

  .home-video {
    width: calc(100% - 32px);
    margin-top: 24px;
  }

  .home-products {
    margin-top: 54px;
  }

  .section-title,
  .home-product-grid {
    width: calc(100% - 32px);
  }

  .product-img {
    height: 210px;
  }

  .topics {
    gap: 22px;
    padding-bottom: 100px;
  }

  .topics::after {
    height: 160px;
    background-size: auto 100%;
  }

  .page-lead {
    margin-top: 116px;
  }

  .page-lead h1 {
    font-size: 36px;
  }

  .filters {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-tabs {
    grid-template-columns: 1fr;
    height: auto;
  }

  .product-tabs button {
    height: 58px;
  }

  .contact-buttons {
    grid-template-columns: 1fr 1fr;
  }

  .contact-card {
    padding: 30px 22px;
  }

  .contact-menu-page {
    /*padding-bottom: 56px;*/
  }

  .contact-menu-page .page-lead,
  .contact-entry-grid {
    width: calc(100% - 32px);
  }

  .contact-entry-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-consult-page {
    /*padding-bottom: 56px;*/
  }

  .product-consult-page .page-lead,
  .product-consult-form-section {
    width: calc(100% - 32px);
  }

  .product-consult-page .page-lead {
    margin-top: 96px;
    margin-bottom: 34px;
  }

  .product-consult-form {
    gap: 20px;
  }

  .product-consult-form .form-row {
    grid-template-columns: 1fr auto;
    gap: 10px 12px;
  }

  .product-consult-form label {
    font-size: 17px;
  }

  .product-consult-form .form-row > input,
  .product-consult-form .form-row > textarea,
  .product-consult-form .captcha-field {
    grid-column: 1 / -1;
  }

  .captcha-field {
    grid-template-columns: 1fr 120px;
    gap: 12px;
  }

  .product-consult-form .form-actions {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
  }

  .product-consult-form .form-submit,
  .product-consult-form .form-reset {
    order: initial;
  }

  .footer-inner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  body {
    font-size: 14px;
    line-height: 1.68;
  }

  .site-header {
    left: 0;
    right: 0;
  }

  .nav-shell {
    height: auto;
    align-items: center;
  }

  .menu-toggle {
    flex: 0 0 auto;
  }

  .main-nav {
    left: 12px;
    right: 12px;
    width: auto;
    max-height: calc(100vh - 104px);
    overflow-y: auto;
    transform: none;
  }

  .main-nav a:nth-of-type(6),
  .main-nav a:nth-of-type(7),
  .main-nav a:nth-of-type(8) {
    margin-left: 0;
  }

  .main-nav .language-slider {
    display: none;
  }

  .main-nav .pill,
  .main-nav .language-option {
    min-width: 0;
    padding: 8px 0;
    border-radius: 0;
  }

  .hero {
    overflow: hidden;
  }

  .hero > img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    max-width: 100%;
    transform: none;
    object-fit: contain;
  }

  .intro {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 48px;
    padding-bottom: 92px;
  }

  .intro h1 {
    margin-bottom: 28px;
    font-size: 24px;
  }

  .intro p {
    margin-top: 0;
  }

  .intro img,
  .story-photo,
  .wide-image img,
  .home-video video,
  .jobs img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .story-news {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .story-copy h2,
  .topics h2,
  .product-section h2,
  .tech-content h2,
  .contact-card h2 {
    font-size: 26px;
    line-height: 1.24;
  }

  .home-products {
    padding: 54px 0 64px;
  }

  .section-title {
    align-items: flex-start;
    gap: 16px;
  }

  .home-product-grid,
  .product-grid,
  .field-grid,
  .cert-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-card,
  .field-grid a,
  .cert-card {
    width: 100%;
  }

  .topics {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .topics > div:first-child {
    display: grid;
    gap: 12px;
  }

  .topic-list a {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
  }

  .topic-list span,
  .topic-list .topic-title,
  .topic-list img {
    grid-column: 1;
    grid-row: auto;
  }

  .topic-list img {
    width: 100%;
    height: auto;
    max-height: 180px;
  }

  .contact-buttons {
    grid-template-columns: 1fr;
  }

  .contact-buttons a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-card,
  .detail-layout,
  .jobs,
  .overview,
  .about-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-inner {
    gap: 28px;
  }

  .story-link span {
    max-width: 320px;
  }
}

/* Home product card footer: match XD/reference image. */
.home-products .product-card .product-info,
.home-products .product-card.is-featured .product-info,
.home-products .product-card:hover .product-info {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 46px;
  grid-template-rows: 46px;
  min-height: 46px;
  padding: 0;
  background: #fff;
  color: #050505;
}

.home-products .product-card .product-info strong {
  position: absolute;
  left: 0;
  bottom: 100%;
  min-width: 82px;
  /*height: 26px;*/
  padding: 5px 14px;
  background-color: #d90f1e;
  background-image: linear-gradient(#050505, #050505);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0 100%;
  color: #fff;
  font-size: 24px;
  /*line-height: 26px;*/
  font-weight: 900;
  transition: background-size .3s ease;
}

.home-products .product-card .product-info em {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  min-height: 46px;
  align-items: center;
  padding-left: 12px;
  color: #050505;
  font-size: 13px;
  line-height: 1.2;
}

.home-products .product-card .product-info b {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  display: flex;
  right: auto;
  top: auto;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  transform: none;
  align-self: end;
  overflow: hidden;
  background-color: #fff;
  color: #1F4A82;
  font-size: 0;
  line-height: 1;
  text-indent: 0;
  transition: color .3s ease;
}

.home-products .product-card .product-info b::before {
  content: "\2192";
  color: currentColor;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.home-products .product-card .product-info b::after {
  content: none;
}

.home-products .product-card:hover .product-info strong,
.home-products .product-card:focus-visible .product-info strong {
  background-size: 100% 100%;
}

.home-products .product-card:hover .product-info b,
.home-products .product-card:focus-visible .product-info b {
  color: #050505;
}

.product-consult-dialog .dialog-card {
  width: min(390px, calc(100% - 32px));
  max-width: none;
  min-height: 194px;
  padding: 28px 34px 58px;
}

.cert-image-dialog .dialog-card {
  width: min(560px, calc(100% - 32px));
  max-width: none;
  padding: 20px 24px 18px;
  background: #fff;
  border: 1px solid #d8d8d8;
  box-shadow: none;
}

.cert-image-dialog .dialog-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cert-image-dialog .dialog-body img {
  /*width: 100%;*/
  /*max-width: 100%;*/
  max-height: min(70vh, 560px);
  object-fit: contain;
}

.cert-image-dialog .dialog-close {
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
}

.cert-image-caption {
  margin: 0;
  color: #050505;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.product-consult-card h2 {
  margin: 0 0 22px;
  color: #050505;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
}

.product-consult-card p {
  margin: 0 0 6px;
  color: #050505;
  font-size: 14px;
  line-height: 1.7;
}

.product-consult-card a {
  color: #1f4a82;
  text-decoration: none;
}

.product-detail-feature {
  margin-top: 54px;
}

.product-detail-feature h2 {
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #cfcac6;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
}

.product-detail-feature-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 24px;
}

.product-detail-feature-images img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  background: #fff;
}

.product-detail-feature p {
  margin: 0;
  color: #050505;
  font-size: 13px;
  line-height: 2;
  text-align: justify;
}

@media (max-width: 900px) {
  .product-consult-dialog .dialog-card {
    width: calc(100% - 32px);
    padding: 28px 24px 44px;
  }

  .cert-image-dialog .dialog-card {
    width: calc(100% - 32px);
    padding: 18px 16px 16px;
  }

  .cert-image-dialog .dialog-close {
    transform: none;
  }

  .product-detail-feature {
    margin-top: 42px;
  }

  .product-detail-feature-images {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* Home product cards: keep the action arrow visible in the white square. */
html body .home-products .product-card .product-info b {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #fff;
  color: #1F4A82 !important;
  font-size: 20px !important;
  font-weight: 700;
  line-height: 1;
  text-indent: 0;
}

html body .home-products .product-card .product-info b::before {
  content: none;
  display: none;
}

html body .home-products .product-card .product-info b::after {
  content: none;
  display: none;
}

html body .home-products .product-card:hover .product-info b,
html body .home-products .product-card:focus-visible .product-info b {
  color: #050505 !important;
}

.main-nav .mobile-submenu {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    padding-top: 10px;
  }

  .nav-shell {
    position: relative;
    align-items: center;
    box-sizing: border-box;
    width: calc(100% - 24px);
    min-height: 60px;
    padding: 0 16px;
  }

  .brand img {
    width: 70px;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    width: 100%;
    box-sizing: border-box;
    max-width: none;
    max-height: calc(100vh - 92px);
    margin: 0;
    padding: 12px 16px 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    transform: none;
    border-radius: 0 0 10px 10px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 36px rgba(0, 0, 0, .16);
  }

  .main-nav.open,
  .nav-shell .main-nav.open,
  .main-nav.has-language-slider.open {
    display: flex;
  }

  .main-nav > a {
    width: 100%;
    padding: 13px 2px;
    border-bottom: 1px solid #e5e1de;
    font-size: 16px;
    line-height: 1.35;
  }

  .main-nav a:not(.pill)::after {
    display: none;
  }

  .main-nav .pill,
  .main-nav .language-option {
    width: 100%;
    min-width: 0;
    margin-left: 0 !important;
    padding: 12px 2px;
    border-radius: 0;
    text-align: left;
    background: transparent;
    color: #050505;
  }

  .main-nav .language-slider,
  .main-nav .group-option-menu,
  .mega-backdrop,
  .mega-menu {
    display: none !important;
  }

  .main-nav.has-language-slider .language-option[data-language-switch].is-language-active {
    color: #050505;
  }

  .mobile-submenu {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 14px;
    padding: 4px 0 10px 18px;
    border-bottom: 1px solid #e5e1de;
  }

  .main-nav > a.mobile-submenu-open + .mobile-submenu {
    display: grid;
  }

  .mobile-submenu a {
    padding: 8px 0;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    white-space: normal;
  }

  .mobile-submenu a:nth-child(n+7) {
    display: none;
  }

  .intro.section-pad {
    padding-top: 54px;
  }

  .intro p {
    margin-top: 0;
  }

  .intro img {
    margin-top: 26px;
  }

  .topics > div:first-child {
    justify-items: center;
  }

  .topics > div:first-child .blue-button {
    min-width: 156px;
    justify-content: center;
  }

  .page-lead,
  .page-lead p,
  .page-lead h1 {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    text-align: center !important;
    writing-mode: horizontal-tb !important;
    word-break: keep-all;
  }

  .page-lead {
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 0;
    padding-left: 0;
  }

  .page-lead p {
    white-space: nowrap;
  }

  .page-lead h1 {
    white-space: normal;
  }

  .news-page .page-lead,
  .news-layout {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
  }

  .news-page .news-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .news-page .news-list-page a {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .news-page .news-list-page span,
  .news-page .news-list-page .news-copy,
  .news-page .news-list-page strong,
  .news-page .news-list-page img,
  .news-page .news-list-page .news-thumb-placeholder {
    grid-column: 1;
    grid-row: auto;
  }

  .news-page .news-list-page strong {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .news-page .news-list-page a:not(:has(img)) {
    grid-template-columns: minmax(0, 1fr);
  }

  .news-page .news-list-page img,
  .news-page .news-list-page .news-thumb-placeholder {
    width: 100%;
    height: auto;
    max-height: 180px;
  }

  .pager a:nth-of-type(n+6):not(:last-child),
  .pager button:nth-of-type(n+6):not(:last-child),
  .pager span:nth-of-type(n+6):not(:last-child) {
    display: none;
  }

  .news-page .pager {
    flex-wrap: wrap;
  }

  .news-page .pager a:nth-of-type(n+6):not(:last-child),
  .news-page .pager span:nth-of-type(n+6):not(:last-child) {
    display: inline-flex;
  }

  .product-consult-page > .contact-buttons,
  .report-form-page > .contact-buttons {
    display: none;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 22px;
  }

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

  .footer-inner > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 10px;
    align-content: start;
  }

  .footer-inner > div:nth-of-type(2) {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner > div strong {
    grid-column: 1 / -1;
  }

  .footer-inner > div a {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
  }

  .locations-list {
    width: calc(100% - 32px);
  }

  .location-row {
    gap: 18px;
    padding: 28px 0;
  }

  .location-row > strong,
  .location-row p {
    font-size: 16px;
    line-height: 1.8;
  }

  .location-row > img,
  .location-image-empty {
    width: 100%;
    max-width: none;
    height: auto;
    justify-self: stretch;
  }

  .history-timeline::before {
    left: 132px;
  }

  .product-detail-page {
    width: calc(100% - 32px);
  }

  .product-detail-page > .page-lead,
  .product-detail-hero,
  .product-detail-section {
    width: 100%;
  }

  .product-detail-copy p {
    max-width: none;
  }
}
