@charset "utf-8";

:root {
  --primary: #0b66a8;
  --primary-dark: #084f82;
  --accent: #16a3c7;
  --text: #172033;
  --muted: #667085;
  --line: #e5edf5;
  --soft: #f4f8fb;
  --white: #fff;
  --shadow: 0 12px 32px rgba(20, 54, 86, .12);
}

* {
  box-sizing: border-box;
}

body {
  color: var(--text);
  background: var(--white);
}

img {
  max-width: 100%;
}

.container {
  width: min(1200px, calc(100% - 32px));
  max-width: none;
}

.site-header {
  position: sticky !important;
  top: 0;
  z-index: 1300;
  background: rgba(255, 255, 255, .96) !important;
  border-bottom: 1px solid var(--line) !important;
  box-shadow: 0 8px 24px rgba(16, 45, 76, .06);
}

.header-top {
  background: #073f68;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
}

.header-top-inner,
.header-main,
.nav-inner,
.footer-main,
.footer-bottom .container {
  display: flex;
  align-items: center;
}

.header-top-inner {
  min-height: 34px;
  justify-content: space-between;
}

.header-top strong {
  color: #fff;
  letter-spacing: .4px;
}

.header-main {
  min-height: 88px;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  width: 300px;
  min-width: 220px;
}

.brand img {
  max-height: 64px;
  object-fit: contain;
}

.header-search {
  display: flex;
  position: relative;
  flex: 1;
  max-width: 420px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: visible;
  background: var(--soft);
  z-index: 1302;
}

.header-search input {
  flex: 1;
  min-width: 0;
  height: 100%;
  padding: 0 16px;
  background: transparent;
  color: var(--text);
  border: 0;
  border-radius: 8px 0 0 8px;
  outline: none;
}

.header-search button {
  width: 96px;
  background: var(--primary);
  color: #fff;
  border: 0;
  border-radius: 0 8px 8px 0;
  font-size: 15px;
}

.search-suggest {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 260px;
  padding: 10px 12px;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid rgba(11, 102, 168, .12);
  border-radius: 10px;
  background:
    radial-gradient(circle at 92% 0%, rgba(32, 214, 255, .14), transparent 34%),
    #fff;
  box-shadow: 0 20px 46px rgba(8, 36, 61, .14);
  z-index: 1303;
}

.header-search.suggest-open .search-suggest {
  display: block;
}

.suggest-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

.suggest-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow: visible;
  padding-bottom: 0;
  scrollbar-width: none;
}

.suggest-list button {
  flex: 0 1 auto;
  width: auto;
  max-width: 100%;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(11, 102, 168, .12);
  border-radius: 999px;
  background: #f5fbff;
  color: #31506b;
  font-size: 13px;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: all .18s ease;
}

.suggest-list button:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #0b72d9, #20d6ff);
  box-shadow: 0 10px 22px rgba(3, 80, 160, .16);
}

.header-contact {
  margin-left: auto;
  text-align: right;
  color: var(--muted);
  line-height: 1.4;
}

.header-contact span,
.header-contact strong {
  display: block;
}

.header-contact strong {
  color: var(--primary-dark);
  font-size: 21px;
}

.header-top a,
.header-contact a,
.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.nav-toggle,
.mobile-nav-head {
  display: none;
}

.site-nav {
  position: sticky !important;
  top: 123px !important;
  z-index: 1101;
  width: 100%;
  background: var(--white) !important;
  box-shadow: 0 10px 24px rgba(16, 45, 76, .08) !important;
}

.site-nav ul {
  display: flex;
  width: 100%;
  min-height: 54px;
  margin: 0;
}

.site-nav li {
  position: relative;
  width: auto !important;
  margin: 0 !important;
}

.site-nav li > a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 54px !important;
  min-width: 106px;
  padding: 0 16px !important;
  color: var(--text) !important;
  font-size: 15px !important;
  line-height: 1 !important;
}

.site-nav li > a:after {
  display: none !important;
}

.site-nav li > a:hover,
.site-nav li > a.active {
  color: var(--primary) !important;
  background: var(--soft);
}

.nav-sub {
  display: none;
  position: absolute;
  top: 54px;
  left: 0;
  min-width: 180px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.nav-sub a {
  display: block;
  padding: 10px 12px;
  color: var(--text);
  white-space: nowrap;
  border-radius: 6px;
}

.site-nav li:hover .nav-sub {
  display: block;
}

.site-nav li:not(.has-sub):hover .nav-sub,
.site-nav .nav-sub.nav-empty,
.site-nav .nav-sub:not(:has(a)) {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hero {
  margin: 0 !important;
  width: 100%;
  min-height: 540px;
  overflow: hidden;
  background: #0c4673;
}

.hero .swiper-container,
.hero .swiper-wrapper,
.hero-slide {
  height: 540px;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
}

.hero-slide:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 38, 64, .78), rgba(5, 38, 64, .36), rgba(5, 38, 64, .1));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.hero-kicker,
.eyebrow,
.section-head span {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin-top: 18px;
  color: #fff;
  font-size: 46px;
  line-height: 1.22;
  font-weight: 700;
}

.hero p {
  max-width: 600px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions,
.section-head.split,
.service-grid,
.news-grid {
  display: flex;
}

.hero-actions {
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 700;
}

.btn-primary {
  color: #fff;
  background: var(--primary);
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .64);
}

.trust-bar {
  position: relative;
  z-index: 2;
  margin-top: -46px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-grid div {
  padding: 26px 30px;
  border-right: 1px solid var(--line);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong {
  display: block;
  color: var(--primary-dark);
  font-size: 20px;
}

.trust-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.section {
  padding: 72px 0;
}

.section:nth-of-type(even) {
  background: var(--soft);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.split {
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-head h2 {
  margin-top: 10px;
  color: var(--text);
  font-size: 32px;
  line-height: 1.28;
}

.section-head p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.section-head a {
  color: var(--primary);
  font-weight: 700;
}

.category-grid,
.product-grid,
.capability-grid {
  display: grid;
  gap: 24px;
}

.category-grid {
  grid-template-columns: repeat(4, 1fr);
}

.category-card,
.product-card,
.news-card,
.service-grid a,
.capability-panel div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.category-card {
  display: flex;
  min-height: 238px;
  padding: 24px;
  flex-direction: column;
  justify-content: space-between;
}

.category-card img {
  width: 100%;
  height: 128px;
  object-fit: contain;
}

.category-card strong,
.product-card strong {
  color: var(--text);
  font-size: 18px;
  line-height: 1.45;
}

.category-card span,
.product-card em {
  margin-top: 8px;
  color: var(--primary);
  font-style: normal;
}

.category-card:hover,
.product-card:hover,
.service-grid a:hover,
.capability-panel div:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 102, 168, .32);
  box-shadow: var(--shadow);
}

.featured-products {
  background: #fff !important;
}

.product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  display: block;
  overflow: hidden;
}

.product-img {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  padding: 18px;
  background: #f8fbfd;
}

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

.product-card strong,
.product-card em {
  display: block;
  padding: 0 18px;
}

.product-card strong {
  min-height: 56px;
  margin-top: 16px;
}

.product-card em {
  padding-bottom: 18px;
  font-size: 13px;
}

.capability-section {
  background: linear-gradient(180deg, #eef7fc, #fff) !important;
}

.capability-grid {
  grid-template-columns: minmax(0, 1fr) 480px;
  align-items: center;
}

.capability-copy h2 {
  margin: 10px 0 18px;
  font-size: 34px;
  line-height: 1.3;
}

.capability-copy p,
.capability-copy li,
.news-card li,
.footer-brand p,
.footer-contact p {
  color: var(--muted);
  line-height: 1.8;
}

.capability-copy ul {
  margin: 22px 0 28px;
}

.capability-copy li {
  position: relative;
  padding-left: 20px;
}

.capability-copy li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

.capability-panel {
  display: grid;
  gap: 14px;
}

.capability-panel div {
  padding: 24px;
}

.capability-panel strong {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--primary);
  border-radius: 8px;
}

.capability-panel span {
  display: block;
  margin-top: 16px;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
}

.capability-panel p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.service-section {
  background: #fff !important;
}

.service-grid {
  gap: 18px;
}

.service-grid a {
  flex: 1;
  padding: 26px;
}

.service-grid strong {
  display: block;
  color: var(--primary-dark);
  font-size: 22px;
  word-break: break-word;
}

.service-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.news-section {
  background: var(--soft) !important;
}

.news-grid {
  gap: 22px;
}

.news-card {
  flex: 1;
  min-width: 0;
  padding: 24px;
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.card-head h3 {
  color: var(--text);
  font-size: 20px;
}

.card-head a {
  color: var(--primary);
}

.news-card li {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}

.news-card li a {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  color: var(--text);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-card time {
  color: var(--muted);
  font-size: 13px;
}

.link {
  padding: 30px 0;
  background: #fff;
}

.link .link_con {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.link .link_con span {
  background: none;
  padding-left: 0;
  color: var(--text);
}

.link .link_con p a {
  display: inline-block;
  margin: 0 18px 8px 0;
  color: var(--muted);
}

.site-footer {
  background: #073f68;
  color: rgba(255, 255, 255, .84);
}

.footer-main {
  align-items: flex-start;
  gap: 42px;
  padding: 52px 0;
}

.footer-brand {
  flex: 1.2;
}

.footer-brand img {
  max-width: 260px;
  max-height: 70px;
  padding: 8px 12px;
  background: #fff;
  border-radius: 8px;
}

.footer-brand p {
  margin-top: 18px;
  color: rgba(255, 255, 255, .78);
}

.footer-links,
.footer-contact {
  flex: 1;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 18px;
}

.footer-links a {
  display: inline-block;
  width: 48%;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .82);
}

.footer-contact p {
  color: rgba(255, 255, 255, .82);
}

.footer-code {
  width: 132px;
  text-align: center;
}

.footer-code img {
  width: 118px;
  height: 118px;
  object-fit: cover;
  padding: 6px;
  background: #fff;
  border-radius: 8px;
}

.footer-code span {
  display: block;
  margin-top: 10px;
}

.footer-bottom {
  padding: 16px 0;
  background: #052f4e;
  font-size: 13px;
}

.footer-bottom .container {
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .86);
}

.suspension {
  right: 18px !important;
  bottom: 86px !important;
  width: auto !important;
  height: auto !important;
  z-index: 1001 !important;
}

.suspension .a {
  display: flex !important;
  width: 62px !important;
  height: 62px !important;
  margin-bottom: 8px !important;
  padding: 8px 6px !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--primary) !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 18px rgba(0, 55, 99, .2);
}

.suspension .a span {
  padding-top: 4px;
  color: #fff;
  font-size: 12px;
}

.suspension .a-top {
  background: #6b7785 !important;
}

.suspension .d {
  right: 74px !important;
  border-radius: 8px !important;
}

.qrcode-img img {
  width: 150px;
}

.ny_banner {
  margin-top: 0 !important;
}

.ny_banner .slideshow {
  background-position: center;
  background-size: cover;
}

.ny_content {
  width: min(1200px, calc(100% - 32px)) !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: 36px 0 !important;
}

.ny_content .content_right,
.ny_content .content_right2 {
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
}

.ny_content .content_right .bread_nav {
  height: auto !important;
  min-height: 46px;
  line-height: 1.7 !important;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.ny_content .content_right .bread_nav div {
  width: 100% !important;
  color: var(--muted);
  line-height: 1.7 !important;
}

.syFocusThumb {
  margin: 22px 0 !important;
}

.syFocusThumb .pagination,
.syFocusThumb .holder {
  display: flex;
  gap: 10px;
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
}

.syFocusThumb .holder i {
  flex: 0 0 auto;
  font-style: normal;
}

.syFocusThumb .holder a,
.syFocusThumb .toc a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 16px;
  color: var(--primary-dark);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.syFocusThumb .prev,
.syFocusThumb .next,
.syFocusThumb .sliderwrapper {
  display: none !important;
}

.ny_products .pro_bd ul,
.content_right .conn .xgcp,
.down_inside ul {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ny_products .pro_bd ul li,
.content_right .conn .xgcp li,
.down_inside ul li {
  float: none !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
}

.ny_products .pro_bd ul li > div,
.content_right .conn .xgcp li > div,
.down_inside ul li {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
  overflow: hidden;
}

.ny_products .pro_bd ul li a .pro_img,
.content_right .conn .xgcp li a .pro_img {
  height: auto !important;
  aspect-ratio: 4 / 3;
}

.content_right .conn .proshow1 {
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 34px 0 !important;
}

.content_right .conn .proshow1 .js-silder,
.content_right .conn .proshow1 .prodesc {
  float: none !important;
  width: 100% !important;
}

.proshow1 .js-silder .silder-main-img {
  height: auto !important;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.proshow1 .js-silder .silder-main-img img {
  max-width: 88% !important;
  max-height: 88% !important;
  object-fit: contain;
}

.content_right .conn .proshow1 .prodesc p.desc {
  height: auto !important;
  max-height: none !important;
}

.content_right .conn .proshow1 .pro_btn {
  display: flex;
  gap: 14px;
}

.content_right .conn .proshow1 .pro_btn1,
.content_right .conn .proshow1 .pro_btn2 {
  width: auto !important;
  min-width: 150px;
  padding: 0 18px;
}

.cpzx .ly_msg {
  max-width: 860px;
}

.cpzx .ly_msg ul li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cpzx .ly_msg ul li h4 {
  flex: 0 0 110px;
  width: auto !important;
}

.cpzx .ly_msg ul li .msg_ipt1,
.cpzx .ly_msg ul li .msg_tara,
.cpzx .ly_msg ul li .msg_ipt12,
.cpzx .ly_msg ul li .msg_btn {
  flex: 1;
  width: auto !important;
}

.cpzx input,
.cpzx textarea {
  width: 100% !important;
}

.ny_news_con,
.ny_news_con2,
#maximg {
  overflow-wrap: anywhere;
}

.ny_news_con img,
#maximg img {
  max-width: 100% !important;
  height: auto !important;
}

@media (max-width: 1100px) {
  .header-contact {
    display: none;
  }

  .product-grid,
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 880px) {
  .header-top,
  .header-search,
  .site-nav li:hover .nav-sub {
    display: none;
  }

  .site-header {
    position: sticky !important;
    z-index: 1100;
  }

  .header-main {
    min-height: 72px;
    gap: 12px;
    justify-content: space-between;
  }

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

  .brand img {
    max-height: 52px;
  }

  .nav-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border: 0;
    border-radius: 8px;
    flex: 0 0 42px;
  }

  .nav-toggle span,
  .nav-toggle span:before,
  .nav-toggle span:after {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    content: "";
  }

  .nav-toggle span {
    position: relative;
  }

  .nav-toggle span:before,
  .nav-toggle span:after {
    position: absolute;
    left: 0;
  }

  .nav-toggle span:before {
    top: -7px;
  }

  .nav-toggle span:after {
    top: 7px;
  }

  .site-nav {
    position: fixed !important;
    top: 0 !important;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(340px, 88vw) !important;
    height: 100vh !important;
    overflow-y: auto;
    z-index: 1200 !important;
    background: #fff !important;
    box-shadow: -24px 0 60px rgba(4, 31, 57, .18) !important;
    transform: translateX(105%);
    transition: transform .24s ease;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open:after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1190;
    background: rgba(3, 18, 34, .42);
    backdrop-filter: blur(2px);
  }

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

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav-head img {
    max-width: 190px;
    max-height: 54px;
  }

  .mobile-nav-head .closed {
    width: 38px;
    height: 38px;
    background: var(--soft);
    border: 0;
    border-radius: 8px;
    color: var(--text);
    font-size: 26px;
  }

  .site-nav ul {
    display: block;
    min-height: 0;
    padding: 10px 14px 28px;
  }

  .site-nav li {
    border-bottom: 1px solid rgba(11, 114, 217, .08);
  }

  .site-nav li > a {
    justify-content: flex-start;
    width: 100% !important;
    min-height: 48px !important;
    height: auto !important;
    padding: 0 12px !important;
    border-radius: 8px;
    color: #172033 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .site-nav li > a.active {
    color: #0b72d9 !important;
    background: #eef8ff !important;
  }

  .nav-sub {
    position: static;
    display: block !important;
    padding: 0 0 10px 12px;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  .nav-sub:empty,
  .nav-sub.nav-empty,
  .site-nav li:not(.has-sub) .nav-sub,
  .site-nav .nav-sub:not(:has(a)) {
    display: none !important;
  }

  .nav-sub a {
    min-height: 34px;
    padding: 7px 10px;
    color: #667085 !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
    border-radius: 6px;
    background: #f7fbff;
    margin: 4px 0;
  }

  .hero,
  .hero .swiper-container,
  .hero .swiper-wrapper,
  .hero-slide {
    min-height: 460px;
    height: 460px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

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

  .trust-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-grid,
  .category-grid,
  .news-grid,
  .service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 52px 0;
  }

  .section-head.split,
  .footer-main {
    display: block;
  }

  .footer-links,
  .footer-contact,
  .footer-code {
    margin-top: 28px;
  }

  .ny_banner .slideshow {
    height: 190px !important;
  }

  .ny_products .pro_bd ul,
  .content_right .conn .xgcp,
  .down_inside ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .content_right .conn .proshow1 {
    grid-template-columns: 1fr;
  }

  .content_right .conn .proshow1 .pro_btn {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .hero,
  .hero .swiper-container,
  .hero .swiper-wrapper,
  .hero-slide {
    min-height: 430px;
    height: 430px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-grid,
  .category-grid,
  .news-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section-head h2,
  .capability-copy h2 {
    font-size: 26px;
  }

  .ny_content {
    width: min(100% - 24px, 1200px) !important;
    padding: 24px 0 !important;
  }

  .ny_banner .slideshow {
    height: 150px !important;
  }

  .ny_products .pro_bd ul,
  .content_right .conn .xgcp,
  .down_inside ul {
    grid-template-columns: 1fr;
  }

  .cpzx .ly_msg ul li {
    display: block;
  }

  .cpzx .ly_msg ul li h4 {
    display: block !important;
    height: auto !important;
    margin-bottom: 8px;
    text-align: left !important;
  }

  .content_right .conn .proshow1 .pro_btn1,
  .content_right .conn .proshow1 .pro_btn2 {
    width: 100% !important;
  }

  .suspension {
    right: 12px !important;
    bottom: 18px !important;
  }

  .suspension .a {
    width: 52px !important;
    height: 52px !important;
  }

}

/* Premium technology visual polish */
:root {
  --tech-bg: #071421;
  --tech-bg-2: #0a2236;
  --tech-cyan: #20d6ff;
  --tech-blue: #0b72d9;
  --tech-line: rgba(60, 210, 255, .18);
  --tech-glow: 0 24px 70px rgba(3, 80, 160, .22);
}

body {
  background:
    radial-gradient(circle at 8% 4%, rgba(32, 214, 255, .08), transparent 32%),
    radial-gradient(circle at 90% 22%, rgba(12, 101, 190, .08), transparent 30%),
    linear-gradient(180deg, #f6fbff 0%, #fff 38%, #f7fbff 100%);
}

.site-header {
  background: rgba(255, 255, 255, .9) !important;
  border-bottom: 1px solid rgba(18, 86, 139, .12);
  box-shadow: 0 12px 36px rgba(5, 35, 61, .08) !important;
  backdrop-filter: blur(14px);
}

.header-top {
  background: linear-gradient(90deg, #061a2e, #0b3760 48%, #07233c) !important;
}

.nav a:hover,
.nav li:hover > a,
.nav .active a {
  color: var(--tech-blue) !important;
}

.hero {
  min-height: 620px;
  background:
    radial-gradient(circle at 78% 42%, rgba(32, 214, 255, .16), transparent 30%),
    linear-gradient(135deg, #04101f, #082c4c 58%, #03111f);
}

.hero .swiper-container,
.hero .swiper-wrapper,
.hero-slide {
  height: 620px;
}

.hero-slide {
  isolation: isolate;
  background-position: center right;
  background-size: cover;
}

.hero-slide:before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(3, 12, 24, .9) 0%, rgba(4, 31, 57, .72) 42%, rgba(4, 31, 57, .22) 100%),
    radial-gradient(circle at 72% 46%, rgba(32, 214, 255, .2), transparent 24%);
}

.hero-slide:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(32, 214, 255, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 214, 255, .12) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .22;
  mask-image: linear-gradient(90deg, #000 0%, transparent 75%);
}

.hero-content {
  max-width: 780px;
  padding: 38px 36px;
  border: 1px solid rgba(122, 221, 255, .24);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(4, 24, 43, .72), rgba(5, 57, 92, .34));
  box-shadow: 0 30px 90px rgba(0, 13, 35, .34);
  backdrop-filter: blur(10px);
}

.hero-kicker {
  padding: 8px 14px;
  border: 1px solid rgba(32, 214, 255, .35);
  border-radius: 999px;
  background: rgba(32, 214, 255, .08);
  color: #9eeaff !important;
  letter-spacing: .08em;
}

.hero h1 {
  max-width: 820px;
  color: #fff;
  font-size: 52px;
  letter-spacing: .01em;
  text-shadow: 0 10px 34px rgba(0, 0, 0, .36);
}

.hero p {
  color: rgba(235, 249, 255, .9);
}

.btn {
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(2, 32, 64, .2);
}

.btn-primary {
  border-color: transparent !important;
  background: linear-gradient(135deg, #0b72d9, #20d6ff) !important;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, .48) !important;
  background: rgba(255, 255, 255, .08) !important;
  color: #fff !important;
  backdrop-filter: blur(8px);
}

.trust-grid {
  border: 1px solid rgba(32, 132, 200, .14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(239, 249, 255, .92)),
    radial-gradient(circle at top right, rgba(32, 214, 255, .1), transparent 38%);
  box-shadow: var(--tech-glow);
}

.section-head h2,
.capability-copy h2 {
  color: #08243d;
}

.product-section,
.featured-products,
.news-section {
  position: relative;
  background:
    radial-gradient(circle at 10% 0%, rgba(32, 214, 255, .08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(243, 249, 253, .96));
}

.category-card,
.product-card,
.news-card,
.service-grid a,
.capability-panel div {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(33, 106, 160, .14);
  background: linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: 0 18px 44px rgba(7, 38, 68, .08);
}

.category-card:before,
.product-card:before,
.news-card:before,
.service-grid a:before,
.capability-panel div:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(32, 214, 255, .18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, .78), transparent 42%);
  opacity: 0;
  transition: opacity .22s ease;
}

.category-card:hover:before,
.product-card:hover:before,
.news-card:hover:before,
.service-grid a:hover:before,
.capability-panel div:hover:before {
  opacity: 1;
}

.category-card:hover,
.product-card:hover,
.news-card:hover,
.service-grid a:hover,
.capability-panel div:hover {
  transform: translateY(-6px);
  border-color: rgba(32, 214, 255, .36);
  box-shadow: 0 26px 72px rgba(3, 80, 160, .18);
}

.category-card img,
.product-img img,
.content_right .conn .proshow1 .proshow1l img,
.ny_products .pro_bd ul li img {
  filter: contrast(1.06) saturate(1.04) drop-shadow(0 18px 24px rgba(6, 35, 60, .12));
}

.product-img {
  background:
    radial-gradient(circle at 50% 45%, rgba(32, 214, 255, .14), transparent 42%),
    linear-gradient(180deg, #fafdff, #edf7ff);
}

.product-img:after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 14%;
  height: 18px;
  border-radius: 50%;
  background: rgba(10, 54, 88, .15);
  filter: blur(12px);
}

.product-img img {
  position: relative;
  z-index: 1;
  max-width: 92%;
  max-height: 92%;
  image-rendering: auto;
}

.product-card strong,
.product-card em,
.category-card strong,
.category-card span,
.service-grid strong,
.service-grid span,
.news-card * {
  position: relative;
  z-index: 1;
}

.capability-section {
  color: #eaf8ff;
  background:
    radial-gradient(circle at 18% 20%, rgba(32, 214, 255, .16), transparent 28%),
    radial-gradient(circle at 86% 74%, rgba(11, 114, 217, .18), transparent 32%),
    linear-gradient(135deg, #061322, #09233b 54%, #04111e) !important;
}

.capability-copy h2,
.capability-copy p,
.capability-copy li {
  color: #eaf8ff;
}

.capability-copy .eyebrow {
  color: #8ee8ff;
}

.capability-panel div {
  border-color: rgba(132, 222, 255, .2);
  background: linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
  box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
  backdrop-filter: blur(10px);
}

.capability-panel strong {
  color: #20d6ff !important;
}

.capability-panel span,
.capability-panel p {
  color: #eaf8ff;
}

.site-footer {
  background:
    radial-gradient(circle at 18% 12%, rgba(32, 214, 255, .14), transparent 28%),
    linear-gradient(135deg, #061421, #0a2e4d 58%, #05101d) !important;
}

.suspension .a {
  background: linear-gradient(135deg, #0b72d9, #16a3c7) !important;
  box-shadow: 0 18px 44px rgba(3, 80, 160, .24);
}

@media (max-width: 900px) {
  .hero,
  .hero .swiper-container,
  .hero .swiper-wrapper,
  .hero-slide {
    min-height: 520px;
    height: 520px;
  }

  .hero-content {
    padding: 28px 24px;
  }

  .hero h1 {
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  .hero,
  .hero .swiper-container,
  .hero .swiper-wrapper,
  .hero-slide {
    min-height: 470px;
    height: 470px;
  }

  .hero-content {
    width: min(100% - 24px, 1200px);
  }

  .hero h1 {
    font-size: 30px;
  }
}

/* Inner page technology polish */
.ny_banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 35%, rgba(32, 214, 255, .18), transparent 28%),
    linear-gradient(135deg, #061322, #0a2f50 58%, #04111e) !important;
}

.ny_banner:before,
.ny_banner:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ny_banner:before {
  background:
    linear-gradient(90deg, rgba(4, 16, 31, .82), rgba(4, 39, 70, .45), rgba(4, 39, 70, .08)),
    radial-gradient(circle at 82% 42%, rgba(32, 214, 255, .18), transparent 26%);
  z-index: 1;
}

.ny_banner:after {
  z-index: 2;
  opacity: .18;
  background-image:
    linear-gradient(rgba(32, 214, 255, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 214, 255, .14) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.ny_banner .slideshow {
  position: relative;
  min-height: 280px;
  background-size: cover !important;
  background-position: center !important;
  filter: contrast(1.06) saturate(1.05);
}

.ny_content_wrap {
  background:
    radial-gradient(circle at 12% 0%, rgba(32, 214, 255, .08), transparent 28%),
    linear-gradient(180deg, #f5fbff, #fff 46%, #f7fbff) !important;
}

.ny_content {
  margin-top: -34px;
}

.content_right,
.content_right2 {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(33, 106, 160, .12);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(247, 251, 255, .96)),
    radial-gradient(circle at top right, rgba(32, 214, 255, .12), transparent 35%);
  box-shadow: 0 22px 70px rgba(7, 38, 68, .1);
}

.content_right:before,
.content_right2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0b72d9, #20d6ff, transparent);
}

.bread_nav {
  border-bottom: 1px solid rgba(33, 106, 160, .12) !important;
  background: linear-gradient(90deg, rgba(244, 250, 255, .95), rgba(255, 255, 255, .75));
}

.bread_nav div {
  color: #526173 !important;
}

.bread_nav a {
  color: #0b72d9 !important;
}

.syFocusThumb .pagination,
.contact .tags_title,
.tags_title {
  border-color: rgba(33, 106, 160, .14) !important;
}

.syFocusThumb .toc a,
.contact .tags_title span,
.tags_title span {
  border-radius: 6px 6px 0 0;
}

.syFocusThumb .toc a:hover,
.contact .tags_title span:hover,
.contact .tags_title span:not(.ron),
.tags_title span {
  color: #08243d !important;
  background: linear-gradient(180deg, #fff, #eef8ff) !important;
  border-color: rgba(32, 214, 255, .28) !important;
}

.ny_products .pro_bd ul li > div,
.content_right .conn .xgcp li > div,
.article_inside li,
.contact .content1 li,
.cpzx .ly_msg,
.proshow1,
.prodetail_con {
  border: 1px solid rgba(33, 106, 160, .12);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: 0 16px 42px rgba(7, 38, 68, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ny_products .pro_bd ul li > div:hover,
.content_right .conn .xgcp li > div:hover,
.article_inside li:hover,
.contact .content1 li:hover {
  transform: translateY(-5px);
  border-color: rgba(32, 214, 255, .35);
  box-shadow: 0 24px 64px rgba(3, 80, 160, .16);
}

.ny_products .pro_img,
.content_right .conn .xgcp .pro_img,
.js-silder .silder-main-img {
  background:
    radial-gradient(circle at 50% 45%, rgba(32, 214, 255, .14), transparent 42%),
    linear-gradient(180deg, #fafdff, #edf7ff) !important;
}

.ny_products .pro_img img,
.content_right .conn .xgcp img,
.js-silder .silder-main-img img {
  filter: contrast(1.06) saturate(1.04) drop-shadow(0 18px 24px rgba(6, 35, 60, .12));
}

.article_inside .news_wrap {
  display: flex;
  align-items: stretch;
}

.news_time {
  border-radius: 8px;
  background: linear-gradient(135deg, #0b72d9, #20d6ff) !important;
  box-shadow: 0 14px 28px rgba(3, 80, 160, .16);
}

.news_con p a,
.ny_news_tlt,
.pro_name {
  color: #08243d !important;
}

.ny_news_time {
  color: #7a8699 !important;
}

.ny_news_con,
.ny_news_con2,
.about_wz,
.prodetail_con .content {
  color: #3e4a59;
  line-height: 1.9;
}

.proshow1 {
  padding: 24px !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(32, 214, 255, .1), transparent 30%),
    linear-gradient(180deg, #fff, #f7fbff);
}

.pro_btn1,
.pro_btn2,
.msg_btn input[type="submit"] {
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #0b72d9, #20d6ff) !important;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(3, 80, 160, .18);
}

.msg_btn input[type="reset"] {
  border-radius: 999px !important;
  border: 1px solid rgba(33, 106, 160, .16) !important;
  background: #fff !important;
  color: #526173 !important;
}

.cpzx .ly_msg input,
.cpzx .ly_msg textarea,
.ly_msg .textborder,
.ly_msg .areatext {
  border: 1px solid rgba(33, 106, 160, .14) !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, .92) !important;
  box-shadow: inset 0 1px 2px rgba(7, 38, 68, .04);
}

.cpzx .ly_msg input:focus,
.cpzx .ly_msg textarea:focus {
  border-color: rgba(32, 214, 255, .55) !important;
  box-shadow: 0 0 0 3px rgba(32, 214, 255, .12);
}

.pagebar .pagination2 a,
.pagebar .pagination2 span {
  border-radius: 999px !important;
  border-color: rgba(33, 106, 160, .14) !important;
}

.pagebar .pagination2 a:hover,
.pagebar .pagination2 .current {
  background: linear-gradient(135deg, #0b72d9, #20d6ff) !important;
  color: #fff !important;
}

@media (max-width: 768px) {
  .ny_content {
    margin-top: -18px;
  }

  .content_right,
  .content_right2 {
    border-radius: 8px;
  }

  .proshow1 {
    padding: 16px !important;
  }
}

/* 2026-06-20 page refinement */
.site-nav li > a:hover,
.site-nav li > a.active {
  color: #fff !important;
  background: linear-gradient(135deg, #063b67, #0b72d9) !important;
  box-shadow: inset 0 -3px 0 rgba(32, 214, 255, .9);
}

.nav-sub {
  border: 1px solid rgba(11, 114, 217, .14) !important;
  box-shadow: 0 18px 44px rgba(4, 36, 72, .14) !important;
}

.site-nav li:not(.has-sub) .nav-sub,
.site-nav .nav-sub.nav-empty,
.site-nav .nav-sub:not(:has(a)) {
  display: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.nav-sub a:hover {
  color: #0b72d9 !important;
  background: #eef8ff !important;
}

.ny_content_wrap {
  background: linear-gradient(180deg, #f7fbff, #fff 240px, #fff) !important;
}

.content_right,
.content_right2,
.article-page {
  overflow: visible;
  background: #fff !important;
  box-shadow: 0 20px 56px rgba(8, 36, 61, .08) !important;
}

.content_right:before,
.content_right2:before {
  height: 2px;
  background: linear-gradient(90deg, #0b72d9, rgba(32, 214, 255, .55), transparent);
}

.bread_nav {
  background: #fff !important;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading span,
.message-intro span,
.product-kicker,
.product-consult-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #0b72d9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-heading h2,
.message-intro h1,
.product-summary h1,
.product-consult-card h2 {
  margin: 0 0 12px;
  color: #08243d;
  font-weight: 800;
}

.section-heading p,
.message-intro p,
.product-summary .product-desc,
.product-consult-card p {
  color: #526173;
  line-height: 1.8;
}

.product-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 26px 4px;
}

.product-filter .filter-item {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(11, 114, 217, .12);
  border-radius: 999px;
  color: #31506b;
  background: #fff;
  text-decoration: none;
  transition: all .22s ease;
}

.product-filter .filter-item:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #0b72d9, #20d6ff);
  box-shadow: 0 12px 26px rgba(3, 80, 160, .16);
}

.ny_products .pro_bd ul {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ny_products .pro_bd ul li {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}

.ny_products .pro_bd ul li > div,
.content_right .conn .xgcp li > div {
  height: 100%;
  overflow: hidden;
  background: #fff !important;
}

.ny_products .pro_img,
.content_right .conn .xgcp .pro_img,
.product-main-img {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(32, 214, 255, .1), transparent 45%),
    linear-gradient(180deg, #fff, #f3f9ff) !important;
}

.ny_products .pro_img {
  height: auto !important;
  aspect-ratio: 4 / 3;
}

.ny_products .pro_img img,
.content_right .conn .xgcp img,
.product-main-img img {
  width: auto !important;
  max-width: 86% !important;
  height: auto !important;
  max-height: 86% !important;
  object-fit: contain;
  filter: contrast(1.05) saturate(1.04) drop-shadow(0 16px 22px rgba(6, 35, 60, .12));
}

.ny_products .pro_bd ul li p,
.content_right .conn .xgcp li p {
  min-height: 46px;
  padding: 14px 12px 18px;
  color: #24384d;
  font-weight: 700;
  text-align: center;
}

.product-hero-card {
  display: grid;
  grid-template-columns: minmax(300px, 45%) minmax(0, 1fr);
  gap: 32px;
  padding: 28px;
  border: 1px solid rgba(11, 114, 217, .12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(8, 36, 61, .08);
}

.product-main-img {
  min-height: 360px;
  border-radius: 8px;
}

.product-points {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.product-points li {
  position: relative;
  margin: 10px 0;
  padding-left: 22px;
  color: #425468;
}

.product-points li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0b72d9;
  box-shadow: 0 0 0 4px rgba(11, 114, 217, .12);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.product-tabs,
.product-consult-card {
  margin-top: 28px;
}

.product-tabs .tags_title {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(11, 114, 217, .12);
}

.product-tabs .tags_title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 42px;
  margin: 0;
  border: 1px solid rgba(11, 114, 217, .12);
  border-bottom: 0;
  cursor: pointer;
  font-weight: 700;
}

.product-tabs .tags_title span.active {
  color: #fff !important;
  border-color: transparent !important;
  background: linear-gradient(135deg, #0b72d9, #20d6ff) !important;
}

.recommend-title {
  display: flex !important;
  align-items: center;
  width: 100% !important;
  margin-top: 30px;
  border-bottom: 1px solid rgba(11, 114, 217, .12);
}

.recommend-title span {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  min-width: 112px !important;
  max-width: none !important;
  height: 42px !important;
  padding: 0 22px !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  writing-mode: horizontal-tb !important;
  line-height: 1 !important;
}

.product-tab-panel {
  display: none;
  padding: 24px 0 0;
}

.product-tab-panel.active {
  display: block;
}

.intro-spec-card {
  overflow: hidden;
  border: 1px solid rgba(11, 114, 217, .12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(8, 36, 61, .08);
}

.intro-spec-head {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: linear-gradient(135deg, #079fe0, #0b72d9);
}

.intro-spec-head span {
  padding: 22px 28px;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.intro-spec-body {
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(280px, 48%);
  min-height: 420px;
}

.intro-spec-text {
  padding: 36px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(5, 54, 104, .92), rgba(7, 103, 170, .86)),
    radial-gradient(circle at 20% 10%, rgba(32, 214, 255, .25), transparent 30%);
}

.intro-spec-text .product-kicker {
  color: #9eeaff !important;
}

.intro-spec-text h2 {
  margin: 12px 0 18px;
  color: #ff8a1d;
  font-size: 36px;
  line-height: 1.25;
}

.intro-spec-text p,
.intro-spec-text li {
  color: rgba(255, 255, 255, .92);
  font-size: 16px;
  line-height: 1.9;
}

.intro-spec-text ul {
  margin: 22px 0 0;
  padding-left: 20px;
}

.intro-spec-image {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  background: linear-gradient(180deg, #f6f8fa, #e9eef3);
}

.intro-spec-image img {
  width: auto;
  max-width: 88%;
  height: auto;
  max-height: 88%;
  object-fit: contain;
  filter: contrast(1.04) saturate(1.03) drop-shadow(0 22px 30px rgba(6, 35, 60, .14));
}

.intro-spec-image em {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(8, 36, 61, .72);
  color: #fff;
  font-style: normal;
  font-size: 12px;
}

.intro-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
}

.intro-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 36, 61, .06);
}

.intro-table th,
.intro-table td {
  padding: 15px 18px;
  border: 1px solid rgba(11, 114, 217, .12);
  line-height: 1.7;
  text-align: left;
}

.intro-table th {
  width: 120px;
  color: #08243d;
  background: #eef8ff;
  white-space: nowrap;
}

.intro-table td {
  color: #425468;
}

.intro-table a {
  color: #0b72d9;
  font-weight: 700;
}

.detail-media {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(11, 114, 217, .1);
  border-radius: 10px;
  background: #fff;
}

.section-heading.compact {
  margin-bottom: 18px;
}

.section-heading.compact h2 {
  font-size: 24px;
}

.detail-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-text-grid div {
  border: 1px solid rgba(11, 114, 217, .1);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #f5fbff);
  box-shadow: 0 14px 34px rgba(8, 36, 61, .05);
}

.detail-text-grid div {
  padding: 16px 18px;
}

.detail-text-grid b {
  display: block;
  margin: 0 0 8px;
  color: #08243d;
  font-size: 18px;
  font-weight: 800;
}

.detail-text-grid p {
  margin: 0;
  color: #526173;
  line-height: 1.8;
}

.raw-detail-content {
  display: none;
}

.product-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.product-service-grid div,
.product-consult-card,
.contact-card,
.message-intro {
  border: 1px solid rgba(11, 114, 217, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 36, 61, .06);
}

.product-service-grid div {
  padding: 18px;
}

.product-service-grid b {
  display: block;
  margin-bottom: 8px;
  color: #08243d;
}

.product-service-grid p {
  margin: 0;
  color: #526173;
  line-height: 1.75;
}

.tech-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.tech-table th,
.tech-table td {
  padding: 15px 18px;
  border: 1px solid rgba(11, 114, 217, .12);
  line-height: 1.7;
  text-align: left;
}

.tech-table th {
  width: 160px;
  color: #08243d;
  background: #f3f9ff;
}

.spec-mini-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.spec-mini-table th,
.spec-mini-table td {
  padding: 10px 12px;
  border: 1px solid rgba(11, 114, 217, .1);
  line-height: 1.65;
  vertical-align: top;
}

.spec-mini-table th {
  width: 190px;
  color: #0a3354;
  background: #eef8ff;
  white-space: nowrap;
}

.product-consult-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(135deg, #fff, #f4fbff) !important;
}

.ny_news_ye {
  margin-top: 22px;
  padding: 18px 20px !important;
  border: 1px solid rgba(11, 114, 217, .1);
  border-radius: 8px;
  background: #fff;
}

.ny_news_ye p {
  margin: 6px 0;
  color: #526173;
}

.contact-clean .contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 132px;
  padding: 22px;
  color: inherit;
  text-decoration: none;
  transition: all .22s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 214, 255, .32);
  box-shadow: 0 22px 48px rgba(3, 80, 160, .12);
}

.contact-card p {
  margin: 0 0 8px;
  color: #526173;
}

.contact-card strong {
  color: #24384d;
  font-size: 18px;
  line-height: 1.6;
}

.contact-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, #08243d, #0b72d9);
  color: #fff;
}

.contact-action h3,
.contact-action p {
  margin: 0;
  color: #fff;
}

.contact-action p {
  margin-top: 8px;
  opacity: .85;
}

.message-layout {
  display: grid;
  grid-template-columns: minmax(260px, 34%) minmax(0, 1fr);
  gap: 28px;
}

.message-intro {
  padding: 28px;
  background:
    radial-gradient(circle at 80% 10%, rgba(32, 214, 255, .14), transparent 30%),
    linear-gradient(180deg, #fff, #f4fbff);
}

.message-intro ul {
  margin: 20px 0 0;
  padding-left: 18px;
  color: #425468;
  line-height: 1.9;
}

.cpzx .ly_msg {
  padding: 26px !important;
  background: #fff !important;
}

.cpzx .ly_msg h3 {
  margin-bottom: 20px;
  color: #08243d;
  font-size: 22px;
}

.cpzx .ly_msg li {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 16px;
}

.cpzx .ly_msg h4 {
  margin: 0;
  padding-top: 9px;
  color: #425468;
  font-weight: 700;
  text-align: right;
}

.cpzx .ly_msg input,
.cpzx .ly_msg textarea {
  width: 100% !important;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .ny_products .pro_bd ul,
  .contact-clean .contact-cards,
  .product-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-hero-card,
  .message-layout,
  .intro-spec-body {
    grid-template-columns: 1fr;
  }

  .intro-spec-head {
    grid-template-columns: 1fr;
  }

  .detail-text-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ny_products .pro_bd ul,
  .contact-clean .contact-cards,
  .product-service-grid {
    grid-template-columns: 1fr;
  }

  .product-hero-card,
  .product-consult-card,
  .contact-action {
    padding: 18px;
  }

  .product-main-img {
    min-height: 260px;
  }

  .intro-spec-head span {
    padding: 16px;
    font-size: 19px;
  }

  .intro-spec-text {
    padding: 24px 18px;
  }

  .intro-spec-text h2 {
    font-size: 28px;
  }

  .intro-spec-image {
    min-height: 280px;
  }

  .detail-media {
    padding: 16px;
  }

  .spec-mini-table th,
  .spec-mini-table td {
    display: block;
    width: 100%;
  }

  .product-consult-card,
  .contact-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .cpzx .ly_msg li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cpzx .ly_msg h4 {
    padding-top: 0;
    text-align: left;
  }
}

/* Homepage: remove floating glass panel around hero copy */
.home-page .hero-content {
  max-width: 980px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* Prevent short UI labels from breaking into vertical-looking text blocks */
.site-nav li > a,
.nav-sub a,
.header-search button,
.hero-kicker,
.eyebrow,
.section-head span,
.btn,
.pro_btn1,
.pro_btn2,
.pro_btn2 span,
.pro_btn2 em,
.msg_btn input,
.pagebar .pagination2 a,
.pagebar .pagination2 span,
.syFocusThumb .toc a,
.product-filter .filter-item,
.tags_title span,
.product-tabs .tags_title span,
.recommend-title span,
.section-heading span,
.message-intro span,
.product-kicker,
.product-consult-card span,
.category-card span,
.service-grid span,
.capability-panel span,
.footer-code span,
.suspension .a span,
.cpzx .ly_msg h4,
.contact-card p,
.link .link_con .tlt {
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
}

.tags_title,
.product-tabs .tags_title {
  display: flex !important;
  align-items: center;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  overflow-y: hidden;
}

.tags_title span,
.product-tabs .tags_title span,
.syFocusThumb .toc a,
.product-filter .filter-item,
.pagebar .pagination2 a,
.pagebar .pagination2 span {
  flex: 0 0 auto !important;
}

/* Product images: unify white-background source photos with the site visual style */
.product-img,
.category-card,
.ny_products .pro_img,
.content_right .conn .xgcp .pro_img,
.product-main-img,
.intro-spec-image,
.js-silder .silder-main-img {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 45%, rgba(32, 214, 255, .16), transparent 44%),
    linear-gradient(180deg, #f9fdff 0%, #edf8ff 100%) !important;
}

.product-img:before,
.ny_products .pro_img:before,
.content_right .conn .xgcp .pro_img:before,
.product-main-img:before,
.intro-spec-image:before,
.js-silder .silder-main-img:before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 12%;
  height: 22px;
  border-radius: 50%;
  background: rgba(4, 42, 76, .13);
  filter: blur(14px);
  z-index: -1;
}

.product-img img,
.category-card img,
.ny_products .pro_img img,
.content_right .conn .xgcp .pro_img img,
.product-main-img img,
.intro-spec-image img,
.js-silder .silder-main-img img {
  background: transparent !important;
  mix-blend-mode: multiply;
  filter: contrast(1.08) saturate(1.05) drop-shadow(0 20px 26px rgba(6, 35, 60, .16)) !important;
  transition: transform .22s ease, filter .22s ease;
}

.product-card:hover .product-img img,
.ny_products .pro_bd ul li > div:hover .pro_img img,
.content_right .conn .xgcp li > div:hover .pro_img img {
  transform: translateY(-3px) scale(1.015);
}

/* Homepage: lighten first screen and remove glass overlays */
.home-page .site-header,
.home-page .hero-content,
.home-page .hero-kicker,
.home-page .btn-secondary,
.home-page .trust-grid,
.home-page .capability-panel div {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.home-page .hero-slide:after {
  display: none !important;
}

.home-page .hero-kicker {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #9feeff !important;
}

.home-page .hero-content {
  text-shadow: none !important;
}

.home-page .swiper-pagination,
.home-page .swiper-button-prev,
.home-page .swiper-button-next {
  display: none !important;
}
/* Mobile navigation drawer: keep menu layout stable on phone browsers */
@media (max-width: 880px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    width: 100% !important;
    max-width: 100% !important;
  }

  .site-header .container.header-main {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 14px !important;
    padding-right: 10px !important;
    box-sizing: border-box;
  }

  .brand {
    flex: 0 1 auto !important;
    max-width: calc(100vw - 92px) !important;
  }

  .brand img {
    width: auto !important;
    max-width: 220px !important;
    height: auto !important;
  }

  .nav-toggle {
    flex: 0 0 52px !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 12px !important;
  }

  .site-nav {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: min(82vw, 320px) !important;
    min-width: 0 !important;
    max-width: 320px !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    background: #fff !important;
    transform: translate3d(105%, 0, 0) !important;
    transition: transform .24s ease !important;
    z-index: 1500 !important;
    box-shadow: -18px 0 46px rgba(4, 31, 57, .2) !important;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.open {
    transform: translate3d(0, 0, 0) !important;
  }

  body.nav-open:after {
    z-index: 1490 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .site-nav .nav-inner,
  .site-nav .container {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .mobile-nav-head {
    display: flex !important;
    width: 100% !important;
    padding: 16px !important;
    box-sizing: border-box;
  }

  .mobile-nav-head img {
    max-width: 180px !important;
    max-height: 50px !important;
    object-fit: contain;
  }

  .site-nav ul {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 10px 14px 28px !important;
    box-sizing: border-box;
  }

  .site-nav li {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    border-bottom: 1px solid rgba(11, 114, 217, .08) !important;
  }

  .site-nav li > a {
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 48px !important;
    height: auto !important;
    justify-content: flex-start !important;
    padding: 0 12px !important;
    box-sizing: border-box;
    white-space: normal !important;
    word-break: keep-all !important;
    line-height: 1.35 !important;
    text-align: left !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .site-nav li > a.active {
    color: #0b72d9 !important;
    background: #eef8ff !important;
  }

  .site-nav .nav-sub {
    display: block !important;
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 0 8px !important;
    padding: 0 0 0 10px !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .site-nav .nav-sub:empty,
  .site-nav .nav-sub.nav-empty,
  .site-nav li:not(.has-sub) .nav-sub,
  .site-nav .nav-sub:not(:has(a)) {
    display: none !important;
  }

  .site-nav .nav-sub a {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 4px 0 !important;
    padding: 9px 10px !important;
    box-sizing: border-box;
    color: #56657a !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    white-space: normal !important;
    text-align: left !important;
    background: #f5faff !important;
    border-radius: 8px !important;
  }
}
/* Mobile navigation: neutralize legacy float-based menu rules */
@media (max-width: 880px) {
  .site-nav ul,
  .site-nav li,
  .site-nav li > a,
  .site-nav .nav-sub,
  .site-nav .nav-sub a {
    float: none !important;
    clear: both !important;
  }

  .site-nav ul {
    display: block !important;
  }

  .site-nav li {
    display: block !important;
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  .site-nav li > a {
    position: relative !important;
  }

  .site-nav .nav-sub {
    position: static !important;
    height: auto !important;
    overflow: visible !important;
    transform: none !important;
  }
}
/* Mobile navigation: strongest open-state override */
@media (max-width: 880px) {
  body.nav-open #nav.site-nav.open,
  #nav.site-nav.open,
  .site-nav.site-nav.open {
    right: 0 !important;
    transform: translate3d(0, 0, 0) !important;
  }
}
/* Mobile navigation: keep drawer as a clean first-level menu */
@media (max-width: 880px) {
  #nav.site-nav .nav-sub,
  #nav.site-nav li.has-sub .nav-sub {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  #nav.site-nav li,
  #nav.site-nav li.has-sub {
    height: auto !important;
    min-height: 49px !important;
  }
}
/* Product detail CTA and message form visibility fixes */
.product-actions {
  gap: 18px !important;
  flex-wrap: wrap !important;
  align-items: center !important;
}
.product-actions .pro_btn1,
.product-actions .pro_btn2 {
  min-height: 58px !important;
  padding: 0 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
  line-height: 1.2 !important;
}
.product-actions .pro_btn1 {
  min-width: 118px !important;
}
.product-actions .pro_btn2 {
  min-width: 318px !important;
  gap: 8px !important;
}
.product-actions .pro_btn2 span,
.product-actions .pro_btn2 em {
  display: inline-block !important;
  line-height: 1.2 !important;
  color: #fff !important;
}
.product-actions .pro_btn2 em {
  font-size: 18px !important;
  font-weight: 800 !important;
  font-style: normal !important;
}
.msg_btn input[type="submit"],
.cpzx .msg_btn input[type="submit"],
#tj {
  min-width: 156px !important;
  height: 48px !important;
  line-height: 48px !important;
  padding: 0 32px !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-align: center !important;
  text-indent: 0 !important;
  letter-spacing: 0 !important;
  opacity: 1 !important;
  cursor: pointer !important;
  border: 0 !important;
  background: linear-gradient(135deg, #0b72d9, #20d6ff) !important;
  box-shadow: 0 14px 30px rgba(3, 80, 160, .18) !important;
}
.msg_btn input[type="reset"],
.cpzx .msg_btn input[type="reset"] {
  min-width: 156px !important;
  height: 48px !important;
  line-height: 48px !important;
  padding: 0 32px !important;
  font-size: 16px !important;
  text-align: center !important;
  text-indent: 0 !important;
}
@media (max-width: 640px) {
  .product-actions .pro_btn1,
  .product-actions .pro_btn2 {
    width: 100% !important;
    min-width: 0 !important;
  }
}
/* Homepage custom banner: Zhongyan real product showcase */
.home-page .hero-slide:before {
  background: linear-gradient(90deg, rgba(2, 13, 34, .70) 0%, rgba(2, 22, 48, .36) 46%, rgba(2, 22, 48, .04) 100%) !important;
}
.home-page .hero-content {
  max-width: 620px !important;
  margin-left: max(36px, calc((100vw - 1200px) / 2)) !important;
  margin-right: auto !important;
  padding-top: 46px !important;
}
.home-page .hero h1 {
  max-width: 620px !important;
  font-size: 58px !important;
  line-height: 1.12 !important;
  letter-spacing: 0 !important;
}
.home-page .hero p {
  max-width: 620px !important;
  font-size: 21px !important;
  line-height: 1.85 !important;
}
.hero-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  max-width: 600px;
  margin: 26px 0 0;
}
.hero-service-list span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 216, 125, .55);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 244, 204, .96), rgba(255, 178, 59, .88));
  color: #303743;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(0, 20, 54, .18);
  white-space: nowrap;
}
@media (max-width: 880px) {
  .home-page .hero-slide {
    background-position: 62% center !important;
  }
  .home-page .hero-content {
    max-width: calc(100% - 36px) !important;
    padding-top: 28px !important;
  }
  .home-page .hero h1 {
    font-size: 42px !important;
    max-width: 520px !important;
  }
  .home-page .hero p {
    max-width: 520px !important;
    font-size: 18px !important;
  }
  .hero-service-list {
    grid-template-columns: 1fr;
    max-width: 360px;
    gap: 10px;
  }
  .hero-service-list span {
    min-height: 42px;
    font-size: 15px;
  }
}
@media (max-width: 520px) {
  .home-page .hero-slide {
    background-position: 68% center !important;
  }
  .home-page .hero h1 {
    font-size: 34px !important;
  }
  .hero-service-list span:nth-child(n+3) {
    display: none;
  }
}