html {
  scrollbar-gutter: stable;
}

html.is-product-dropdown-open {
  overscroll-behavior: none;
}

:root {
  --font-family-base: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
  --color-primary: var(--theme-default-color, #00378b);
  --color-primary-strong: var(--theme-default-color, #00378b);
  --color-secondary: #00378b;
  --color-text: #101828;
  --color-muted: #4a5565;
  --color-soft: #d1d5dc;
  --color-border: #e5e7eb;
  --color-panel: #ffffff;
  --color-panel-soft: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
  --icon-green-filter: brightness(0) saturate(100%) invert(44%) sepia(96%) saturate(1265%) hue-rotate(93deg) brightness(98%) contrast(101%);
  --shadow-soft: 0 18px 48px rgba(0, 27, 71, 0.08);
  --shadow-button: 0 12px 24px color-mix(in srgb, var(--theme-default-color, #00378b) 22%, transparent);
  --radius-xl: 24px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-pill: 999px;
  --transition: 220ms ease;
  /* 顶栏实际高度：padding 16×2 + 内容区 min-height 44（与 .btn--call 一致） */
  --site-header-height: 76px;
  --cs-sticky-header: var(--site-header-height);
  --ic-header-offset: var(--site-header-height);
}

@media (max-width: 968px) {
  :root {
    /* padding 14×2 + 按钮 min-height 40 */
    --site-header-height: 68px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--color-text);
  background: #ffffff;
  font-family: var(--font-family-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

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

ul,
ol,
p,
h1,
h2,
h3,
h4,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

.container {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 80px 0;
}

.section--soft {
  background: var(--color-panel-soft);
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 64px;
  text-align: center;
}

.section-head--light .section-title,
.section-head--light .section-text {
  color: #ffffff;
}

.section-head--light .section-text {
  opacity: 0.88;
}

.eyebrow {
  color: var(--color-primary);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 48px;
  font-weight: 400;
}

.section-line {
  width: 80px;
  height: 4px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
}

.section-text {
  max-width: 760px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
}

.panel {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  /* box-shadow: var(--shadow-soft); */
}

.card-grid {
  display: grid;
  gap: 25px;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  /* background: #00378b; */
  color: #ffffff;
}

.icon-badge--hero {
  width: 48px;
  height: 48px;
  background: rgba(0, 170, 26, 0.22);
  color: var(--color-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}


.btn--primary {
  color: #ffffff;
  background: var(--color-primary);
  /* box-shadow: var(--shadow-button); */
}

.btn--primary:hover {
  background: var(--color-primary-strong);
}

.btn--secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.18); 
  backdrop-filter: blur(1px);
}

.btn--glass {
  min-height: 44px;
  padding: 12px 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

/* Keep non-home first-screen banners from being covered by the fixed header */
body:not(.home-page) main {
  margin-top: var(--site-header-height);
}
/*新增*/
.product-dropdown-category-text strong{
   font-weight: 500 !important;
}
.product-dropdown-menu .is-active strong{
  font-weight: 600 !important;
}
@media (max-width: 1199px) {
  body:not(.home-page) .news-hero,
  body:not(.home-page) .joinus-hero,
  body:not(.home-page) .cases-hero,
  body:not(.home-page) .support-hero,
  body:not(.home-page) .culture-about__hero,
  body:not(.home-page) .relation-hero,
  body:not(.home-page) .about-hero,
  body:not(.home-page) .factory-hero,
  body:not(.home-page) .newsdetail-hero,
  body:not(.home-page) .casedetail-hero,
  body:not(.home-page) .product-hero {
    height: 420px !important;
    min-height: 420px !important;
  }

  body:not(.home-page) .news-hero-container,
  body:not(.home-page) .joinus-hero-container,
  body:not(.home-page) .cases-hero__shell,
  body:not(.home-page) .support-hero-container,
  body:not(.home-page) .culture-about__shell,
  body:not(.home-page) .relation-hero-container,
  body:not(.home-page) .about-hero-content,
  body:not(.home-page) .factory-hero-content,
  body:not(.home-page) .newsdetail-hero-container,
  body:not(.home-page) .casedetail-hero-content,
  body:not(.home-page) .product-hero-grid {
    height: 100% !important;
    min-height: 100% !important;
  }
}

.site-header.is-scrolled,
.site-header.is-menu-open,
.site-header.is-search-open,
.site-header:hover,
.site-header:focus-within {
  background: var(--header-scroll-color, var(--theme-default-color, #00378b));
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
}

.site-header.is-scrolled .brand img,
.site-header:hover .brand img,
.site-header:focus-within .brand img {
  filter: none;
}

.site-header.is-scrolled .nav-link,
.site-header:hover .nav-link,
.site-header:focus-within .nav-link {
  color: var(--header-scroll-font-color-soft, rgba(255, 255, 255, 0.86));
}

.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link:focus-visible,
.site-header:hover .nav-link:hover,
.site-header:hover .nav-link:focus-visible,
.site-header:focus-within .nav-link:hover,
.site-header:focus-within .nav-link:focus-visible {
  color: var(--theme-default-font-color, #101828);
}

.site-header.is-scrolled .nav-link.is-active,
.site-header:hover .nav-link.is-active,
.site-header:focus-within .nav-link.is-active {
  color: var(--theme-default-font-color, #101828);
}

.site-header.is-scrolled .nav-link.is-active.is-suspended-active,
.site-header:hover .nav-link.is-active.is-suspended-active,
.site-header:focus-within .nav-link.is-active.is-suspended-active {
  color: var(--header-scroll-font-color-soft, rgba(255, 255, 255, 0.86));
}

.site-header.is-scrolled .site-nav-link--product-wrap:hover .nav-link--product,
.site-header.is-scrolled .site-nav-link--product-wrap:focus-within .nav-link--product,
.site-header.is-scrolled .site-nav-link--product-wrap.is-open .nav-link--product,
.site-header:hover .site-nav-link--product-wrap:hover .nav-link--product,
.site-header:hover .site-nav-link--product-wrap:focus-within .nav-link--product,
.site-header:hover .site-nav-link--product-wrap.is-open .nav-link--product,
.site-header:focus-within .site-nav-link--product-wrap:hover .nav-link--product,
.site-header:focus-within .site-nav-link--product-wrap:focus-within .nav-link--product,
.site-header:focus-within .site-nav-link--product-wrap.is-open .nav-link--product {
  color: var(--theme-default-font-color, #101828);
}

.site-header.is-scrolled .nav-link__icon,
.site-header:hover .nav-link__icon,
.site-header:focus-within .nav-link__icon {
  filter: var(--header-scroll-icon-filter, brightness(0) saturate(100%) invert(100%));
}

.site-header.is-scrolled .lang-toggle,
.site-header:hover .lang-toggle,
.site-header:focus-within .lang-toggle {
  color: var(--header-scroll-font-color, #ffffff);
  background: transparent;
  box-shadow: none;
}

.site-header.is-scrolled .header-search-toggle,
.site-header:hover .header-search-toggle,
.site-header:focus-within .header-search-toggle {
  color: var(--header-scroll-font-color, #ffffff);
  border-color: transparent;
  background: transparent;
}

.site-header.is-scrolled .lang-toggle__icon,
.site-header:hover .lang-toggle__icon,
.site-header:focus-within .lang-toggle__icon {
  filter: var(--header-scroll-icon-filter, brightness(0) saturate(100%) invert(100%));
}

.site-header.is-scrolled .lang-toggle__text,
.site-header:hover .lang-toggle__text,
.site-header:focus-within .lang-toggle__text {
  border-left-color: var(--header-scroll-border-color, rgba(255, 255, 255, 0.38));
}

.site-header.is-scrolled .nav-toggle,
.site-header:hover .nav-toggle,
.site-header:focus-within .nav-toggle {
  color: var(--header-scroll-font-color, #ffffff);
  background: var(--header-scroll-toggle-bg, rgba(255, 255, 255, 0.12));
  border-color: var(--header-scroll-toggle-border, rgba(255, 255, 255, 0.28));
}

.site-header.is-scrolled .nav-toggle__icon,
.site-header:hover .nav-toggle__icon,
.site-header:focus-within .nav-toggle__icon {
  filter: var(--header-scroll-icon-filter, brightness(0) saturate(100%) invert(100%));
}

/* Product list/detail pages use light top sections, so keep header readable without waiting for scroll */
body.product-page .site-header,
body.productdetail-page .site-header {
  background: var(--header-scroll-color, var(--theme-default-color, #00378b));
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
}

body.product-page .site-header .nav-link,
body.productdetail-page .site-header .nav-link {
  color: var(--header-scroll-font-color-soft, rgba(255, 255, 255, 0.86));
}

body.product-page .site-header .nav-link:hover,
body.product-page .site-header .nav-link:focus-visible,
body.product-page .site-header .nav-link.is-active,
body.productdetail-page .site-header .nav-link:hover,
body.productdetail-page .site-header .nav-link:focus-visible,
body.productdetail-page .site-header .nav-link.is-active {
  color: var(--theme-default-font-color, #101828);
}

body.product-page .site-header .nav-link.is-active.is-suspended-active,
body.productdetail-page .site-header .nav-link.is-active.is-suspended-active {
  color: var(--header-scroll-font-color-soft, rgba(255, 255, 255, 0.86));
}

body.product-page .site-header .site-nav-link--product-wrap:hover .nav-link--product,
body.product-page .site-header .site-nav-link--product-wrap:focus-within .nav-link--product,
body.product-page .site-header .site-nav-link--product-wrap.is-open .nav-link--product,
body.productdetail-page .site-header .site-nav-link--product-wrap:hover .nav-link--product,
body.productdetail-page .site-header .site-nav-link--product-wrap:focus-within .nav-link--product,
body.productdetail-page .site-header .site-nav-link--product-wrap.is-open .nav-link--product {
  color: var(--theme-default-font-color, #101828);
}

body.product-page .site-header .nav-link__icon,
body.product-page .site-header .lang-toggle__icon,
body.product-page .site-header .nav-toggle__icon,
body.productdetail-page .site-header .nav-link__icon,
body.productdetail-page .site-header .lang-toggle__icon,
body.productdetail-page .site-header .nav-toggle__icon {
  filter: var(--header-scroll-icon-filter, brightness(0) saturate(100%) invert(100%));
}

body.product-page .site-header .lang-toggle,
body.product-page .site-header .header-search-toggle,
body.product-page .site-header .nav-toggle,
body.productdetail-page .site-header .lang-toggle,
body.productdetail-page .site-header .header-search-toggle,
body.productdetail-page .site-header .nav-toggle {
  color: var(--header-scroll-font-color, #ffffff);
}

body.product-page .site-header .lang-toggle__text,
body.productdetail-page .site-header .lang-toggle__text {
  border-left-color: var(--header-scroll-border-color, rgba(255, 255, 255, 0.38));
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 110px;
  min-width: 110px;
}

.brand img {
  width: 100%;
  height: 40px;
  object-fit: contain;
  object-position: left center;
}

/* Keep logo rendering size stable across default/hover/scrolled states */
#siteHeaderLogo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 40px;
  max-height: 40px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 32px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 400;
  transition: color var(--transition), opacity var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #ffffff;
}

.nav-link.is-active {
  color: #ffffff;
  font-weight: 600;
}

.nav-link.is-active.is-suspended-active {
  color: rgba(255, 255, 255, 0.86);
}

.site-nav-link--product-wrap:hover .nav-link--product,
.site-nav-link--product-wrap:focus-within .nav-link--product,
.site-nav-link--product-wrap.is-open .nav-link--product {
  color: #ffffff;
}

.site-nav-link-wrap {
  position: relative;
}

.nav-link--product {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link__icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(100%);
  transition: transform var(--transition);
}

.site-nav-link--product-wrap:hover .nav-link__icon,
.site-nav-link--product-wrap:focus-within .nav-link__icon,
.site-nav-link--product-wrap.is-open .nav-link__icon {
  transform: rotate(180deg);
}

.product-dropdown {
  position: fixed;
  left: 0;
  right: 0;
  top: 72px;
  padding: 20px 0 24px;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 24px 64px rgba(16, 24, 40, 0.14);
  backdrop-filter: blur(18px);
  z-index: 29;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.product-dropdown::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.site-nav-link--product-wrap::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 72px;
  bottom: 0;
  background: rgba(16, 24, 40, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 28;
}

.site-nav-link--product-wrap.is-open .product-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.product-dropdown-shell {
  display: grid;
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.product-dropdown-menu {
  display: grid;
  background: rgba(16, 24, 40, 0.03);
  align-content: start;
  grid-auto-rows: 70px;
  max-height: calc(100vh - 190px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.product-dropdown-category {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 70px;
  min-height: 70px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--color-text);
  transition: background-color var(--transition), color var(--transition);
  border-left: 4px solid #f8f8f8;
}

.product-dropdown-category:hover,
.product-dropdown-category.is-active {
  background: rgba(0, 170, 26, 0.08);
  background: color-mix(in srgb, var(--theme-default-font-color, #101828) 8%, transparent);
  color: var(--theme-default-font-color, #101828);
}

.product-dropdown-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.product-dropdown-category:hover .product-dropdown-icon,
.product-dropdown-category.is-active .product-dropdown-icon {
  filter: var(--theme-default-font-icon-filter, brightness(0) saturate(100%));
}

.product-dropdown-category-text {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.product-dropdown-category-text strong {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.product-dropdown-category-text em {
  font-size: 12px;
  font-style: normal;
  color: #6a7282;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-dropdown-chevron {
  margin-left: auto;
  width: 14px;
  height: 14px;
  opacity: 0;
}

.product-dropdown-category.is-active .product-dropdown-chevron {
  opacity: 1;
 
}

.product-dropdown-content {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  min-width: 0;
  max-height: calc(100vh - 190px);
  overflow-y: auto;
  padding-right: 6px;
  min-height: 400px;
}

.product-dropdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.98);
  padding: 4px 0;
}

.product-dropdown-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

.product-dropdown-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-content: start;
}

.product-dropdown-empty {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border: 1px dashed rgba(0, 61, 149, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: #6a7282;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
}

.product-dropdown-card {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.06);

  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-dropdown-card:hover {
  transform: translateY(-4px);
  border-color: var(--theme-default-color, #00378b);
}

.product-dropdown-card-media {
  position: relative;
  aspect-ratio: 423 / 264;
  overflow: hidden;
  background: #eef3f9;
}

.product-dropdown-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-dropdown-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-dropdown-card-title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text);
}

.product-dropdown-card-subtitle {
  margin: 0;
  font-size: 12px;
  color: #6a7282;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-dropdown-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6a7282;
  font-size: 12px;
  font-weight: 500;
}

.product-dropdown-all img {
  width: 12px;
  height: 12px;
}

.product-dropdown-all:hover {
  color: var(--theme-default-color, #00378b);
}


@media (min-width: 750px) {
  .site-nav-link--product-wrap:hover .product-dropdown,
  .site-nav-link--product-wrap:focus-within .product-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav-link--product-wrap:hover::after,
  .site-nav-link--product-wrap:focus-within::after,
  .site-nav-link--product-wrap.is-open::after {
    opacity: 1;
    pointer-events: none;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 8px;
}

.header-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.header-search-toggle__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 44px;
  padding: 0 12px;
  white-space: nowrap;
  color: #ffffff;
  background: transparent;
  box-shadow: none;
}

.lang-toggle__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(100%);
}

.lang-toggle__text {
  display: inline-flex;
  align-items: center;
  padding-left: 8px;
  /* border-left: 1px solid rgba(255, 255, 255, 0.38); */
  font-size: 14px;
  line-height: 1;
}

.lang-toggle__text strong {
  font-weight: 700;
}

.btn--header {
  white-space: nowrap;
}

.btn--call {
  min-height: 44px;
  padding: 10px 16px;
  color: var(--theme-default-button-text-color, #ffffff);
  background: var(--theme-default-color, #00378b);
  border: 1px solid var(--theme-default-button-border-color, transparent);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--theme-default-color, #00378b) 26%, transparent);
}

.btn--call:hover {
  background: var(--theme-default-color, #00378b);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--theme-default-color, #00378b) 26%, transparent);
}

.site-header-search-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 35;
  width: min(1600px, calc(100% - 64px));
  transform: translateX(-50%);
  padding: 20px 24px 18px;
  border-radius: 16px;
  border: 0;
  background: #ffffff;
  box-shadow: none;
}

.site-header-search-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-header-search-title {
  color: #0f172a;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.site-header-search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 14px;
  border-radius: 30px;
  background:#f7faf8;
} 
img[src="/home/icon/sous.svg"]{
  filter: invert(7%) sepia(12%) saturate(1200%) hue-rotate(182deg) brightness(92%) contrast(95%);
}
.site-header-search-results {
  max-height: 360px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
}

.site-header-search-result-item + .site-header-search-result-item {
  border-top: 0;
}

.site-header-search-result-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 6px;
  color: #0f172a;
  text-decoration: none;
}

.site-header-search-result-link:hover {
  color: #003d88;
}

.site-header-search-result-title {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-header-search-result-type {
  flex: 0 0 auto;
  color: #64748b;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.site-header-search-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.5;
  outline: none;
  box-shadow: none;
}

.site-header-search-input:focus,
.site-header-search-input:focus-visible {
  border: 0;
  outline: none;
  box-shadow: none;
}

.site-header-search-field:focus-within {
  border: 0;
  outline: none;
  box-shadow: none;
}

.site-header-search-input::placeholder {
  color: #64748b;
}

.site-header-search-submit {
  min-width: 96px;
  height: 38px;
  border-radius: 999px;
  background: var(--theme-default-color, #00378b);
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
}

.site-header-search-submit:hover {
  background: var(--theme-default-color, #00378b);
}

.site-header-search-status {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
}
.site-header.is-scrolled .nav-toggle{
  background: none !important;
}
.nav-toggle__icon {
  filter: brightness(0) saturate(100%) invert(100%);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field span {
  font-size: 14px;
  color: var(--color-text);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input,
.field select {
  min-height: 50px;
  padding: 0 16px;
  background: #F9FAFB;
}
.home-contact__form .field textarea{
  background: #F9FAFB;
  resize: none;
}

.field textarea {
  padding: 14px 16px;
  resize: vertical;
}

.field--select select {
  appearance: none;
  background-image: url("../icon/down.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px 18px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 170, 26, 0.08);
}

.form-status {
  min-height: 22px;
  font-size: 14px;
}

.form-status.is-error {
  color: #d92d20;
}

.form-status.is-success {
  color: var(--color-primary);
}

.site-footer {
  background: #00378b;
  color: #ffffff;
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-group,
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-group h3 {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: normal;
}

.footer-group a,
.footer-group p,
.footer-brand p {
  color: #d1d5dc;
  font-size: 14px;
  line-height: 1.7;
}

.footer-group--contact p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.social-list__entry {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;

}

.social-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

button.social-item {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.social-item img {
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 5px;
}

.social-item__label {
  display: -webkit-box;
  max-width: 100%;
  color: #9aaabf;
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.social-item--disabled {
  opacity: 0.55;
  cursor: default;
}

.site-footer__social-qr-panel {
  margin-top: 0;
  z-index: 1200;
}

.site-footer__social-qr-image-wrap {
  width: 112px;
  height: 112px;
  padding: 6px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.site-footer__social-qr-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
  color: #d1d5dc;
  font-size: 14px;
}
/*新修改开始*/
.fat_top {
  background: url(/home/icon/addressIcon.svg) left 4px no-repeat;
  padding-left: 24px;
}

.section-text{
  font-size: 16px;
}
.site-footer__contact img{
  margin: 2px 0 0 0 !important; 
}
.product-dropdown-menu .is-active {
  border-left: 4px solid var(--theme-default-font-color) !important;
}
.product-dropdown-category{
  border-left: 4px solid #fff !important;
}
.product-dropdown-menu{
  max-height: 420px !important;
  background: #fff;
}
.section-heading p{
  color: #4A5565 !important;
}
.product-dropdown-title{
  font-weight: 400 !important;
}
.product-dropdown-card-subtitle{
  letter-spacing: 0.19px !important;
  color:#9AAABF
}
.product-dropdown-card-title{
  letter-spacing: 0.23px;
  font-weight: 400;
  color:var(--support-primary-dark)
}
.product-dropdown-content{
  border-left: 1px solid #ebebeb;
    padding-left: 20px;
}
.product-dropdown-shell{
  gap: 0;
}
.product-dropdown-category-text strong{
  font-weight: 400;
  letter-spacing: 0.92px;
}
.product-dropdown-menu .is-active strong{
  font-weight: 600;
}
.product-dropdown-category-text em{
  letter-spacing: 0.92px;
  font-weight: 300;
  color:#B0BDCC
}
.product-dropdown-menu::-webkit-scrollbar {
  width: 0; /* 滚动条宽度 */
  height: 0; /* 滚动条高度 */
}

/* 滚动条轨道 */
.product-dropdown-menu::-webkit-scrollbar-track {
  background: #f5f5f5; /* 轨道背景色 */
  border-radius: 6px; /* 轨道圆角 */
}

/* 滚动条滑块 */
.product-dropdown-menu::-webkit-scrollbar-thumb {
  background: #333; /* 滑块颜色 */
  border-radius: 6px; /* 滑块圆角 */
}

/* 滑块悬停状态 */
.product-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #1890ff; /* 悬停时滑块颜色 */
}
/*新修改结束*/
@media (min-width: 750px) and (max-width: 968px) {
  .container {
    width: min(100% - 48px, 1280px);
  }

  .site-header {
    padding: 14px 0;
  }

  .header-shell {
    gap: 18px;
  }

  .brand img {
    height: 36px;
  }

  #siteHeaderLogo {
    width: 100%;
    max-width: 100%;
    height: 36px;
    max-height: 36px;
  }


  .site-nav {
    justify-content: flex-start;
    gap: 18px;
  }

  .nav-link {
    font-size: 14px;
  }

  .header-actions {
    gap: 8px;
  }

  .lang-toggle {
    min-width: 58px;
    min-height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }

  .btn--header {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 14px;
  }

  .btn--header img {
    width: 16px;
    height: 16px;
  }

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


}

@media (max-width: 749px) {
  body:not(.home-page) main {
    margin-top: var(--site-header-height);
  }

  body:not(.home-page) .news-hero,
  body:not(.home-page) .joinus-hero,
  body:not(.home-page) .cases-hero,
  body:not(.home-page) .support-hero,
  body:not(.home-page) .culture-about__hero,
  body:not(.home-page) .relation-hero,
  body:not(.home-page) .about-hero,
  body:not(.home-page) .factory-hero,
  body:not(.home-page) .newsdetail-hero,
  body:not(.home-page) .casedetail-hero,
  body:not(.home-page) .product-hero {
    height: 300px !important;
    min-height: 300px !important;
  }

  body:not(.home-page) .news-hero-container,
  body:not(.home-page) .joinus-hero-container,
  body:not(.home-page) .cases-hero__shell,
  body:not(.home-page) .support-hero-container,
  body:not(.home-page) .culture-about__shell,
  body:not(.home-page) .relation-hero-container,
  body:not(.home-page) .about-hero-content,
  body:not(.home-page) .factory-hero-content,
  body:not(.home-page) .newsdetail-hero-container,
  body:not(.home-page) .casedetail-hero-content,
  body:not(.home-page) .product-hero-grid {
    height: 100% !important;
    min-height: 100% !important;
  }

  .site-header {
    padding: 12px 0;
  }

  .section {
    padding: 64px 0;
  }

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

  .header-shell {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
  }

  .brand {
    flex: 0 1 auto;
    width: auto;
    max-width: calc(100% - 168px);
    min-width: 0;
  }

  #siteHeaderLogo {
    width: auto;
    max-width: 100%;
    height: 34px;
    max-height: 34px;
  }

  .brand img {
    width: auto;
    max-width: 100%;
    height: 34px;
  }

  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: 0;
  }

  .header-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    margin-left: auto;
    gap: 4px;
  }

  .lang-toggle,
  .header-search-toggle {
    width: auto;
    flex: 0 0 auto;
    min-width: 0;
  }

  .lang-toggle {
    min-width: 52px;
    padding: 0 8px;
  }

  .site-nav {
    order: 4;
    flex: 0 0 100%;
    display: grid;
    justify-content: stretch;
    gap: 10px;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .site-nav-link-wrap {
    height: auto;
  }

  .product-dropdown {
    display: none !important;
    position: static;
    left: auto;
    right: auto;
    top: auto;
    padding: 10px 0 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-nav-link--product-wrap.is-open .product-dropdown {
    display: block !important;
  }

  .site-nav.is-open {
    max-height: min(68vh, 520px);
    margin-top: 12px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  .nav-link {
    display: block;
    padding: 10px ;
    font-size: 15px;
  }

  .product-dropdown-shell {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-dropdown-menu,
  .product-dropdown-content {
    max-height: 240px;
    overflow-y: auto;
  }

  .btn--header {
    display: none;
  }

  .header-search-toggle {
    justify-content: center;
  }

  .site-header-search-panel {
    width: calc(100% - 32px);
    top: calc(100% + 8px);
    padding: 14px;
    border-radius: 14px;
  }

  .site-header-search-title {
    font-size: 16px;
  }


  .section-head {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-text {
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }

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

  .nav-link__icon{
    display: none;
  }

  .site-nav.is-open .site-nav-link-wrap{
     background-color: #ebebeb;
     border-radius: 6px;
  }
  .site-nav-link-wrap a.is-active{
    background-color: var(--theme-default-font-color, #101828);
    color:#fff !important;
    border-radius: 6px !important;
  }
  .new_xz .news_zz{
    display: block;
    justify-content: center;flex-direction:initial
 
  }
  .new_xz .news_zz h3{
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
  .new_xz .news_zz a{
    width: 48%;
    float: left;
    background-color: #043175;
    color:#fff;
    padding: 5px 0;
    text-align: center;
    border-radius: 6px;
    color:#d1d5dc
    
  }
  .new_xz .news_zz a:nth-child(2), .new_xz .news_zz a:nth-child(4){
    margin-right:4%;
  }
  .new_xz .news_zz a:nth-child(2),.new_xz .news_zz a:nth-child(3)
  {
    margin-bottom: 10px;
  }
}
