﻿@font-face { font-family: Poppins-Light; src: url("../fonts/Poppins-Light.woff2") format("woff2"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: Poppins-Medium; src: url("../fonts/Poppins-Medium.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: Poppins-SemiBold; src: url("../fonts/Poppins-SemiBold.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: Poppins-Bold; src: url("../fonts/Poppins-Bold.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
:root {
  --blue: #004678;
  --pink: #e85f74;
  --text: #202124;
  --muted: #626970;
  --band: #f3f3f3;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; font-family: Poppins-Medium, "Segoe UI", Arial, sans-serif; color: var(--text); background: #fff; line-height: 1.45; font-size: 14px; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.topbar { height: 30px; background: var(--blue); color: #d9edf8; font-size: 12px; font-weight: 600; }
.topbar-inner { height: 100%; display: flex; align-items: center; gap: 20px; white-space: nowrap; }
.topbar-inner span:last-child { margin-left: auto; }
.topbar-inner .iconfont { font-size: 16px; margin-right: 8px; vertical-align: -2px; }

.header { height: 80px; background: rgba(255,255,255,.96); box-shadow: 0 3px 14px rgba(0,0,0,.08); position: sticky; top: 0; z-index: 20; }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.logo { display: flex; align-items: center; width: 155px; }
.logo img { width: 155px; height: auto; display: block; }
.nav { display: flex; align-items: center; justify-content: center; gap: 88px; font-family: Poppins-SemiBold, "Segoe UI", Arial, sans-serif; font-size: 16px; font-weight: 600; color: #333; flex: 1; }
.nav a.active { color: #004678; font-weight: 600; }
.nav-dropdown { position: relative; padding: 22px 0; }
.nav-dropdown-toggle { display: none; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 260px;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
  border-top: 3px solid var(--blue);
  opacity: 0;
  visibility: hidden;
  transition: .18s ease;
  z-index: 40;
}
.dropdown-menu a {
  display: block;
  padding: 13px 18px;
  color: #25313a;
  border-bottom: 1px solid #edf0f2;
  font-size: 14px;
  font-weight: 600;
}
.dropdown-menu a:hover { background: #f5f8fb; color: var(--blue); }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.header-icons { display: flex; align-items: flex-start; gap: 58px; color: #3b3b3b; position: relative; }
.search-toggle { border: 0; padding: 0; background: transparent; color: inherit; cursor: pointer; }
.icon-svg { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; }
.icon-svg svg { width: 34px; height: 34px; stroke: currentColor; fill: none; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.language-switcher { position: relative; }
.language-toggle { border: 0; background: transparent; padding: 0; color: inherit; cursor: pointer; }
.language-toggle:hover { color: #004678; }
.language-menu {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  padding: 8px 0;
  background: rgba(128, 128, 128, .88);
  border-radius: 22px;
  display: none;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
  z-index: 50;
}
.language-menu a {
  display: block;
  color: #fff;
  font-family: Poppins-Medium, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.9;
}
.language-menu a:hover { color: #004678; }
.language-menu a.active { opacity: .6; }
.language-switcher:hover .language-menu, .language-switcher:focus-within .language-menu { display: block; }
.mobile-language { display: none; }
.search-overlay { position: fixed; inset: 0; z-index: 100; display: none; background: rgba(0,0,0,.8); }
.search-overlay.open { display: block; }
.search-close { position: absolute; top: 48px; right: 48px; width: 52px; height: 52px; border: 0; background: rgba(255,255,255,.78); cursor: pointer; }
.search-close::before, .search-close::after { content: ""; position: absolute; left: 14px; top: 25px; width: 24px; height: 2px; background: #fff; transform: rotate(45deg); }
.search-close::after { transform: rotate(-45deg); }
.search-panel { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: min(1200px, calc(100% - 160px)); }
.search-panel h2 { color: #fff; font-family: Arial, "Segoe UI", sans-serif; font-size: 50px; line-height: 1.15; font-weight: 400; text-align: center; margin-bottom: 90px; }
.search-row { display: grid; grid-template-columns: 1fr 200px; gap: 0; align-items: end; }
.search-row input { height: 68px; min-height: 68px; margin: 0; padding: 0 30px 0 0; border: 0; border-bottom: 2px solid rgba(255,255,255,.65); background: transparent; color: #fff; font-size: 36px; outline: none; }
.search-row input::placeholder { color: rgba(255,255,255,.62); }
.search-row button { height: 68px; border: 0; border-radius: 4px; background: var(--blue); color: #fff; font-size: 16px; font-weight: 700; cursor: pointer; }
.search-row button:hover { background: #013954; }
.nav-toggle { display: none; border: 0; background: var(--blue); color: #fff; width: 40px; height: 36px; border-radius: 4px; font-size: 22px; }

.hero { min-height: 690px; background-image: url("../images/1.jpg"); background-position: center center; background-size: contain; background-repeat: no-repeat; background-color: #f7f6f3; display: flex; align-items: center; }
.hero-copy { max-width: 1000px; padding-bottom: 56px; }
.hero-copy { display: none; }
.hero h1 { font-size: clamp(34px, 3.3vw, 48px); line-height: 1.2; font-weight: 900; margin-bottom: 56px; letter-spacing: 0; }
.hero p { font-size: 19px; max-width: 760px; line-height: 1.26; margin-bottom: 50px; }
.hero-points { display: flex; gap: 70px; margin-bottom: 44px; font-size: 16px; }
.primary-btn { display: inline-flex; height: 90px; align-items: center; padding: 0 36px; border-radius: 45px; background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,.07); font-size: 20px; font-weight: 900; }

section { padding: 74px 0; }
.features { padding-top: 92px; padding-bottom: 80px; }
.features-title { text-align: center; font-size: 44px; font-weight: 300; font-family: Poppins-Light, "Segoe UI", Arial, sans-serif; line-height: 1.15; margin-bottom: 78px; color: #000; }
.feature-grid, .app-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 78px; text-align: center; }
.feature-icon { width: 112px; height: 112px; margin: 0 auto 34px; display: grid; place-items: center; }
.feature-icon img { width: 112px; height: 112px; object-fit: contain; display: block; }
.feature-grid h3 { font-size: 18px; line-height: 1.75; margin-bottom: 10px; font-weight: 600; font-family: Poppins-SemiBold, "Segoe UI", Arial, sans-serif; color: #555; }
.feature-grid p { color: #555; font-size: 14px; font-family: Poppins-Medium, "Segoe UI", Arial, sans-serif; line-height: 2.05; }
.app-grid h3 { font-size: 18px; line-height: 1.65; margin-bottom: 4px; font-weight: 700; color: #000; }
.app-grid p { color: #000; font-size: 18px; line-height: 1.75; }
.section-title p { color: var(--muted); font-size: 16px; line-height: 40px; }

.section-title { text-align: center; margin-bottom: 30px; }
.section-title span, .news-list span, .contact-card > span { color: #006394; font-size: 16px;  letter-spacing: .04em; }
.products .section-title span { color: #000; font-weight: 400; }
h2 { font-size: 38px; line-height: 1.1; font-weight: 700; font-family: Poppins-Bold, "Segoe UI", Arial, sans-serif; letter-spacing: 0; }
.products-title { font-size: 44px; font-family: Poppins-Regular, "Segoe UI", Arial, sans-serif; font-weight: 400; color: #000; }
.products { padding-top: 38px; padding-bottom: 112px; overflow: hidden; }
.product-row { position: relative; width: min(1520px, calc(100% - 180px)); margin: 58px auto 0; }
.product-viewport { overflow: hidden; width: 100%; }
.product-track { display: flex; gap: 32px; transition: transform .35s ease; will-change: transform; }
.product-row article { flex: 0 0 calc((100% - 96px) / 4); min-width: 0; text-align: center; overflow: hidden; }
.product-row img { width: 100%; aspect-ratio: 1 / 1; height: auto; object-fit: cover; object-position: center center; background: #f7f7f7; border-radius: 8px; }
.product-row h3 { font-size: 14px; line-height: 1.25; font-weight:normal; margin-top: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #000; }
.slide-btn { position: absolute; top: calc(50% - 58px); left: -58px; width: 44px; height: 76px; border: 0; background: #12313d; color: #fff; font-size: 42px; z-index: 2; cursor: pointer; display: grid; place-items: center; }
.slide-btn.next { left: auto; right: -58px; }

.applications { background: var(--band); padding-top: 72px; padding-bottom: 112px; overflow: hidden; }
.applications-title { font-size: 44px; font-family: Poppins-Regular, "Segoe UI", Arial, sans-serif; font-weight: 400; color: #000; }
.app-grid { width: min(1260px, calc(100% - 120px)); margin: 58px auto 0; gap: 82px; align-items: start; }
.app-grid img { width: 188px; height: 188px; margin: 0 auto 34px; object-fit: contain; object-position: center center; background: #fff; }

.news { padding: 74px 0 82px; }
.news-grid { display: grid; grid-template-columns: 310px 1fr 1fr; gap: 28px; align-items: start; }
.news-list h2 { margin-bottom: 28px; color: #1d303c; font-size: 44px; font-family: Poppins-Regular, "Segoe UI", Arial, sans-serif; font-weight: 400; }
.news-list a { display: block; font-size: 20px; line-height: 28px; font-weight:normal; color: #1d303c; margin-top: 20px; }
small { color: #92999f; font-size: 14px; display: block; margin-top: 8px; }
.news-card img { width: 100%; height: 300px; object-fit: contain; background: #fff; margin-bottom: 12px; }
.news-card h3 { font-size: 20px; color: #1d303c; font-weight:normal; }
.news-card p { color: #687078; font-size: 14px; line-height: 1.55; margin-top: 8px; }

.contact { background: #fafafa; padding: 80px 0 86px; }
.contact-card { width: min(940px, calc(100% - 48px)); background: #fff; padding: 32px 25px 56px; box-shadow: 0 0 13px rgba(0,0,0,.13); }
.contact-card h2 { text-align: left; }
.contact-card h2 b { color: #00527f; }
.contact-card p { color: var(--muted); font-size: 13px; margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
input, textarea { width: 100%; border: 1px solid #eee; min-height: 43px; padding: 0 14px; margin-bottom: 15px; font: inherit; font-size: 14px; outline: none; }
input::placeholder, textarea::placeholder { color: #9aa2aa; opacity: 1; }
textarea { height: 120px; padding-top: 12px; resize: vertical; }
form button { border: 0; height: 50px; min-width: 190px; border-radius: 6px; background: var(--blue); color: #fff; font-size: 16px; font-weight: normal; cursor: pointer; }

footer { background: var(--blue); color: #d8e7f1; }
.footer-grid { width: min(1180px, calc(100% - 48px)); padding: 108px 0 116px; display: grid; grid-template-columns: 1.35fr .8fr 1fr 1.45fr; gap: 72px; align-items: start; }
.footer-logo { color: #fff; margin-bottom: 46px; }
footer h3 { color: #fff; font-size: 30px; line-height: 1; font-weight: 300; font-family: Poppins-Light, "Segoe UI", Arial, sans-serif; margin-bottom: 54px; position: relative; }
footer h3::after { content: ""; position: absolute; left: 0; bottom: -28px; width: 52px; height: 2px; background: rgba(255,255,255,.88); }
footer p, footer a { display: block; font-size: 14px; line-height: 1.28; color: rgba(216,231,241,.72); }
footer a:hover { color: #fff; }
footer a + a { margin-top: 32px; }
footer p + p { margin-top: 18px; }
.socials { display: flex; gap: 8px; margin-top: 34px; }
.socials span { width: 34px; height: 34px; border: 2px solid rgba(255,255,255,.9); border-radius: 50%; display: grid; place-items: center; font-size: 20px; color: #fff; }
.copyright { border-top: 1px solid rgba(255,255,255,.12); padding: 42px 0 35px; font-size: 14px; }
.copyright .container { width: min(1180px, calc(100% - 48px)); display: flex; justify-content: space-between; gap: 20px; }
.mobile-bottom-bar { display: none; }
.mobile-chat-tools { display: none; }

.float-tools { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 30; width: 52px; display: flex; flex-direction: column; align-items: center; background: #064472; overflow: visible; }
.float-tools a, .float-tools button { position: relative; width: 52px; height: 52px; border: 0; padding: 0; display: grid; place-items: center; background: #064472; color: #fff; cursor: pointer; overflow: visible; transition: background-color .25s ease; }
.float-tools a:hover, .float-tools button:hover { background: #17313c; }
.float-tools .iconfont { width: 52px; font-size: 27px; line-height: 1; color: #fff; text-align: center; }
.float-tools [data-back-top] .iconfont { font-size: 29px; }
.float-tools span { position: absolute; right: 52px; top: 0; width: 190px; height: 52px; padding-left: 18px; display: flex; align-items: center; gap: 13px; background: #17313c; opacity: 0; pointer-events: none; color: #fff; font-size: 14px; line-height: 1; white-space: nowrap; transition: opacity .2s ease; }
.float-tools span .iconfont { width: auto; flex: 0 0 auto; font-size: 27px; }
.float-tools a:hover span, .float-tools button:hover span { opacity: 1; }

.page-hero { min-height: 310px; display: flex; align-items: center; background: linear-gradient(rgba(0,0,0,.24), rgba(0,0,0,.24)), url("../images/hero.jpg") center / cover no-repeat; color: #fff; }
.news-page-hero { background-image: linear-gradient(rgba(0,0,0,.24), rgba(0,0,0,.24)), url("../images/g1.jpg"); }
.page-hero h1 { font-family: Poppins-Bold, "Segoe UI", Arial, sans-serif; font-size: 44px; line-height: 1.1; margin-bottom: 20px; }
.page-hero p { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.92); }
.page-hero .iconfont { font-size: 14px; color: #0b6093; }
.news-page-list { padding: 54px 0 72px; background: #fff; }
.news-page-list .container { width: min(1180px, calc(100% - 48px)); }
.news-page-item { display: grid; grid-template-columns: 360px 1fr; gap: 34px; padding: 18px 0 42px; margin-bottom: 42px; border-bottom: 1px dashed #ddd; align-items: center; }
.news-page-item > a:first-child { display: block; min-width: 0; }
.news-page-item img { width: 100%; aspect-ratio: 1.75 / 1; height: auto; object-fit: cover; border-radius: 16px; }
.news-page-item h2 { font-size: 24px; line-height: 1.22; color: #202124; margin-bottom: 20px; }
.news-page-item time { display: block; color: #9aa2aa; font-size: 13px; margin-bottom: 18px; }
.news-page-item p { color: #7b828a; font-size: 13px; line-height: 1.45; margin-bottom: 16px; }
.news-page-item > div > a { display: inline-flex; align-items: center; justify-content: center; min-width: 110px; height: 40px; border-radius: 20px; background: var(--blue); color: #fff; font-size: 13px; }
.news-detail-hero { min-height: 330px; }
.news-detail-hero .container { padding-top: 74px; }
.news-detail-hero p { max-width: 1120px; line-height: 1.5; }
.news-detail { padding: 50px 0 54px; background: #fff; }
.news-detail .container { width: min(1180px, calc(100% - 48px)); }
.news-detail h1 { color: #000; font-family: Poppins-Bold, "Segoe UI", Arial, sans-serif; font-size: 32px; line-height: 1.45; font-weight: 700; margin-bottom: 62px; }
.news-detail-body { line-height: 1.8; color: #444; font-size: 15px; }
.news-detail-body p { margin-bottom: 16px; }
.article-pager { width: min(520px, 100%); padding-top: 20px; border-top: 1px solid #e6e6e6; display: grid; gap: 14px; color: #777; font-style: italic; font-size: 14px; }
.article-pager a { color: #777; }
.article-pager a:hover { color: var(--blue); }
.article-pager span { color: #999; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.pagination a { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid #ddd; border-radius: 4px; color: #888; font-size: 13px; }
.pagination a.active { border-color: #004678; color: #004678; }

.pagination-wrap { display: flex; justify-content: center; margin-top: 12px; }
.pagination-wrap > div { display: flex; align-items: center; gap: 8px; }
.pagination-wrap a { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid #ddd; border-radius: 4px; color: #888; font-size: 13px; text-decoration: none; }
.pagination-wrap a:hover { border-color: #004678; color: #004678; }
.pagination-wrap .current { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid #004678 !important; border-radius: 4px; background: #004678 !important; background-color: #004678 !important; color: #fff; font-size: 13px; }
.pagination-wrap .prev,
.pagination-wrap .next { font-size: 11px; font-weight: 700; }
.pagination-wrap .first,
.pagination-wrap .end { font-size: 11px; }
.search-results-page { padding: 54px 0 78px; background: #fff; }
.search-results-page .container { width: min(1180px, calc(100% - 48px)); }
.search-results-form { display: flex; width: min(760px, 100%); margin-bottom: 34px; }
.search-results-form input { flex: 1; min-width: 0; height: 50px; border: 1px solid #e5e5e5; padding: 0 18px; font-size: 15px; color: #333; }
.search-results-form button { min-width: 150px; height: 50px; border: 0; background: var(--blue); color: #fff; font-size: 15px; }
.search-results-page h2 { font-size: 32px; color: #202124; margin-bottom: 10px; }
.search-results-keyword { color: #777; margin-bottom: 30px; }
.search-results-keyword span { color: var(--blue); }
.search-results-list { display: grid; gap: 24px; }
.search-result-item { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding-bottom: 24px; border-bottom: 1px solid #eee; align-items: center; }
.search-result-image { display: block; min-width: 0; }
.search-result-image img { width: 100%; aspect-ratio: 1.45 / 1; object-fit: cover; border-radius: 8px; }
.search-result-title { display: block; color: #202124; font-size: 22px; line-height: 1.3; margin-bottom: 10px; }
.search-result-title:hover { color: var(--blue); }
.search-result-item time { display: block; color: #9aa2aa; font-size: 13px; margin-bottom: 10px; }
.search-result-item p, .search-empty { color: #777; font-size: 14px; line-height: 1.6; }
.products-page-hero { background-image: linear-gradient(rgba(0,0,0,.46), rgba(0,0,0,.46)), url("../images/2024938328415051776_35760f92a669f474c1eb5ebefa45ff51.webp"); }
.products-page { padding: 48px 0 74px; background: #fff; }
.products-page-layout { display: grid; grid-template-columns: 250px 1fr; gap: 42px; align-items: start; }
.news-page-layout { display: grid; grid-template-columns: 250px 1fr; gap: 42px; align-items: start; }
.products-sidebar h2, .product-search label { display: block; color: #202124; font-size: 24px; line-height: 1.2; font-weight: 400; margin-bottom: 18px; }
.product-search { margin-bottom: 24px; }
.product-search div { display: grid; grid-template-columns: 1fr 44px; }
.product-search input { height: 44px; min-height: 44px; margin: 0; border: 0; background: #f7f7f7; color: #555; font-size: 13px; }
.product-search button { min-width: 0; height: 44px; border-radius: 0; background: var(--blue); font-size: 22px; }
.category-list { margin-bottom: 34px; }
.category-list a { display: block; padding: 14px 0; border-bottom: 1px solid #eee; color: #60656a; font-size: 13px; }
.category-list a.active { color: #004678; font-weight: 600; }
.hot-products > div { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 12px; }
.hot-products a { display: block; text-align: center; color: #45494d; font-size: 13px; }
.hot-products img { width: 100%; aspect-ratio: 1.45 / 1; object-fit: cover; border-radius: 10px; margin-bottom: 6px; }
.product-listing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-listing article { border: 1px solid #eee; padding: 8px 8px 14px; background: #fff; }
.product-listing img { width: 100%; aspect-ratio: 1.25 / 1; object-fit: cover; border-radius: 12px; margin-bottom: 12px; }
.product-listing h2 { color: #282b2e; font-size: 16px; line-height: 1.25; font-family: Poppins-Bold, "Segoe UI", Arial, sans-serif; text-align: center; }
.product-listing .pagination-wrap { grid-column: 1 / -1; margin-top: 10px; }
.product-listing .pagination-wrap a.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.about-page-hero { background-image: linear-gradient(rgba(0,0,0,.46), rgba(0,0,0,.46)), url("../images/2024938328415051776_35760f92a669f474c1eb5ebefa45ff51.webp"); }
.quote-page-hero { background-image: linear-gradient(rgba(0,0,0,.46), rgba(0,0,0,.46)), url("../images/2024938328415051776_35760f92a669f474c1eb5ebefa45ff51.webp"); }
.about-intro { padding: 72px 0 58px; background: #fff; }
.about-intro-grid { display: grid; grid-template-columns: 250px 430px 1fr; gap: 44px; align-items: start; }
.about-stats { text-align: center; color: var(--blue); }
.about-stats div { padding: 26px 0 34px; border-bottom: 1px solid #e8edf1; }
.about-stats div:first-child { padding-top: 8px; }
.about-stats strong { display: block; font-size: 50px; line-height: 1; font-family: Poppins-Bold, "Segoe UI", Arial, sans-serif; }
.about-stats strong sup { font-size: .48em; vertical-align: super; line-height: 0; }
.about-stats span { display: block; margin-top: 24px; color: #6f7478; font-size: 18px; line-height: 1.25; text-transform: uppercase; }
.about-intro-grid > img { width: 100%; height: 680px; object-fit: cover; }
.about-copy h2 { font-size: 31px; line-height: 1.35; margin-bottom: 30px; padding-bottom: 28px; border-bottom: 2px dashed #e5e5e5; }
.about-copy p { color: #5e666d; font-size: 17px; line-height: 1.72; margin-bottom: 18px; }
.about-text-blocks { background: #f6f6f6; padding: 62px 0 66px; }
.about-text-blocks .container { width: min(980px, calc(100% - 48px)); }
.about-text-blocks article + article { margin-top: 54px; }
.about-text-blocks h2 { text-align: center; font-size: 27px; line-height: 1.3; margin-bottom: 24px; }
.about-text-blocks p { color: #4f565c; font-size: 18px; line-height: 1.8; margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: 45% 1fr; align-items: center; background: #fff; }
.about-values > img { width: 100%; height: 720px; object-fit: cover; }
.about-values > div { padding: 0 10vw 0 72px; }
.about-values > div > p { color: #5f666c; font-size: 16px; line-height: 1.8; margin-bottom: 24px; }
.about-value { padding: 22px 0; border-top: 1px solid #eee; }
.about-value i { color: var(--blue); margin-right: 8px; }
.about-value h3 { display: inline; font-size: 26px; font-weight: 400; color: #2a2f34; }
.about-value p { margin-top: 8px; color: #9aa1a8; font-size: 16px; }
.factory-section { padding: 72px 0 84px; background: #fff; text-align: center; }
.factory-section .container { width: min(1180px, calc(100% - 48px)); }
.factory-section h2 { font-size: 48px; line-height: 1.2; margin-bottom: 22px; }
.factory-tabs { width: min(620px, 100%); margin: 0 auto 28px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 10px; }
.factory-tabs button { height: 50px; border: 1px solid #ddd; background: transparent; color: #222; border-radius: 5px; font: inherit; font-size: 16px; cursor: pointer; }
.factory-tabs button.active { border-color: var(--blue); background: var(--blue); color: #fff; }
.factory-grid { width: 100%; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.factory-grid img { width: 100%; height: 260px; object-fit: cover; }
.quote-page { padding: 78px 0 260px; background: #fff; }
.quote-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.quote-info > span, .quote-card > span { display: block; color: #006394; font-size: 16px; letter-spacing: .02em; margin-bottom: 12px; }
.quote-info h1, .quote-card h2 { color: #202124; font-size: 38px; line-height: 1.16; font-family: Poppins-Bold, "Segoe UI", Arial, sans-serif; font-weight: 700; letter-spacing: 0; }
.quote-info h1 b, .quote-card h2 b { color: #006394; font-weight: 700; }
.quote-info p { width: min(560px, 100%); color: #666; font-size: 16px; line-height: 1.58; margin: 20px 0 34px; }
.quote-info ul { list-style: none; display: grid; gap: 22px; }
.quote-info li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; color: #333; font-size: 15px; line-height: 1.5; }
.quote-info li .iconfont { color: #006394; font-size: 28px; line-height: 1.1; }
.quote-card { padding: 34px 32px 54px; background: #fff; box-shadow: 0 0 18px rgba(0,0,0,.09); }
.quote-card p { color: #777; font-size: 14px; margin: 10px 0 28px; }
.quote-card input { min-height: 50px; height: 50px; }
.quote-card textarea { height: 142px; }
.quote-card button { min-width: 190px; }
.product-detail-hero { min-height: 285px; }
.product-detail { padding: 74px 0 0; background: linear-gradient(#fff 0 72%, #f5f5f5 72% 100%); }
.product-detail-top { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.product-gallery { min-width: 0; }
.product-zoom-wrap { display: grid; grid-template-columns: 440px 1fr; gap: 16px; align-items: stretch; }
.product-main-frame { position: relative; border: 1px solid #eee; background: #fff; overflow: hidden; }
.product-main-frame { width: 440px; height: 390px; }
.product-main-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-zoom-lens { position: absolute; width: 34%; height: 34%; border: 1px solid rgba(255,255,255,.7); background: rgba(255,255,255,.22); box-shadow: 0 0 0 1px rgba(0,0,0,.04) inset; pointer-events: none; display: none; }
.product-zoom-preview { border: 1px solid #eee; background-color: #fff; background-repeat: no-repeat; background-position: center center; background-size: 200% 200%; overflow: hidden; }
.product-thumbs { width: 100%; margin-top: 18px; display: flex; gap: 8px; align-items: center; }
.product-thumbs-track { display: flex; gap: 8px; flex-wrap: nowrap; flex: 1; min-width: 0; overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
.product-thumbs-track::-webkit-scrollbar { display: none; }
.product-thumbs img { width: 64px; height: 64px; object-fit: contain; border: 1px solid #eee; background: #fff; cursor: pointer; flex-shrink: 0; }
.product-thumbs img.active { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(0,70,120,.12); }
.product-thumbs button { width: 24px; height: 40px; border: 0; background: transparent; color: #333; font-size: 24px; cursor: pointer; flex-shrink: 0; }
.product-summary { padding-top: 4px; }
.product-summary p { color: #111; font-size: 16px; margin-bottom: 18px; }
.product-summary h2 { color: var(--blue); font-family: Poppins-Bold, "Segoe UI", Arial, sans-serif; font-size: 28px; line-height: 1.25; margin-bottom: 36px; }
.product-params { margin-bottom: 36px; }
.product-params span { display: block; color: #555; font-size: 14px; line-height: 1.7; }
.product-contact-btn, .product-inquire-btn { width: 190px; height: 46px; display: flex; align-items: center; justify-content: center; border-radius: 10px; font-size: 14px; font-weight: 600; }
.product-contact-btn { background: var(--blue); color: #fff; margin-bottom: 12px; }
.product-inquire-btn { border: 1px solid #c9c9c9; color: #555; background: #fff; }
.product-detail-title { margin-top: 52px; padding: 22px 0 48px; border-top: 1px solid #e5e5e5; border-bottom: 1px solid #eee; }
.product-detail-title h2 { color: var(--blue); font-size: 30px; line-height: 1.2; }
.product-pager { padding: 14px 0 68px; display: grid; gap: 8px; color: #777; font-size: 13px; }
.product-pager a, .product-pager span { color: #777; }
.free-quote { width: min(1000px, 100%); margin: 0 auto 76px; padding: 58px 160px 80px; background: #fff; border-radius: 76px; box-shadow: 0 0 16px rgba(0,0,0,.08); text-align: center; }
.free-quote h2 { color: #333; font-size: 32px; line-height: 1.15; margin-bottom: 14px; }
.free-quote > p { color: #888; font-size: 14px; margin-bottom: 30px; }
.free-quote form { text-align: left; }
.free-quote label span { display: block; color: #444; font-size: 14px; margin-bottom: 3px; }
.free-quote input, .free-quote textarea { border: 0; background: #f4f4f4; margin-bottom: 10px; }
.free-quote textarea { height: 138px; }
.free-quote button { width: 180px; min-width: 0; height: 40px; display: block; margin: 0 auto; border-radius: 4px; background: var(--blue); }
.xby-page { background: #fff; }
.xby-header { height: 58px; }
.xby-header .header-inner { gap: 18px; }
.xby-header .logo, .xby-header .logo img { width: 118px; }
.xby-header .nav { gap: 50px; font-size: 16px; }
.xby-header .header-icons { gap: 28px; }
.xby-header .icon-svg, .xby-header .icon-svg svg { width: 24px; height: 24px; }
.xby-hero { min-height: 650px; padding: 0; display: flex; align-items: center; background: linear-gradient(90deg, rgba(0,0,0,.12), rgba(0,0,0,.18)), url("../images/xby.jpg") center / cover no-repeat; color: #fff; }
.xby-hero-inner { display: grid; grid-template-columns: 300px minmax(0, 540px); gap: 64px; align-items: center; }
.xby-hero-card { width: 300px; height: 300px; padding: 8px; border: 2px solid #0b4973; background: rgba(255,255,255,.1); }
.xby-hero-card img { width: 100%; height: 100%; object-fit: cover; }
.xby-hero-copy h1 { font-size: 45px; line-height: 1.08; font-family: Poppins-Bold, "Segoe UI", Arial, sans-serif; font-weight: 700; margin-bottom: 22px; }
.xby-hero-copy p { font-size: 16px; line-height: 1.6; margin-bottom: 30px; }
.xby-hero-copy a, .xby-about a, .xby-more { width: 110px; height: 34px; border-radius: 18px; display: inline-flex; align-items: center; justify-content: center; background: var(--blue); color: #fff; font-size: 12px; }
.xby-trust { display: grid; grid-template-columns: 58.4% 41.6%; align-items: start; padding: 0; background: linear-gradient(to bottom, transparent 0 120px, #fff 120px 100%); margin-top: -120px; position: relative; z-index: 2; }
.xby-trust-band { min-height: 320px; padding: 42px 64px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; gap: 34px; background: var(--blue); color: #fff; }
.xby-trust-band article { min-height: 210px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; text-align: center; font-size: 18px; line-height: 1.75; font-family: Poppins-Light, "Segoe UI", Arial, sans-serif; }
.xby-trust-band .iconfont { width: 110px; height: 94px; display: flex; align-items: center; justify-content: center; font-size: 72px; line-height: 1; margin: 0 auto 16px; color: #fff; }
.xby-brand { min-height: 300px; margin-top: 120px; padding: 108px 40px 60px 56px; color: #111; background: #fff; }
.xby-brand h2 { font-size: 26px; line-height: 1.2; font-family: Poppins-Light, "Segoe UI", Arial, sans-serif; font-weight: 300; margin-bottom: 24px; }
.xby-brand-viewport { width: 100%; overflow: hidden; }
.xby-brand-logos { display: flex; align-items: flex-start; gap: 74px; will-change: transform; transition: transform .45s ease; }
.xby-brand-logos span { flex: 0 0 120px; display: grid; justify-items: center; text-align: center; color: #222; }
.xby-brand-logos i { width: 64px; height: 64px; border: 2px solid #d7aa7d; border-radius: 50%; display: grid; place-items: center; color: #c89462; font-style: normal; font-size: 20px; font-family: Poppins-Bold, "Segoe UI", Arial, sans-serif; }
.xby-brand-logos b { margin-top: 10px; font-size: 18px; line-height: 1.1; font-weight: 400; }
.xby-brand-logos em { margin-top: 2px; font-size: 18px; line-height: 1.1; font-style: normal; color: #555; }
.xby-about { padding: 10px 0 92px; background: #fff; }
.xby-about-grid { width: min(1180px, calc(100% - 48px)); display: grid; grid-template-columns: 430px minmax(0, 1fr); gap: 64px; align-items: center; }
.xby-about span, .xby-products .section-title span, .xby-news .news-list span { color: #006394; font-size: 12px; }
.xby-about span { display: block; font-size: 18px; line-height: 1.35; margin-bottom: 16px; font-family: Poppins-Light, "Segoe UI", Arial, sans-serif; font-weight: 300; }
.xby-about h2, .xby-why h2 { font-size: 34px; line-height: 1.12; font-weight: 400; margin: 8px 0 20px; }
.xby-about h2 { font-size: 44px; line-height: 1.16; margin: 0 0 20px; color: #000; font-family: Poppins-Light, "Segoe UI", Arial, sans-serif; font-weight: 300; }
.xby-about p, .xby-why p { color: #555; font-size: 13px; line-height: 1.75; margin-bottom: 22px; }
.xby-about p { color: #666; font-size: 16px; line-height: 1.78; margin-bottom: 36px; }
.xby-about img { width: 100%; height: 560px; object-fit: cover; object-position: center; }
.xby-about a { width: 168px; height: 58px; border-radius: 30px; font-size: 18px; gap: 8px; }
.xby-about a::before { content: "鈫?; font-size: 24px; line-height: 1; }
.xby-why { display: grid; grid-template-columns: 48.5% 1fr; gap: 6.8vw; align-items: start; padding: 0 7vw 0 0; background: #fff; }
.xby-why > img { width: 100%; height: 860px; object-fit: cover; object-position: center; }
.xby-why > div { padding-top: 0; }
.xby-why > div > p { color: #666; font-size: 16px; line-height: 1.55; margin-bottom: 46px; }
.xby-why article { padding: 0 0 34px; margin: 0 0 42px; border-bottom: 1px solid #e5e5e5; }
.xby-why h3 { display: flex; align-items: center; gap: 16px; color: #000; font-size: 26px; line-height: 1.35; font-weight: 300; font-family: Poppins-Light, "Segoe UI", Arial, sans-serif; margin-bottom: 22px; }
.xby-why h3 .iconfont { flex: 0 0 auto; color: var(--blue); font-size: 24px; line-height: 1; margin-right: 0; }
.xby-why article p { color: #666; font-size: 16px; line-height: 1.55; margin: 0; }
.xby-why h2 { font-family: Poppins-Light, "Segoe UI", Arial, sans-serif; font-weight: 300; }
.xby-categories { padding: 88px 0 72px; background: #fff; }
.xby-category-grid { width: min(1180px, calc(100% - 48px)); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); }
.xby-category-grid article { position: relative; height: 560px; overflow: hidden; color: #fff; }
.xby-category-grid article::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.28); }
.xby-category-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.xby-category-grid article:hover img { transform: scale(1.04); }
.xby-category-content { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; text-align: center; padding: 130px 20px 42px; }
.xby-category-icon { display: flex; align-items: center; justify-content: center; width: 72px; height: 72px; margin-bottom: 24px; color: #fff; font-size: 62px; line-height: 1; }
.xby-category-grid h3 { display: flex; align-items: center; justify-content: center; min-height: 186px; color: #fff; font-size: 32px; font-weight: 300; font-family: Poppins-Light, "Segoe UI", Arial, sans-serif; line-height: 1.55; margin: 0 0 18px; }
.xby-category-content a { color: rgba(255,255,255,.88); font-size: 19px; line-height: 1; }
.xby-category-content a::before { content: "鈫?"; }
.xby-products { padding: 52px 0 180px; background: #fff; text-align: center; overflow: hidden; }
.xby-products .section-title h2 { font-size: 32px; font-weight: 400; color: #222; }
.xby-products .section-title p { width: min(680px, 100%); margin: 12px auto 0; color: #777; line-height: 1.5; }
.xby-products .product-row { width: min(1180px, calc(100% - 48px)); margin-top: 58px; overflow: hidden; }
.xby-products .product-viewport { overflow: hidden; }
.xby-products .product-track { gap: 26px; }
.xby-products .product-row article { flex: 0 0 calc((100% - 52px) / 3); text-align: center; }
.xby-products .product-row img { aspect-ratio: 1 / 1; height: auto; border-radius: 8px; object-fit: cover; }
.xby-products .product-row h3 { margin-top: 12px; color: #000; font-size: 15px; line-height: 1.25; font-weight: 700; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.xby-products .slide-btn { top: 50%; transform: translateY(-74%); width: 42px; height: 62px; background: #12313d; }
.xby-products .slide-btn:not(.next) { left: 0; }
.xby-products .slide-btn.next { right: 0; }
.xby-more { margin-top: 150px; }
.xby-custom {
  padding: 7.828810020876826% 10.438413361169102%;
  background: linear-gradient(rgba(0,0,0,.16), rgba(0,0,0,.16)), url("../images/x1.jpg") center center / cover no-repeat;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
}
.xby-custom .container { width: 100%; max-width: none; }
.xby-custom-inner { display: block; }
.xby-custom-copy { width: 100%; }
.xby-custom h2 { margin: 50px 0 10px; color: #fff; font-size: 44px; line-height: 55px; font-family: Poppins-Bold, "Segoe UI", Arial, sans-serif; font-weight: 700; letter-spacing: 0; }
.xby-custom p { margin: 0 auto 30px; color: #fff; font-size: 18px; line-height: 30px; font-family: Poppins-Regular, "Segoe UI", Arial, sans-serif; font-weight: 400; }
.xby-custom a { width: auto; min-width: 160px; height: 55px; padding: 0 24px; border-radius: 50px; display: inline-flex; align-items: center; justify-content: center; background: var(--blue); color: #fff; font-size: 16px; font-family: Poppins-Regular, "Segoe UI", Arial, sans-serif; font-weight: 400; margin-top: 20px; }
.xby-custom a::before { content: ""; width: 25px; height: 2px; margin-right: 8px; background: currentColor; }
.xby-stats { padding: 30px 0; background: var(--blue); color: #fff; }
.xby-stats .container { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.xby-stats strong { display: block; min-height: 66px; font-size: 60px; line-height: 1; font-weight: 400; font-variant-numeric: tabular-nums; }
.xby-stats strong span { display: inline; margin-top: 0; font-size: inherit; line-height: inherit; color: inherit; text-transform: none; }
.xby-stats .stat-unit { display: inline; margin-left: 0; }
.xby-stats sup { font-size: .48em; line-height: 0; vertical-align: super; }
.xby-stats strong + span { display: block; margin-top: 8px; text-transform: uppercase; font-size: 16px; color: rgba(255,255,255,.84); }
.xby-news { padding: 72px 0 90px; background: #fff; }

@media (max-width: 900px) {
  html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
  body { background: #eef4fb; }
  .topbar { display: none; }
  .header { height: 50px; padding: 0; background: #eef4fb; box-shadow: none; position: relative; }
  .header-inner { width: 100%; height: 50px; min-height: 0; padding: 0 24px 0 18px; flex-wrap: nowrap; align-items: center; background: #fff; border-radius: 0; box-shadow: 0 2px 8px rgba(0,0,0,.12); overflow: visible; }
  .logo { width: 155px; flex: 0 0 155px; overflow: visible; }
  .logo img { width: 155px; max-height: 42px; object-fit: contain; }
  .nav-toggle { display: block; flex: 0 0 34px; margin-left: auto; width: 34px; height: 28px; border: 0; border-top: 4px solid #333; border-bottom: 4px solid #333; border-radius: 0; background: linear-gradient(#333,#333) center / 100% 4px no-repeat; color: transparent; font-size: 0; z-index: 95; }
  .nav-toggle[aria-expanded="true"] { width: 30px; height: 30px; border: 0; background: transparent; position: relative; }
  .nav-toggle[aria-expanded="true"]::before, .nav-toggle[aria-expanded="true"]::after { content: ""; position: absolute; left: 0; top: 14px; width: 30px; height: 3px; background: #333; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"]::after { transform: rotate(-45deg); }
  .header-icons { display: none; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 50px; width: 100%; margin: 0; flex-direction: column; align-items: flex-start; gap: 0; padding-top: 0; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.12); }
  .nav.open { display: flex; }
  .nav a { width: 100%; height: 50px; min-height: 0; padding: 0 32px; display: flex; align-items: center; border-top: 1px solid #eee; color: #333; font-size: 16px; line-height: 1.2; font-family: Poppins-Regular, "Segoe UI", Arial, sans-serif; font-weight: 400; }
  .nav-dropdown { width: 100%; padding: 0; }
  .nav-dropdown-head { width: 100%; display: grid; grid-template-columns: 1fr 72px; border-top: 1px solid #eee; }
  .nav-dropdown-head > a { height: 50px; min-height: 0; padding: 0 32px; display: flex; align-items: center; color: #333; font-size: 16px; line-height: 1.2; font-family: Poppins-Regular, "Segoe UI", Arial, sans-serif; font-weight: 400; border-top: 0; }
  .nav-dropdown-toggle { width: 72px; height: 50px; min-height: 0; display: block; border: 0; border-left: 1px solid #eee; background: transparent; color: #555; cursor: pointer; }
  .nav-dropdown-toggle::before { content: "鈻?; font-size: 14px; }
  .nav-dropdown.open .nav-dropdown-toggle::before { content: "鈻?; }
  .dropdown-menu { display: none; position: static; left: auto; right: auto; top: auto; width: 100%; transform: none; opacity: 1; visibility: visible; box-shadow: none; border-top: 0; padding-left: 0; box-sizing: border-box; }
  .nav .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a { width: 100%; height: 44px; min-height: 0; padding: 0 32px 0 52px; box-sizing: border-box; background: #f8f8f8; color: #555; font-size: 15px; line-height: 1.2; border-top: 1px solid #eee; }
  .nav.open .nav-dropdown { display: block !important; width: 100% !important; }
  .nav.open .nav-dropdown.open .dropdown-menu { display: block !important; position: relative !important; left: 0 !important; right: auto !important; top: 0 !important; width: 100% !important; min-width: 0 !important; transform: none !important; margin: 0 !important; padding: 0 !important; }
  .nav.open .nav-dropdown.open .dropdown-menu a { display: flex !important; width: 100% !important; max-width: none !important; height: 44px; min-height: 0; padding: 0 32px 0 52px !important; box-sizing: border-box; }
  .mobile-language { width: 100%; padding: 20px 32px 20px; display: flex; gap: 20px; border-top: 1px solid #eee; }
  .mobile-language a { width: auto; height: 36px; min-height: 0; padding: 0 28px; border: 1px solid #ddd; border-radius: 20px; color: #666; font-size: 14px; font-family: Poppins-Regular, "Segoe UI", Arial, sans-serif; font-weight: 400; }
  .mobile-language a.active { border-color: var(--blue); background: var(--blue); color: #fff; }
  .hero { min-height: 0; aspect-ratio: 16 / 7.2; background-position: top center; background-size: contain; align-items: flex-start; }
  .feature-grid, .app-grid, .news-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-row { grid-template-columns: repeat(2, 1fr); }
  .float-tools { display: none; }
  footer { padding-bottom: 70px; background: var(--blue); }
  .footer-grid { display: none; }
  .copyright { border-top: 1px solid rgba(255,255,255,.18); padding: 40px 18px 42px; font-size: 16px; text-align: center; overflow: hidden; }
  .copyright .container { width: 100%; max-width: 100%; display: block; color: #fff; line-height: 1.8; overflow: hidden; }
  .copyright .container span { display: block; }
  .copyright .container span:last-child { white-space: normal; overflow-wrap: anywhere; }
  .copyright .container span:last-child::after { content: " | Powered by iglobalwin.com"; }
  .mobile-bottom-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; height: 70px; width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: center; background: #333; color: #fff; box-shadow: 0 -2px 8px rgba(0,0,0,.15); overflow: hidden; }
  .mobile-bottom-bar a { min-width: 0; height: 70px; display: flex; align-items: center; justify-content: center; gap: 8px; color: #fff; font-size: 16px; white-space: nowrap; overflow: hidden; }
  .mobile-bottom-bar .iconfont { flex: 0 0 auto; font-size: 22px; line-height: 1; }
  .mobile-chat-tools { position: fixed; right: 0; bottom: 70px; z-index: 82; width: 90px; display: flex; flex-direction: column; align-items: center; gap: 20px; padding-bottom: 16px; background: transparent; }
  .mobile-chat-tools a, .mobile-chat-tools button { width: 60px; height: 60px; border: 0; border-radius: 50%; padding: 0; display: grid; place-items: center; background: #fff; cursor: pointer; }
  .mobile-chat-tools svg { width: 60px; height: 60px; display: block; }
  .mobile-chat-messenger { box-shadow: none; }
  .mobile-chat-down { box-shadow: 0 2px 8px rgba(0,0,0,.25); }
  .mobile-chat-tools.collapsed a { opacity: 0; visibility: hidden; transform: scale(0); pointer-events: none; }
  .mobile-chat-tools a { transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
  .mobile-chat-tools.collapsed .mobile-chat-down svg { transform: rotate(180deg); }
  .page-hero { min-height: 190px; overflow: hidden; }
  .page-hero h1 { font-size: 30px; }
  .page-hero p { max-width: 100%; flex-wrap: wrap; gap: 8px; line-height: 1.45; word-break: break-word; }
  .news-page-list .container { width: min(100% - 40px, 760px); }
  .news-page-item { grid-template-columns: 1fr; gap: 18px; }
  .news-page-item img { height: 210px; }
  .news-detail-hero .container { padding-top: 0; }
  .news-detail h1 { font-size: 24px; line-height: 1.35; margin-bottom: 38px; }
  .products-page-layout, .news-page-layout { grid-template-columns: 1fr; }
  .products-sidebar { display: none; }
  .product-listing { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-stats { display: grid; grid-template-columns: repeat(2, 1fr); }
  .about-intro-grid > img { height: 360px; }
  .about-values { grid-template-columns: 1fr; }
  .about-values > img { height: 420px; }
  .about-values > div { padding: 42px 28px; }
  .factory-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-page { padding: 48px 0 96px; }
  .quote-layout { grid-template-columns: 1fr; gap: 36px; }
  .quote-info h1, .quote-card h2 { font-size: 30px; }
  .product-detail { padding-top: 44px; background: #fff; }
  .product-detail-top { grid-template-columns: 1fr; gap: 28px; }
  .product-zoom-wrap { grid-template-columns: 1fr; }
  .product-zoom-preview { display: none; }
  .product-main-image, .product-thumbs { width: 100%; }
  .product-gallery { width: 100%; overflow: hidden; }
  .product-main-frame { width: min(100%, 440px); height: auto; aspect-ratio: 1 / 1; margin: 0 auto; }
  .product-thumbs { width: min(100%, 440px); margin: 14px auto 0; justify-content: center; }
   .product-summary { padding-top: 0; }
  .free-quote { padding: 36px 22px 44px; border-radius: 34px; margin-bottom: 40px; }
  .xby-header { height: 50px; }
  .xby-header .logo, .xby-header .logo img { width: 132px; }
  .xby-hero { min-height: 560px; padding: 48px 0; background-size: cover; }
  .xby-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .xby-hero-card { width: 220px; height: 220px; }
  .xby-hero-copy h1 { font-size: 34px; }
  .xby-custom { min-height: 640px; padding: 70px 7% 58px; background-position: center center; background-attachment: scroll; display: flex; align-items: center; }
  .xby-custom .container { display: flex; align-items: center; justify-content: center; }
  .xby-custom h2 { margin: 0 auto 22px; font-size: 34px; line-height: 42px; }
  .xby-custom p { max-width: 620px; font-size: 18px; line-height: 32px; }
  .xby-custom a { min-width: 260px; height: 58px; font-size: 16px; }
  .xby-trust, .xby-about-grid, .xby-why { grid-template-columns: 1fr; }
  .xby-trust { margin-top: 0; background: #fff; }
  .xby-trust-band { min-height: auto; padding: 38px 18px 40px; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .xby-trust-band article { min-height: auto; font-size: 15px; line-height: 1.65; }
  .xby-trust-band .iconfont { width: 52px; height: 52px; margin-bottom: 10px; font-size: 44px; }
  .xby-brand { min-height: auto; margin-top: 0; padding: 38px 16px 36px; overflow: hidden; text-align: center; }
  .xby-brand h2 { width: 100%; max-width: 100%; font-size: 24px; line-height: 1.2; font-weight: 300; white-space: normal; overflow-wrap: anywhere; margin-bottom: 26px; }
  .xby-brand-viewport { overflow: visible; }
  .xby-brand-logos { width: 100%; display: grid; grid-template-columns: repeat(3, 28.5%); justify-content: start; gap: 20px 0; transform: none !important; transition: none !important; }
  .xby-brand-logos span { flex: none; min-width: 0; }
  .xby-brand-logos i { width: 52px; height: 52px; font-size: 17px; }
  .xby-brand-logos b { font-size: 14px; line-height: 1.15; overflow-wrap: anywhere; }
  .xby-brand-logos em { font-size: 14px; line-height: 1.15; }
  .xby-about, .xby-why, .xby-categories, .xby-products, .xby-news { padding: 50px 0; }
  .xby-about-grid { gap: 30px; }
  .xby-why { gap: 30px; padding: 0; }
  .xby-why > div { width: min(100% - 48px, 760px); margin: 0 auto; }
  .xby-why > img { height: 420px; }
  .xby-why h3 { font-size: 28px; }
  .xby-why h3 .iconfont { font-size: 24px; }
  .xby-why > div > p, .xby-why article p { font-size: 16px; }
  .xby-category-grid { grid-template-columns: 1fr; }
  .xby-category-grid article { height: 420px; }
  .xby-category-grid h3 { font-size: 30px; }
  .xby-stats .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 560px) {
  .about-stats { grid-template-columns: 1fr; width: min(100% - 56px, 440px); margin: 0 auto; }
  .about-stats div { padding: 31px 0 34px; }
  .about-stats div:first-child { padding-top: 0; }
  .about-stats strong { font-size: 34px; line-height: 1; }
  .about-stats span { margin-top: 20px; font-size: 30px; line-height: 1.18; text-transform: uppercase; letter-spacing: 0; }
  .factory-tabs { gap: 12px; }
  .container, .contact-card { width: min(100% - 28px, 1180px); }
  .header-inner { width: 100%; height: 50px; padding: 0 22px 0 18px; }
  .logo { width: 155px; }
  .logo img { width: 155px; max-height: 42px; }
  .nav-toggle { width: 34px; height: 28px; }
  .nav { width: 100%; margin: 0; }
  .hero-points { gap: 20px; font-size: 14px; }
  .features-title { font-size: 24px; }
  .products-title { font-size: 24px; }
  .applications-title, .news-list h2 { font-size: 24px; }
  .feature-grid, .app-grid, .news-grid, .footer-grid, .form-row, .product-row { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
  .feature-icon { width: 96px; height: 96px; margin-bottom: 18px; }
  .feature-icon img { width: 96px; height: 96px; }
  .feature-grid h3 { font-size: 15px; line-height: 1.35; }
  .feature-grid p { font-size: 12px; line-height: 1.55; }
  .product-row { width: min(100% - 110px, 520px); margin-top: 34px; }
  .product-track { gap: 0; }
  .product-row article { flex: 0 0 100%; }
  .product-row img { width: 100%; aspect-ratio: 1 / 1; height: auto; }
  .app-grid { width: min(100% - 40px, 760px); gap: 44px; }
  .app-grid img { width: 100%; height: 300px; object-fit: contain; margin-bottom: 22px; background: transparent; }
  .slide-btn { top: 50%; transform: translateY(-50%); left: -54px; width: 44px; height: 76px; }
  .slide-btn.next { right: -54px; }
  .news { background: #fff; }
  .search-panel button, .quote-card button, .free-quote button { width: 100%; }
  .product-listing { grid-template-columns: 1fr; }
  .products-page { padding: 36px 0 54px; }
  .about-intro { padding: 46px 0; }
  .about-copy h2 { font-size: 22px; }
  .about-text-blocks { padding: 46px 0; }
  .factory-section h2 { font-size: 24px; }
  .factory-grid img { height: 170px; }
  .quote-card { padding: 24px 18px 34px; }
  .quote-info h1, .quote-card h2 { font-size: 26px; }
  .quote-info p { font-size: 14px; margin-bottom: 28px; }
  .quote-info li { grid-template-columns: 30px 1fr; gap: 12px; font-size: 13px; }
  .quote-info li .iconfont { font-size: 24px; }
  .product-detail .container { width: min(100% - 28px, 980px); }
  .product-main-frame { width: 100%; max-width: 360px; height: auto; aspect-ratio: 1 / 1; }
  .product-main-image { height: 100%; aspect-ratio: 1 / 1; }
  .product-thumbs { max-width: 360px; gap: 10px; }
  .product-thumbs img { width: 58px; height: 58px; }
  .product-summary { text-align: center; }
  .product-contact-btn, .product-inquire-btn { margin-left: auto; margin-right: auto; }
  .product-summary h2 { font-size: 24px; margin-bottom: 24px; }
  .product-detail-hero { min-height: 170px; }
  .product-detail-hero .container { width: 100%; padding: 0 18px; margin: 0; }
  .product-detail-hero h1 { font-size: 26px; line-height: 1.15; margin-bottom: 14px; }
  .product-detail-hero p { display: block; max-width: 100%; font-size: 14px; line-height: 1.55; white-space: normal; overflow-wrap: anywhere; }
  .product-detail-hero p .iconfont { margin-right: 8px; }
  .product-detail-hero p span { margin: 0 8px; }
  .product-detail-title { margin-top: 36px; padding-bottom: 34px; }
  .product-detail-title h2, .free-quote h2 { font-size: 24px; }
  .product-pager { padding-bottom: 38px; }
  .xby-hero { min-height: 500px; }
  .xby-hero-card { display: none; }
  .xby-hero-copy h1 { font-size: 28px; }
  .xby-custom { min-height: 600px; padding: 58px 22px 30px; background-image: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.08)), url("../images/x1.jpg"); background-position: 52% center; }
  .xby-custom .container { width: 100%; }
  .xby-custom h2 { max-width: 330px; margin: 0 auto 14px; font-size: 24px; line-height: 1.3; font-family: Poppins-Regular, "Segoe UI", Arial, sans-serif; font-weight: 400; }
  .xby-custom p { max-width: 346px; margin-bottom: 16px; font-size: 24px; line-height: 1.38; }
  .xby-custom a { width: min(100%, 452px); min-width: 0; height: 72px; margin-top: 0; font-size: 16px; font-weight: 700; }
  .xby-trust-band { grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 34px 18px 36px; }
  .xby-trust-band article { font-size: 15px; line-height: 1.7; }
  .xby-trust-band .iconfont { width: 52px; height: 52px; margin-bottom: 10px; font-size: 44px; }
  .xby-about h2, .xby-why h2, .xby-products .section-title h2 { font-size: 24px; }
  .xby-about img { height: 300px; }
  .xby-products .product-row { width: min(100% - 110px, 520px); }
  .xby-products .product-row article { flex-basis: 100%; }
  .xby-products .product-row h3 { font-size: 20px; text-align:center; }
  .xby-more { margin-top: 60px; }
  .xby-stats strong { font-size: 34px; }
  section, .features, .products, .applications, .news, .contact { padding: 50px 0; }
  h2 { font-size: 30px; }
  .copyright .container { flex-direction: column; }
}


























.slide-btn .iconfont { font-size: 30px; line-height: 1; }
.slide-btn:not(.next) .iconfont { display: inline-block; }
















































@media (max-width: 900px) {
  .xby-page .xby-trust {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .xby-page .xby-trust-band {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 30px 0;
    overflow: hidden;
  }
  .xby-page .xby-trust-item {
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 4px;
    text-align: center;
    color: #fff;
    font-size: 10px;
    line-height: 1.35;
  }
  .xby-page .xby-trust-item .iconfont {
    width: 28px;
    height: 28px;
    margin: 0 auto 6px;
    color: #fff;
    font-size: 27px;
    line-height: 1;
  }
}

@media (max-width: 900px) {
  .xby-page .xby-trust-band {
    width: min(100%, 390px);
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .xby-page .xby-brand {
    padding: 38px 16px 36px;
    overflow: hidden;
    text-align: center;
  }
  .xby-page .xby-brand h2 {
    width: 100%;
    max-width: 100%;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 26px;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .xby-page .xby-brand-viewport {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .xby-page .xby-brand-logos {
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 20px) / 3);
    grid-template-columns: none;
    gap: 10px;
    transform: none !important;
    transition: none !important;
  }
  .xby-page .xby-brand-logos span {
    min-width: 0;
    width: auto;
    flex: none;
  }
  .xby-page .xby-brand-logos i {
    width: 52px;
    height: 52px;
    font-size: 17px;
  }
  .xby-page .xby-brand-logos b,
  .xby-page .xby-brand-logos em {
    font-size: 14px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 900px) {
  .xby-page .nav {
    gap: 0;
  }
  .xby-page .nav a {
    height: 50px;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 50px;
    display: block;
  }
  .xby-page .nav-dropdown-head {
    height: 50px;
    display: grid;
    grid-template-columns: 1fr 72px;
  }
  .xby-page .nav-dropdown-head > a {
    height: 50px;
    min-height: 0;
    line-height: 50px;
    display: block;
  }
  .xby-page .nav-dropdown-toggle {
    width: 72px;
    height: 50px;
    min-width: 0;
    min-height: 0;
    padding: 0;
    display: block;
    line-height: 50px;
    border-left: 1px solid #eee;
    border-radius: 0;
    background: transparent;
    color: #555;
  }
  .xby-page .mobile-language a {
    height: 36px;
    min-height: 0;
    line-height: 34px;
    display: block;
    text-align: center;
  }
}



