:root {
  --client-blue: #075996;
  --client-blue-deep: #071b29;
  --client-copper: #bd7442;
  --client-paper: #f1f4f4;
  --client-ink: #07131b;
  --font: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --data: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font);
}

html,
body {
  overflow-x: clip;
}

.site-main-row {
  grid-template-columns: 230px minmax(0, 1fr) 278px;
}

.site-brand,
.site-main-row > .site-brand {
  width: 210px;
}

.site-brand-logo,
.page-home .global-header:not(.is-scrolled):not(.has-open-menu) .site-brand-logo,
.global-footer .footer-identity .site-brand-logo {
  width: 100%;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
  filter: none !important;
  opacity: 1;
}

.nav-menu {
  width: min(600px, 100%);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-self: center;
  justify-content: center;
  column-gap: 0;
}

.nav-menu > .nav-link,
.nav-menu > .nav-item {
  width: 100%;
  justify-content: center;
}

.nav-menu .nav-link,
.nav-menu .nav-trigger,
.page-home .nav-menu .nav-link,
.page-home .nav-menu .nav-trigger {
  width: 100%;
  justify-content: center;
  color: inherit;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .02em;
  text-align: center;
}

.nav-menu > .nav-search-mobile {
  display: none !important;
}

.nav-menu > .nav-language-mobile {
  display: none !important;
}

.site-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-action-search {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: inherit;
  border: 0;
  background: transparent;
  opacity: .88;
  transition: color .2s ease, opacity .2s ease, transform .2s ease;
}

.site-action-search:hover {
  color: inherit;
  background: transparent;
  opacity: 1;
  transform: scale(1.08);
}

.site-language-menu {
  position: relative;
  height: 44px;
  z-index: 36;
}

.site-language {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--client-copper);
  border: 0;
  background: transparent;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease, transform .2s ease;
}

.site-language svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-language::after {
  position: absolute;
  right: 3px;
  bottom: 0;
  left: 3px;
  height: 3px;
  content: "";
  background: var(--client-copper);
  transform: scaleX(.56);
  transform-origin: center;
  transition: transform .22s ease;
}

.site-language:hover,
.site-language:focus-visible {
  color: var(--client-blue);
  outline: none;
  transform: translateY(-1px);
}

.site-language:hover::after,
.site-language:focus-visible::after,
.site-language-menu.is-open .site-language::after {
  transform: scaleX(1);
}

.site-language-tooltip {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  min-width: 62px;
  padding: 8px 10px;
  color: #fff;
  background: #16232c;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .02em;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity .16s ease, transform .16s ease;
}

.site-language-tooltip::before {
  position: absolute;
  bottom: 100%;
  left: 50%;
  content: "";
  border: 5px solid transparent;
  border-bottom-color: #16232c;
  transform: translateX(-50%);
}

.site-language-menu:not(.is-open) .site-language:hover .site-language-tooltip,
.site-language-menu:not(.is-open) .site-language:focus-visible .site-language-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-language-panel {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  width: 248px;
  padding: 22px 20px 20px;
  color: var(--client-ink);
  background: #fff;
  border-top: 3px solid var(--client-copper);
  box-shadow: 0 22px 55px rgba(7, 20, 28, .2);
  opacity: 0;
  transform: translateY(-7px);
  transition: opacity 130ms ease, transform 160ms cubic-bezier(.22,.7,.2,1);
}

.site-language-panel[hidden] {
  display: none;
}

.site-language-menu.is-open .site-language-panel {
  opacity: 1;
  transform: none;
}

.site-language-panel > p {
  margin: 0 0 14px;
  color: #66737a;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .04em;
}

.site-language-panel > a {
  min-height: 50px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--client-ink);
  border-top: 1px solid #dce2e4;
  font-size: 17px;
  font-weight: 600;
  transition: color .18s ease, background .18s ease, padding .18s ease;
}

.site-language-panel > a:hover,
.site-language-panel > a:focus-visible {
  padding-left: 17px;
  color: var(--client-blue);
  background: #f3f6f7;
  outline: none;
}

.site-language-panel > a.is-current {
  color: #fff;
  background: var(--client-blue);
  border-color: var(--client-blue);
}

.site-language-panel > a small {
  color: inherit;
  font-size: 12px;
  font-weight: 650;
  opacity: 0;
}

.site-language-panel > a.is-current small {
  opacity: .78;
}

.page-home .global-header:not(.is-scrolled):not(.has-open-menu) .site-language {
  color: #e58b4d;
}

.site-action-search i {
  position: relative;
  width: 15px;
  height: 15px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.site-action-search i::after {
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 6px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left;
}

.site-rfq {
  min-width: 156px;
  justify-content: center;
  gap: 22px;
  text-align: center;
}

.nav-link,
.nav-search,
.nav-trigger,
.site-action-search,
.site-language,
.site-rfq {
  letter-spacing: .02em;
}

h1,
h2 {
  text-wrap: balance;
}

.button,
.home-about-copy .button {
  justify-content: center;
  gap: 28px;
  text-align: center;
}

.page-home .home-about-panel {
  background:
    linear-gradient(90deg, var(--client-copper) 0 6px, transparent 6px),
    #fff;
}

.page-home .home-about {
  grid-template-columns: 55% 45%;
}

.page-home .home-about .eyebrow {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
}

.page-home .home-about h2 {
  max-width: none;
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1.12;
  white-space: nowrap;
}

.page-home .home-about-copy {
  max-width: 650px;
  padding-top: 32px;
}

.page-home .home-about-copy .button {
  position: relative;
  justify-content: center;
  width: 184px;
  margin-top: 30px;
  padding-right: 42px;
  padding-left: 42px;
}

.page-home .home-about-copy .button span {
  position: absolute;
  right: 18px;
}

.page-home .home-about-scope {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid #b8c2c7;
  border-bottom: 1px solid #d5dcdf;
}

.page-home .home-about-scope li {
  min-height: 86px;
  padding: 18px 16px 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #d5dcdf;
}

.page-home .home-about-scope li:not(:first-child) {
  padding-left: 16px;
}

.page-home .home-about-scope li:last-child {
  border-right: 0;
}

.page-home .home-about-scope strong {
  color: var(--client-ink);
  font-size: 14px;
}

.page-home .home-about-scope span {
  color: #66757d;
  font-size: 11px;
  white-space: nowrap;
}

.page-home .home-about-main-media {
  overflow: visible;
  background: #dbe3e6;
}

.page-home .home-about-main-media > img {
  object-position: 42% center;
}

.page-home .home-about-main-media figcaption {
  top: 26px;
  right: 0;
  bottom: auto;
  min-width: 210px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: rgba(5, 24, 37, .9);
}

.page-home .home-about-main-media figcaption strong {
  font-size: 13px;
}

.page-home .home-about-main-media figcaption span {
  color: #b9cbd4;
  font-size: 10px;
}

.page-home .home-about-product-proof {
  position: absolute;
  z-index: 2;
  left: -118px;
  bottom: 46px;
  width: 292px;
  min-height: 150px;
  padding: 18px;
  display: grid;
  grid-template-columns: 114px 1fr;
  align-items: center;
  gap: 14px;
  color: #fff;
  background: #071b29;
  border-top: 4px solid var(--client-copper);
  box-shadow: 0 24px 55px rgba(5, 22, 34, .24);
}

.page-home .home-about-product-proof > img {
  width: 114px;
  height: 114px;
  object-fit: contain;
}

.page-home .home-about-product-proof > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.page-home .home-about-product-proof small {
  color: #86b9dd;
  font-size: 10px;
}

.page-home .home-about-product-proof strong {
  font-size: 15px;
  line-height: 1.35;
}

.page-home .home-about-product-proof span {
  color: #b9cbd4;
  font-size: 10px;
  white-space: nowrap;
}

.page-home .home-about.home-about--profile {
  grid-template-columns: 1fr 1fr;
}

.page-home .home-about--profile .home-about-panel {
  min-height: 0;
  padding: 120px 6vw 120px max(48px, calc((100vw - 1440px) * .5));
}

.page-home .home-about--profile .home-about-lead h2 {
  max-width: none;
  font-size: clamp(38px, 3.2vw, 48px);
  line-height: 1.12;
  white-space: nowrap;
}

.page-home .home-about-line {
  width: 108px;
  height: 2px;
  margin-top: 25px;
  display: block;
  background: var(--client-copper);
}

.page-home .home-about--profile .home-about-copy {
  max-width: 560px;
  padding-top: 32px;
}

.page-home .home-about--profile .home-about-copy p {
  color: #59676f;
  font-size: 16px;
  line-height: 1.9;
}

.page-home .home-about--profile .home-about-copy .button {
  width: 155px;
  margin-top: 32px;
}

.page-home .home-about--profile .home-about-main-media {
  min-height: 0;
  height: auto;
  margin: 86px max(48px, calc((100vw - 1440px) * .5)) 86px 0;
  align-self: center;
  aspect-ratio: 1.05 / 1;
  overflow: hidden;
  background: #d8d2ce;
}

.page-home .home-about--profile .home-about-main-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.page-home .home-about--profile .home-about-main-media figcaption {
  top: auto;
  right: 0;
  bottom: 0;
  min-width: 0;
  padding: 13px 16px;
  display: block;
  background: rgba(5, 24, 37, .88);
  font-size: 10px;
}

.page-home .home-facts > div {
  min-height: 180px;
  padding: 34px 22px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-home .home-facts > div::before {
  width: 34px;
  height: 3px;
  margin-bottom: 18px;
  display: block;
  content: "";
  background: var(--client-copper);
}

.page-home .pathway-grid {
  gap: 1px;
  border: 0;
  background: rgba(255,255,255,.18);
}

.page-home .pathway {
  position: relative;
  min-height: 310px;
  padding: 28px;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  border: 0 !important;
  background-position: center;
  background-size: cover;
}

.page-home .pathway:nth-child(1) {
  background-image: linear-gradient(180deg, rgba(4,20,31,.16), rgba(4,20,31,.86)), url("public/client/products/copper-round.webp");
  background-color: #e8eded;
}

.page-home .pathway:nth-child(2) {
  background-image: linear-gradient(180deg, rgba(4,20,31,.16), rgba(4,20,31,.88)), url("public/concept-a/v2/architectural-lighting.jpg");
}

.page-home .pathway:nth-child(3) {
  background-image: linear-gradient(180deg, rgba(4,20,31,.16), rgba(4,20,31,.88)), url("public/client/factory/pcb-process-line.webp");
}

.page-home .pathway::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  border-top: 4px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}

.page-home .pathway:hover {
  color: #fff;
  background-position: center;
}

.page-home .pathway:hover::after {
  background: rgba(7,89,150,.25);
  border-top-color: var(--client-copper);
}

.page-home .pathway small,
.page-home .pathway:hover small {
  color: rgba(255,255,255,.74);
}

.page-home .product-stage-image,
.product-archive-card figure,
.category-product-card figure,
.catalog-grid .product-card-media {
  background: #fff;
}

.page-home .product-stage-image img,
.product-archive-card figure img,
.category-product-card figure img,
.catalog-grid .product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-variants th,
.product-variants td {
  height: 64px;
  text-align: center !important;
  vertical-align: middle;
}

.product-variants tbody th {
  width: 220px;
}

.platform-experience.page-capabilities .capability-item {
  min-height: 430px;
  padding: 0 28px 30px;
  overflow: hidden;
}

.platform-experience.page-capabilities .capability-item::before {
  height: 190px;
  margin: 0 -28px 26px;
  flex: 0 0 auto;
  content: "";
  background-position: center;
  background-size: cover;
}

.platform-experience.page-capabilities .capability-item:nth-child(1)::before { background-image: url("public/client/factory/smt-closeup.webp"); }
.platform-experience.page-capabilities .capability-item:nth-child(2)::before { background-image: url("public/client/factory/pcb-process-line.webp"); }
.platform-experience.page-capabilities .capability-item:nth-child(3)::before { background-image: url("public/client/factory/vcut-machine.webp"); }
.platform-experience.page-capabilities .capability-item:nth-child(4)::before { background-image: url("public/client/factory/etching-line.webp"); }
.platform-experience.page-capabilities .capability-item:nth-child(5)::before { background-image: url("public/client/factory/lab-optical-test.webp"); }
.platform-experience.page-capabilities .capability-item:nth-child(6)::before { background-image: url("public/client/factory/quality-inspection.webp"); }

.platform-experience.page-capabilities .capability-item h3 {
  margin: auto 0 18px;
}

.category-principle-grid article {
  position: relative;
  min-height: 390px;
  padding-top: 190px;
  overflow: hidden;
}

.category-principle-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 160px;
  content: "";
  background-color: #e8ecec;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-product-category[data-product-category="aluminum"] .category-principle-grid article:nth-child(1)::before,
.page-product-category[data-product-category="special"] .category-principle-grid article:nth-child(1)::before { background-image: url("public/client/products/copper-round.webp"); background-size: contain; }
.page-product-category[data-product-category="aluminum"] .category-principle-grid article:nth-child(2)::before { background-image: url("public/client/products/aluminum-4oz.webp"); background-size: contain; }
.page-product-category[data-product-category="special"] .category-principle-grid article:nth-child(2)::before { background-image: url("public/client/products/fr4-4l.webp"); background-size: contain; }
.page-product-category[data-product-category="module"] .category-principle-grid article:nth-child(1)::before { background-image: url("public/client/products/ufo-module.webp"); background-size: contain; }
.page-product-category[data-product-category="module"] .category-principle-grid article:nth-child(2)::before {
  background-image: url("public/generated/home-application-lighting-ai-v1.webp");
  background-position: center 58%;
}
.page-product-category[data-product-category="black"] .category-principle-grid article:nth-child(1)::before { background-image: url("public/client/products/fpc-6l.webp"); background-size: contain; }
.page-product-category[data-product-category="black"] .category-principle-grid article:nth-child(2)::before {
  background-image: url("public/client/products/black-2wire.webp");
  background-size: contain;
}
.category-principle-grid article:nth-child(3)::before { background-image: url("public/client/factory/lab-optical-test.webp"); }
.category-principle-grid article:nth-child(4)::before { background-image: url("public/client/factory/quality-inspection.webp"); }

.page-about main#main {
  display: flex;
  flex-direction: column;
}

.page-about .sub-hero { order: 1; }
.page-about .page-strip { order: 2; }
.page-about #company { order: 3; }
.page-about .company-qualifications { order: 4; }
.page-about #approach { order: 5; }
.page-about #quality { order: 6; }
.page-about .market-section { order: 7; }
.page-about #contact { order: 8; }
.page-about .page-cta { order: 9; }

.page-about .credential-card {
  min-height: 230px;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
}

.page-about .credential-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}

.page-about .credential-zhaga {
  box-shadow: inset 0 4px 0 var(--client-copper);
}

.facility-gallery figure,
.event-gallery figure,
.process-card {
  overflow: hidden;
}

.facility-gallery img,
.event-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

@media (min-width: 961px) {
  .page-home .global-header:not(.is-scrolled):not(.has-open-menu) .site-main-row > .site-brand {
    width: 210px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .subpage h1 br,
  .subpage h2 br,
  .page-home h2 br {
    display: none;
  }

  .subpage h1 span {
    display: inline;
  }
}

@media (max-width: 1180px) and (min-width: 961px) {
  .site-main-row {
    grid-template-columns: 195px minmax(0, 1fr) 258px;
  }

  .site-brand,
  .site-main-row > .site-brand {
    width: 182px;
  }

  .nav-menu {
    width: 100%;
    column-gap: 0;
  }

  .site-actions {
    gap: 10px;
  }

  .site-action-search {
    width: 42px;
    height: 42px;
  }

  .site-language {
    width: 42px;
    height: 42px;
  }

  .site-rfq {
    min-width: 148px;
  }
}

@media (max-width: 960px) {
  .site-main-row {
    width: calc(100% - 32px);
  }

  .site-brand,
  .site-main-row > .site-brand {
    width: 168px;
  }

  .site-brand-logo {
    max-height: 52px;
  }

  .nav-menu {
    width: 100%;
    display: block;
  }

  .site-actions {
    display: none;
  }

  .nav-menu > .nav-language-mobile {
    display: block !important;
    width: 100%;
    margin-top: 20px;
    padding: 18px 0 0;
    color: var(--client-ink);
    border-top: 1px solid var(--line);
    background: transparent;
  }

  .nav-language-mobile > span {
    display: block;
    color: #66737a;
    font-size: 14px;
    font-weight: 750;
    letter-spacing: .04em;
  }

  .nav-language-mobile > div {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .nav-language-mobile a {
    min-height: 48px;
    display: grid;
    place-items: center;
    color: var(--client-ink);
    background: #fff;
    border: 1px solid #ccd5d9;
    font-size: 16px;
    font-weight: 650;
  }

  .nav-language-mobile a.is-current {
    color: #fff;
    background: var(--client-blue);
    border-color: var(--client-blue);
  }

  .nav-menu > .nav-search-mobile {
    width: 100%;
    display: flex !important;
    justify-content: flex-start;
  }

  .nav-search-mobile::after {
    margin-left: 16px;
    content: "站内搜索";
    font-size: 16px;
  }

  #menu-products .mega-inner {
    min-height: 0;
    padding: 4px 0 24px;
  }

  #menu-products .mega-columns {
    width: 100%;
    margin: 0;
  }

  .page-home .pathway-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-home .pathway {
    min-height: 210px;
    padding: 24px;
  }

  .page-home .home-about-scope {
    grid-template-columns: 1fr;
  }

  .page-home .home-about-scope li,
  .page-home .home-about-scope li:not(:first-child) {
    min-height: 62px;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid #d5dcdf;
  }

  .page-home .home-about-scope li:last-child {
    border-bottom: 0;
  }

  .page-home .home-about-product-proof {
    left: -76px;
    width: 250px;
    grid-template-columns: 92px 1fr;
  }

  .page-home .home-about-product-proof > img {
    width: 92px;
    height: 92px;
  }

  .page-home .home-about.home-about--profile {
    display: block;
  }

  .page-home .home-about--profile .home-about-panel {
    padding: 82px 28px 64px;
  }

  .page-home .home-about--profile .home-about-main-media {
    width: calc(100% - 56px);
    margin: 0 28px;
    aspect-ratio: 16 / 9;
  }

  .platform-experience.page-capabilities .capability-item {
    min-height: 390px;
  }
}

@media (max-width: 600px) {
  .page-home .home-about {
    display: block;
  }

  .page-home .home-about .eyebrow {
    font-size: 14px;
  }

  .page-home .hero-copy {
    right: 16px;
    bottom: 24px;
    left: 16px;
    padding: 20px 18px 18px;
    box-sizing: border-box;
    background: linear-gradient(135deg, rgba(4,18,28,.88), rgba(4,18,28,.58));
    border-left: 4px solid var(--client-copper);
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
    backdrop-filter: blur(3px);
  }

  .page-home .hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .page-home .hero-lead {
    max-width: none;
    color: #fff;
  }

  .page-home .home-about h2 {
    font-size: 36px;
    line-height: 1.14;
    white-space: normal;
  }

  .page-home .home-about--profile .home-about-panel {
    padding: 72px 20px 54px;
  }

  .page-home .home-about--profile .home-about-lead h2 {
    font-size: 32px;
    white-space: normal;
  }

  .page-home .home-about-line {
    width: 78px;
    margin-top: 20px;
  }

  .page-home .home-about-copy {
    padding-top: 0;
  }

  .page-home .home-about--profile .home-about-copy {
    padding-top: 26px;
  }

  .page-home .home-about--profile .home-about-copy p {
    font-size: 15px;
    line-height: 1.78;
  }

  .page-home .home-about-scope {
    margin-top: 25px;
  }

  .page-home .home-about-scope li,
  .page-home .home-about-scope li:not(:first-child) {
    min-height: 60px;
    padding: 12px 0;
  }

  .page-home .home-about-main-media {
    height: auto;
    overflow: hidden;
  }

  .page-home .home-about--profile .home-about-main-media {
    width: calc(100% - 32px);
    margin: 0 16px;
    aspect-ratio: 4 / 3;
  }

  .page-home .home-about-main-media > img {
    height: 82vw;
    object-position: 35% center;
  }

  .page-home .home-about--profile .home-about-main-media > img {
    height: 100%;
    object-position: 52% center;
  }

  .page-home .home-about-main-media figcaption {
    top: 14px;
    min-width: 182px;
    padding: 13px 14px;
  }

  .page-home .home-about-product-proof {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    min-height: 132px;
    padding: 14px 18px;
    grid-template-columns: 100px 1fr;
    box-shadow: none;
  }

  .page-home .home-about-product-proof > img {
    width: 100px;
    height: 100px;
  }

  .page-home .home-facts > div {
    min-height: 145px;
    padding: 24px 12px;
  }

  .page-home .pathway {
    min-height: 190px;
  }

  .platform-experience.page-capabilities .capability-item {
    min-height: 350px;
  }

  .platform-experience.page-capabilities .capability-item::before {
    height: 160px;
  }

  .category-principle-grid article {
    min-height: 330px;
    padding-top: 175px;
  }

  .category-principle-grid article::before {
    height: 145px;
  }

  .page-about .credential-card {
    min-height: 180px;
  }

  .page-about .credential-carousel-viewport {
    margin-right: 0;
  }

  .page-about .credential-card img {
    height: 90px;
  }
}

/* 首页第二屏：经确认的居中企业介绍版式 */
.page-home .home-about.home-about--approved {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  background: #fff;
}

.page-home .home-about--approved .home-about-frame {
  width: min(1220px, calc(100vw - 140px));
  min-height: calc(100svh - 74px);
  padding: 72px 0;
  display: grid;
  grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
  align-items: center;
  gap: 86px;
}

.page-home .home-about--approved .home-about-panel {
  min-height: 0;
  padding: 0 0 0 4px;
  background: transparent;
}

.page-home .home-about--approved .home-about-lead h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(40px, 3.35vw, 48px) !important;
  font-weight: 580;
  line-height: 1.1 !important;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.page-home .home-about--approved .home-about-line {
  width: 116px;
  height: 2px;
  margin-top: 27px;
  display: block;
  background: #cf2f2b;
}

.page-home .home-about--approved .home-about-copy {
  max-width: 450px;
  padding-top: 34px;
}

.page-home .home-about--approved .home-about-copy p {
  margin: 0;
  color: #59676f;
  font-size: 16px;
  line-height: 1.95;
}

.page-home .home-about--approved .home-about-copy .button {
  width: 168px;
  min-height: 56px;
  margin-top: 34px;
  background: #cf2f2b;
}

.page-home .home-about--approved .home-about-main-media {
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  align-self: center;
  aspect-ratio: 1.02 / 1;
  overflow: hidden;
  background: #dce3e5;
}

.page-home .home-about--approved .home-about-main-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 960px) {
  .page-home .home-about.home-about--approved {
    display: grid;
  }

  .page-home .home-about--approved .home-about-frame {
    width: calc(100% - 56px);
    min-height: 0;
    padding: 82px 0 70px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .page-home .home-about--approved .home-about-panel {
    padding: 0;
  }

  .page-home .home-about--approved .home-about-main-media {
    width: 100%;
    margin: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 600px) {
  .page-home .home-about.home-about--approved {
    display: grid;
  }

  .page-home .home-about--approved .home-about-frame {
    width: calc(100% - 32px);
    padding: 72px 0 60px;
    gap: 44px;
  }

  .page-home .home-about--approved .home-about-lead h2 {
    font-size: 32px !important;
    line-height: 1.12 !important;
    white-space: nowrap;
  }

  .page-home .home-about--approved .home-about-line {
    width: 78px;
    margin-top: 20px;
  }

  .page-home .home-about--approved .home-about-copy {
    padding-top: 26px;
  }

  .page-home .home-about--approved .home-about-copy p {
    font-size: 15px;
    line-height: 1.78;
  }

  .page-home .home-about--approved .home-about-copy .button {
    min-height: 52px;
    margin-top: 28px;
  }

  .page-home .home-about--approved .home-about-main-media {
    width: 100%;
    margin: 0;
    aspect-ratio: 4 / 3;
  }

  .page-home .home-about--approved .home-about-main-media > img {
    height: 100%;
    object-position: 50% center;
  }
}
