:root {
  --brand-blue: #0788c8;
  --brand-deep: #0b3552;
  --brand-orange: #ef5b2a;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  color: #20252b;
  background: #fff;
  overflow-x: hidden;
}

.bg-white {
  background-color: #fff !important;
}

.container-page {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 72px;
  color: #3d4650;
  font-size: 14px;
  transition: color .2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--brand-blue);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--brand-blue);
}

.product-nav {
  position: relative;
  height: 72px;
}

.product-submenu {
  position: absolute;
  top: 72px;
  left: 50%;
  z-index: 60;
  display: none;
  width: min(820px, calc(100vw - 32px));
  min-height: 150px;
  grid-template-columns: minmax(220px, 260px) minmax(150px, 190px) minmax(260px, 1fr);
  border-top: 3px solid var(--brand-blue);
  background: transparent;
  box-shadow: 0 18px 36px rgba(15, 35, 52, .12);
  transform: translateX(-35%);
}

.product-nav:hover .product-submenu,
.product-nav:focus-within .product-submenu {
  display: grid;
}

.product-submenu a {
  display: block;
  color: #27313b;
  font-size: 13px;
  line-height: 1.45;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: color .2s ease, background .2s ease;
}

.product-submenu a:hover {
  color: var(--brand-blue);
}

.product-submenu-feature {
  padding: 18px 20px;
  background: rgba(255, 255, 255, .88);
}

.product-submenu-feature a,
.product-submenu-feature p {
  display: block;
  margin: 0;
  padding: 7px 0;
  color: #27313b;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.product-submenu-panel {
  display: none;
}

.product-submenu-panel.is-active {
  display: block;
}

.product-submenu-cats {
  border-left: 1px solid #eef2f6;
  border-right: 1px solid #eef2f6;
  padding: 17px 14px;
  background: #fff;
}

.product-submenu-cats a {
  position: relative;
  padding: 7px 0 7px 18px;
  line-height: 1.35;
}

.product-submenu-cats a.is-active {
  color: var(--brand-blue);
  font-weight: 700;
}

.product-submenu-cats a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--brand-blue);
}

.product-submenu-list {
  padding: 15px 20px;
  background: #fff;
}

.product-submenu-list a {
  position: relative;
  padding: 5px 0 5px 18px;
  line-height: 1.35;
}

.product-submenu-list a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #7b8794;
}

.core-submenu {
  width: 420px;
  min-height: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .94);
  transform: translateX(-50%);
}

.core-submenu a {
  position: relative;
  padding: 8px 8px 8px 18px;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
}

.core-submenu a::before {
  content: "›";
  position: absolute;
  left: 6px;
  color: var(--brand-blue);
}

.core-business-submenu {
  width: min(760px, calc(100vw - 32px));
  grid-template-columns: repeat(3, minmax(190px, 1fr));
  column-gap: 10px;
  row-gap: 2px;
  align-items: start;
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-left: 200px;
}

.header-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 34px;
  height: 34px;
  color: #1f2933;
  transition: color .2s ease, background .2s ease;
}

.header-icon-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-icon-button span {
  font-size: 11px;
  font-weight: 600;
}

.header-icon-button:hover,
.header-icon-button[aria-expanded="true"] {
  color: var(--brand-blue);
}

.search-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 72px;
  background: rgba(15, 23, 42, .38);
  opacity: 0;
  transition: opacity .24s ease;
}

.search-panel.is-open {
  opacity: 1;
}

.search-form {
  display: block;
  width: min(1200px, calc(100% - 120px));
  min-height: 258px;
  margin: 0 auto;
  padding: 32px 32px 72px;
  background: #fff;
  text-align: center;
  transform: translateY(-14px);
  transition: transform .24s ease;
}

.search-panel.is-open .search-form {
  transform: translateY(0);
}

.search-form h2 {
  margin: 0 0 36px;
  color: #111827;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
}

.search-form-control {
  display: flex;
  width: min(600px, 100%);
  height: 60px;
  margin: 0 auto;
}

.search-form input {
  min-width: 0;
  flex: 1;
  height: 100%;
  border: 1px solid #e5e7eb;
  border-right: 0;
  padding: 0 16px;
  color: #20252b;
  font-size: 14px;
  outline: none;
}

.search-form input::placeholder {
  color: #d1d5db;
}

.search-form input:focus {
  border-color: var(--brand-blue);
  box-shadow: none;
}

.search-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 0;
  background: var(--brand-blue);
  color: #fff;
  cursor: pointer;
}

.search-form button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 126px;
  border: 1px solid #e3e8ee;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 35, 52, .13);
}

.language-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 14px;
  width: 12px;
  height: 12px;
  border-left: 1px solid #e3e8ee;
  border-top: 1px solid #e3e8ee;
  background: #fff;
  transform: rotate(45deg);
}

.language-menu::after {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  width: 100%;
  height: 10px;
}

.language-menu button {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px 14px;
  text-align: left;
  font-size: 13px;
  color: #3d4650;
}

.language-menu button:hover {
  color: var(--brand-blue);
  background: #f4f9fc;
}

.hero-mask {
  background: linear-gradient(90deg, rgba(0, 0, 0, .54), rgba(0, 0, 0, .18), rgba(0, 0, 0, 0));
}

.home-banner .container-page>div>h1,
.home-banner .container-page>div>p,
.home-banner .container-page>div>div {
  display: none;
}

.home-intro {
  background: #fff;
  text-align: center;
}

.home-intro h2 {
  color: #0c1117;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.3;
}

.home-intro-text {
  max-width: 720px;
  margin: 18px auto 0;
  color: #7a828b;
  font-size: 14px;
  line-height: 1.9;
}

.home-stats {
  display: grid;
  max-width: 760px;
  margin: 34px auto 0;
  gap: 28px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-stat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: left;
}

.home-stat img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.home-stat strong {
  display: block;
  color: #070b10;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.home-stat span {
  display: block;
  margin-top: 5px;
  color: #20252b;
  font-size: 12px;
  font-weight: 600;
}

.home-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 30px;
  margin-top: 28px;
  border-radius: 999px;
  background: var(--brand-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}

.home-more-button:hover {
  background: #0575ad;
  transform: translateY(-1px);
}

.home-intro-old {
  display: none;
}

.home-products-accordion {
  background: #fff;
  padding-bottom: 36px;
}

.home-accordion {
  display: flex;
  width: 100%;
  height: 500px;
  margin-inline: auto;
  overflow: hidden;
  background: #0b1726;
}

/* 设置透明度 */
.home-accordion-item {
  --accordion-image: url("../images/pro1.jpg");
  position: relative;
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  align-items: flex-end;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, .56)), var(--accordion-image);
  background-position: center;
  background-size: cover;
  color: #fff;
  transition: flex-basis .36s ease, flex-grow .36s ease, filter .36s ease;
}

.home-accordion-item:nth-child(1) {
  --accordion-image: url("../images/pro1.jpg");
}

.home-accordion-item:nth-child(2) {
  --accordion-image: url("../images/pro2.jpg");
}

.home-accordion-item:nth-child(3) {
  --accordion-image: url("../images/pro3.jpg");
}

.home-accordion-item:nth-child(4) {
  --accordion-image: url("../images/pro4.jpg");
}

.home-accordion-item:nth-child(5) {
  --accordion-image: url("../images/pro5.jpg");
}

.home-accordion-item:nth-child(6) {
  --accordion-image: url("../images/pro6.jpg");
}

.home-accordion-item:nth-child(7) {
  --accordion-image: url("../images/pro7.jpg");
}

.home-accordion-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  transition: background .3s ease;
}

.home-accordion:hover .home-accordion-item {
  flex-grow: .72;
}

.home-accordion .home-accordion-item:hover {
  flex-grow: 1.44;
  filter: saturate(1.08);
  background-image: var(--accordion-image);
}

.home-accordion .home-accordion-item:hover::after {
  background: rgba(0, 0, 0, 0);
}

.home-accordion-title {
  position: relative;
  z-index: 1;
  display: block;
  width: calc(100% - 18px);
  margin: 0 18px 56px 0;
  padding: 0 0 0 16px;
  border-left: 2px solid var(--brand-orange);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
  white-space: nowrap;
  transition: margin-bottom .3s ease, transform .3s ease, border-color .3s ease, font-size .3s ease;
}

.home-accordion-item:hover .home-accordion-title {
  margin-bottom: 235px;
  border-left-color: transparent;
  font-size: 36px;
  transform: translateY(-6px);
}

.home-accordion-more {
  position: absolute;
  left: 18px;
  bottom: 26px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 15px;
  background: var(--brand-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}

.home-accordion-item:hover .home-accordion-more {
  opacity: 1;
  transform: translateY(-28px);
}

.home-core-section {
  background: #fff;
  padding: 70px 0 84px;
}

.home-core-inner {
  width: 100%;
  padding-inline: 0;
}

.home-core-title {
  position: relative;
  display: table;
  margin: 0 auto 58px;
  background: linear-gradient(to top, #0788c8 0 8px, transparent 8px) no-repeat 0 100% / 100% 18px;
  color: #0c1117;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  text-align: center;
}

.home-core-title::after {
  content: none;
}

.home-core-layout {
  display: grid;
  align-items: stretch;
  gap: 40px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  width: 100%;
}

.home-core-preview {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.home-core-preview img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.home-core-caption {
  position: absolute;
  border-bottom: solid 10px#0788c8;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 28px;
  background: linear-gradient(90deg, rgba(6, 23, 38, .68), rgba(6, 23, 38, .34));
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
}

.home-core-tabs {
  display: grid;
  height: 100%;
  align-content: start;
  grid-template-rows: repeat(9, 1fr);
}

.home-core-tab {
  display: grid;
  align-items: center;
  width: 100%;
  min-height: 0;
  grid-template-columns: 72px 1fr 44px;
  border: 0;
  border-bottom: 1px solid rgba(148, 163, 184, .15);
  background: transparent;
  color: #a7a9ac;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background .2s ease, color .2s ease;
}

.home-core-tab span:not(.home-core-icon) {
  font-size: 15px;
}

.home-core-tab b {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  opacity: .55;
}

.home-core-tab:hover,
.home-core-tab.is-active {
  background: var(--brand-blue);
  color: #fff;
  font-weight: bold;
}

.home-core-tab:hover b,
.home-core-tab.is-active b {
  opacity: 1;
}

.home-core-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 100%;
}

.home-core-icon img {
  position: absolute;
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: opacity .18s ease;
}

.home-core-icon .icon-active,
.home-core-tab:hover .icon-default,
.home-core-tab.is-active .icon-default {
  opacity: 0;
}

.home-core-tab:hover .icon-active,
.home-core-tab.is-active .icon-active {
  opacity: 1;
}

.home-core-old {
  display: none;
}

.home-partners {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 70px 0 54px;
}

.home-partners h2 {
  position: relative;
  display: table;
  margin-bottom: 54px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(to top, #0788c8 0 8px, transparent 8px) no-repeat 0 100% / 100% 18px;
  color: #0c1117;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  text-align: center;
}

.home-partners h2::after {
  content: none;
}

.partner-marquee {
  width: 100%;
}

.partner-track {
  display: flex;
  width: max-content;
  gap: 28px;
  animation: partner-scroll 48s linear infinite;
}

.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}

.partner-track img {
  width: 172px;
  height: 172px;
  flex: 0 0 auto;
  object-fit: contain;
  padding: 26px 22px;
  background: #ffffff;
  box-shadow: -8px 14px 16px rgba(15, 23, 42, .08);
}

@keyframes partner-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 14px));
  }
}

.home-solution-cta {
  background: #fff;
  padding: 74px 16px 84px;
  text-align: center;
}

.home-solution-cta h2 {
  color: #070b10;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.35;
}

.home-solution-cta p {
  margin-top: 18px;
  color: #252b32;
  font-size: 16px;
  line-height: 1.8;
}

.home-solution-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 44px;
  margin-top: 28px;
  background: var(--brand-blue);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s ease;
}

.home-solution-cta a:hover {
  background: #0575ad;
}

.home-product-old {
  display: none;
}

.section-title {
  color: #151b22;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  text-align: center;
}

.title-mark {
  background: linear-gradient(to top, #0788c8 0 8px, transparent 8px) no-repeat 0 100% / 100% 18px;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--brand-blue);
}

.home-reveal,
.site-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity .78s cubic-bezier(.2, .7, .2, 1),
    transform .78s cubic-bezier(.2, .7, .2, 1),
    filter .78s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.home-reveal.reveal-left,
.site-reveal.reveal-left {
  transform: translate3d(-24px, 0, 0);
}

.home-reveal.reveal-right,
.site-reveal.reveal-right {
  transform: translate3d(24px, 0, 0);
}

.home-reveal.reveal-zoom,
.site-reveal.reveal-zoom {
  filter: blur(2px);
  transform: scale(.96);
}

.home-reveal.is-visible,
.site-reveal.is-visible {
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {

  .home-reveal,
  .site-reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

.blue-bar {
  border-top: 4px solid var(--brand-blue);
}

.product-info-description img {
  width: initial !important;
  height: initial !important;
}

.core-related-cases {
  padding: 48px 0 62px;
}

.hoverorange a:hover {
  color: rgb(249 115 22 / var(--tw-text-opacity, 1))
}

.orangeunderline {
  background: linear-gradient(to top, #F97316 0 8px, transparent 8px) no-repeat 0 100% / 100% 18px;
}

.about-us-page .grid-cols-4>*,
.about-us-page .md\:grid-cols-4>* {
  overflow: hidden;
}

.about-us-page .grid-cols-4 img,
.about-us-page .md\:grid-cols-4 img {
  transition: transform .32s ease, filter .32s ease;
  will-change: transform;
}

.about-us-page .grid-cols-4>*:hover img,
.about-us-page .md\:grid-cols-4>*:hover img {
  filter: saturate(1.06);
  transform: scale(1.06);
}

.core-related-title {
  display: table;
  margin-bottom: 40px;
  background: linear-gradient(to top, #0788c8 0 8px, transparent 8px) no-repeat 0 100% / 100% 18px;
  color: #05080b;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
}

.core-related-title::after {
  content: none;
}

.product-detail-description {
  max-width: 920px;
}

.product-detail-description h2,
.product-detail-description h3,
.product-detail-description h4 {
  margin: 28px 0 8px;
  color: #05080b;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.product-detail-description p {
  margin: 0 0 14px;
}

.product-detail-description ul {
  margin: 8px 0 18px;
  padding-left: 0;
  list-style: none;
}

.product-detail-description li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 14px;
}

.product-detail-description li::before {
  content: "";
  position: absolute;
  top: .85em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--brand-blue);
}

.core-case-viewport {
  overflow: hidden;
}

.core-case-track {
  display: flex;
  gap: 90px;
  transition: transform .4s ease;
}

.core-case-slide {
  flex: 0 0 calc((100% - 180px) / 3);
  color: #05080b;
  text-align: center;
}

.core-case-slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.core-case-slide h3 {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.core-case-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.core-case-dot {
  width: 8px;
  height: 8px;
  border: 0;
  background: #a8adb2;
  cursor: pointer;
}

.core-case-dot.is-active {
  background: var(--brand-blue);
}

.core-case-swiper.is-static .core-case-viewport {
  overflow: visible;
}

.core-case-swiper.is-static .core-case-track {
  flex-wrap: wrap;
  transform: none !important;
  transition: none;
}

.core-case-swiper.is-static .core-case-dots {
  display: none;
}

@media (max-width: 767px) {
  .core-related-cases {
    padding: 40px 0 50px;
  }

  .core-case-track {
    gap: 22px;
  }

  .core-case-slide {
    flex-basis: 100%;
  }

  .core-case-slide h3 {
    font-size: 18px;
  }
}

.card-hover {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(13, 52, 76, .13);
  border-color: rgba(7, 136, 200, .38);
}

.category-product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 56px 72px;
  align-items: flex-start;
  overflow: visible;
  height: auto;
  min-height: 0;
  padding-bottom: 24px;
}

.category-product-card {
  display: block;
  flex: 0 0 calc((100% - 144px) / 3);
  width: calc((100% - 144px) / 3);
  color: #020617;
  text-align: center;
  text-decoration: none;
  transition: transform .24s ease, box-shadow .24s ease;
}

.category-product-card:hover {
  transform: translateY(-4px);
}

.category-product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.category-product-card div {
  padding-top: 22px;
  color: #020617;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.search-results-page {
  background: #fff;
}

.search-results-hero {
  border-bottom: 1px solid #e8edf2;
  background: linear-gradient(180deg, #f6fbfe 0%, #fff 100%);
  padding: 50px 0 44px;
}

.search-results-eyebrow {
  margin-bottom: 12px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.search-results-heading {
  display: grid;
  align-items: end;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
}

.search-results-heading h1 {
  color: #07111c;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.18;
}

.search-results-heading p {
  margin-top: 12px;
  color: #6b7684;
  font-size: 15px;
  line-height: 1.7;
}

.search-results-form {
  display: flex;
  height: 50px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 35, 52, .1);
}

.search-results-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid #dfe7ee;
  border-right: 0;
  padding: 0 16px;
  color: #111827;
  font-size: 14px;
  outline: none;
}

.search-results-form input:focus {
  border-color: var(--brand-blue);
}

.search-results-form button {
  width: 110px;
  border: 0;
  background: var(--brand-blue);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: background .2s ease;
}

.search-results-form button:hover {
  background: #0575ad;
}

.search-results-body {
  padding: 54px 0 72px;
}

.search-results-grid {
  display: grid;
  gap: 34px 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.search-result-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  color: #07111c;
  text-decoration: none;
}

.search-result-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f2f6f9;
}

.search-result-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .32s ease, filter .32s ease;
}

.search-result-card:hover .search-result-image img {
  filter: saturate(1.06);
  transform: scale(1.06);
}

.search-result-content {
  display: flex;
  min-height: 172px;
  flex: 1;
  flex-direction: column;
  border: 1px solid #e8edf2;
  border-top: 0;
  padding: 22px 22px 20px;
  transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.search-result-card:hover .search-result-content {
  border-color: rgba(7, 136, 200, .28);
  box-shadow: 0 18px 34px rgba(15, 35, 52, .1);
  transform: translateY(-3px);
}

.search-result-title {
  display: block;
  color: #07111c;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.search-result-desc {
  display: -webkit-box;
  margin-top: 12px;
  overflow: hidden;
  color: #64707d;
  font-size: 14px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.search-result-desc p {
  margin: 0;
}

.search-result-more {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 900;
}

.search-result-more::after {
  content: "";
  width: 22px;
  height: 1px;
  margin-left: 10px;
  background: currentColor;
  transition: width .2s ease;
}

.search-result-card:hover .search-result-more::after {
  width: 34px;
}

.search-empty-state {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8edf2;
  background: #fbfdff;
  padding: 48px 20px;
  text-align: center;
}

.search-empty-icon {
  display: inline-flex;
  width: 82px;
  height: 82px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfe7ee;
  border-radius: 50%;
  color: var(--brand-blue);
}

.search-empty-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.search-empty-state h2 {
  margin-top: 22px;
  color: #07111c;
  font-size: 26px;
  font-weight: 900;
}

.search-empty-state p {
  margin-top: 10px;
  color: #64707d;
  font-size: 14px;
}

.search-empty-state a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 40px;
  margin-top: 24px;
  background: var(--brand-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.search-results-pagination {
  margin-top: 44px;
}

.search-results-pagination .pagination,
.search-results-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.search-results-pagination li {
  list-style: none;
}

.search-results-pagination a,
.search-results-pagination span {
  display: inline-flex;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfe7ee;
  padding: 0 12px;
  color: #2d3742;
  font-size: 13px;
  font-weight: 700;
}

.search-results-pagination a:hover,
.search-results-pagination .active span,
.search-results-pagination .active a {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  color: #fff;
}

body:has(.category-product-grid) .core-case-track {
  transform: none !important;
  display: flex;
  flex-wrap: wrap;
  gap: 56px 72px;
}

body:has(.category-product-grid) .core-case-slide {
  flex: 0 0 calc((100% - 144px) / 3);
  width: calc((100% - 144px) / 3);
}

@media (max-width: 1023px) {
  .category-product-grid {
    gap: 44px 36px;
  }

  .category-product-card {
    flex-basis: calc((100% - 36px) / 2);
    width: calc((100% - 36px) / 2);
  }

  .search-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .category-product-grid {
    gap: 36px;
  }

  .category-product-card {
    flex-basis: 100%;
    width: 100%;
  }

  .search-results-hero {
    padding: 38px 0 34px;
  }

  .search-results-heading {
    grid-template-columns: 1fr;
  }

  .search-results-form {
    height: auto;
    flex-direction: column;
    box-shadow: none;
  }

  .search-results-form input,
  .search-results-form button {
    width: 100%;
    height: 46px;
    border: 1px solid #dfe7ee;
  }

  .search-results-form button {
    margin-top: 10px;
  }

  .search-results-body {
    padding: 38px 0 54px;
  }

  .search-results-grid {
    grid-template-columns: 1fr;
  }

  .search-result-content {
    min-height: 0;
  }
}

.prose-static p {
  margin-bottom: 16px;
  line-height: 1.95;
  color: #56616e;
}

.footer-link {
  color: #a9b2bd;
  line-height: 2;
  transition: color .2s ease;
}

.footer-link:hover {
  color: #fff;
}

.site-footer {
  background: #000;
  color: #fff;
}

.site-footer-inner {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
  padding: 36px 0 18px;
}

.footer-social {
  display: flex;
  gap: 16px;
  padding-bottom: 28px;
}

.footer-social a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
}

.footer-social img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.wechat-popup[hidden] {
  display: none;
}

.wechat-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.wechat-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
}

.wechat-popup__content {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(320px, calc(100vw - 48px));
  min-height: 320px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 24px 72px rgba(0, 0, 0, .36);
}

.wechat-popup__content img {
  width: min(240px, 100%);
  height: auto;
  object-fit: contain;
}

.wechat-popup__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.wechat-popup-open {
  overflow: hidden;
}

.footer-main {
  display: grid;
  gap: 56px;
  grid-template-columns: 360px 1fr;
  border-top: 1px solid rgba(255, 255, 255, .38);
  padding: 34px 0 44px;
}

.footer-logo {
  width: 168px;
  height: auto;
  margin-bottom: 24px;
  object-fit: contain;
}

.footer-contact h3,
.footer-col h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.footer-contact p,
.footer-col a,
.footer-col strong {
  display: block;
  color: #9b9b9b;
  font-size: 14px;
  line-height: 1.7;
}

.footer-col strong {
  margin-bottom: 4px;
  color: #fff;
  font-weight: 800;
}

.footer-columns>.footer-col:nth-child(3) a,
.footer-columns>.footer-col:nth-child(4) a {
  color: #fff;
  font-weight: 800;
}

.footer-col a:hover {
  color: #fff;
}

.footer-columns {
  display: grid;
  gap: 42px;
  grid-template-columns: 1.7fr 1fr .9fr .9fr;
}

.footer-product-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1.2fr;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, .38);
  padding-top: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 767px) {
  .nav-link {
    height: 44px;
  }

  .nav-link.is-active::after {
    display: none;
  }

  .header-tools {
    gap: 24px;
    margin-left: 0;
  }

  .header-icon-button {
    width: 32px;
    height: 32px;
  }

  .search-form {
    width: calc(100% - 32px);
    min-height: 210px;
    padding-block: 24px 36px;
  }

  .search-form h2 {
    margin-bottom: 22px;
    font-size: 15px;
  }

  .search-form-control {
    width: 100%;
  }

  .home-stats {
    max-width: 360px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-stat {
    justify-content: flex-start;
  }

  .home-stat strong {
    font-size: 26px;
  }

  .home-products-accordion {
    padding-bottom: 28px;
  }

  .home-accordion {
    height: 420px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .home-accordion-item,
  .home-accordion:hover .home-accordion-item,
  .home-accordion .home-accordion-item:hover {
    flex: 0 0 210px;
    scroll-snap-align: start;
  }

  .home-accordion-title {
    white-space: normal;
  }

  .home-core-section {
    padding: 46px 0 58px;
  }

  .home-core-title {
    margin-bottom: 30px;
  }

  .home-core-layout {
    gap: 22px;
    grid-template-columns: 1fr;
  }

  .home-core-preview,
  .home-core-preview img {
    min-height: 300px;
  }

  .home-core-tab {
    grid-template-columns: 56px 1fr 34px;
  }

  .home-core-icon {
    width: 56px;
  }

  .site-footer-inner {
    width: min(100% - 32px, 1120px);
  }

  .footer-main,
  .footer-columns,
  .footer-product-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .home-partners {
    padding: 46px 0 42px;
  }

  .home-partners h2 {
    margin-bottom: 30px;
  }

  .partner-track {
    gap: 18px;
    animation-duration: 36s;
  }

  .partner-track img {
    width: 140px;
    height: 92px;
    padding: 20px 18px;
  }
}