:root {
  --brand-red: #D32F2F;
  --brand-red-dark: #D32F2F;
  --brand-blue: #D32F2F;
  --brand-blue-dark: #D32F2F;
  --brand-blue-soft: #ffebee;
  --brand-blue-line: #ffcdd2;
  --brand-yellow: #fff59b;
  --ink: #172033;
  --muted: #64748b;
  --soft: #fff8f8;
  --line: #f2d6d6;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(150, 35, 35, 0.14);
  --shadow-soft: 0 12px 30px rgba(150, 35, 35, 0.09);
  --container: 1200px;
  color-scheme: light;
}

.site-header.is-open .nav-list {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  top: var(--mobile-nav-top, 126px) !important;
  width: 100% !important;
  max-height: calc(100dvh - var(--mobile-nav-top, 126px)) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  background: #D32F2F !important;
  box-shadow: 0 14px 26px rgba(0, 0, 0, .16) !important;
}

.site-header.is-open .nav-item,
.site-header.is-open .nav-subitem {
  position: relative !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  min-width: 0 !important;
}

.site-header.is-open .nav-link {
  width: 100% !important;
  min-height: 42px !important;
  justify-content: flex-start !important;
  padding: 0 18px !important;
  overflow: hidden !important;
  color: #ffffff !important;
  border-top: 1px solid rgba(255, 255, 255, .14) !important;
  background: transparent !important;
  font-size: 14px !important;
  text-align: left !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.site-header.is-open .nav-sublist,
.site-header.is-open .nav-sublist-child {
  position: static !important;
  inset: auto !important;
  min-width: 0 !important;
  width: 100% !important;
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  border: 0 !important;
  box-shadow: none !important;
  background: #D32F2F !important;
}

.site-header.is-open .nav-item.is-subnav-open>.nav-sublist,
.site-header.is-open .nav-subitem.is-subnav-open>.nav-sublist-child {
  display: block !important;
}

.site-header.is-open .nav-sublist>.nav-subitem>.nav-link {
  min-height: 38px !important;
  padding-left: 34px !important;
  color: #ffebee !important;
  background: rgba(0, 0, 0, .06) !important;
  font-weight: 600 !important;
}

.site-header.is-open .nav-sublist-child>.nav-subitem>.nav-link {
  padding-left: 52px !important;
  color: #ffffff !important;
  background: rgba(0, 0, 0, .14) !important;
}

.site-header.is-open .has-subnav>.nav-link::after {
  margin-left: auto !important;
}

.site-header.is-open .nav-subitem:has(> .nav-sublist-child)>.nav-link::after {
  content: "›" !important;
  border: 0 !important;
  transform: rotate(90deg) !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

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

.site-header {
  position: relative;
  z-index: 30;
  background: #fff;
  box-shadow: 0 3px 14px rgba(70, 0, 0, 0.08);
}

.topbar {
  background: #fff;
}

.topbar-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-logo {
  max-height: 58px;
  width: auto;
}

.brand-emblem {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-red);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .18);
  font-size: 26px;
  font-weight: 900;
  font-style: italic;
}

.brand-text {
  min-width: 0;
  display: block;
}

.brand-name {
  display: block;
  max-width: 440px;
  overflow: hidden;
  color: #D32F2F;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-subname {
  display: block;
  margin-top: 3px;
  color: #6b6b6b;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.header-contact {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #D32F2F;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  touch-action: manipulation;
}

.header-contact:focus-visible {
  outline: 2px solid rgba(211, 47, 47, .32);
  outline-offset: 4px;
  border-radius: 8px;
}

.header-contact-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #D32F2F;
  background: #ffebee;
  box-shadow: inset 0 0 0 1px rgba(211, 47, 47, .14);
  font-size: 0;
  line-height: 1;
  transform: none;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.header-contact:hover .header-contact-icon,
.header-contact:focus-visible .header-contact-icon {
  color: #fff;
  background: #D32F2F;
  box-shadow: none;
}

.header-contact-icon svg {
  width: 21px;
  height: 21px;
  display: block;
  stroke: currentColor;
}

.header-contact-body {
  min-width: 0;
  display: block;
}

.header-contact-label {
  display: block;
  color: #516d7c;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 700;
}

.header-contact-value {
  display: block;
  max-width: 330px;
  overflow: visible;
  color: #D32F2F;
  font-size: 23px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  text-overflow: clip;
}

.nav-shell {
  position: relative;
  z-index: 20;
  background: var(--brand-red);
  box-shadow: 0 3px 10px rgba(153, 0, 0, 0.18);
}

.nav-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  border: 0;
  color: #fff;
  background: transparent;
  padding: 10px;
  font-size: 22px;
  cursor: pointer;
}

.mainnav {
  width: 100%;
}

.nav-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}

.nav-item {
  position: relative;
  flex: 0 1 176px;
  min-width: 0;
}

.nav-link {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: #fff;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color .18s ease, color .18s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-item.is-active>.nav-link {
  color: #fff;
  background: #D32F2F;
  outline: none;
}

.nav-sublist {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 170px;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(211, 47, 47, .18);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-item:hover .nav-sublist,
.nav-item:focus-within .nav-sublist {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-sublist .nav-link {
  min-height: 42px;
  justify-content: flex-start;
  color: var(--ink);
  font-size: 14px;
}

.nav-sublist .nav-link:hover,
.nav-sublist .nav-link:focus-visible {
  color: var(--brand-red);
  background: #ffebee;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #D32F2F;
}

.hero-stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.hero-track {
  display: flex;
  min-height: 520px;
  transition: transform .72s ease;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 520px;
}

.hero-media-link {
  display: block;
  min-height: 520px;
}

.hero-media {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.hero-fallback {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  color: rgba(255, 255, 255, .86);
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .25) 0 8%, transparent 18%),
    radial-gradient(circle at 80% 65%, rgba(255, 255, 255, .22) 0 9%, transparent 20%),
    linear-gradient(180deg, #e53935 0%, #ef9a9a 62%, #d7eefb 100%);
  font-size: 54px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-fallback::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 64px;
  height: 120px;
  opacity: .82;
  background:
    linear-gradient(18deg, transparent 44%, rgba(255, 255, 255, .9) 46% 54%, transparent 56%),
    linear-gradient(-18deg, transparent 44%, rgba(255, 255, 255, .9) 46% 54%, transparent 56%);
  filter: drop-shadow(0 8px 8px rgba(34, 91, 130, .25));
  transform: perspective(700px) rotateX(56deg);
}

.hero-fallback::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 42px;
  height: 90px;
  opacity: .88;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 30px rgba(23, 93, 139, .22);
  clip-path: polygon(5% 72%, 16% 40%, 26% 62%, 37% 30%, 51% 56%, 66% 24%, 80% 58%, 94% 35%, 98% 72%, 74% 82%, 46% 74%, 20% 86%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(140, 30, 30, .14), rgba(140, 30, 30, .22)),
    linear-gradient(90deg, rgba(4, 37, 62, .26), rgba(4, 37, 62, .08), rgba(4, 37, 62, .2));
  pointer-events: none;
}

.hero-content {
  color: #fff;
  text-align: center;
  pointer-events: auto;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 18px;
  color: rgba(255, 255, 255, .96);
  background: rgba(211, 47, 47, .86);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
}

.hero-title {
  max-width: 980px;
  margin: 18px auto 0;
  color: #fff;
  font-family: "STKaiti", "KaiTi", "Microsoft YaHei", serif;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 10px;
  text-shadow: 0 4px 10px rgba(0, 72, 123, .25);
}

.hero-desc {
  max-width: 780px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, .9);
  font-size: 17px;
  line-height: 1.9;
  text-shadow: 0 2px 8px rgba(0, 72, 123, .22);
}

.hero-desc p {
  margin: 0;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 15px;
  font-weight: 800;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

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

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

.btn-primary:hover {
  background: var(--brand-red-dark);
}

.btn-secondary {
  color: #875c00;
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
}

.btn-secondary:hover {
  background: #fff27a;
}

.hero-controls {
  position: absolute;
  right: max(32px, calc((100vw - var(--container)) / 2));
  bottom: 34px;
  display: flex;
  gap: 10px;
}

.hero-control {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  color: #fff;
  background: rgba(0, 0, 0, .16);
  font-size: 28px;
  cursor: pointer;
}

.hero-control:hover,
.hero-control:focus-visible {
  background: var(--brand-red);
  outline: none;
}

.quick-panel {
  position: relative;
  z-index: 2;
  padding: 28px 0 0;
  background: #fff;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.quick-item {
  min-height: 138px;
  padding: 26px 24px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 0 rgba(0, 0, 0, .03);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.quick-item:hover {
  transform: translateY(-5px);
  border-color: rgba(211, 47, 47, .22);
  box-shadow: var(--shadow);
}

.quick-icon {
  display: block;
  color: var(--brand-red);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.quick-item strong {
  display: block;
  margin-top: 12px;
  color: #2d2d2d;
  font-size: 18px;
  line-height: 1.35;
}

.quick-item p {
  margin-top: 7px;
  color: #999;
  font-size: 14px;
  line-height: 1.65;
}

.section {
  padding: 72px 0;
  background: #fff;
}

.product-section,
.case-news-section {
  background: #fff;
}

.service-section,
.about-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .9), transparent 23%),
    linear-gradient(135deg, #f4f4f4 0%, #ededed 54%, #f7f7f7 100%);
}

.section-head {
  position: relative;
  margin-bottom: 38px;
  padding-right: 0;
  text-align: center;
}

.section-eyebrow {
  display: block;
  margin: 0;
  color: var(--brand-red);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  margin-top: 12px;
  color: #D32F2F;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
}

.section-desc {
  max-width: 760px;
  margin: 12px auto 0;
  color: #aaa;
  font-size: 13px;
  letter-spacing: .6px;
}

.section-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 9px 18px;
  color: #fff;
  background: var(--brand-red);
  font-weight: 700;
  line-height: 1.4;
}

.section-head .section-more {
  position: static;
}

.section-more:hover {
  background: var(--brand-red-dark);
}

.section-more::after {
  content: ">";
  color: inherit;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 2px 0 rgba(0, 0, 0, .03);
  transition: transform .22s ease, box-shadow .22s ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  outline: none;
}

.product-media {
  aspect-ratio: 1.28 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #d9d9d9;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

.product-media-empty {
  width: 100%;
  height: 100%;
  min-height: 170px;
  display: grid;
  place-items: center;
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, #ef9a9a, #D32F2F);
  font-weight: 800;
  letter-spacing: 2px;
  text-align: center;
}

.product-body {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  padding: 20px 22px 22px;
  text-align: center;
}

.product-title {
  color: #2d2d2d;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 800;
}

.product-summary {
  display: -webkit-box;
  margin-top: 10px;
  overflow: hidden;
  color: #999;
  font-size: 13px;
  line-height: 1.65;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-summary p {
  margin: 0;
}

.product-more {
  margin-top: auto;
  padding-top: 14px;
  color: #777;
  font-size: 14px;
}

.product-more::after {
  content: " >";
  color: #b0b0b0;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(250px, .8fr) minmax(0, 1.2fr);
  gap: 44px;
  align-items: stretch;
}

.service-intro {
  padding: 34px;
  background: #fff;
  border-top: 4px solid var(--brand-red);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .06);
}

.service-intro .section-eyebrow,
.service-intro .section-title,
.service-intro .section-desc {
  text-align: left;
}

.service-intro .section-eyebrow {
  font-size: 34px;
}

.service-intro .section-title {
  color: #D32F2F;
  font-size: 25px;
  font-weight: 900;
}

.service-intro .section-desc {
  margin-left: 0;
  margin-right: 0;
  color: #666;
  font-size: 15px;
  letter-spacing: 0;
}

.service-intro .section-more {
  margin-top: 24px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  padding: 26px 28px;
  color: #333;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 0 rgba(0, 0, 0, .03);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(211, 47, 47, .22);
  box-shadow: var(--shadow);
  outline: none;
}

.service-num {
  color: var(--brand-red);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.service-card strong {
  margin-top: 20px;
  color: #333;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
}

.service-desc {
  margin-top: 10px;
  color: #999;
  font-size: 14px;
  line-height: 1.7;
}

.service-desc p {
  margin: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: stretch;
}

.about-card {
  padding: 34px;
  background: #fff;
  border-top: 4px solid var(--brand-red);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .06);
}

.about-card .section-eyebrow {
  text-align: left;
  font-size: 34px;
}

.about-card .section-title {
  color: #D32F2F;
  text-align: left;
  font-size: 25px;
  font-weight: 900;
}

.about-text {
  max-height: 184px;
  margin: 18px 0 24px;
  overflow: hidden;
  color: #666;
  font-size: 15px;
  line-height: 1.9;
}

.about-text p {
  margin: 0 0 10px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.about-stats div {
  min-height: 132px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 20px;
  color: #fff;
  background: var(--brand-red);
  text-align: center;
}

.about-stats div:nth-child(2),
.about-stats div:nth-child(3) {
  background: var(--brand-blue);
}

.about-stats strong {
  font-size: 31px;
  line-height: 1.1;
  font-weight: 900;
}

.about-stats span {
  margin-top: 10px;
  color: rgba(255, 255, 255, .88);
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.panel {
  min-width: 0;
  background: #fff;
  border-top: 4px solid var(--brand-red);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .06);
}

.panel-head {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px 18px;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.panel-head .section-eyebrow {
  text-align: left;
  font-size: 30px;
}

.panel-title {
  margin-top: 8px;
  color: #D32F2F;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.panel-head a {
  flex: 0 0 auto;
  padding: 8px 15px;
  color: #fff;
  background: var(--brand-red);
  font-weight: 700;
}

.panel-head a:hover {
  background: var(--brand-red-dark);
}

.case-list,
.news-list {
  display: grid;
}

.case-row,
.news-row {
  min-height: 78px;
  display: grid;
  gap: 6px;
  padding: 18px 28px;
  border-bottom: 1px solid #f1f1f1;
  transition: background-color .18s ease;
}

.case-row:last-child,
.news-row:last-child {
  border-bottom: 0;
}

.case-row:hover,
.case-row:focus-visible,
.news-row:hover,
.news-row:focus-visible {
  background: #ffebee;
  outline: none;
}

.case-row strong,
.news-row strong {
  min-width: 0;
  overflow: hidden;
  color: #555;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case-row:hover strong,
.news-row:hover strong {
  color: var(--brand-red);
}

.case-row span {
  display: -webkit-box;
  overflow: hidden;
  color: #aaa;
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.news-row time {
  color: #888;
  font-size: 14px;
  white-space: nowrap;
}

.contact-cta {
  padding: 58px 0;
  color: #fff;
  background: var(--brand-red);
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact-panel .section-eyebrow {
  color: rgba(255, 255, 255, .18);
  text-align: left;
  font-size: 44px;
}

.contact-panel h2 {
  margin-top: 6px;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 900;
}

.contact-panel p {
  margin-top: 10px;
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 0 0 auto;
}

.btn-light {
  color: #875c00;
  background: var(--brand-yellow);
}

.btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .62);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .16);
}

.footer {
  color: #fff;
  background: #2f2f2f;
}

.footer-main {
  min-height: 183px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 56px;
  padding: 32px 0 34px;
}

.footer-main>div:first-child {
  min-width: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

.footer-logo {
  max-height: 42px;
  width: auto;
}

.footer-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-red);
  font-size: 22px;
  font-weight: 900;
}

.footer-desc {
  max-width: 560px;
  color: #fff;
  font-size: 14px;
  line-height: 1.9;
}

.footer-desc p {
  margin: 0;
}

.footer-nav {
  display: flex;
  flex: 0 0 420px;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px 42px;
}

.footer-nav h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 16px;
}

.footer-nav ul {
  display: grid;
  gap: 6px;
}

.footer-nav a {
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #fff;
  text-decoration: underline;
  outline: none;
}

.copyright {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: #fff;
  background: #252525;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .nav-link {
    padding-left: 14px;
    padding-right: 14px;
  }

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

  .service-layout,
  .about-layout,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .footer-main {
    flex-direction: column;
    gap: 32px;
  }

  .footer-nav {
    flex: 0 1 auto;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .topbar-inner {
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
  }

  .brand {
    flex: 1 1 auto;
    overflow: hidden;
  }

  .brand-logo {
    max-height: 46px;
    max-width: 54vw;
  }

  .brand-emblem {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .brand-name {
    max-width: 210px;
    font-size: 20px;
    white-space: nowrap;
  }

  .brand-subname {
    display: none;
  }

  .header-contact {
    flex: 0 0 auto;
    min-height: 40px;
    gap: 7px;
    justify-content: flex-end;
  }

  .header-contact-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .header-contact-icon svg {
    width: 18px;
    height: 18px;
  }

  .header-contact-body {
    text-align: right;
  }

  .header-contact-label {
    font-size: 10px;
    text-align: right;
  }

  .header-contact-value {
    max-width: none;
    overflow: visible;
    font-size: clamp(14px, 4vw, 17px);
    letter-spacing: 0;
    text-align: right;
    text-overflow: clip;
  }

  .nav-inner {
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .mainnav {
    width: auto;
  }

  .nav-list {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--brand-red);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
  }

  .site-header.is-open .nav-list {
    display: flex;
  }

  .nav-item {
    flex: 0 0 auto;
  }

  .nav-link {
    min-height: 46px;
    justify-content: flex-start;
    padding: 0 20px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    text-align: left;
  }

  .nav-sublist {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    box-shadow: none;
    background: #D32F2F;
  }

  .nav-sublist .nav-link {
    padding-left: 34px;
    color: #fff;
    background: transparent;
  }

  .hero-stage,
  .hero-track,
  .hero-slide,
  .hero-media,
  .hero-media-link {
    min-height: 430px;
    height: 430px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(140, 30, 30, .36), rgba(140, 30, 30, .28));
  }

  .hero-kicker {
    letter-spacing: 1px;
    font-size: 13px;
  }

  .hero-title {
    max-width: 100%;
    font-size: 38px;
    letter-spacing: 4px;
  }

  .hero-desc {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.75;
  }

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

  .btn {
    width: 100%;
  }

  .hero-controls {
    display: none;
  }

  .quick-grid,
  .product-grid,
  .service-list,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

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

  .section-eyebrow {
    font-size: 30px;
  }

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

  .service-intro,
  .about-card {
    padding: 28px 22px;
  }

  .service-intro .section-eyebrow,
  .about-card .section-eyebrow,
  .panel-head .section-eyebrow,
  .contact-panel .section-eyebrow {
    font-size: 28px;
  }

  .about-stats div {
    min-height: 112px;
  }

  .split-layout {
    gap: 24px;
  }

  .panel-head {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .case-row strong,
  .news-row strong {
    white-space: normal;
  }

  .news-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-panel h2 {
    font-size: 27px;
  }

  .contact-actions {
    width: 100%;
    flex-direction: column;
  }

  .footer-main {
    gap: 30px;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Other page content refresh. Home, header navigation, and footer navigation are excluded. */
body:not(.home-page) {
  background:
    radial-gradient(circle at 8% 12%, rgba(211, 47, 47, .08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fff8f8 46%, #ffffff 100%);
}

body:not(.home-page) :is(.hero-titlebar, .xmdsite-page-hero-content) {
  display: none !important;
}

body:not(.home-page) :is(.section, .xmdsite-main, .xmdsite-list-section, .xmdsite-about-main, .xmdsite-contact-main) {
  color: #172033;
}

body:not(.home-page) :is(.service-section, .about-section, .case-news-section, .xmdsite-article-head, .xmdsite-page-hero) {
  background:
    linear-gradient(180deg, rgba(238, 248, 255, .86), rgba(255, 255, 255, .96)),
    linear-gradient(135deg, #fff5f5 0%, #ffebee 100%) !important;
}

body:not(.home-page) :is(.section-eyebrow, .xmdsite-eyebrow, .xmdsite-card-meta span, .xmdsite-adjacent-label, .xmdsite-facts-title, .service-num) {
  color: #D32F2F !important;
}

body:not(.home-page) :is(.section-title, .panel-title, .service-intro .section-title, .about-card .section-title, .xmdsite-page-title, .xmdsite-item-title, .xmdsite-card-title, .xmdsite-empty-state h1, .xmdsite-empty-state h2) {
  color: #0f3554 !important;
}

body:not(.home-page) :is(.section-desc, .xmdsite-section-description, .xmdsite-item-summary, .xmdsite-card-summary, .xmdsite-empty-state p) {
  color: #64748b !important;
}

body:not(.home-page) :is(.section-title, .panel-title, .xmdsite-page-title, .xmdsite-item-title)::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #D32F2F, #D32F2F);
}

body:not(.home-page) :is(.panel-title, .service-intro .section-title, .about-card .section-title, .xmdsite-item-title)::after {
  margin-left: 0;
}

body:not(.home-page) :is(.btn-primary, .section-more, .panel-head a, .xmdsite-pagination-link, .xmdsite-tab.is-active, .xmdsite-category-link.is-active) {
  color: #fff !important;
  border-color: transparent !important;
  background: linear-gradient(135deg, #D32F2F, #D32F2F) !important;
  box-shadow: 0 12px 26px rgba(211, 47, 47, .18) !important;
}

body:not(.home-page) :is(.btn-primary:hover, .section-more:hover, .panel-head a:hover, .xmdsite-pagination-link:hover, .xmdsite-pagination-link:focus-visible, .xmdsite-category-link:hover, .xmdsite-category-link:focus-visible, .xmdsite-tab:hover, .xmdsite-tab:focus-visible) {
  color: #fff !important;
  border-color: transparent !important;
  background: #D32F2F !important;
}

body:not(.home-page) :is(.product-card, .service-card, .about-card, .service-intro, .panel, .xmdsite-item-card-link, .xmdsite-detail-tabs, .xmdsite-article, .xmdsite-facts, .xmdsite-adjacent-card, .xmdsite-empty-state, .xmdsite-about-panel, .xmdsite-contact-panel, .xmdsite-contact-card) {
  border: 1px solid rgba(211, 47, 47, .13) !important;
  border-radius: 8px !important;
  background-color: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 12px 30px rgba(150, 35, 35, .09) !important;
  overflow: hidden;
}

body:not(.home-page) :is(.product-card:hover, .service-card:hover, .xmdsite-item-card-link:hover, .xmdsite-item-card-link:focus-visible, .xmdsite-adjacent-card:hover, .xmdsite-adjacent-card:focus-visible) {
  border-color: rgba(211, 47, 47, .32) !important;
  box-shadow: 0 18px 42px rgba(150, 35, 35, .14) !important;
}

body:not(.home-page) :is(.service-intro, .about-card, .panel, .xmdsite-detail-tabs, .xmdsite-facts, .xmdsite-about-panel) {
  border-top: 4px solid #D32F2F !important;
}

body:not(.home-page) :is(.product-media, .xmdsite-card-media, .xmdsite-cover, .xmdsite-head-cover, .xmdsite-gallery-trigger, .product-media-empty, .xmdsite-card-placeholder) {
  background:
    linear-gradient(135deg, rgba(211, 47, 47, .11), rgba(229, 115, 115, .14)),
    #ffebee !important;
}

body:not(.home-page) :is(.product-media-empty, .xmdsite-card-placeholder) {
  color: #D32F2F !important;
}

body:not(.home-page) :is(.product-card:hover .product-title, .service-card:hover strong, .case-row:hover strong, .news-row:hover strong, .xmdsite-item-card-link:hover .xmdsite-card-title, .xmdsite-item-card-link:focus-visible .xmdsite-card-title, .xmdsite-adjacent-card:hover .xmdsite-adjacent-title, .xmdsite-adjacent-card:focus-visible .xmdsite-adjacent-title, .xmdsite-breadcrumb-link:hover, .xmdsite-breadcrumb-link:focus-visible) {
  color: #D32F2F !important;
}

body:not(.home-page) :is(.case-row:hover, .case-row:focus-visible, .news-row:hover, .news-row:focus-visible) {
  background: rgba(238, 248, 255, .78) !important;
}

body:not(.home-page) :is(.xmdsite-category-link, .xmdsite-tab, .xmdsite-pagination-status, .xmdsite-fact-item, .xmdsite-card-meta span, .xmdsite-publish-date) {
  border-color: rgba(211, 47, 47, .16) !important;
  background-color: #fff5f5 !important;
  color: #49657a;
}

body:not(.home-page) .xmdsite-article :where(a) {
  color: #D32F2F;
}

body:not(.home-page) .xmdsite-article :where(blockquote) {
  border-left-color: #D32F2F !important;
  background: #fff5f5 !important;
}

body:not(.home-page) :is(.xmdsite-gallery-trigger:focus-visible, .xmdsite-tab:focus-visible, .xmdsite-category-link:focus-visible, .xmdsite-pagination-link:focus-visible, .xmdsite-adjacent-card:focus-visible, .xmdsite-item-card-link:focus-visible) {
  outline: 3px solid rgba(211, 47, 47, .24) !important;
  outline-offset: 2px;
}

@media (max-width: 760px) {
  body:not(.home-page) :is(.section-title, .panel-title, .xmdsite-page-title, .xmdsite-item-title)::after {
    width: 42px;
    margin-top: 10px;
  }
}

/* List page chrome cleanup. Keep cards prominent; breadcrumbs, filters, and pagination stay light. */
body:not(.home-page) main :is(.xmdsite-breadcrumb, .breadcrumb, .category-nav, .category-wrap, .category-filter, .xmdsite-category-nav, .pagination, .pagination-wrap, .xmdsite-pagination) {
  border-radius: 0 !important;
  box-shadow: none !important;
}

body:not(.home-page) :is(nav.xmdsite-breadcrumb, nav.breadcrumb, nav.xmdsite-category-nav, nav.category-nav, nav.category-wrap, nav.category-filter, nav.xmdsite-pagination, nav.pagination, .pagination-wrap) {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body:not(.home-page) main :is(.xmdsite-breadcrumb, .breadcrumb) {
  display: flex !important;
  align-items: center !important;
  width: auto !important;
  min-height: 0 !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body:not(.home-page) main :is(.xmdsite-breadcrumb-list, .breadcrumb-list, .breadcrumb) {
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #738196 !important;
  font-size: 14px !important;
}

body:not(.home-page) main :is(.xmdsite-breadcrumb-link, .breadcrumb a) {
  color: #5d6d82 !important;
}

body:not(.home-page) main :is(.xmdsite-breadcrumb-current, .breadcrumb li[aria-current="page"]) {
  color: #738196 !important;
}

body:not(.home-page) main :is(.xmdsite-category-nav, .category-nav, .category-wrap, .category-filter) {
  width: auto !important;
  margin: 0 0 26px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body:not(.home-page) main :is(.xmdsite-category-list, .category-list) {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body:not(.home-page) main :is(.xmdsite-category-link, .category-link) {
  min-width: 0 !important;
  min-height: 34px !important;
  height: auto !important;
  padding: 0 15px !important;
  border: 1px solid rgba(211, 47, 47, .18) !important;
  border-radius: 4px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  color: #43566d !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 32px !important;
}

body:not(.home-page) main :is(.xmdsite-category-link-child, .category-link-child) {
  padding-left: 24px !important;
  color: #5f7186 !important;
  border-style: dashed !important;
  background: #fff7f7 !important;
}

body:not(.home-page) main .xmdsite-category-link-child::before,
body:not(.home-page) main .category-link-child::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  margin: 0 7px 1px 0;
  border-radius: 50%;
  background: currentColor;
}

body:not(.home-page) main :is(.xmdsite-category-link:hover, .xmdsite-category-link:focus-visible, .xmdsite-category-link.is-active, .category-link:hover, .category-link:focus-visible, .category-link.is-active) {
  border-color: #D32F2F !important;
  background: #D32F2F !important;
  color: #ffffff !important;
  transform: none !important;
}

body:not(.home-page) main :is(.xmdsite-pagination, .pagination, .pagination-wrap) {
  width: auto !important;
  margin: 34px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body:not(.home-page) main .xmdsite-pagination {
  justify-content: space-between !important;
}

body:not(.home-page) main .xmdsite-pagination-actions:empty {
  display: none !important;
}

body:not(.home-page) main .pagination-wrap .pagination {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}

body:not(.home-page) main :is(.xmdsite-pagination-status, .page-status) {
  border: 0 !important;
  background: transparent !important;
  color: #64748b !important;
  font-size: 14px !important;
}

body:not(.home-page) main :is(.xmdsite-pagination-link, .page-link, .page-control, .page-prev, .page-next, .page-current, .page-ellipsis) {
  min-width: 38px !important;
  min-height: 36px !important;
  height: 36px !important;
  padding: 0 13px !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  font-size: 14px !important;
  line-height: 34px !important;
}

body:not(.home-page) main :is(.xmdsite-pagination-link, .page-link, .page-control, .page-prev, .page-next) {
  border: 1px solid rgba(211, 47, 47, .18) !important;
  background: #ffffff !important;
  color: #43566d !important;
}

body:not(.home-page) main :is(.xmdsite-pagination-link:hover, .xmdsite-pagination-link:focus-visible, .page-link:hover, .page-link:focus-visible, .page-control:hover, .page-control:focus-visible, .page-prev:hover, .page-next:hover) {
  border-color: #D32F2F !important;
  background: #D32F2F !important;
  color: #ffffff !important;
  transform: none !important;
}

body:not(.home-page) main :is(.page-current) {
  border-color: #D32F2F !important;
  background: #D32F2F !important;
  color: #ffffff !important;
}

body:not(.home-page) main :is(.page-control.is-disabled, .page-prev.is-disabled, .page-next.is-disabled) {
  border-color: rgba(211, 47, 47, .12) !important;
  background: #fff8f8 !important;
  color: #a2afbe !important;
}

@media (max-width: 760px) {
  body:not(.home-page) main :is(.xmdsite-breadcrumb, .breadcrumb) {
    margin-bottom: 14px !important;
  }

  body:not(.home-page) main :is(.xmdsite-category-nav, .category-nav, .category-wrap, .category-filter) {
    margin-bottom: 20px !important;
    padding-bottom: 0 !important;
    overflow-x: auto !important;
  }

  body:not(.home-page) main :is(.xmdsite-category-list, .category-list) {
    flex-wrap: nowrap !important;
    width: max-content !important;
    max-width: none !important;
  }

  body:not(.home-page) main :is(.xmdsite-category-list > li, .category-list > li) {
    flex: 0 0 auto !important;
  }

  body:not(.home-page) main :is(.xmdsite-pagination, .pagination) {
    justify-content: center !important;
  }
}

/* Unified pagination style based on the current news list page. */
body:not(.home-page) main .pagination-wrap {
  width: 100% !important;
  margin: 20px 0 0 !important;
  padding: 0 0 34px !important;
  border: 0 !important;
  background: transparent !important;
}

body:not(.home-page) main nav.pagination {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body:not(.home-page) main nav.pagination :is(.page-prev, .page-next, .page-current) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 36px !important;
  min-height: 36px !important;
  border-radius: 4px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 34px !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transform: none !important;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease !important;
}

body:not(.home-page) main nav.pagination :is(.page-prev, .page-next) {
  min-width: 70px !important;
  padding: 0 14px !important;
  border: 1px solid #f3d2d2 !important;
  background: #ffffff !important;
  color: #8aa1ba !important;
}

body:not(.home-page) main nav.pagination .page-current {
  width: 42px !important;
  min-width: 42px !important;
  padding: 0 !important;
  border: 1px solid #D32F2F !important;
  background: #D32F2F !important;
  color: #ffffff !important;
}

body:not(.home-page) main nav.pagination a:is(.page-prev, .page-next):hover,
body:not(.home-page) main nav.pagination a:is(.page-prev, .page-next):focus-visible {
  border-color: #D32F2F !important;
  background: #D32F2F !important;
  color: #ffffff !important;
  outline: none !important;
}

body:not(.home-page) main nav.pagination :is(.page-prev, .page-next).is-disabled {
  border-color: #f3d2d2 !important;
  background: #ffffff !important;
  color: #b7c0cb !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  opacity: 1 !important;
}

body:not(.home-page) main nav.pagination :is(.page-status, .page-control) {
  display: none !important;
}

/* Numbered pagination is the primary pager, so page links stay visible. */
body:not(.home-page) main nav.pagination :is(.page-link, .page-ellipsis) {
  display: inline-flex !important;
}

body:not(.home-page) main nav.pagination .page-ellipsis {
  display: inline-flex !important;
  border-color: transparent !important;
  background: transparent !important;
  color: #9aa8b8 !important;
}

body:not(.home-page) main nav.pagination .page-link:hover,
body:not(.home-page) main nav.pagination .page-link:focus-visible {
  border-color: #D32F2F !important;
  background: #D32F2F !important;
  color: #ffffff !important;
  outline: none !important;
}

/* Unified empty state style based on the current news list page. */
body:not(.home-page) main :is(.empty-state, .xmdsite-empty-state, .empty-article, .xmdsite-empty-article, .contact-empty) {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 186px !important;
  margin: 0 !important;
  padding: 56px 24px !important;
  border: 1px dashed #dddddd !important;
  border-radius: 0 !important;
  background: #fafafa !important;
  box-shadow: none !important;
  color: #999999 !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
  text-align: center !important;
  text-indent: 0 !important;
}

body:not(.home-page) main :is(.empty-state, .xmdsite-empty-state) :is(h1, h2) {
  margin: 0 0 8px !important;
  color: #555555 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  text-align: center !important;
}

body:not(.home-page) main :is(.empty-state, .xmdsite-empty-state) p {
  max-width: none !important;
  margin: 0 auto !important;
  color: #999999 !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
  text-align: center !important;
}

/* About list page: align with product/category pages while keeping long-form content readable. */
body:not(.home-page) main.about-main {
  padding: 28px 0 72px !important;
}

body:not(.home-page) main.contact-main {
  padding: 28px 0 72px !important;
}

body:not(.home-page) main.contact-main .breadcrumb {
  margin-bottom: 18px !important;
  padding: 0 !important;
}

body:not(.home-page) main.contact-main .category-nav {
  margin-bottom: 22px !important;
}

body:not(.home-page) main.contact-main .contact-section {
  padding: 0 0 0 !important;
}

.contact-inline-band {
  width: 100% !important;
  margin: 0 !important;
  padding: 31px 0 !important;
  background: #d7282f !important;
}

.contact-inline-inner {
  width: min(1650px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
}

.contact-inline-form {
  display: grid !important;
  grid-template-columns: 220px minmax(0, 1fr) 236px !important;
  align-items: start !important;
  gap: 48px !important;
  margin: 0 !important;
}

.contact-inline-title {
  min-height: 54px !important;
  display: flex !important;
  align-items: center !important;
  color: #ffffff !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
}

.contact-inline-fields {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 265px)) !important;
  justify-content: start !important;
  gap: 18px 72px !important;
  min-width: 0 !important;
}

.contact-inline-field {
  position: relative !important;
  min-width: 0 !important;
}

.contact-inline-label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.contact-inline-field :is(input:not([type="checkbox"]), select, textarea) {
  width: 100% !important;
  min-width: 0 !important;
  height: 54px !important;
  border: 1px solid rgba(255, 255, 255, .58) !important;
  border-radius: 0 !important;
  padding: 0 18px !important;
  background: #ffffff !important;
  color: #4f5b66 !important;
  font: 700 18px/1.3 Arial, "Microsoft YaHei", "PingFang SC", sans-serif !important;
  letter-spacing: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  appearance: none !important;
}

.contact-inline-field textarea {
  min-height: 54px !important;
  padding-top: 14px !important;
  padding-bottom: 12px !important;
  resize: vertical !important;
}

.contact-inline-field select {
  padding-right: 38px !important;
  background-image: linear-gradient(45deg, transparent 50%, #7c8792 50%), linear-gradient(135deg, #7c8792 50%, transparent 50%) !important;
  background-position: calc(100% - 20px) 23px, calc(100% - 14px) 23px !important;
  background-size: 6px 6px, 6px 6px !important;
  background-repeat: no-repeat !important;
}

.contact-inline-field :is(input:not([type="checkbox"]), select, textarea)::placeholder {
  color: #7a838d !important;
  opacity: 1 !important;
}

.contact-inline-field :is(input:not([type="checkbox"]), select, textarea):focus {
  border-color: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .25) !important;
}

.contact-inline-checkbox {
  min-height: 54px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 0 18px !important;
  background: #ffffff !important;
  color: #4f5b66 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}

.contact-inline-checkbox input {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;
  accent-color: #d7282f !important;
}

.contact-inline-checkbox em {
  color: #d7282f !important;
  font-style: normal !important;
}

.contact-inline-help,
.contact-inline-error {
  margin: 6px 0 0 !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

.contact-inline-help {
  color: rgba(255, 255, 255, .82) !important;
}

.contact-inline-error,
.contact-inline-alert {
  color: #fff4b8 !important;
}

.contact-inline-alert {
  grid-column: 1 / -1 !important;
  margin: 0 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
}

.contact-inline-submit {
  width: 100% !important;
  height: 54px !important;
  border: 1px solid rgba(255, 255, 255, .75) !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  color: #6e747b !important;
  font: 800 20px/1 Arial, "Microsoft YaHei", "PingFang SC", sans-serif !important;
  letter-spacing: 0 !important;
  cursor: pointer !important;
  box-shadow: none !important;
  transition: color .18s ease, background-color .18s ease, box-shadow .18s ease !important;
}

.contact-inline-submit:hover,
.contact-inline-submit:focus-visible {
  color: #d7282f !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .24) !important;
  outline: none !important;
}

.contact-inline-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-inline-success {
  margin: 0 0 12px !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.5 !important;
}

.contact-inline-unavailable {
  min-height: 54px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 28px !important;
  color: #ffffff !important;
  font-size: 22px !important;
  font-weight: 800 !important;
}

.contact-inline-unavailable a {
  min-height: 54px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 34px !important;
  background: #ffffff !important;
  color: #6e747b !important;
  font-size: 18px !important;
  text-decoration: none !important;
}

@media (max-width: 1200px) {
  .contact-inline-form {
    grid-template-columns: 190px minmax(0, 1fr) 200px !important;
    gap: 28px !important;
  }

  .contact-inline-fields {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px 24px !important;
  }

  .contact-inline-title {
    font-size: 22px !important;
  }
}

@media (max-width: 900px) {
  .contact-inline-band {
    padding: 26px 0 !important;
  }

  .contact-inline-form {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .contact-inline-title {
    min-height: auto !important;
  }

  .contact-inline-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .contact-inline-submit {
    width: min(260px, 100%) !important;
  }
}

@media (max-width: 640px) {
  .contact-inline-inner {
    width: calc(100% - 32px) !important;
  }

  .contact-inline-fields {
    grid-template-columns: 1fr !important;
  }

  .contact-inline-field :is(input:not([type="checkbox"]), select, textarea),
  .contact-inline-submit,
  .contact-inline-checkbox {
    height: 50px !important;
    min-height: 50px !important;
    font-size: 16px !important;
  }

  .contact-inline-unavailable {
    align-items: stretch !important;
    flex-direction: column !important;
    gap: 14px !important;
    font-size: 20px !important;
  }
}

body:not(.home-page) main.contact-main .contact-heading {
  margin: 0 0 22px !important;
  color: #0f3554 !important;
  font-size: 32px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
}

body:not(.home-page) main.contact-main .contact-heading::after {
  width: 54px !important;
  height: 3px !important;
  margin-top: 13px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #D32F2F, #D32F2F) !important;
}

body:not(.home-page) main.contact-main .contact-default,
body:not(.home-page) main .xmdsite-contact-default {
  display: grid !important;
  gap: 22px !important;
}

body:not(.home-page) main.contact-main :is(.contact-richtext, .contact-summary)+.contact-default {
  margin-top: 22px !important;
}

body:not(.home-page) main.contact-main .contact-info-list,
body:not(.home-page) main .xmdsite-contact-info-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body:not(.home-page) main.contact-main .contact-info-item,
body:not(.home-page) main .xmdsite-contact-info-item {
  min-width: 0 !important;
  border: 1px solid rgba(211, 47, 47, .12) !important;
  border-radius: 8px !important;
  padding: 15px 16px !important;
  background: rgba(238, 248, 255, .55) !important;
}

body:not(.home-page) main.contact-main :is(.contact-info-phone, .contact-info-address),
body:not(.home-page) main :is(.xmdsite-contact-info-phone, .xmdsite-contact-info-address) {
  grid-column: span 2 !important;
  display: grid !important;
  grid-template-columns: 120px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 12px 18px !important;
  min-height: 78px !important;
  border-color: rgba(211, 47, 47, .18) !important;
  border-radius: 10px !important;
  padding: 18px 20px !important;
  background: linear-gradient(135deg, rgba(211, 47, 47, .1), rgba(255, 255, 255, .9)) !important;
}

body:not(.home-page) main.contact-main :is(.contact-info-phone, .contact-info-address) .contact-info-label,
body:not(.home-page) main :is(.xmdsite-contact-info-phone, .xmdsite-contact-info-address) .xmdsite-contact-info-label {
  font-size: 14px !important;
}

body:not(.home-page) main.contact-main .contact-info-phone .contact-info-value,
body:not(.home-page) main .xmdsite-contact-info-phone .xmdsite-contact-info-value {
  margin-top: 0 !important;
  color: #0f3554 !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
}

body:not(.home-page) main.contact-main .contact-info-address .contact-info-value,
body:not(.home-page) main .xmdsite-contact-info-address .xmdsite-contact-info-value {
  margin-top: 0 !important;
  font-size: 17px !important;
  line-height: 1.65 !important;
}

body:not(.home-page) main.contact-main .contact-info-label,
body:not(.home-page) main .xmdsite-contact-info-label {
  display: block !important;
  color: #D32F2F !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

body:not(.home-page) main.contact-main .contact-info-value,
body:not(.home-page) main .xmdsite-contact-info-value {
  display: block !important;
  margin-top: 5px !important;
  color: #172033 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.65 !important;
  overflow-wrap: anywhere !important;
}

body:not(.home-page) main.contact-main .contact-info-value a,
body:not(.home-page) main .xmdsite-contact-info-value a {
  color: inherit !important;
  text-decoration: none !important;
}

body:not(.home-page) main.contact-main .contact-info-value a:hover,
body:not(.home-page) main.contact-main .contact-info-value a:focus-visible,
body:not(.home-page) main .xmdsite-contact-info-value a:hover,
body:not(.home-page) main .xmdsite-contact-info-value a:focus-visible {
  color: #D32F2F !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
  outline: none !important;
}

body:not(.home-page) main.contact-main .contact-info-item,
body:not(.home-page) main .xmdsite-contact-info-item {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

body:not(.home-page) main.contact-main .contact-info-label,
body:not(.home-page) main .xmdsite-contact-info-label {
  flex: 0 0 auto !important;
}

body:not(.home-page) main.contact-main .contact-info-value,
body:not(.home-page) main .xmdsite-contact-info-value {
  min-width: 0 !important;
  margin-top: 0 !important;
  overflow-wrap: normal !important;
}

body:not(.home-page) main.contact-main .contact-note-grid,
body:not(.home-page) main .xmdsite-contact-note-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

body:not(.home-page) main.contact-main .contact-note,
body:not(.home-page) main .xmdsite-contact-note {
  border-left: 3px solid #D32F2F !important;
  padding: 2px 0 2px 16px !important;
}

body:not(.home-page) main .about-page-head {
  margin: 0 0 22px !important;
}

body:not(.home-page) main .about-page-title {
  margin: 0 !important;
  color: #0f3554 !important;
  font-size: 32px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

body:not(.home-page) main .about-page-title::after {
  margin: 13px 0 0 !important;
}

body:not(.home-page) main .about-page-desc {
  max-width: 820px !important;
  margin: 14px 0 0 !important;
  color: #64748b !important;
  font-size: 15px !important;
  line-height: 1.9 !important;
}

body:not(.home-page) main .about-category-nav .category-link {
  appearance: none !important;
  font-family: inherit !important;
  cursor: pointer !important;
}

body:not(.home-page) main .about-content-panel {
  width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body:not(.home-page) main .about-content-panel .item-content-list {
  display: block !important;
  margin: 0 !important;
}

body:not(.home-page) main .about-content-panel .item-content-block {
  margin: 0 !important;
  padding: 0 0 28px !important;
  border-bottom: 1px solid rgba(211, 47, 47, .12) !important;
}

body:not(.home-page) main .about-content-panel .item-content-block:last-child {
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

body:not(.home-page) main .about-content-panel .item-content-header {
  margin: 0 0 16px !important;
}

body:not(.home-page) main .about-content-panel .item-content-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0 !important;
  align-items: start !important;
}

body:not(.home-page) main .about-content-panel .item-content-main {
  width: 100% !important;
  min-width: 0 !important;
}

body:not(.home-page) main .about-content-panel .item-content-title {
  margin: 0 !important;
  color: #0f3554 !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
}

body:not(.home-page) main .about-content-panel .item-content-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin: 12px 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #D32F2F, #D32F2F);
}

body:not(.home-page) main .about-content-panel .item-content-image {
  display: none !important;
  width: 100% !important;
  min-height: 260px !important;
  max-height: none !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 6px !important;
  background: #ffebee !important;
}

body:not(.home-page) main .about-content-panel .item-content-image img {
  width: 100% !important;
  height: 100% !important;
  min-height: 260px !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 0 !important;
}

body:not(.home-page) main .about-content-panel :is(.item-content-body, .item-content-summary) {
  color: #172033 !important;
  font-size: 15px !important;
  line-height: 2 !important;
  word-break: break-word !important;
}

body:not(.home-page) main .about-content-panel .item-content-body :where(p, ul, ol, blockquote, table) {
  margin-top: 0 !important;
  margin-bottom: 1em !important;
}

body:not(.home-page) main .about-content-panel .item-content-body :where(h1, h2, h3, h4) {
  margin: 1.1em 0 .55em !important;
  color: #0f3554 !important;
  line-height: 1.35 !important;
}

body:not(.home-page) main .about-content-panel .item-content-body> :where(h1, h2, h3, h4):first-child {
  display: none !important;
}

body:not(.home-page) main .about-content-panel .item-content-body :where(ul, ol) {
  padding-left: 1.4em !important;
  color: #26384d !important;
}

body:not(.home-page) main .about-content-panel .item-content-body ul {
  list-style: disc !important;
}

body:not(.home-page) main .about-content-panel .item-content-body ol {
  list-style: decimal !important;
}

body:not(.home-page) main .about-content-panel .item-content-body :where(img, video) {
  max-width: 100% !important;
  height: auto !important;
  margin: 16px 0 !important;
  border-radius: 6px !important;
}

body:not(.home-page) main nav.xmdsite-adjacent-nav {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  width: 100% !important;
  margin: 28px auto 0 !important;
  padding: 0 0 34px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body:not(.home-page) main nav.xmdsite-adjacent-nav .xmdsite-adjacent-card {
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  min-width: 76px !important;
  width: auto !important;
  min-height: 36px !important;
  height: 36px !important;
  padding: 0 14px !important;
  border: 1px solid #f3d2d2 !important;
  border-radius: 4px !important;
  background: #ffffff !important;
  color: #8aa1ba !important;
  box-shadow: none !important;
  text-align: center !important;
  text-decoration: none !important;
  transform: none !important;
  overflow: visible !important;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease !important;
}

body:not(.home-page) main nav.xmdsite-adjacent-nav .xmdsite-adjacent-card::before,
body:not(.home-page) main nav.xmdsite-adjacent-nav .xmdsite-adjacent-card::after,
body:not(.home-page) main nav.xmdsite-adjacent-nav .xmdsite-adjacent-label::before,
body:not(.home-page) main nav.xmdsite-adjacent-nav .xmdsite-adjacent-label::after {
  content: none !important;
  display: none !important;
}

body:not(.home-page) main nav.xmdsite-adjacent-nav .xmdsite-adjacent-label {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: inherit !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 34px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

body:not(.home-page) main nav.xmdsite-adjacent-nav .xmdsite-adjacent-title {
  display: none !important;
}

body:not(.home-page) main nav.xmdsite-adjacent-nav .xmdsite-adjacent-card:hover,
body:not(.home-page) main nav.xmdsite-adjacent-nav .xmdsite-adjacent-card:focus-visible {
  border-color: #D32F2F !important;
  background: #D32F2F !important;
  color: #ffffff !important;
  outline: none !important;
  box-shadow: none !important;
  transform: none !important;
}

body:not(.home-page) main nav.xmdsite-adjacent-nav .xmdsite-adjacent-card.is-disabled,
body:not(.home-page) main nav.xmdsite-adjacent-nav .xmdsite-adjacent-card.is-disabled:hover,
body:not(.home-page) main nav.xmdsite-adjacent-nav .xmdsite-adjacent-card.is-disabled:focus-visible {
  border-color: #f3d2d2 !important;
  background: #ffffff !important;
  color: #b7c0cb !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  opacity: 1 !important;
}

@media (max-width: 760px) {

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .xmdsite-container {
    width: min(100% - 28px, var(--container, 1200px)) !important;
    max-width: 100% !important;
  }

  .nav-shell,
  .mainnav,
  .site-header,
  .xmdsite-header,
  .xmdsite-nav,
  .xmdsite-header-inner,
  .category-nav,
  .category-wrap,
  .category-bar,
  .xmdsite-category-nav,
  .side-nav,
  .pagination-wrap,
  .footer-topline,
  .footer-modern {
    max-width: 100% !important;
  }

  .nav-list,
  .xmdsite-nav-list {
    max-width: 100% !important;
  }

  .nav-list .nav-link,
  .xmdsite-nav-list .xmdsite-nav-link {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  body:not(.home-page) main :is(.category-nav, .category-wrap, .category-bar, .xmdsite-category-nav) {
    width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    overflow: hidden !important;
  }

  body:not(.home-page) main :is(.category-list, .category-tabs, .xmdsite-category-list) {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding-bottom: 2px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body:not(.home-page) main :is(.category-list, .category-tabs, .xmdsite-category-list)::-webkit-scrollbar {
    display: none;
  }

  body:not(.home-page) main :is(.category-list, .xmdsite-category-list)>li {
    flex: 0 0 auto !important;
    min-width: 0 !important;
  }

  body:not(.home-page) main :is(.category-link, .xmdsite-category-link) {
    flex: 0 0 auto !important;
    max-width: 42vw !important;
    min-height: 34px !important;
    padding: 0 12px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body:not(.home-page) main :is(.side-nav, .sidebar) {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  body:not(.home-page) main .side-list {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body:not(.home-page) main .side-list::-webkit-scrollbar {
    display: none;
  }

  body:not(.home-page) main .side-list li {
    flex: 0 0 auto !important;
  }

  body:not(.home-page) main .side-list a,
  body:not(.home-page) main .side-tab {
    max-width: 48vw !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body:not(.home-page) main :is(.breadcrumb, .xmdsite-breadcrumb) {
    max-width: 100% !important;
    overflow: hidden !important;
  }

  body:not(.home-page) main :is(.breadcrumb, .breadcrumb-list, .xmdsite-breadcrumb-list) {
    flex-wrap: nowrap !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  body:not(.home-page) main :is(.breadcrumb li, .breadcrumb-list li, .xmdsite-breadcrumb-item) {
    min-width: 0 !important;
  }

  body:not(.home-page) main :is(.breadcrumb li:last-child, .breadcrumb-list li:last-child, .xmdsite-breadcrumb-current) {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body:not(.home-page) main nav.pagination,
  body:not(.home-page) main nav.xmdsite-adjacent-nav {
    gap: 10px !important;
    max-width: 100% !important;
    overflow: visible !important;
    flex-wrap: wrap !important;
  }

  body:not(.home-page) main nav.pagination :is(.page-prev, .page-next),
  body:not(.home-page) main nav.xmdsite-adjacent-nav .xmdsite-adjacent-card {
    min-width: 70px !important;
    height: 36px !important;
    min-height: 36px !important;
    padding: 0 12px !important;
    font-size: 14px !important;
  }

  body:not(.home-page) main nav.pagination .page-current {
    width: 42px !important;
    min-width: 42px !important;
    height: 36px !important;
  }

  body:not(.home-page) main.about-main {
    padding: 20px 0 52px !important;
  }

  body:not(.home-page) main.contact-main {
    padding: 20px 0 52px !important;
  }

  body:not(.home-page) main.contact-main .contact-heading {
    font-size: 26px !important;
    margin-bottom: 18px !important;
  }

  body:not(.home-page) main .about-page-head {
    margin-bottom: 18px !important;
  }

  body:not(.home-page) main .about-page-title {
    font-size: 26px !important;
  }

  body:not(.home-page) main .about-content-panel {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body:not(.home-page) main .about-content-panel .item-content-layout {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
  }

  body:not(.home-page) main .about-content-panel .item-content-image,
  body:not(.home-page) main .about-content-panel .item-content-image img {
    min-height: 190px !important;
  }

  body:not(.home-page) main .about-content-panel .item-content-title {
    font-size: 21px !important;
  }
}

/* Final inner-page alignment with the featured product list page. */
body:not(.home-page) {
  background:
    radial-gradient(circle at 8% 12%, rgba(211, 47, 47, .08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fff8f8 46%, #ffffff 100%) !important;
}

body:not(.home-page) :is(.hero-titlebar, .xmdsite-page-hero-content) {
  display: none !important;
}

body:not(.home-page) main:is(.container, .main, .page-main, .page-shell, .xmdsite-main, .xmdsite-container),
body:not(.home-page) main:is(.container).main,
body:not(.home-page) main.xmdsite-container.xmdsite-main {
  padding-top: 26px !important;
  padding-bottom: 72px !important;
  background: transparent !important;
}

body:not(.home-page) main:is(.container).main,
body:not(.home-page) main.xmdsite-container.xmdsite-main {
  width: min(var(--container, 1200px), calc(100% - 40px)) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

body:not(.home-page) main:is(.page-main, .page-shell)>.container,
body:not(.home-page) main:is(.page-main, .page-shell)>.xmdsite-container {
  width: min(var(--container, 1200px), calc(100% - 40px)) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

body:not(.home-page) main :is(.breadcrumb, .breadcrumb-list, .xmdsite-breadcrumb, .xmdsite-breadcrumb-list) {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 0 !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #738196 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

body:not(.home-page) main nav:is(.breadcrumb, .xmdsite-breadcrumb) {
  margin-bottom: 0 !important;
}

body:not(.home-page) main :is(.breadcrumb a, .xmdsite-breadcrumb-link) {
  color: #5d6d82 !important;
}

body:not(.home-page) main :is(.breadcrumb a:hover, .breadcrumb a:focus-visible, .xmdsite-breadcrumb-link:hover, .xmdsite-breadcrumb-link:focus-visible) {
  color: #D32F2F !important;
  outline: none !important;
}

body:not(.home-page) main .breadcrumb li:not(:last-child)::after,
body:not(.home-page) main .breadcrumb-list li+li::before,
body:not(.home-page) main .xmdsite-breadcrumb-item+.xmdsite-breadcrumb-item::before {
  color: #c5c5c5 !important;
}

body:not(.home-page) main :is(.category-nav, .category-wrap, .category-filter, .xmdsite-category-nav) {
  width: auto !important;
  margin: 0 0 22px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body:not(.home-page) main :is(.category-list, .xmdsite-category-list) {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body:not(.home-page) main :is(.category-list, .xmdsite-category-list)>li {
  flex: 0 0 auto !important;
}

body:not(.home-page) main :is(.category-link, .xmdsite-category-link) {
  display: inline-flex !important;
  align-items: center !important;
  min-width: 0 !important;
  min-height: 34px !important;
  height: auto !important;
  padding: 0 16px !important;
  border: 1px solid #e6e6e6 !important;
  border-radius: 4px !important;
  background: #fafafa !important;
  box-shadow: none !important;
  color: #555555 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 32px !important;
  text-decoration: none !important;
  transform: none !important;
}

body:not(.home-page) main .category-link::after,
body:not(.home-page) main .xmdsite-category-link::after {
  display: none !important;
}

body:not(.home-page) main :is(.category-link-child, .xmdsite-category-link-child) {
  padding-left: 24px !important;
  border-style: dashed !important;
  background: #ffffff !important;
}

body:not(.home-page) main :is(.category-link:hover, .category-link:focus-visible, .category-link.is-active, .xmdsite-category-link:hover, .xmdsite-category-link:focus-visible, .xmdsite-category-link.is-active) {
  border-color: #D32F2F !important;
  background: #D32F2F !important;
  color: #ffffff !important;
  outline: none !important;
}

body:not(.home-page) main :is(.list-shell, .list-section, .xmdsite-list-section) {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body:not(.home-page) main :is(.empty-state, .xmdsite-empty-state, .empty-article, .xmdsite-empty-article, .contact-empty) {
  width: 100% !important;
  max-width: 1080px !important;
  min-height: 168px !important;
  margin: 0 auto !important;
  padding: 48px 24px !important;
  border: 1px dashed #d8d8d8 !important;
  border-radius: 0 !important;
  background: #fafafa !important;
  box-shadow: none !important;
  color: #888888 !important;
  text-align: center !important;
}

body:not(.home-page) main :is(.empty-state, .xmdsite-empty-state) :is(h1, h2) {
  margin: 0 0 8px !important;
  color: #333333 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
}

body:not(.home-page) main :is(.empty-state, .xmdsite-empty-state) p {
  margin: 0 auto !important;
  color: #888888 !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
}

body:not(.home-page) main .pagination-wrap {
  width: 100% !important;
  margin: 18px 0 0 !important;
  padding: 0 !important;
}

body:not(.home-page) main nav.pagination {
  justify-content: center !important;
  gap: 14px !important;
}

body:not(.home-page) :is(.xmdsite-article-head) {
  display: block !important;
  margin: 0 !important;
  padding: 26px 0 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body:not(.home-page) :is(.xmdsite-article-head) .xmdsite-container {
  width: min(var(--container, 1200px), calc(100% - 40px)) !important;
}

body:not(.home-page) :is(.xmdsite-head-layout, .xmdsite-title-block) {
  margin-top: 0 !important;
}

body:not(.home-page) main:is(.detail-wrap) {
  padding-top: 26px !important;
  padding-bottom: 72px !important;
  background: transparent !important;
}

body:not(.home-page) main .breadcrumb-pill {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #5d6d82 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}

body:not(.home-page) main .breadcrumb-pill::before {
  content: "首页 /" !important;
  width: auto !important;
  height: auto !important;
  margin: 0 8px 0 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #738196 !important;
}

body:not(.home-page) :is(.article-card, .xmdsite-article, .xmdsite-product-detail-tabs, .xmdsite-about-panel, .contact-entry) {
  border-color: rgba(211, 47, 47, .13) !important;
  border-radius: 8px !important;
  background-color: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 12px 30px rgba(150, 35, 35, .09) !important;
}

@media (max-width: 760px) {

  body:not(.home-page) main:is(.container).main,
  body:not(.home-page) main.xmdsite-container.xmdsite-main,
  body:not(.home-page) main:is(.page-main, .page-shell)>.container,
  body:not(.home-page) main:is(.page-main, .page-shell)>.xmdsite-container {
    width: min(100% - 28px, var(--container, 1200px)) !important;
  }

  body:not(.home-page) main:is(.container, .main, .page-main, .page-shell, .xmdsite-main, .xmdsite-container),
  body:not(.home-page) main:is(.container).main,
  body:not(.home-page) main.xmdsite-container.xmdsite-main,
  body:not(.home-page) main:is(.detail-wrap) {
    /* padding-top: 20px !important; */
    padding-bottom: 52px !important;
  }

  body:not(.home-page) :is(.xmdsite-article-head) {
    padding-top: 20px !important;
  }

  body:not(.home-page) main.contact-main .contact-info-list,
  body:not(.home-page) main.contact-main .contact-note-grid,
  body:not(.home-page) main .xmdsite-contact-info-list,
  body:not(.home-page) main .xmdsite-contact-note-grid {
    grid-template-columns: 1fr !important;
  }

  body:not(.home-page) main.contact-main :is(.contact-info-phone, .contact-info-address),
  body:not(.home-page) main :is(.xmdsite-contact-info-phone, .xmdsite-contact-info-address) {
    grid-column: auto !important;
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  body:not(.home-page) main :is(.category-list, .xmdsite-category-list) {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body:not(.home-page) main :is(.category-list, .xmdsite-category-list)::-webkit-scrollbar {
    display: none;
  }

  body:not(.home-page) main :is(.category-link, .xmdsite-category-link) {
    max-width: 42vw !important;
    padding: 0 12px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
}

/* Final sparse-page compaction: keep empty or short pages close to the footer. */
body:not(.home-page) main:is(.container, .main, .xmdsite-main, .page-main, .page-shell, .detail-wrap),
body:not(.home-page) main:is(.page-main, .page-shell)> :is(.container, .xmdsite-container),
body:not(.home-page) main:is(.container).main,
body:not(.home-page) main.xmdsite-container.xmdsite-main,
body:not(.home-page) main.detail-wrap {
  min-height: 0 !important;
  /* padding-top: 32px !important; */
  padding-bottom: 36px !important;
}

body:not(.home-page) main :is(.list-section, .xmdsite-list-section, .product-list, .case-list, .news-list, .service-list, .xmdsite-card-grid, .list-shell, .items-grid, .list-grid) {
  min-height: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

body:not(.home-page) main :is(.empty-state, .xmdsite-empty-state, .empty-article, .xmdsite-empty-article, .contact-empty) {
  min-height: 0 !important;
  margin: 0 !important;
  padding: 26px 20px !important;
}

body:not(.home-page) main :is(.pagination-wrap, .xmdsite-pagination, nav.pagination, nav.xmdsite-adjacent-nav) {
  margin-top: 12px !important;
  padding-bottom: 0 !important;
}

body:not(.home-page) main :is(.empty-state, .xmdsite-empty-state, .empty-article, .xmdsite-empty-article)+ :is(.pagination-wrap, .xmdsite-pagination, nav.pagination) {
  margin-top: 12px !important;
}

body:not(.home-page) main :is(.pagination-wrap:empty, .xmdsite-pagination:empty, nav.pagination:empty, nav.xmdsite-adjacent-nav:empty) {
  display: none !important;
}

body:not(.home-page) main :is(.xmdsite-article-head) {
  padding-top: 28px !important;
  padding-bottom: 32px !important;
}

body:not(.home-page) main :is(.xmdsite-detail-tabs, .article-card, .xmdsite-article, .xmdsite-product-detail-tabs, .xmdsite-about-panel, .contact-entry) {
  margin-bottom: 0 !important;
}

@media (max-width: 760px) {

  body:not(.home-page) main:is(.container, .main, .xmdsite-main, .page-main, .page-shell, .detail-wrap),
  body:not(.home-page) main:is(.page-main, .page-shell)> :is(.container, .xmdsite-container),
  body:not(.home-page) main:is(.container).main,
  body:not(.home-page) main.xmdsite-container.xmdsite-main,
  body:not(.home-page) main.detail-wrap {
    /* padding-top: 18px !important; */
    padding-bottom: 30px !important;
  }

  body:not(.home-page) main :is(.empty-state, .xmdsite-empty-state, .empty-article, .xmdsite-empty-article, .contact-empty) {
    padding: 24px 16px !important;
  }
}

/* Overall visual polish: calmer medical palette, tighter rhythm, and shared card language. */
:root {
  --brand-red: #D32F2F;
  --brand-red-dark: #D32F2F;
  --brand-blue: #D32F2F;
  --brand-blue-dark: #D32F2F;
  --brand-blue-soft: #eef8fc;
  --brand-blue-line: #d8edf5;
  --brand-teal: #D32F2F;
  --brand-teal-soft: #e9f7f4;
  --brand-amber: #f4bd4f;
  --ink: #132234;
  --muted: #5f7185;
  --soft: #f6fafc;
  --line: #dce9f0;
  --surface: #ffffff;
  --surface-soft: #f7fbfd;
  --shadow: 0 18px 38px rgba(18, 58, 82, .12);
  --shadow-soft: 0 10px 24px rgba(18, 58, 82, .08);
  --focus-ring: 0 0 0 3px rgba(7, 112, 186, .22);
}

body {
  color: var(--ink);
  background: var(--surface);
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.container {
  width: min(var(--container), calc(100% - 48px));
}

.site-header {
  border-bottom: 1px solid rgba(10, 115, 168, .08);
  box-shadow: 0 8px 24px rgba(18, 58, 82, .08);
}

.topbar {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfe 100%);
}

.topbar-inner {
  min-height: 92px;
}

.brand-logo {
  max-height: 54px;
}

.brand-name,
.header-contact,
.header-contact-value {
  color: var(--brand-blue);
}

.brand-emblem {
  border-color: rgba(10, 115, 168, .2);
  background: var(--brand-blue);
  box-shadow: 0 10px 22px rgba(10, 115, 168, .16);
}

.header-contact-icon {
  color: var(--brand-blue);
  background: #ffebee;
  box-shadow: inset 0 0 0 1px rgba(211, 47, 47, .14);
}

.nav-shell {
  background: linear-gradient(90deg, #D32F2F 0%, #D32F2F 52%, #D32F2F 100%);
  box-shadow: 0 8px 18px rgba(10, 88, 130, .16);
}

.nav-link {
  min-height: 52px;
  font-size: 15px;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #D32F2F;
  background: #fff;
  box-shadow: none;
  outline: none;
}

.nav-item.is-active>.nav-link {
  color: #fff;
  background: #D32F2F;
  box-shadow: none;
  outline: none;
}

.nav-sublist {
  border-color: rgba(10, 115, 168, .14);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 18px 38px rgba(18, 58, 82, .14);
}

.nav-sublist .nav-link:hover,
.nav-sublist .nav-link:focus-visible {
  color: var(--brand-blue);
  background: var(--brand-blue-soft);
  box-shadow: none;
}

.hero {
  background: #D32F2F;
}

.hero-stage,
.hero-track,
.hero-slide,
.hero-media,
.hero-media-link {
  min-height: 500px;
}

.hero-media {
  height: 500px;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 49, 77, .46), rgba(7, 49, 77, .18) 48%, rgba(7, 49, 77, .30)),
    linear-gradient(180deg, rgba(10, 115, 168, .18), rgba(18, 145, 132, .16));
}

.hero-kicker {
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(7, 91, 134, .62);
  box-shadow: 0 10px 24px rgba(7, 49, 77, .18);
  font-size: 13px;
  letter-spacing: 1px;
}

.hero-title {
  max-width: 920px;
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  letter-spacing: 3px;
  text-shadow: 0 5px 18px rgba(7, 49, 77, .28);
}

.hero-desc {
  max-width: 720px;
  color: rgba(255, 255, 255, .92);
  font-size: 16px;
}

.btn,
.section-more,
.panel-head a {
  min-height: 42px;
  border-radius: 6px;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

.btn:hover,
.section-more:hover,
.panel-head a:hover {
  transform: translateY(-2px);
}

.btn-primary,
.section-more,
.panel-head a {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  box-shadow: 0 12px 24px rgba(10, 115, 168, .18);
}

.btn-primary:hover,
.section-more:hover,
.panel-head a:hover {
  background: var(--brand-blue-dark);
}

.btn-secondary,
.btn-light {
  color: #563b00;
  background: var(--brand-amber);
  border-color: var(--brand-amber);
}

.quick-panel {
  padding: 32px 0 8px;
  background: linear-gradient(180deg, #ffffff, #f7fbfd);
}

.quick-grid {
  gap: 16px;
}

.quick-item,
.product-card,
.service-card,
.about-card,
.service-intro,
.panel {
  border: 1px solid rgba(10, 115, 168, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow-soft);
}

.quick-item {
  position: relative;
  overflow: hidden;
}

.quick-item::before {
  content: attr(data-mark);
  position: absolute;
  right: 18px;
  top: 14px;
  color: rgba(18, 145, 132, .12);
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
}

.quick-icon,
.service-num,
.section-eyebrow {
  color: var(--brand-teal);
}

.quick-item strong,
.product-title,
.service-card strong,
.panel-title,
.section-title,
.about-card .section-title {
  color: var(--ink);
}

.quick-item p,
.product-summary,
.service-desc,
.section-desc,
.about-text,
.case-row span,
.news-row time {
  color: var(--muted);
}

.quick-item:hover,
.product-card:hover,
.product-card:focus-visible,
.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(18, 145, 132, .28);
  box-shadow: var(--shadow);
}

.section {
  padding: 78px 0;
}

.product-section,
.case-news-section {
  background: #ffffff;
}

.service-section,
.about-section {
  background: linear-gradient(180deg, #f7fbfd 0%, #eef8fc 100%);
}

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

.section-eyebrow {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0;
}

.section-title {
  font-size: 26px;
  font-weight: 900;
}

.section-desc {
  font-size: 14px;
  letter-spacing: 0;
}

.product-category-panel {
  margin-bottom: 28px;
  padding: 22px;
  border: 1px solid rgba(10, 115, 168, .12);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fbfd);
  box-shadow: var(--shadow-soft);
}

.product-category-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.product-category-head span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.product-category-head strong {
  color: var(--brand-teal);
  font-size: 12px;
  letter-spacing: 1px;
}

.product-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.product-category-card {
  min-width: 0;
}

.product-category-main,
.product-category-card[href] {
  position: relative;
  min-height: 98px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px 42px 16px 16px;
  border: 1px solid rgba(10, 115, 168, .12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(18, 58, 82, .06);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.product-category-main:hover,
.product-category-main:focus-visible,
.product-category-card[href]:hover,
.product-category-card[href]:focus-visible {
  border-color: rgba(18, 145, 132, .28);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.product-category-icon {
  width: 28px;
  height: 3px;
  display: block;
  border-radius: 999px;
  background: var(--brand-teal);
}

.product-category-meta {
  color: #7b8da0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.product-category-main strong,
.product-category-card[href] strong {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-category-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  color: var(--brand-blue);
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
}

.product-category-children {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.product-category-child {
  max-width: 100%;
  min-height: 28px;
  padding: 0 10px;
  overflow: hidden;
  border: 1px solid rgba(10, 115, 168, .12);
  border-radius: 999px;
  color: var(--muted);
  background: #ffffff;
  font-size: 12px;
  line-height: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-category-child:hover,
.product-category-child:focus-visible {
  color: var(--brand-blue);
  border-color: rgba(10, 115, 168, .28);
}

.product-grid {
  gap: 20px;
}

.product-media {
  background: linear-gradient(135deg, #edf8fb, #f8fcfe);
}

.product-body {
  min-height: 168px;
  padding: 22px;
  text-align: left;
}

.product-more {
  color: var(--brand-blue);
  font-weight: 800;
}

.service-intro,
.about-card,
.panel {
  border-top: 3px solid var(--brand-teal);
}

.service-list {
  gap: 20px;
}

.service-card {
  min-height: 158px;
}

.about-stats {
  gap: 16px;
}

.about-stats div {
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  box-shadow: var(--shadow-soft);
}

.about-stats div:nth-child(2),
.about-stats div:nth-child(3) {
  background: linear-gradient(135deg, #D32F2F, #D32F2F);
}

.panel-head {
  min-height: 90px;
  border-bottom-color: rgba(10, 115, 168, .10);
}

.case-row,
.news-row {
  border-bottom-color: rgba(10, 115, 168, .10);
}

.case-row:hover,
.case-row:focus-visible,
.news-row:hover,
.news-row:focus-visible {
  background: var(--brand-blue-soft);
}

.contact-cta {
  background: linear-gradient(90deg, #D32F2F 0%, #D32F2F 48%, #D32F2F 100%);
}

.contact-panel .section-eyebrow {
  color: rgba(255, 255, 255, .32);
}

body:not(.home-page) {
  background: linear-gradient(180deg, #f8fcfe 0%, #ffffff 42%, #f7fbfd 100%) !important;
}

body:not(.home-page) main:is(.container, .main, .xmdsite-main, .page-main, .page-shell, .detail-wrap),
body:not(.home-page) main:is(.page-main, .page-shell)> :is(.container, .xmdsite-container),
body:not(.home-page) main:is(.container).main,
body:not(.home-page) main.xmdsite-container.xmdsite-main,
body:not(.home-page) main.detail-wrap {
  /* padding-top: 32px !important; */
  padding-bottom: 48px !important;
}

body:not(.home-page) :is(.product-card, .service-card, .about-card, .service-intro, .panel, .xmdsite-item-card-link, .xmdsite-detail-tabs, .xmdsite-article, .xmdsite-facts, .xmdsite-adjacent-card, .xmdsite-empty-state, .xmdsite-about-panel, .xmdsite-contact-panel, .xmdsite-contact-card, .article-card, .contact-entry) {
  border-color: rgba(10, 115, 168, .12) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, .98) !important;
  box-shadow: var(--shadow-soft) !important;
}

body:not(.home-page) :is(.product-card:hover, .service-card:hover, .xmdsite-item-card-link:hover, .xmdsite-item-card-link:focus-visible, .xmdsite-adjacent-card:hover, .xmdsite-adjacent-card:focus-visible) {
  border-color: rgba(18, 145, 132, .28) !important;
  box-shadow: var(--shadow) !important;
}

body:not(.home-page) :is(.section-eyebrow, .xmdsite-eyebrow, .xmdsite-card-meta span, .xmdsite-adjacent-label, .xmdsite-facts-title, .service-num) {
  color: var(--brand-teal) !important;
}

body:not(.home-page) :is(.section-title, .panel-title, .service-intro .section-title, .about-card .section-title, .xmdsite-page-title, .xmdsite-item-title, .xmdsite-card-title, .xmdsite-empty-state h1, .xmdsite-empty-state h2, .article-card h1, .article-card h2, .news-card-title) {
  color: var(--ink) !important;
}

body:not(.home-page) :is(.section-desc, .xmdsite-section-description, .xmdsite-item-summary, .xmdsite-card-summary, .xmdsite-empty-state p, .news-card-summary) {
  color: var(--muted) !important;
}

body:not(.home-page) :is(.section-title, .panel-title, .xmdsite-page-title, .xmdsite-item-title, .contact-heading, .about-page-title)::after {
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-blue)) !important;
}

body:not(.home-page) :is(.btn-primary, .section-more, .panel-head a, .xmdsite-pagination-link, .xmdsite-tab.is-active, .xmdsite-category-link.is-active, .category-link.is-active) {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal)) !important;
  box-shadow: 0 10px 22px rgba(10, 115, 168, .16) !important;
}

body:not(.home-page) main :is(.xmdsite-category-link, .category-link) {
  min-height: 36px !important;
  border-color: rgba(10, 115, 168, .16) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #4d6377 !important;
  line-height: 34px !important;
}

body:not(.home-page) main :is(.category-link:hover, .category-link:focus-visible, .category-link.is-active, .xmdsite-category-link:hover, .xmdsite-category-link:focus-visible, .xmdsite-category-link.is-active) {
  border-color: transparent !important;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal)) !important;
  color: #ffffff !important;
}

body:not(.home-page) main :is(.xmdsite-item-grid, .list-grid, .items-grid) {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

body:not(.home-page) main :is(.xmdsite-item-card, .news-card) {
  min-width: 0 !important;
}

body:not(.home-page) main :is(.xmdsite-item-card-link, .news-card-main-link) {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  border: 1px solid rgba(10, 115, 168, .12) !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: var(--shadow-soft) !important;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease !important;
}

body:not(.home-page) main :is(.xmdsite-item-card-link:hover, .xmdsite-item-card-link:focus-visible, .news-card-main-link:hover, .news-card-main-link:focus-visible) {
  border-color: rgba(18, 145, 132, .28) !important;
  box-shadow: var(--shadow) !important;
  transform: translateY(-3px) !important;
}

body:not(.home-page) main :is(.xmdsite-card-media, .news-card-media) {
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #edf8fb, #f8fcfe) !important;
}

body:not(.home-page) main :is(.xmdsite-card-media img, .news-card-media img) {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform .36s ease !important;
}

body:not(.home-page) main :is(.xmdsite-item-card-link:hover .xmdsite-card-media img, .news-card-main-link:hover .news-card-media img) {
  transform: scale(1.04) !important;
}

body:not(.home-page) main :is(.xmdsite-card-body, .news-card-body) {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  padding: 20px !important;
}

body:not(.home-page) main :is(.xmdsite-card-title, .news-card-title) {
  display: -webkit-box !important;
  overflow: hidden !important;
  font-size: 18px !important;
  line-height: 1.45 !important;
  font-weight: 900 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
}

body:not(.home-page) main :is(.xmdsite-card-summary, .news-card-summary) {
  display: -webkit-box !important;
  overflow: hidden !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
}

body:not(.home-page) main :is(.xmdsite-card-meta, .news-card-meta) {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

body:not(.home-page) main :is(.xmdsite-card-meta span, .news-card-meta span) {
  min-height: 24px !important;
  padding: 0 9px !important;
  border: 1px solid rgba(18, 145, 132, .16) !important;
  border-radius: 999px !important;
  background: var(--brand-teal-soft) !important;
  color: #D32F2F !important;
  font-size: 12px !important;
  line-height: 22px !important;
}

body:not(.home-page) main :is(.news-card-more) {
  margin-top: auto !important;
  color: var(--brand-blue) !important;
  font-weight: 800 !important;
}

body:not(.home-page) main :is(.article-card, .xmdsite-article, .xmdsite-detail-tabs, .xmdsite-product-detail-tabs, .xmdsite-about-panel, .contact-entry) {
  padding: clamp(22px, 3vw, 34px) !important;
}

body:not(.home-page) main :is(.xmdsite-tabs-list) {
  gap: 10px !important;
  padding: 0 !important;
  border-bottom: 1px solid var(--line) !important;
}

body:not(.home-page) main :is(.xmdsite-tab) {
  min-height: 38px !important;
  border-radius: 999px 999px 0 0 !important;
}

body:not(.home-page) main :is(.xmdsite-detail-grid) {
  gap: 24px !important;
}

body:not(.home-page) main :is(.xmdsite-fact-item) {
  border-radius: 8px !important;
  background: var(--surface-soft) !important;
}

body:not(.home-page) main :is(.xmdsite-gallery-grid, .xmdsite-product-gallery-frame) {
  gap: 14px !important;
}

body:not(.home-page) main :is(.empty-state, .xmdsite-empty-state, .empty-article, .xmdsite-empty-article, .contact-empty) {
  border-color: rgba(10, 115, 168, .20) !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  color: var(--muted) !important;
}

@media (max-width: 1024px) {

  .product-category-grid,
  body:not(.home-page) main :is(.xmdsite-item-grid, .list-grid, .items-grid) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .topbar-inner {
    min-height: 70px;
  }

  .nav-shell {
    background: var(--brand-blue);
  }

  .hero-stage,
  .hero-track,
  .hero-slide,
  .hero-media,
  .hero-media-link {
    min-height: 390px;
    height: 390px;
  }

  .hero-title {
    font-size: 34px;
    letter-spacing: 1px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .section {
    padding: 54px 0;
  }

  .product-category-panel {
    padding: 16px;
  }

  .product-category-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .product-category-grid,
  body:not(.home-page) main :is(.xmdsite-item-grid, .list-grid, .items-grid) {
    grid-template-columns: 1fr !important;
  }

  body:not(.home-page) main:is(.container, .main, .xmdsite-main, .page-main, .page-shell, .detail-wrap),
  body:not(.home-page) main:is(.page-main, .page-shell)> :is(.container, .xmdsite-container),
  body:not(.home-page) main:is(.container).main,
  body:not(.home-page) main.xmdsite-container.xmdsite-main,
  body:not(.home-page) main.detail-wrap {
    /* padding-top: 20px !important; */
    padding-bottom: 34px !important;
  }
}

/* Site chrome lock: keep breadcrumbs, category filters, and pagination unified. */
:root {
  --ui-accent: #D32F2F;
  --ui-accent-hover: #D32F2F;
  --ui-accent-soft: #ffebee;
  --ui-muted: #64748b;
  --ui-subtle: #8b9aad;
  --ui-line: #f2d6d6;
  --ui-line-strong: #bdd9eb;
  --ui-surface: #ffffff;
  --ui-surface-soft: #f7fbfd;
  --ui-focus: rgba(211, 47, 47, .24);
  --ui-radius: 8px;
  --ui-breadcrumb-filter-gap: 12px;
  --ui-filter-content-gap: 24px;
}

body:not(.home-page) main:has(:is(.xmdsite-list-section, .list-section, .list-shell, .xmdsite-item-grid, .list-grid, .items-grid, .news-list, .list-card-list)) {
  gap: 0 !important;
  row-gap: 0 !important;
}

body:not(.home-page) main :is(.xmdsite-breadcrumb, nav.breadcrumb, nav[aria-label="面包屑"], .breadcrumb:not(ol), .breadcrumb-pill) {
  display: block !important;
  width: 100% !important;
  margin: 0 0 var(--ui-breadcrumb-filter-gap) !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--ui-muted) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

body:not(.home-page) main :is(.xmdsite-breadcrumb-list, ol.breadcrumb, .breadcrumb-list) {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--ui-muted) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  list-style: none !important;
  white-space: nowrap !important;
}

body:not(.home-page) main :is(.xmdsite-breadcrumb-item, ol.breadcrumb > li, .breadcrumb-list > li) {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  gap: 8px !important;
  min-width: 0 !important;
  color: var(--ui-muted) !important;
}

body:not(.home-page) main :is(.xmdsite-breadcrumb-current-item, ol.breadcrumb > li:last-child, .breadcrumb-list > li:last-child) {
  flex: 1 1 auto !important;
  overflow: hidden !important;
  color: var(--ui-subtle) !important;
}

body:not(.home-page) main :is(.xmdsite-breadcrumb-current, ol.breadcrumb > li:last-child, .breadcrumb-list > li:last-child) {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body:not(.home-page) main :is(.xmdsite-breadcrumb-link, ol.breadcrumb a, .breadcrumb-list a, .breadcrumb-pill) {
  color: var(--ui-muted) !important;
  text-decoration: none !important;
}

body:not(.home-page) main :is(.xmdsite-breadcrumb-link:hover, .xmdsite-breadcrumb-link:focus-visible, ol.breadcrumb a:hover, ol.breadcrumb a:focus-visible, .breadcrumb-list a:hover, .breadcrumb-list a:focus-visible, .breadcrumb-pill:hover, .breadcrumb-pill:focus-visible) {
  color: var(--ui-accent) !important;
  outline: none !important;
}

body:not(.home-page) main :is(.xmdsite-breadcrumb-item + .xmdsite-breadcrumb-item::before, ol.breadcrumb > li + li::before, .breadcrumb-list > li + li::before) {
  margin: 0 !important;
  color: #c6d0dc !important;
  content: "/" !important;
}

body:not(.home-page) main :is(ol.breadcrumb > li:not(:last-child)::after, .breadcrumb-pill::before) {
  display: none !important;
  content: none !important;
}

body:not(.home-page) main :is(.xmdsite-category-nav, .category-nav, .category-wrap, .category-filter, .category-bar) {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 0 var(--ui-filter-content-gap) !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body:not(.home-page) main :is(.xmdsite-category-list, .category-list, .category-tabs) {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  list-style: none !important;
}

body:not(.home-page) main :is(.xmdsite-category-list, .category-list, .category-tabs)>li {
  flex: 0 0 auto !important;
  min-width: 0 !important;
}

body:not(.home-page) main :is(.xmdsite-category-link, .category-link, .side-tab) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 36px !important;
  height: auto !important;
  padding: 0 14px !important;
  overflow: hidden !important;
  border: 1px solid var(--ui-line) !important;
  border-radius: var(--ui-radius) !important;
  background: var(--ui-surface) !important;
  box-shadow: none !important;
  color: #4e6074 !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  line-height: 34px !important;
  text-decoration: none !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  transform: none !important;
  transition: border-color .18s ease, background-color .18s ease, color .18s ease !important;
}

body:not(.home-page) main :is(.xmdsite-category-link-child, .category-link-child) {
  padding-left: 13px !important;
  border-style: solid !important;
  background: var(--ui-surface-soft) !important;
  color: #607287 !important;
}

body:not(.home-page) main :is(.xmdsite-category-link-child::before, .category-link-child::before) {
  display: inline-block !important;
  width: 5px !important;
  height: 5px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  background: currentColor !important;
  content: "" !important;
  opacity: .72 !important;
}

body:not(.home-page) main :is(.xmdsite-category-link::after, .category-link::after) {
  display: none !important;
  content: none !important;
}

body:not(.home-page) main :is(.xmdsite-category-link:hover, .xmdsite-category-link:focus-visible, .category-link:hover, .category-link:focus-visible, .side-tab:hover, .side-tab:focus-visible) {
  border-color: var(--ui-line-strong) !important;
  background: var(--ui-accent-soft) !important;
  color: var(--ui-accent-hover) !important;
  outline: none !important;
}

body:not(.home-page) main :is(.xmdsite-category-link.is-active, .category-link.is-active, .side-tab.is-active, .xmdsite-category-link[aria-current="page"], .category-link[aria-current="page"], .side-tab[aria-current="page"]) {
  border-color: var(--ui-accent) !important;
  background: var(--ui-accent) !important;
  box-shadow: none !important;
  color: #ffffff !important;
}

body:not(.home-page) main :is(.xmdsite-list-section, .list-section, .list-shell, .product-list, .case-list, .news-list, .service-list, .xmdsite-card-grid, .items-grid, .list-grid, .list-card-list, .about-content-panel, .contact-section) {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body:not(.home-page) main :is(.empty-state, .xmdsite-empty-state, .empty-article, .xmdsite-empty-article, .contact-empty) {
  margin-top: 0 !important;
}

body:not(.home-page) main :is(.xmdsite-breadcrumb, nav.breadcrumb, nav[aria-label="面包屑"], .breadcrumb:not(ol), .breadcrumb-pill)+ :is(.xmdsite-category-nav, .category-nav, .category-wrap, .category-filter, .category-bar),
body:not(.home-page) main :is(.xmdsite-category-nav, .category-nav, .category-wrap, .category-filter, .category-bar)+ :is(.xmdsite-list-section, .list-section, .list-shell, .about-content-panel, .contact-section, .empty-state, .xmdsite-empty-state, .empty-article, .xmdsite-empty-article, .contact-empty) {
  margin-top: 0 !important;
}

body:not(.home-page) main:not(:has(:is(.xmdsite-category-nav, .category-nav, .category-wrap, .category-filter, .category-bar))) :is(.xmdsite-breadcrumb, nav.breadcrumb, nav[aria-label="面包屑"], .breadcrumb:not(ol), .breadcrumb-pill) {
  margin-bottom: var(--ui-filter-content-gap) !important;
}

body:not(.home-page) main :is(.pagination-wrap, .xmdsite-pagination) {
  width: 100% !important;
  max-width: 100% !important;
  margin: 18px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body:not(.home-page) main :is(nav.pagination, .xmdsite-pagination, .xmdsite-pagination-actions) {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body:not(.home-page) main .xmdsite-pagination {
  justify-content: space-between !important;
}

body:not(.home-page) main .xmdsite-pagination-actions {
  justify-content: flex-end !important;
}

body:not(.home-page) main :is(.xmdsite-pagination-status, .page-status) {
  margin: 0 6px 0 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--ui-muted) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

body:not(.home-page) main :is(.xmdsite-pagination-link, .page-link, .page-control, .page-prev, .page-next, .page-current, .page-ellipsis) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 40px !important;
  min-height: 38px !important;
  height: 38px !important;
  padding: 0 14px !important;
  border: 1px solid var(--ui-line) !important;
  border-radius: var(--ui-radius) !important;
  background: var(--ui-surface) !important;
  box-shadow: none !important;
  color: #4e6074 !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  line-height: 36px !important;
  text-decoration: none !important;
  transform: none !important;
}

body:not(.home-page) main :is(.page-prev, .page-next, .page-control, .xmdsite-pagination-link) {
  min-width: 72px !important;
}

body:not(.home-page) main :is(.page-current) {
  min-width: 40px !important;
  width: 40px !important;
  padding: 0 !important;
  border-color: var(--ui-accent) !important;
  background: var(--ui-accent) !important;
  color: #ffffff !important;
}

body:not(.home-page) main :is(a.xmdsite-pagination-link:hover, a.xmdsite-pagination-link:focus-visible, a.page-link:hover, a.page-link:focus-visible, a.page-control:hover, a.page-control:focus-visible, a.page-prev:hover, a.page-prev:focus-visible, a.page-next:hover, a.page-next:focus-visible) {
  border-color: var(--ui-line-strong) !important;
  background: var(--ui-accent-soft) !important;
  color: var(--ui-accent-hover) !important;
  outline: none !important;
}

body:not(.home-page) main :is(.page-prev.is-disabled, .page-next.is-disabled, .page-control.is-disabled, .page-link.is-disabled, .xmdsite-pagination-link.is-disabled, [aria-disabled="true"]) {
  border-color: #e7eef5 !important;
  background: #f9fbfd !important;
  color: #a9b5c3 !important;
  cursor: not-allowed !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

body:not(.home-page) main :is(.page-ellipsis) {
  border-color: transparent !important;
  background: transparent !important;
  color: var(--ui-subtle) !important;
}

body:not(.home-page) main :is(.xmdsite-category-link:focus-visible, .category-link:focus-visible, .side-tab:focus-visible, .xmdsite-breadcrumb-link:focus-visible, ol.breadcrumb a:focus-visible, .breadcrumb-list a:focus-visible, .breadcrumb-pill:focus-visible, .page-prev:focus-visible, .page-next:focus-visible, .page-link:focus-visible, .page-control:focus-visible, .xmdsite-pagination-link:focus-visible) {
  outline: 3px solid var(--ui-focus) !important;
  outline-offset: 2px !important;
}

@media (max-width: 760px) {
  body:not(.home-page) main :is(.xmdsite-breadcrumb, nav.breadcrumb, nav[aria-label="面包屑"], .breadcrumb:not(ol), .breadcrumb-pill) {
    margin-bottom: 14px !important;
  }

  body:not(.home-page) main :is(.xmdsite-category-nav, .category-nav, .category-wrap, .category-filter, .category-bar) {
    margin-bottom: 20px !important;
  }

  body:not(.home-page) main :is(.xmdsite-category-list, .category-list, .category-tabs) {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding-bottom: 2px !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body:not(.home-page) main :is(.xmdsite-category-list, .category-list, .category-tabs)::-webkit-scrollbar {
    display: none;
  }

  body:not(.home-page) main :is(.xmdsite-category-link, .category-link, .side-tab) {
    flex: 0 0 auto !important;
    max-width: 48vw !important;
    min-height: 38px !important;
    line-height: 36px !important;
  }

  body:not(.home-page) main :is(nav.pagination, .xmdsite-pagination, .xmdsite-pagination-actions) {
    gap: 8px !important;
  }

  body:not(.home-page) main :is(.page-prev, .page-next, .page-control, .xmdsite-pagination-link) {
    min-width: 68px !important;
    padding: 0 12px !important;
  }

  body:not(.home-page) main :is(.page-current) {
    width: 38px !important;
    min-width: 38px !important;
  }
}

/* Pseudo-elements cannot be grouped inside :is() reliably; keep these explicit. */
body:not(.home-page) main .xmdsite-breadcrumb-item+.xmdsite-breadcrumb-item::before,
body:not(.home-page) main ol.breadcrumb>li+li::before,
body:not(.home-page) main .breadcrumb-list>li+li::before {
  margin: 0 !important;
  color: #c6d0dc !important;
  content: "/" !important;
}

body:not(.home-page) main ol.breadcrumb>li:not(:last-child)::after,
body:not(.home-page) main .breadcrumb-pill::before {
  display: none !important;
  content: none !important;
}

body:not(.home-page) main .xmdsite-category-link-child::before,
body:not(.home-page) main .category-link-child::before {
  display: inline-block !important;
  width: 5px !important;
  height: 5px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  background: currentColor !important;
  content: "" !important;
  opacity: .72 !important;
}

body:not(.home-page) main .xmdsite-category-link::after,
body:not(.home-page) main .category-link::after {
  display: none !important;
  content: none !important;
}

body:not(.home-page) main.contact-main .contact-info-list>.contact-info-item,
body:not(.home-page) main .xmdsite-contact-info-list>.xmdsite-contact-info-item,
body:not(.home-page) main.contact-main .contact-info-list> :is(.contact-info-phone, .contact-info-address),
body:not(.home-page) main .xmdsite-contact-info-list> :is(.xmdsite-contact-info-phone, .xmdsite-contact-info-address) {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 14px !important;
}

body:not(.home-page) main.contact-main .contact-info-list>.contact-info-item .contact-info-label,
body:not(.home-page) main .xmdsite-contact-info-list>.xmdsite-contact-info-item .xmdsite-contact-info-label {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
}

body:not(.home-page) main.contact-main .contact-info-list>.contact-info-item .contact-info-value,
body:not(.home-page) main .xmdsite-contact-info-list>.xmdsite-contact-info-item .xmdsite-contact-info-value {
  min-width: 0 !important;
  margin-top: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

@media (max-width: 380px) {
  .brand-logo {
    max-width: 46vw;
  }

  .header-contact {
    gap: 5px;
  }

  .header-contact-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .header-contact-icon svg {
    width: 16px;
    height: 16px;
  }

  .header-contact-label {
    display: none;
  }

  .header-contact-value {
    font-size: clamp(13px, 4.1vw, 16px);
  }
}

/* Unified industrial detail pages: product, gallery/detail fallback, and event. */
body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) {
  --detail-blue: #D32F2F;
  --detail-blue-dark: #D32F2F;
  --detail-ink: #161616;
  --detail-muted: #525f6f;
  --detail-subtle: #7a8796;
  --detail-line: #dfe6ee;
  --detail-soft: #f4f7fa;
  --detail-surface: #ffffff;
  background: #ffffff !important;
  color: var(--detail-ink) !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page)>.xmdsite-page-hero {
  display: none !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-container {
  width: min(1200px, calc(100% - 48px)) !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-article-head {
  padding: 0 !important;
  border-bottom: 1px solid var(--detail-line) !important;
  background: var(--detail-soft) !important;
  box-shadow: none !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-article-head .xmdsite-container {
  padding: 28px 0 48px !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-breadcrumb {
  min-height: 28px !important;
  margin: 0 0 24px !important;
  color: #6f7b8a !important;
  font-size: 13px !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-breadcrumb-link:hover,
body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-breadcrumb-link:focus-visible {
  color: var(--detail-blue) !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-title-block {
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  gap: 14px !important;
}

body.xmdsite-product-detail-page .xmdsite-head-layout {
  display: grid !important;
  grid-template-columns: minmax(320px, 456px) minmax(0, 1fr) !important;
  gap: 34px !important;
  align-items: stretch !important;
}

body.xmdsite-product-detail-page .xmdsite-head-layout:not(.xmdsite-head-layout-has-cover) {
  grid-template-columns: minmax(0, 1fr) !important;
}

body.xmdsite-product-detail-page .xmdsite-head-cover {
  aspect-ratio: 456 / 260 !important;
  min-height: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #e9eef4 !important;
  box-shadow: none !important;
}

body.xmdsite-product-detail-page .xmdsite-head-cover img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-eyebrow {
  margin: 0 !important;
  color: var(--detail-blue) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-item-title {
  max-width: 880px !important;
  margin: 0 !important;
  color: var(--detail-ink) !important;
  font-size: clamp(34px, 4.2vw, 52px) !important;
  font-weight: 800 !important;
  line-height: 1.14 !important;
  letter-spacing: 0 !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-item-title::after {
  display: block !important;
  width: 48px !important;
  height: 3px !important;
  margin: 18px 0 0 !important;
  border-radius: 0 !important;
  background: var(--detail-blue) !important;
  content: "" !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-item-summary {
  max-width: 760px !important;
  color: var(--detail-muted) !important;
  font-size: 16px !important;
  line-height: 1.85 !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-publish-date, .xmdsite-product-publish-date) {
  display: inline-flex !important;
  align-items: center !important;
  align-self: flex-start !important;
  width: auto !important;
  max-width: max-content !important;
  min-height: 0 !important;
  margin-top: 4px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--detail-blue) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-publish-date, .xmdsite-product-publish-date)::before,
body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-publish-date, .xmdsite-product-publish-date)::after {
  display: none !important;
  content: none !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-main {
  display: block !important;
  /* padding-top: 48px !important; */
  padding-bottom: 44px !important;
}

body:is(.xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-cover {
  aspect-ratio: 1200 / 420 !important;
  max-height: none !important;
  margin: 0 0 32px !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #e9eef4 !important;
  box-shadow: none !important;
}

body:is(.xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-cover img {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-detail-tabs, .xmdsite-product-detail-tabs) {
  gap: 24px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-tabs-list) {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0 !important;
  margin: 0 0 24px !important;
  border-bottom: 1px solid var(--detail-line) !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-tab {
  min-height: 48px !important;
  padding: 0 22px !important;
  border: 0 !important;
  border-bottom: 2px solid transparent !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--detail-muted) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-tab:hover,
body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-tab:focus-visible,
body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-tab.is-active {
  border-bottom-color: var(--detail-blue) !important;
  background: transparent !important;
  color: var(--detail-ink) !important;
  outline: none !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-detail-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 300px !important;
  gap: 48px !important;
  align-items: start !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-article, .xmdsite-product-article) {
  max-width: none !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.xmdsite-event-detail-page .xmdsite-article::before {
  display: block !important;
  margin: 0 0 24px !important;
  padding: 0 0 12px !important;
  border-bottom: 1px solid var(--detail-line) !important;
  color: var(--detail-blue) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  content: "活动详情" !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-article, .xmdsite-product-article) :where(h1, h2, h3, h4) {
  margin: 1.45em 0 .6em !important;
  color: var(--detail-ink) !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-article, .xmdsite-product-article) :where(h1, h2):first-child,
body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-article, .xmdsite-product-article) :where(h3, h4):first-child {
  margin-top: 0 !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-article, .xmdsite-product-article) :where(h1, h2) {
  font-size: clamp(24px, 2.4vw, 32px) !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-article, .xmdsite-product-article) :where(p, li) {
  color: #435266 !important;
  font-size: 16px !important;
  line-height: 1.95 !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-article, .xmdsite-product-article) :where(img, video) {
  max-width: 100% !important;
  height: auto !important;
  margin: 24px 0 !important;
  border-radius: 0 !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-empty-article {
  min-height: 0 !important;
  padding: 28px !important;
  border: 1px solid var(--detail-line) !important;
  border-radius: 0 !important;
  background: var(--detail-soft) !important;
  color: var(--detail-muted) !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-facts, .xmdsite-product-facts) {
  position: sticky !important;
  top: 96px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 0 0 32px !important;
  border: 0 !important;
  border-left: 1px solid var(--detail-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-facts-title, .xmdsite-product-facts .xmdsite-facts-title) {
  display: block !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  border: 0 !important;
  color: var(--detail-blue) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-facts-title::before {
  display: none !important;
  content: none !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-fact-list {
  display: grid !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-fact-item {
  margin: 0 0 18px !important;
  padding: 0 0 18px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--detail-line) !important;
  background: transparent !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-fact-item:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-fact-label {
  color: var(--detail-blue) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-fact-value {
  margin: 10px 0 0 !important;
  color: var(--detail-muted) !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-product-gallery, .xmdsite-gallery-grid) {
  margin-top: 44px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.xmdsite-product-detail-page .xmdsite-product-gallery-title {
  margin: 0 0 22px !important;
  color: var(--detail-ink) !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

body.xmdsite-product-detail-page .xmdsite-product-gallery-title::before {
  width: 36px !important;
  height: 3px !important;
  border-radius: 0 !important;
  background: var(--detail-blue) !important;
}

body.xmdsite-product-detail-page .xmdsite-product-gallery-frame,
body:is(.xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-gallery-grid {
  border: 1px solid var(--detail-line) !important;
  background: #ffffff !important;
}

body.xmdsite-product-detail-page .xmdsite-product-gallery-frame {
  padding: 16px !important;
  border-radius: 0 !important;
}

body:is(.xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  padding: 16px !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-gallery-trigger {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #eef3f7 !important;
  cursor: pointer !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-gallery-image {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
  transition: transform .24s ease !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-gallery-trigger:hover .xmdsite-gallery-image,
body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-gallery-trigger:focus-visible .xmdsite-gallery-image {
  transform: scale(1.035) !important;
}

body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-adjacent-nav {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 12px !important;
  margin: 36px 0 0 !important;
  padding: 0 !important;
}

@media (max-width: 960px) {

  body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-detail-grid,
  body.xmdsite-product-detail-page .xmdsite-head-layout,
  body.xmdsite-product-detail-page .xmdsite-head-layout.xmdsite-head-layout-has-cover {
    grid-template-columns: 1fr !important;
  }

  body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-facts, .xmdsite-product-facts) {
    position: static !important;
    padding: 28px 0 0 !important;
    border-left: 0 !important;
    border-top: 1px solid var(--detail-line) !important;
  }

  body:is(.xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-container {
    width: min(100% - 28px, 1200px) !important;
  }

  body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-article-head .xmdsite-container {
    padding: 20px 0 34px !important;
  }

  body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-item-title {
    font-size: 30px !important;
  }

  body:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-main {
    /* padding-top: 34px !important; */
  }

  body:is(.xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-cover {
    aspect-ratio: 16 / 10 !important;
  }

  body:is(.xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-gallery-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Final inner-page banner restore. */
body:not(.home-page)> :is(.page-hero, .xmdsite-page-hero) {
  display: block !important;
  width: 100% !important;
  height: 250px !important;
  min-height: 250px !important;
  max-height: 250px !important;
  overflow: hidden !important;
  background: #D32F2F !important;
}

body:not(.home-page)> :is(.page-hero, .xmdsite-page-hero) :is(.hero-media, .xmdsite-hero-media, swiper-container, swiper-slide, .hero-slide, .xmdsite-hero-slide, .hero-image-item, .xmdsite-hero-image-item, .hero-image-link, .xmdsite-hero-image-link) {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
}

body:not(.home-page)> :is(.page-hero, .xmdsite-page-hero) :is(.hero-media-content, .xmdsite-hero-media-content) {
  display: block !important;
  width: 100% !important;
  height: 250px !important;
  min-height: 250px !important;
  max-height: 250px !important;
  object-fit: cover !important;
  object-position: center !important;
}

body:not(.home-page)> :is(.page-hero, .xmdsite-page-hero) :is(.hero-file, .xmdsite-hero-file) {
  display: grid !important;
  width: 100% !important;
  height: 250px !important;
  min-height: 250px !important;
  max-height: 250px !important;
  place-items: center !important;
  color: #fff !important;
  background: #D32F2F !important;
}

body:not(.home-page)> :is(.page-hero, .xmdsite-page-hero) :is(.hero-titlebar, .xmdsite-page-hero-content) {
  display: none !important;
}

/* Keep featured product list cards consistent with the gallery list radius. */
body:not(.home-page) main :is(.xmdsite-item-card-link, .product-card) {
  border-radius: 4px !important;
}

body:not(.home-page) main :is(.xmdsite-card-media, .product-media) {
  border-radius: 4px 4px 0 0 !important;
}

body:not(.home-page) main :is(.xmdsite-card-media img, .product-media img, .xmdsite-card-placeholder, .product-media-empty) {
  border-radius: inherit !important;
}

/* Final detail-page polish for product, gallery, and event detail templates. */
html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) {
  --detail-blue: #D32F2F;
  --detail-blue-dark: #D32F2F;
  --detail-ink: #172033;
  --detail-text: #3f4d5f;
  --detail-muted: #667085;
  --detail-soft: #f6f8fb;
  --detail-line: #dce4ee;
  --detail-line-soft: #e8eef5;
  --detail-media: #edf2f7;
  background: #ffffff !important;
  color: var(--detail-ink) !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page)>.xmdsite-page-hero {
  display: none !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-container,
html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) main.xmdsite-main {
  width: min(1200px, calc(100% - 48px)) !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-article-head {
  padding: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--detail-line) !important;
  background: var(--detail-soft) !important;
  box-shadow: none !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-article-head .xmdsite-container {
  padding: 24px 0 40px !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-breadcrumb {
  min-height: 24px !important;
  margin: 0 0 20px !important;
  padding: 0 !important;
  color: #6d7787 !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-title-block {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 12px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-eyebrow {
  margin: 0 !important;
  color: var(--detail-blue) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-item-title {
  max-width: 880px !important;
  margin: 0 !important;
  color: var(--detail-ink) !important;
  font-size: clamp(28px, 3.4vw, 42px) !important;
  font-weight: 750 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-item-title::after {
  display: none !important;
  content: none !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-item-summary {
  max-width: 760px !important;
  margin: 0 !important;
  color: var(--detail-muted) !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-publish-date, .xmdsite-product-publish-date) {
  display: inline-flex !important;
  align-items: center !important;
  align-self: flex-start !important;
  width: auto !important;
  max-width: max-content !important;
  min-height: 0 !important;
  margin: 2px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--detail-blue) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-publish-date, .xmdsite-product-publish-date)::before,
html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-publish-date, .xmdsite-product-publish-date)::after {
  display: none !important;
  content: none !important;
}

html body.xmdsite-page.companyhome2-page.xmdsite-product-detail-page .xmdsite-head-layout,
html body.xmdsite-page.companyhome2-page.xmdsite-product-detail-page .xmdsite-head-layout.xmdsite-head-layout-has-cover {
  display: grid !important;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr) !important;
  gap: 32px !important;
  align-items: center !important;
  padding-top: 0 !important;
}

html body.xmdsite-page.companyhome2-page.xmdsite-product-detail-page .xmdsite-head-layout:not(.xmdsite-head-layout-has-cover) {
  grid-template-columns: minmax(0, 1fr) !important;
}

html body.xmdsite-page.companyhome2-page.xmdsite-product-detail-page .xmdsite-head-cover {
  width: 100% !important;
  min-height: 0 !important;
  aspect-ratio: 420 / 260 !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 4px !important;
  background: var(--detail-media) !important;
  box-shadow: none !important;
}

html body.xmdsite-page.companyhome2-page.xmdsite-product-detail-page .xmdsite-head-cover img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-cover {
  width: 100% !important;
  aspect-ratio: 1200 / 420 !important;
  max-height: none !important;
  margin: 0 0 32px !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 4px !important;
  background: var(--detail-media) !important;
  box-shadow: none !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-cover img {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) main.xmdsite-main {
  display: block !important;
  gap: 0 !important;
  /* padding-top: 40px !important; */
  padding-bottom: 56px !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-detail-tabs, .xmdsite-product-detail-tabs) {
  display: block !important;
  gap: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-tab-panel {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-tabs-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 0 28px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-tab {
  min-height: 40px !important;
  padding: 0 18px !important;
  border: 1px solid var(--detail-line) !important;
  border-radius: 4px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  color: var(--detail-muted) !important;
  cursor: pointer !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  line-height: 1.4 !important;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-tab:hover,
html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-tab:focus-visible,
html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-tab.is-active {
  border-color: var(--detail-blue) !important;
  background: var(--detail-blue) !important;
  color: #ffffff !important;
  outline: none !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-detail-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 304px !important;
  gap: 44px !important;
  align-items: start !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-article, .xmdsite-product-article) {
  max-width: none !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

html body.xmdsite-page.companyhome2-page.xmdsite-event-detail-page .xmdsite-article::before {
  display: none !important;
  content: none !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-article, .xmdsite-product-article)> :first-child {
  margin-top: 0 !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-article, .xmdsite-product-article) :where(h1, h2, h3, h4) {
  margin: 1.45em 0 .6em !important;
  color: var(--detail-ink) !important;
  font-weight: 750 !important;
  line-height: 1.35 !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-article, .xmdsite-product-article) :where(h1, h2) {
  font-size: clamp(22px, 2.1vw, 28px) !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-article, .xmdsite-product-article) :where(h3) {
  font-size: 21px !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-article, .xmdsite-product-article) :where(p, li) {
  color: var(--detail-text) !important;
  font-size: 16px !important;
  line-height: 1.9 !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-article, .xmdsite-product-article) :where(p:empty) {
  display: none !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-article, .xmdsite-product-article) :where(img, video) {
  max-width: 100% !important;
  height: auto !important;
  margin: 24px 0 !important;
  border-radius: 4px !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-empty-article {
  min-height: 0 !important;
  padding: 24px !important;
  border: 1px solid var(--detail-line-soft) !important;
  border-radius: 4px !important;
  background: #f8fafc !important;
  color: var(--detail-muted) !important;
  text-align: left !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-facts, .xmdsite-product-facts) {
  position: sticky !important;
  top: 96px !important;
  align-self: start !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 2px 0 2px 28px !important;
  border: 0 !important;
  border-left: 1px solid var(--detail-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-facts-title, .xmdsite-product-facts .xmdsite-facts-title) {
  display: block !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  border: 0 !important;
  color: var(--detail-blue) !important;
  font-size: 15px !important;
  font-weight: 750 !important;
  line-height: 1.4 !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-facts-title::before {
  display: none !important;
  content: none !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-fact-list {
  display: grid !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-fact-item {
  margin: 0 0 16px !important;
  padding: 0 0 16px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--detail-line-soft) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-fact-item:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-fact-label {
  color: #6b7788 !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  line-height: 1.45 !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-fact-value {
  margin: 6px 0 0 !important;
  color: var(--detail-ink) !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

html body.xmdsite-page.companyhome2-page.xmdsite-product-detail-page .xmdsite-product-gallery {
  margin-top: 44px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body.xmdsite-page.companyhome2-page.xmdsite-product-detail-page .xmdsite-product-gallery-title {
  margin: 0 0 16px !important;
  padding: 0 !important;
  color: var(--detail-ink) !important;
  font-size: 22px !important;
  font-weight: 750 !important;
  line-height: 1.35 !important;
}

html body.xmdsite-page.companyhome2-page.xmdsite-product-detail-page .xmdsite-product-gallery-title::before {
  display: none !important;
  content: none !important;
}

html body.xmdsite-page.companyhome2-page.xmdsite-product-detail-page .xmdsite-product-gallery-frame,
html body.xmdsite-page.companyhome2-page:is(.xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-gallery-grid {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body.xmdsite-page.companyhome2-page.xmdsite-product-detail-page .xmdsite-product-gallery-slider {
  width: 100% !important;
}

html body.xmdsite-page.companyhome2-page.xmdsite-product-detail-page .xmdsite-product-gallery-slider::part(button-prev),
html body.xmdsite-page.companyhome2-page.xmdsite-product-detail-page .xmdsite-product-gallery-slider::part(button-next) {
  width: 40px !important;
  height: 40px !important;
  border-radius: 4px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  color: var(--detail-blue) !important;
  box-shadow: 0 10px 24px rgba(15, 35, 58, 0.12) !important;
}

html body.xmdsite-page.companyhome2-page.xmdsite-product-detail-page .xmdsite-product-gallery-slider::part(pagination) {
  bottom: 12px !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin-top: 0 !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-gallery-trigger {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 4px !important;
  background: var(--detail-media) !important;
  box-shadow: none !important;
  cursor: zoom-in !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-gallery-image {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 4 / 3 !important;
  border-radius: inherit !important;
  object-fit: cover !important;
  transition: transform 220ms ease !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-gallery-trigger:hover .xmdsite-gallery-image,
html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-gallery-trigger:focus-visible .xmdsite-gallery-image {
  transform: scale(1.025) !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-gallery-trigger:focus-visible {
  outline: 3px solid rgba(211, 47, 47, 0.18) !important;
  outline-offset: 3px !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) nav.xmdsite-adjacent-nav {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin: 40px 0 0 !important;
  padding: 0 !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) nav.xmdsite-adjacent-nav .xmdsite-adjacent-card {
  position: relative !important;
  overflow: hidden !important;
  display: grid !important;
  gap: 6px !important;
  align-content: center !important;
  min-height: 78px !important;
  padding: 16px 18px !important;
  border: 1px solid var(--detail-line-soft) !important;
  border-radius: 4px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  color: var(--detail-ink) !important;
  text-align: left !important;
  text-decoration: none !important;
  transform: none !important;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) nav.xmdsite-adjacent-nav .xmdsite-adjacent-card::before,
html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) nav.xmdsite-adjacent-nav .xmdsite-adjacent-card::after {
  display: none !important;
  content: none !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) nav.xmdsite-adjacent-nav .xmdsite-adjacent-card-next {
  text-align: right !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) nav.xmdsite-adjacent-nav .xmdsite-adjacent-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 0 6px !important;
  color: var(--detail-blue) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) nav.xmdsite-adjacent-nav .xmdsite-adjacent-card-next .xmdsite-adjacent-label {
  justify-content: flex-end !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) nav.xmdsite-adjacent-nav .xmdsite-adjacent-card-previous .xmdsite-adjacent-label::before,
html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) nav.xmdsite-adjacent-nav .xmdsite-adjacent-card-next .xmdsite-adjacent-label::after {
  display: inline-grid !important;
  place-items: center !important;
  width: 22px !important;
  height: 22px !important;
  border: 1px solid rgba(211, 47, 47, 0.2) !important;
  border-radius: 4px !important;
  background: #fff8f8 !important;
  color: var(--detail-blue) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) nav.xmdsite-adjacent-nav .xmdsite-adjacent-card-previous .xmdsite-adjacent-label::before {
  content: "‹" !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) nav.xmdsite-adjacent-nav .xmdsite-adjacent-card-next .xmdsite-adjacent-label::after {
  content: "›" !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) nav.xmdsite-adjacent-nav .xmdsite-adjacent-title {
  display: block !important;
  color: var(--detail-text) !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
  font-weight: 650 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) nav.xmdsite-adjacent-nav .xmdsite-adjacent-card:hover,
html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) nav.xmdsite-adjacent-nav .xmdsite-adjacent-card:focus-visible {
  border-color: rgba(211, 47, 47, 0.36) !important;
  background: #f8fbfe !important;
  transform: none !important;
  outline: none !important;
}

html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) nav.xmdsite-adjacent-nav .xmdsite-adjacent-card.is-disabled {
  pointer-events: none !important;
  opacity: .58 !important;
}

@media (max-width: 960px) {

  html body.xmdsite-page.companyhome2-page.xmdsite-product-detail-page .xmdsite-head-layout,
  html body.xmdsite-page.companyhome2-page.xmdsite-product-detail-page .xmdsite-head-layout.xmdsite-head-layout-has-cover,
  html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-detail-grid {
    grid-template-columns: 1fr !important;
  }

  html body.xmdsite-page.companyhome2-page.xmdsite-product-detail-page .xmdsite-head-layout {
    gap: 24px !important;
  }

  html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-facts, .xmdsite-product-facts) {
    position: static !important;
    padding: 24px 0 0 !important;
    border-left: 0 !important;
    border-top: 1px solid var(--detail-line) !important;
  }

  html body.xmdsite-page.companyhome2-page:is(.xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {

  html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-container,
  html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) main.xmdsite-main {
    width: min(100% - 28px, 1200px) !important;
  }

  html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-article-head .xmdsite-container {
    padding: 20px 0 32px !important;
  }

  html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-breadcrumb {
    margin-bottom: 16px !important;
  }

  html body.xmdsite-page.companyhome2-page.xmdsite-product-detail-page .xmdsite-head-cover,
  html body.xmdsite-page.companyhome2-page:is(.xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-cover {
    aspect-ratio: 16 / 10 !important;
  }

  html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-item-title {
    font-size: 26px !important;
    line-height: 1.25 !important;
  }

  html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-item-summary {
    font-size: 14px !important;
    line-height: 1.72 !important;
  }

  html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) main.xmdsite-main {
    /* padding-top: 28px !important; */
    padding-bottom: 36px !important;
  }

  html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-tabs-list {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    margin-bottom: 24px !important;
    padding-bottom: 2px !important;
  }

  html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-tab {
    flex: 0 0 auto !important;
    min-height: 38px !important;
    padding: 0 15px !important;
    font-size: 13px !important;
  }

  html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-detail-grid {
    gap: 28px !important;
  }

  html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) :is(.xmdsite-article, .xmdsite-product-article) :where(p, li) {
    font-size: 15px !important;
    line-height: 1.82 !important;
  }

  html body.xmdsite-page.companyhome2-page:is(.xmdsite-gallery-detail-page, .xmdsite-event-detail-page) .xmdsite-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  html body.xmdsite-page.companyhome2-page:is(.xmdsite-product-detail-page, .xmdsite-gallery-detail-page, .xmdsite-event-detail-page) nav.xmdsite-adjacent-nav {
    grid-template-columns: 1fr !important;
    margin-top: 32px !important;
  }
}

/* Final unified list pagination spacing. */
body:not(.home-page) main:has(> .pagination-wrap),
body:not(.home-page) main:has(.pagination-wrap) {
  padding-bottom: 0 !important;
}

body:not(.home-page) main .pagination-wrap {
  width: 100% !important;
  max-width: 100% !important;
  margin: 30px 0 0 !important;
  padding: 0 0 30px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body:not(.home-page) main .pagination-wrap>nav.pagination {
  margin: 0 auto !important;
  padding: 0 !important;
}

body:not(.home-page) main>nav.pagination {
  margin: 30px 0 0 !important;
  padding: 0 0 30px !important;
}

body:not(.home-page) main>.xmdsite-pagination,
body:not(.home-page) main .xmdsite-pagination {
  margin: 30px 0 0 !important;
  padding: 0 0 30px !important;
  border-top: 0 !important;
}

/* Inline styles moved from templates to reduce HTML payload. */
/* Moved from home.html. */
:root {
  --brand-red: #D32F2F;
  --brand-red-dark: #D32F2F;
  --brand-blue: #D32F2F;
  --brand-blue-dark: #D32F2F;
  --brand-yellow: #fff28a;
  --brand-orange: #ff824c;
  --brand-dark: #404d5e;
  --section-blue-gray: #ebf0fa;
  --ink: #222222;
  --muted: #777777;
  --container: 1200px;
  --home-content: 1400px;
  --home-copy: 1400px;
}

body {
  background: #fff;
  color: #222;
}

.container {
  width: min(var(--container), calc(100% - 56px));
}

.site-header {
  box-shadow: none;
  background: #fff;
}

.site-notice {
  display: none;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: #8a7a00;
  background: #fff28a;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.topbar-inner {
  min-height: 90px;
  max-width: 1200px;
}

.brand {
  gap: 10px;
}

.brand-logo {
  max-height: 74px;
  width: auto;
}

.brand-emblem {
  width: 48px;
  height: 48px;
  color: #fff;
  background:
    linear-gradient(#fff 0 0) center/26px 8px no-repeat,
    linear-gradient(#fff 0 0) center/8px 26px no-repeat,
    conic-gradient(from 0deg, #ff8a3d 0 25%, #1eabd9 0 50%, #ff8a3d 0 75%, #1eabd9 0);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .45);
  font-size: 0;
}

.brand-name {
  color: #D32F2F;
  font-size: 27px;
  font-weight: 900;
  max-width: 520px;
}

.brand-subname {
  color: #D32F2F;
  font-size: 12px;
  text-transform: none;
}

.header-contact {
  color: #D32F2F;
}

.header-contact-icon {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  border-radius: 0;
  color: #D32F2F;
  background: transparent;
  box-shadow: none;
}

.header-contact-icon svg {
  display: block;
  width: 42px;
  height: 42px;
  fill: currentColor;
  stroke: none;
}

.header-contact-body {
  padding-left: 10px;
  border-left: 1px solid #D32F2F;
}

.header-contact-label {
  color: #516d7c;
}

.header-contact-value {
  color: #D32F2F;
  font-size: 25px;
}

.nav-shell {
  background: #D32F2F;
  box-shadow: none;
}

.nav-inner {
  min-height: 50px;
}

.nav-list {
  justify-content: center;
}

.nav-item {
  box-sizing: border-box;
  flex: 0 0 128px;
  width: 128px;
  min-width: 128px;
}

.nav-link {
  box-sizing: border-box;
  width: 100%;
  min-height: 50px;
  font-size: 14px;
  font-weight: 700;
  padding: 0 14px;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #D32F2F;
  background: #fff;
  box-shadow: none;
}

.nav-item.is-active>.nav-link {
  color: #D32F2F;
  background: #fff;
  box-shadow: none;
}

.nav-list>.nav-item>.nav-sublist {
  width: 100%;
  left: 0;
  min-width: 128px;
  transform: translateY(8px);
  border: 0;
  box-shadow: 0 14px 26px rgba(0, 0, 0, .08);
}

.nav-item:hover>.nav-sublist,
.nav-item:focus-within>.nav-sublist {
  transform: translateY(0);
}

.nav-sublist .nav-link {
  min-height: 40px;
  justify-content: center;
  color: #4f4f4f;
  font-weight: 400;
  text-align: center;
}

.nav-sublist .nav-link:hover,
.nav-sublist .nav-link:focus-visible {
  color: #D32F2F;
  background: #f4f8fb;
}

.hero {
  background: #f7fbfd;
  overflow: visible;
}

.hero-stage {
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.hero-stage.is-dragging {
  cursor: grabbing;
}

.hero-stage,
.hero-track,
.hero-slide,
.hero-media-link {
  min-height: 700px;
}

.hero-media {
  height: 700px;
  object-fit: cover;
}

.hero-media {
  -webkit-user-drag: none;
  user-select: none;
}

.hero-fallback {
  min-height: 700px;
  color: transparent;
  background:
    radial-gradient(ellipse at 23% 28%, rgba(17, 38, 120, .72) 0 2%, transparent 10%),
    radial-gradient(ellipse at 66% 53%, rgba(20, 129, 148, .85) 0 3%, transparent 7%),
    linear-gradient(105deg, transparent 0 38%, rgba(2, 115, 129, .72) 38.4% 41.2%, transparent 41.8%),
    linear-gradient(18deg, transparent 0 46%, rgba(45, 138, 151, .76) 46.2% 48.1%, transparent 48.6%),
    repeating-linear-gradient(84deg, rgba(60, 90, 120, .08) 0 2px, transparent 2px 42px),
    linear-gradient(115deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .55) 42%, rgba(245, 250, 252, .86) 100%),
    linear-gradient(180deg, #eef4f7, #ffffff);
  filter: none;
  font-size: 0;
}

.hero-fallback::before {
  left: 4%;
  right: auto;
  bottom: 74px;
  width: 58%;
  height: 220px;
  opacity: .88;
  background:
    radial-gradient(ellipse at 28% 64%, transparent 0 12%, rgba(54, 140, 151, .82) 13% 15%, transparent 16%),
    linear-gradient(8deg, transparent 0 30%, rgba(54, 140, 151, .86) 30.5% 32.4%, transparent 33%),
    radial-gradient(ellipse at 16% 72%, rgba(230, 230, 230, .95) 0 9%, transparent 10%);
  filter: blur(.2px);
  transform: none;
}

.hero-fallback::after {
  left: auto;
  right: 0;
  bottom: 0;
  width: 53%;
  height: 100%;
  opacity: .45;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5)), repeating-linear-gradient(100deg, rgba(80, 110, 140, .16) 0 2px, transparent 2px 38px);
  box-shadow: none;
  clip-path: none;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .04));
  align-items: center;
}

.hero-content {
  width: min(var(--home-content), calc(100% - 56px));
  max-width: var(--home-content);
  color: #222;
  text-align: center;
  padding-top: 70px;
  transform: translateX(8.5%);
}

.hero-kicker {
  display: none;
}

.hero-title {
  color: #050505;
  font-family: Arial, "Microsoft YaHei", sans-serif;
  font-size: clamp(30px, 2.7vw, 38px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 1px;
  text-shadow: none;
}

.hero-desc {
  max-width: var(--home-copy);
  margin: 36px auto 0;
  color: #666;
  font-size: 16px;
  line-height: 1.9;
  text-shadow: none;
}

.hero-actions {
  margin-top: 56px;
}

.hero-actions,
.hero .btn-primary {
  position: relative;
  z-index: 12;
}

.hero .btn-primary {
  min-width: 160px;
  min-height: 40px;
  border-radius: 4px;
  background: var(--brand-orange);
  font-size: 18px;
  font-weight: 400;
}

.hero .btn-primary:hover {
  background: #f06e34;
}

.hero.is-single .hero-dots {
  display: none;
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 104px;
  z-index: 9;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dot {
  width: 40px;
  height: 9px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .22);
  cursor: pointer;
  transition: width .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.hero-dot.is-active {
  width: 62px;
  background: #D32F2F;
  box-shadow: 0 6px 18px rgba(7, 112, 186, .35);
}

main {
  background: #fff;
}

.quick-panel {
  z-index: 5;
  margin-top: -64px;
  padding: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0 64px, #fff 64px 100%);
}

.quick-panel .quick-grid {
  width: 100%;
  max-width: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.quick-item {
  position: relative;
  min-height: 128px;
  overflow: hidden;
  padding: 24px clamp(28px, 3vw, 52px);
  color: #fff;
  border: 0;
  box-shadow: none;
}

.quick-item:nth-child(1) {
  background: rgba(1, 134, 213, .94);
}

.quick-item:nth-child(2) {
  background: rgba(7, 112, 186, .94);
}

.quick-item:nth-child(3) {
  background: rgba(211, 47, 47, .92);
}

.quick-item::after {
  content: attr(data-mark);
  position: absolute;
  right: -8px;
  bottom: -34px;
  color: rgba(255, 255, 255, .14);
  font-size: 150px;
  line-height: 1;
  font-weight: 900;
}

.quick-item::before {
  content: none;
  display: none;
}

.quick-icon {
  display: none;
}

.quick-item strong {
  position: relative;
  z-index: 1;
  margin-top: 0;
  color: #fff;
  font-size: 18px;
}

.quick-item p {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: #fff;
  font-size: 13px;
  line-height: 1.75;
}

.quick-item:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 16px 28px rgba(0, 94, 160, .18);
}

.section-eyebrow {
  color: #D32F2F;
}

.section-title,
.about-card .section-title {
  color: #D32F2F;
}

.section-more,
.btn-primary {
  background: #D32F2F;
}

.section-more:hover,
.btn-primary:hover {
  background: #D32F2F;
}

.contact-cta {
  background: var(--brand-orange);
}

.product-card:hover .product-title {
  color: #D32F2F;
}

.quick-icon {
  color: #D32F2F;
}

.about-card,
.panel {
  border-top-color: #D32F2F;
}

.footer-mark {
  background: #D32F2F;
}

.product-section {
  position: relative;
  overflow: hidden;
  padding-top: 58px;
  background: var(--section-blue-gray);
}

.product-section::before {
  content: none;
}

.product-section>.container {
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-notice {
    font-size: 11px;
  }

  .hero-stage,
  .hero-track,
  .hero-slide,
  .hero-media,
  .hero-media-link {
    min-height: 500px;
    height: 500px;
  }

  .hero-content {
    padding-top: 38px;
    transform: none;
  }

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

  .hero-desc {
    margin-top: 20px;
    font-size: 14px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-dots {
    bottom: 18px;
  }

  .quick-panel {
    margin-top: 0;
    padding: 14px 0 0;
    background: #fff;
  }

  .quick-panel .quick-grid {
    grid-template-columns: 1fr;
  }

  .quick-item {
    min-height: 148px;
  }

  .quick-item::after {
    flex-basis: 92px;
    width: 92px;
    font-size: 108px;
  }

  .quick-item strong {
    font-size: 20px;
  }
}

.product-section {
  padding: 60px 0 46px;
  background: #fff;
}

.product-section .container {
  position: relative;
}

.home-product-head {
  margin-bottom: 46px;
  text-align: center;
}

.home-product-title {
  margin: 0;
  color: #D32F2F;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0;
}

.home-product-title::after {
  content: "";
  display: block;
  width: 92px;
  height: 1px;
  margin: 7px auto 0;
  background: #D32F2F;
}

.home-product-subtitle {
  margin: 8px 0 0;
  color: #D32F2F;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.home-product-carousel {
  position: relative;
  min-height: 178px;
  padding: 0 72px;
}

.home-product-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.home-product-viewport::-webkit-scrollbar {
  display: none;
}

.home-product-track {
  display: flex;
  align-items: flex-start;
  gap: clamp(28px, 4vw, 58px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-product-slide {
  flex: 0 0 132px;
  min-width: 0;
}

.home-product-card {
  display: block;
  min-width: 0;
  color: #666;
  text-align: center;
  text-decoration: none;
  outline: none;
}

.home-product-thumb {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #eef5f9;
}

.home-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .26s ease;
}

.home-product-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 12px;
  color: #D32F2F;
  background: linear-gradient(135deg, #ffebee, #cde9f8);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.home-product-name {
  display: block;
  width: 100%;
  margin-top: 26px;
  overflow: hidden;
  color: #666;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .2s ease;
}

.home-product-card:hover .home-product-thumb img,
.home-product-card:focus-visible .home-product-thumb img {
  transform: scale(1.04);
}

.home-product-card:hover .home-product-name,
.home-product-card:focus-visible .home-product-name {
  color: #D32F2F;
}

.home-product-card:focus-visible .home-product-thumb {
  outline: 3px solid rgba(7, 112, 186, .28);
  outline-offset: 3px;
}

.home-product-control {
  position: absolute;
  top: 72px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #dce4ec;
  border-radius: 0;
  color: #111827;
  background: #fff;
  cursor: pointer;
  box-shadow: none;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease, opacity .2s ease;
}

.home-product-control::before {
  content: none;
  display: none;
}

.home-product-control svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: currentColor;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.home-product-control:hover,
.home-product-control:focus-visible {
  color: #D32F2F;
  border-color: #D32F2F;
  background: #f7fbff;
  outline: none;
}

.home-product-control:hover::before,
.home-product-control:focus-visible::before {
  content: none;
}

.home-product-control:disabled {
  opacity: .36;
  cursor: not-allowed;
}

.home-product-prev {
  left: 8px;
}

.home-product-prev svg {
  transform: rotate(180deg);
}

.home-product-next {
  right: 8px;
}

.home-product-empty {
  margin: 0;
  padding: 34px 20px;
  color: #777;
  background: #f8fbfd;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .home-product-carousel {
    padding: 0 56px;
  }

  .home-product-track {
    gap: 28px;
  }
}

@media (max-width: 760px) {
  .product-section {
    padding: 44px 0 38px;
  }

  .home-product-head {
    margin-bottom: 28px;
  }

  .home-product-carousel {
    --home-product-mobile-gap: 12px;
    min-height: 178px;
    padding: 0 40px;
  }

  .home-product-viewport {
    scroll-snap-type: x mandatory;
  }

  .home-product-track {
    gap: var(--home-product-mobile-gap);
  }

  .home-product-slide {
    width: calc((100% - var(--home-product-mobile-gap)) / 2);
    flex: 0 0 calc((100% - var(--home-product-mobile-gap)) / 2);
    scroll-snap-align: start;
  }

  .home-product-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .home-product-name {
    margin-top: 12px;
    font-size: 13px;
  }

  .home-product-control {
    top: clamp(52px, 16vw, 66px);
  }
}

/* Mid-page industrial layout inspired by the provided reference. */
main {
  --home-line: #e4e9ef;
  --home-blue: #D32F2F;
  --home-ink: #151a22;
  --home-muted: #596674;
  background: #fff;
}

main .section {
  padding: 78px 0;
  border-top: 1px solid var(--home-line);
  background: #fff;
}

main .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  color: #26384c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
}

main .section-eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--home-blue);
}

main .section-title,
main .home-product-title {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

main .section-title::after,
main .home-product-title::after {
  display: none;
  content: none;
}

main .section-desc {
  max-width: var(--home-copy);
  margin-top: 18px;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.9;
}

.quick-panel {
  position: relative;
  z-index: 5;
  margin: -66px 0 0;
  padding: 0 0 34px;
  border-top: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0 48px, #fff 48px 100%);
}

.quick-panel .quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--home-content), calc(100% - 56px));
  max-width: none;
  gap: 18px;
  margin: 0 auto;
  border-left: 0;
}

.quick-item,
.quick-item:nth-child(1),
.quick-item:nth-child(2),
.quick-item:nth-child(3) {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: 16px;
  min-height: 146px;
  overflow: hidden;
  padding: 24px 24px 22px;
  border: 1px solid rgba(7, 112, 186, .14);
  border-radius: 8px;
  color: var(--home-ink);
  background:
    linear-gradient(135deg, rgba(7, 112, 186, .08), rgba(255, 255, 255, .96) 48%, #fff 100%);
  box-shadow: 0 18px 42px rgba(18, 58, 82, .12);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.quick-item:nth-child(1) {
  background:
    linear-gradient(135deg, rgba(7, 112, 186, .12), rgba(255, 255, 255, .97) 52%, #fff 100%);
}

.quick-item:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(7, 112, 186, .1), rgba(247, 251, 255, .98) 52%, #fff 100%);
}

.quick-item:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(7, 112, 186, .08), rgba(255, 255, 255, .97) 52%, #f7fbff 100%);
}

.quick-item::after {
  content: attr(data-mark);
  position: absolute;
  right: 14px;
  bottom: -38px;
  z-index: -1;
  color: rgba(7, 112, 186, .075);
  font-size: 148px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
}

.quick-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: #D32F2F;
  box-shadow: 0 12px 24px rgba(7, 112, 186, .24);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.quick-item>strong,
.quick-item>p {
  grid-column: 2;
}

.quick-item strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 2px 0 8px;
  color: var(--home-ink);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
}

.quick-item p {
  position: relative;
  z-index: 1;
  max-width: var(--home-copy);
  margin-top: 0;
  color: #526273;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
}

.quick-item:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 112, 186, .32);
  box-shadow: 0 24px 54px rgba(18, 58, 82, .16);
}

main .category-section {
  padding: 38px 0 44px;
  border-top: 0;
  background: #fff;
}

.category-panel {
  width: min(var(--home-content), calc(100% - 56px));
  max-width: none;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: #fff;
}

.category-head,
.home-product-head,
.about-head,
.case-showcase-head,
.news-section-head,
.partners-head {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 0 66px;
  text-align: center;
}

.home-product-head::before,
.about-head::before,
.news-section-head::before,
.partners-head::before,
.case-showcase-head::before {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  color: rgba(7, 112, 186, .06);
  font-size: clamp(72px, 12vw, 168px);
  line-height: .8;
  font-weight: 900;
  letter-spacing: 8px;
  transform: translate(-50%, -55%);
  white-space: nowrap;
  pointer-events: none;
}

.home-product-head::before {
  content: "PRODUCT";
}

.about-head::before {
  content: "ABOUT";
}

.news-section-head::before {
  content: "NEWS";
}

.partners-head::before {
  content: "PARTNER";
}

.category-title,
main .home-product-title,
.about-title,
.case-showcase-title,
.news-section-title,
.partners-title {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(30px, 2.7vw, 40px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 6px;
}

.category-title::after,
main .home-product-title::after,
.about-title::after,
.case-showcase-title::after,
.news-section-title::after,
.partners-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 12px auto 0;
  background: var(--home-blue);
}

.category-subtitle,
main .home-product-subtitle,
.about-subtitle,
.case-showcase-subtitle,
.news-section-subtitle,
.partners-subtitle {
  display: block;
  margin: 9px 0 0;
  color: #5b6470;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 400;
  text-transform: uppercase;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 36px;
  max-width: var(--home-content);
  margin: 0 auto;
}

.category-card {
  position: relative;
  min-height: 110px;
  display: grid;
  place-items: center;
  padding: 32px 18px 18px;
  border: 2px solid var(--home-blue);
  border-radius: 8px;
  color: #111;
  background: #fff;
  text-align: center;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.category-card:hover,
.category-card:focus-visible {
  border-color: #0b86d7;
  color: var(--home-blue);
  box-shadow: 0 16px 30px rgba(7, 112, 186, .14);
  transform: translateY(-3px);
  outline: none;
}

.category-icon {
  position: absolute;
  top: -32px;
  left: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--home-blue);
  border-radius: 50%;
  transform: translateX(-50%);
}

.category-icon::before {
  content: "";
  position: absolute;
  inset: -6px 6px 17px;
  z-index: -1;
  border-radius: 18px;
  background: var(--home-blue);
  clip-path: polygon(50% 0, 100% 14%, 94% 62%, 50% 100%, 6% 62%, 0 14%);
}

.category-icon::after {
  content: "+";
  font-size: 45px;
  line-height: 1;
  font-weight: 800;
}

.category-name {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

main .section.product-section {
  padding: 98px 0 64px;
  border-top: 0;
  background: #F5F7FA;
}

main .product-section>.container {
  width: min(1400px, 100%);
  max-width: none;
}

main .about-card .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  color: #26384c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
}

main .about-card .section-eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--home-blue);
}

main .home-product-subtitle::before {
  display: none;
  content: none;
}

.home-product-carousel {
  width: min(1400px, 100%);
  min-height: 324px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.home-product-viewport {
  overflow-x: auto;
  overflow-y: hidden;
}

.home-product-track {
  gap: 0;
  min-width: 100%;
}

.home-product-slide {
  flex: 0 0 20%;
  width: 20%;
}

.home-product-card {
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 274px) 50px;
  padding: 0;
  border-right: 0;
  background: transparent;
  text-align: center;
  overflow: hidden;
}

.home-product-slide:last-child .home-product-card {
  border-right: 0;
}

.home-product-thumb {
  position: relative;
  width: 100%;
  height: 274px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
}

.home-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-product-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  color: #fff;
  background: rgba(7, 146, 205, .34);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events: none;
}

.home-product-card:hover .home-product-overlay,
.home-product-card:focus-visible .home-product-overlay {
  opacity: 1;
}

.home-product-name {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 12px;
  overflow: hidden;
  color: var(--home-ink);
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.home-product-control::before {
  content: none;
  display: none;
}

.home-product-prev {
  left: 0;
}

.home-product-next {
  right: 0;
}

.about-card {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.section-more,
.btn-primary {
  min-height: 44px;
  border-radius: 8px;
  background: var(--home-blue);
  box-shadow: none;
}

.about-card>.btn-primary {
  align-self: flex-start;
  width: auto;
  min-width: 114px;
  padding-left: 28px;
  padding-right: 28px;
}

.section-more:hover,
.section-more:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  background: #D32F2F;
  transform: none;
}

.about-section {
  background: #fff;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
  gap: 56px;
  align-items: start;
  width: min(var(--home-content), calc(100% - 56px));
  margin: 0 auto;
}

.about-head {
  width: min(var(--home-content), calc(100% - 56px));
  margin: 0 auto 66px;
}

.about-text {
  max-width: 760px;
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  margin: 0 0 26px;
  overflow: visible;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.95;
}

.about-text p {
  margin: 0 0 12px;
}

.about-text> :last-child {
  margin-bottom: 0;
}

.about-image {
  min-height: 370px;
  overflow: hidden;
  border-radius: 8px;
  background: #eef4f8;
  box-shadow: 0 24px 52px rgba(18, 58, 82, .12);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 370px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.about-image-placeholder {
  min-height: 370px;
  display: grid;
  place-items: center;
  padding: 28px;
  border-radius: 8px;
  color: var(--home-blue);
  background: linear-gradient(135deg, #ffebee, #d6edf8);
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}

.case-showcase-section {
  position: relative;
  overflow: hidden;
  padding: 86px 0 92px;
  border-top: 0;
  background: #F5F7FA;
}

.case-showcase-head {
  position: relative;
  z-index: 1;
  width: min(var(--home-content), calc(100% - 56px));
  margin: 0 auto 66px;
  text-align: center;
}

.case-showcase-head::before {
  content: "CASE";
}

.case-showcase-title {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(30px, 2.7vw, 40px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 6px;
}

.case-showcase-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 12px auto 0;
  background: var(--home-blue);
}

.case-showcase-subtitle {
  margin: 9px 0 0;
  color: #5b6470;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 400;
  text-transform: uppercase;
}

.case-showcase-desc {
  max-width: var(--home-copy);
  margin: 18px auto 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.9;
}

.case-carousel {
  width: min(var(--home-content), calc(100% - 56px));
  position: relative;
  margin: 0 auto;
  padding: 0;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.case-carousel.is-dragging {
  cursor: grabbing;
}

.case-marquee {
  overflow: hidden;
  scroll-snap-type: none;
  scrollbar-width: none;
}

.case-marquee::-webkit-scrollbar {
  display: none;
}

.case-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  padding: 0;
  will-change: transform;
}

.case-marquee-group {
  display: flex;
  align-items: stretch;
  gap: 28px;
  padding-right: 28px;
}

.case-card {
  position: relative;
  isolation: isolate;
  flex: 0 0 274px;
  width: 274px;
  min-height: 426px;
  display: grid;
  grid-template-rows: 1fr;
  align-items: end;
  overflow: hidden;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: #0c1f2a;
  text-decoration: none;
  box-shadow: none;
  scroll-snap-align: start;
  transition: transform .24s ease, box-shadow .24s ease;
}

.case-card:first-child {
  box-shadow: 0 18px 42px rgba(7, 112, 186, .16);
}

.case-card:hover,
.case-card:focus-visible {
  box-shadow: 0 18px 42px rgba(7, 112, 186, .22);
  transform: translateY(-4px);
  outline: none;
}

.case-card-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  overflow: hidden;
  background: #0c1f2a;
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(4, 18, 27, .12) 0%, rgba(4, 18, 27, .58) 48%, rgba(4, 18, 27, .86) 100%);
  transition: background .24s ease;
}

.case-card:first-child::after,
.case-card:hover::after,
.case-card:focus-visible::after {
  background: linear-gradient(180deg, rgba(7, 112, 186, .12) 0%, rgba(4, 18, 27, .5) 46%, rgba(4, 18, 27, .84) 100%);
}

.case-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform .3s ease;
}

.case-card-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #fff;
  background: linear-gradient(135deg, #D32F2F, #0c3f66);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 800;
  text-align: center;
}

.case-card:hover .case-card-media img,
.case-card:focus-visible .case-card-media img {
  transform: scale(1.05);
}

.case-card-body {
  display: grid;
  gap: 18px;
  align-content: end;
  min-height: 100%;
  padding: 0 22px 24px;
}

.case-card-title {
  display: -webkit-box;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: #fff;
  font-size: 18px;
  line-height: 1.38;
  font-weight: 800;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color .2s ease;
}

.case-card-title::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #fff;
  vertical-align: .05em;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .28);
  transition: background-color .2s ease, border-color .2s ease;
}

.case-card-summary {
  display: none;
}

.case-card-more {
  align-self: end;
  justify-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #111827;
  border: 0;
  border-radius: 4px;
  background: #fff;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.case-card:first-child .case-card-title::before,
.case-card:hover .case-card-title::before,
.case-card:focus-visible .case-card-title::before {
  border-color: #D32F2F;
  background: #D32F2F;
}

.case-card:first-child .case-card-more,
.case-card:hover .case-card-more,
.case-card:focus-visible .case-card-more {
  color: #fff;
  background: #D32F2F;
}

.news-section {
  padding: 64px 0;
  border-top: 0;
  background: #fff;
}

.news-section-head {
  width: min(var(--home-content), calc(100% - 56px));
  margin: 0 auto 66px;
  text-align: center;
}

.news-section-title {
  font-size: clamp(30px, 2.7vw, 40px);
  letter-spacing: 6px;
}

.home-product-title a,
.about-title a,
.case-showcase-title a,
.news-section-title a,
.partners-title a {
  color: inherit;
  text-decoration: none;
}

.home-product-title a:hover,
.home-product-title a:focus-visible,
.about-title a:hover,
.about-title a:focus-visible,
.case-showcase-title a:hover,
.case-showcase-title a:focus-visible,
.news-section-title a:hover,
.news-section-title a:focus-visible,
.partners-title a:hover,
.partners-title a:focus-visible {
  color: #D32F2F;
  outline: none;
}

.news-section-title::after {
  margin: 12px auto 0;
}

.news-section-subtitle {
  font-size: 24px;
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(var(--home-content), calc(100% - 56px));
  margin: 0 auto;
}

.news-card {
  display: block;
  min-width: 0;
  padding: 18px 18px 22px;
  color: inherit;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 58, 82, .07);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.news-card:hover,
.news-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(7, 112, 186, .38);
  box-shadow: 0 20px 44px rgba(20, 54, 93, .16);
  outline: none;
}

.news-card-thumb {
  height: 210px;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(7, 112, 186, .16), rgba(255, 255, 255, .6));
}

.news-card-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .25s ease;
}

.news-card:hover .news-card-thumb img,
.news-card:focus-visible .news-card-thumb img {
  transform: scale(1.04);
}

.news-card-title {
  display: -webkit-box;
  min-height: 48px;
  margin: 26px 0 12px;
  overflow: hidden;
  color: #0b0d12;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-card-summary {
  display: -webkit-box;
  max-width: var(--home-copy);
  min-height: 78px;
  margin: 0;
  overflow: hidden;
  color: #4f5865;
  font-size: 14px;
  line-height: 1.85;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-card-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 26px;
  padding: 0 18px;
  color: #D32F2F;
  border: 1px solid #d7e7f4;
  border-radius: 3px;
  background: #f8fbfe;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.news-card:hover .news-card-more,
.news-card:focus-visible .news-card-more {
  color: #fff;
  border-color: #D32F2F;
  background: #D32F2F;
}

.partners-section {
  padding: 72px 0 76px;
  border-top: 0;
  background:
    radial-gradient(circle at 14% 0, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0) 28%),
    #f5f7fa;
}

.partners-section>.container {
  width: 100%;
  max-width: none;
}

.partners-head {
  width: min(var(--home-content), calc(100% - 56px));
  margin: 0 auto 28px;
}

.partners-title {
  font-size: clamp(30px, 2.7vw, 40px);
  letter-spacing: 6px;
}

.partners-title::after {
  width: 60px;
  height: 3px;
  margin: 12px auto 0;
  background: var(--home-blue);
}

.partners-subtitle {
  font-family: Arial, "Microsoft YaHei", sans-serif;
  font-size: 24px;
}

.partners-desc {
  max-width: var(--home-copy);
  margin: 10px auto 0;
  color: #667280;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--home-content), calc(100% - 56px));
  max-width: none;
  margin: 36px auto 0;
  padding: 0;
  list-style: none;
}

.partners-grid>li {
  min-width: 0;
}

.partner-card {
  display: grid;
  place-items: center;
  justify-items: center;
  min-width: 0;
  height: 100%;
  min-height: 140px;
  padding: 14px;
  border: 1px solid #e5e9ee;
  border-radius: 18px;
  color: #222936;
  background: #fff;
  box-shadow: 0 14px 30px rgba(31, 45, 61, .06);
  text-align: center;
  text-decoration: none;
  cursor: default;
}

button.partner-card {
  width: 100%;
  border: 1px solid #e5e9ee;
  font: inherit;
  appearance: none;
}

.partner-logo {
  display: block;
  width: 100%;
  height: 112px;
  object-fit: contain;
}

.partner-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 112px;
  color: #98a2b3;
  font-size: 14px;
  font-weight: 700;
}

.partners-grid>li:nth-child(1) .partner-card {
  color: #e35a17;
}

.partners-grid>li:nth-child(2) .partner-card {
  color: #111827;
}

.partners-grid>li:nth-child(3) .partner-card {
  color: #222936;
}

.partners-grid>li:nth-child(4) .partner-card {
  color: #c91222;
}

.partners-grid>li:nth-child(5) .partner-card {
  color: #d51f28;
}

.partners-grid>li:nth-child(6) .partner-card {
  color: #73b72b;
}

.partners-grid>li:nth-child(7) .partner-card {
  color: #d21f2b;
}

.partners-grid>li:nth-child(8) .partner-card {
  color: #a28d7b;
}

.partners-grid>li:nth-child(9) .partner-card {
  color: #25469a;
}

.partners-grid>li:nth-child(10) .partner-card {
  color: #294a83;
}

.contact-cta {
  border-top: 1px solid var(--home-line);
  background: #26313f;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.contact-panel .section-eyebrow,
.contact-panel h2,
.contact-panel p {
  color: #fff;
}

.contact-panel .section-eyebrow::before {
  background: #D32F2F;
}

@media (max-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

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

  .home-product-slide {
    flex-basis: 190px;
  }
}

@media (max-width: 760px) {
  main .section {
    padding: 54px 0;
  }

  .quick-panel .quick-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .quick-panel {
    margin: 0;
    padding: 16px 0 22px;
    background: #fff;
  }

  .quick-panel .quick-grid {
    width: min(100% - 28px, var(--container));
    gap: 12px;
  }

  .quick-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    min-height: 132px;
    padding: 20px 18px;
  }

  .quick-icon {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .quick-item::after {
    right: 8px;
    bottom: -28px;
    width: auto;
    font-size: 104px;
  }

  .quick-item strong {
    margin-top: 0;
    font-size: 18px;
  }

  .quick-item p {
    font-size: 13px;
    line-height: 1.75;
  }

  main .category-section {
    padding: 34px 0 44px;
  }

  .category-panel {
    width: min(100% - 28px, var(--container));
    padding: 0;
  }

  .category-head,
  .home-product-head,
  .about-head,
  .case-showcase-head,
  .news-section-head,
  .partners-head {
    margin-bottom: 52px;
  }

  .home-product-head::before,
  .about-head::before,
  .news-section-head::before,
  .partners-head::before,
  .case-showcase-head::before {
    font-size: clamp(58px, 22vw, 96px);
    letter-spacing: 4px;
  }

  .category-title,
  main .home-product-title,
  .about-title,
  .case-showcase-title,
  .news-section-title,
  .partners-title {
    font-size: 22px;
    letter-spacing: 5px;
  }

  .category-subtitle,
  main .home-product-subtitle,
  .about-subtitle,
  .case-showcase-subtitle,
  .news-section-subtitle,
  .partners-subtitle {
    font-size: 20px;
  }

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

  .category-card {
    min-height: 96px;
    padding: 30px 10px 16px;
  }

  .category-name {
    font-size: 14px;
  }

  main .section.product-section {
    padding: 58px 0 46px;
  }

  .about-head {
    width: min(100% - 28px, var(--container));
  }

  .home-product-carousel {
    --home-product-mobile-gap: 12px;
    width: min(100% - 28px, var(--container));
    min-height: 0;
    padding: 0;
  }

  .home-product-track {
    gap: 0;
    flex-wrap: wrap;
  }

  .home-product-slide {
    flex: 0 0 50%;
    width: 50%;
  }

  .home-product-card {
    grid-template-rows: minmax(0, 172px) 46px;
    padding: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .home-product-slide:nth-child(2n) .home-product-card {
    border-right: 0;
  }

  .home-product-thumb {
    height: 172px;
    padding-top: 0;
  }

  .home-product-name {
    margin: 0;
    font-size: 14px;
  }

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

  .about-image,
  .about-image img,
  .about-image-placeholder {
    min-height: clamp(220px, 62vw, 340px);
  }

  .case-showcase-section {
    padding: 58px 0 62px;
  }

  .case-showcase-head {
    width: min(100% - 28px, var(--container));
    margin: 0 auto 34px;
  }

  .case-showcase-title {
    font-size: 22px;
    letter-spacing: 5px;
  }

  .case-showcase-subtitle {
    font-size: 20px;
  }

  .case-showcase-desc {
    margin-top: 14px;
    text-align: left;
  }

  .case-carousel {
    width: min(100% - 28px, var(--home-content));
    padding: 0;
  }

  .case-marquee {
    margin: 0 auto;
    padding-left: 0;
  }

  .case-marquee-group {
    gap: 14px;
    padding-right: 14px;
  }

  .case-card {
    flex-basis: min(78vw, 274px);
    width: min(78vw, 274px);
    min-height: 400px;
    grid-template-rows: 1fr;
  }

  .case-card-body {
    padding: 0 18px 20px;
  }

  .partners-section {
    padding: 40px 0 44px;
  }

  .partners-head {
    width: min(100% - 28px, var(--container));
  }

  .news-section {
    padding: 54px 0;
  }

  .news-section-head {
    width: min(100% - 28px, var(--container));
    margin-bottom: 34px;
  }

  .news-section-title {
    font-size: 22px;
    letter-spacing: 5px;
  }

  .news-section-subtitle {
    font-size: 20px;
  }

  .news-card-grid {
    grid-template-columns: 1fr;
    width: min(100% - 28px, var(--container));
  }

  .news-card-thumb {
    height: clamp(180px, 52vw, 260px);
  }

  .news-card-title {
    margin-top: 22px;
  }

  .partners-desc {
    margin-top: 8px;
    text-align: center;
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }

  .partner-card {
    min-height: 132px;
    padding: 12px;
  }

  .partner-logo,
  .partner-placeholder { min-height: 106px; height: 106px; }

  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-marquee {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .case-marquee::-webkit-scrollbar {
    display: none;
  }
}

/* Product list exposes the complete three-level category tree. */
body:not(.home-page) main .category-link-grandchild {
  margin-left: 12px;
  border-style: dashed;
  background: #fffafa;
  color: #6b5960;
}

body:not(.home-page) main .category-link-grandchild::before {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  margin: 0 7px 1px 0;
  border-radius: 50%;
  background: currentColor;
}

/* Moved from footer.html. */
html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

body>main {
  flex: 1 0 auto;
}

body>.site-header,
body>.site-footer {
  flex: 0 0 auto;
}

body>.site-footer {
  width: 100%;
  margin-top: auto;
}

.footer-modern {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 10%, rgba(18, 145, 132, .22), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(10, 115, 168, .24), transparent 30%),
    linear-gradient(135deg, #123a52 0%, #0b2233 58%, #062033 100%);
}

.footer-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .8), transparent 78%);
}

.footer-modern a {
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.footer-modern .container {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100% - 40px));
}

.footer-modern-main {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(520px, 560px) minmax(420px, 1fr);
  gap: 22px;
  align-items: center;
  padding: 34px 0 28px;
}

.footer-modern-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .045));
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
  backdrop-filter: blur(4px);
}

.footer-company {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.footer-modern .footer-brand {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .2px;
}

.footer-modern .footer-logo {
  max-height: 46px;
  width: auto;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .18));
}

.footer-modern .footer-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue, #D32F2F), var(--brand-teal, #D32F2F));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2), 0 12px 24px rgba(0, 0, 0, .18);
  font-size: 28px;
  font-weight: 900;
}

.footer-modern .footer-desc {
  max-width: 650px;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  line-height: 1.95;
}

.footer-modern .footer-desc p {
  margin: 0;
}

.footer-mobile-nav {
  display: none;
}

.footer-quick-title {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

.footer-quick-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 10px;
  background: rgba(255, 255, 255, .72);
}

.footer-promise {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.footer-promise-item {
  min-height: 74px;
  padding: 13px 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.footer-promise-item strong {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.footer-promise-item span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  line-height: 1.55;
  overflow: hidden;
  overflow-wrap: normal;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.footer-modern-title {
  position: relative;
  margin: 0 0 14px;
  padding-bottom: 12px;
  color: #fff;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 900;
}

.footer-modern-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-teal, #D32F2F), var(--brand-blue, #D32F2F));
}

.footer-contact {
  grid-column: 2;
  align-self: center;
}

.footer-qr-card {
  grid-column: 3;
  align-self: center;
  width: min(360px, 100%);
  justify-self: start;
}

.footer-contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.footer-contact-item,
.footer-contact-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  min-height: 84px;
  padding: 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, .8);
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .055);
  font-size: 14px;
  line-height: 1.65;
}

.footer-contact-primary {
  grid-column: span 2;
  align-items: center;
  min-height: 78px;
  border-color: rgba(255, 255, 255, .14);
  background: linear-gradient(135deg, rgba(18, 145, 132, .18), rgba(10, 115, 168, .12));
}

.footer-contact-address {
  grid-column: span 2;
  min-height: 88px;
}

.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  color: #fff;
  background: rgba(18, 145, 132, .22);
  text-decoration: none;
  outline: none;
  transform: translateY(-1px);
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue, #D32F2F), var(--brand-teal, #D32F2F));
  box-shadow: 0 10px 20px rgba(10, 115, 168, .18);
  font-size: 0;
  line-height: 1;
}

.footer-contact-icon svg {
  width: 17px;
  height: 17px;
  display: block;
  stroke: currentColor;
}

.footer-contact-primary .footer-contact-icon {
  width: 40px;
  height: 40px;
}

.footer-contact-primary .footer-contact-icon svg {
  width: 20px;
  height: 20px;
}

.footer-contact-text strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
  white-space: nowrap;
}

.footer-contact-text span {
  display: -webkit-box;
  margin-top: 3px;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
  line-height: 1.55;
  overflow: hidden;
  overflow-wrap: normal;
  word-break: keep-all;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.footer-contact-primary .footer-contact-text span {
  color: #fff;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: .2px;
}

.footer-contact-address .footer-contact-text span {
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.75;
}

.footer-qr {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 12px;
  align-items: start;
  padding: 10px 0 2px;
}

.footer-qr-code {
  width: 102px;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  border: 6px solid #ffffff;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}

.footer-qr-missing {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
  background: rgba(255, 255, 255, .08);
}

.footer-qr-text strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
  text-align: center;
}

.footer-qr-text span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.footer-modern-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: rgba(0, 0, 0, .22);
}

.footer-bottom-inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
  line-height: 1.6;
}

.footer-bottom-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

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

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
  outline: none;
}

@media (max-width: 1100px) {
  .footer-modern-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-company {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: auto;
    align-self: stretch;
  }

  .footer-qr-card {
    grid-column: auto;
    align-self: stretch;
    justify-self: stretch;
    width: auto;
  }
}

@media (max-width: 760px) {
  .footer-modern {
    overflow-x: hidden;
  }

  .footer-modern-main {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 30px 0 26px;
  }

  .footer-modern-card {
    padding: 18px;
    border-radius: 8px;
  }

  .footer-promise,
  .footer-contact-list {
    grid-template-columns: 1fr;
  }

  .footer-contact-primary,
  .footer-contact-address {
    grid-column: auto;
  }

  .footer-qr-card {
    width: auto;
  }

  .footer-contact-item,
  .footer-contact-link,
  .footer-qr,
  .footer-bottom-links a {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

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

  .footer-qr-code {
    width: 88px;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom-links {
    justify-content: flex-start;
  }
}

.footer-modern {
  color: #ffffff;
  background: #D32F2F;
}

.footer-modern::before {
  content: none;
}

.footer-modern .container {
  width: min(1200px, calc(100% - 40px));
}

.footer-modern-main {
  grid-template-columns: minmax(0, 1fr) 380px 170px;
  gap: 42px;
  align-items: flex-start;
  padding: 42px 0 38px;
}

.footer-modern-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.footer-modern .footer-brand {
  margin-bottom: 16px;
  font-size: 24px;
  letter-spacing: 0;
}

.footer-modern .footer-logo {
  max-height: 42px;
  filter: none;
}

.footer-modern .footer-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #D32F2F;
  box-shadow: none;
  font-size: 22px;
}

.footer-modern .footer-desc {
  max-width: 560px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.9;
}

.footer-promise {
  grid-template-columns: 1fr;
  gap: 6px;
  margin-top: 18px;
}

.footer-promise-item {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.footer-promise-item strong,
.footer-promise-item span {
  display: inline;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.8;
}

.footer-promise-item strong {
  color: #fff;
  font-weight: 700;
}

.footer-promise-item strong::after {
  content: " / ";
  color: rgba(255, 255, 255, .42);
  font-weight: 400;
}

.footer-mobile-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 14px;
  width: min(100%, 520px);
}

.footer-mobile-nav a {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  text-decoration: none;
}

.footer-mobile-nav a::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  transition: background-color .2s ease, transform .2s ease;
}

.footer-mobile-nav a:hover,
.footer-mobile-nav a:focus-visible {
  color: #fff;
  outline: none;
  text-decoration: none;
}

.footer-mobile-nav a:hover::before,
.footer-mobile-nav a:focus-visible::before {
  background: #fff;
  transform: scale(1.2);
}

.footer-modern-title {
  margin-bottom: 16px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}

.footer-modern-title::after {
  width: 42px;
  height: 2px;
  border-radius: 0;
  background: rgba(255, 255, 255, .72);
}

.footer-contact {
  grid-column: auto;
}

.footer-qr-card {
  grid-column: auto;
  width: auto;
  justify-self: end;
}

.footer-contact-list {
  grid-template-columns: 1fr;
  gap: 9px;
}

.footer-contact-item,
.footer-contact-link,
.footer-contact-primary,
.footer-contact-address {
  grid-column: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, .72);
  background: transparent;
}

.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  color: #fff;
  background: transparent;
  transform: none;
}

.footer-contact-icon {
  display: none;
}

.footer-contact-text strong {
  display: inline;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.footer-contact-text strong::after {
  content: ": ";
  color: rgba(255, 255, 255, .42);
  font-weight: 400;
}

.footer-contact-text span,
.footer-contact-primary .footer-contact-text span,
.footer-contact-address .footer-contact-text span {
  display: inline;
  margin-top: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0;
}

.footer-qr {
  justify-items: center;
  gap: 10px;
  padding: 0;
}

.footer-qr-code {
  width: 94px;
  border: 5px solid #fff;
  border-radius: 0;
  box-shadow: none;
}

.footer-qr-missing {
  background: rgba(255, 255, 255, .08);
}

.footer-qr-text strong {
  font-size: 13px;
}

.footer-qr-text span {
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  line-height: 1.5;
}

.footer-modern-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #000000;
}

.footer-bottom-inner {
  min-height: 42px;
  justify-content: center;
  padding: 8px 0;
  color: rgba(255, 255, 255, .65);
  font-size: 12px;
  text-align: center;
}

.footer-legal {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.footer-legal a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: none;
}

@media (max-width: 1100px) {
  .footer-modern-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-company {
    grid-column: 1 / -1;
  }

  .footer-qr-card {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .footer-modern {
    overflow: hidden;
    border-top: 0;
    background: #D32F2F;
  }

  .footer-modern::before {
    content: none;
  }

  .footer-modern .container {
    width: min(100% - 28px, 1200px);
  }

  .footer-modern-main {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    padding: 30px 0 34px;
  }

  .footer-modern-card {
    padding: 0;
  }

  .footer-company,
  .footer-contact,
  .footer-qr-card {
    width: 100%;
  }

  .footer-company {
    display: grid;
    justify-items: center;
  }

  .footer-quick-title {
    display: none;
  }

  .footer-mobile-nav {
    width: min(100%, 360px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    justify-content: center;
    padding: 10px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
  }

  .footer-mobile-nav a {
    min-width: 0;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 6px;
    background: rgba(255, 255, 255, .10);
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    touch-action: manipulation;
  }

  .footer-mobile-nav a::before {
    content: none;
  }

  .footer-mobile-nav a:hover,
  .footer-mobile-nav a:focus-visible {
    border-color: #fff;
    background: #fff;
    color: #D32F2F;
    outline: 2px solid rgba(255, 255, 255, .28);
    outline-offset: 2px;
  }

  .footer-modern .footer-brand {
    display: none;
  }

  .footer-modern .footer-logo {
    max-width: min(168px, 100%);
    max-height: 25px;
  }

  .footer-modern .footer-mark {
    width: 30px;
    height: 30px;
    border-radius: 0;
  }

  .footer-modern .footer-desc {
    display: none;
  }

  .footer-modern .footer-desc :where(p, div) {
    margin: 0;
  }

  .footer-promise,
  .footer-contact-list {
    grid-template-columns: 1fr;
  }

  .footer-promise {
    display: none;
  }

  .footer-promise-item {
    line-height: 1.85;
  }

  .footer-promise-item strong,
  .footer-promise-item span {
    color: #fff5f5;
    font-size: 14px;
  }

  .footer-promise-item strong {
    font-weight: 800;
  }

  .footer-promise-item strong::after {
    content: " / ";
    color: rgba(255, 255, 255, .72);
  }

  .footer-modern-title {
    display: none;
  }

  .footer-modern-title::after {
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, .72);
  }

  .footer-contact {
    padding-top: 0;
    text-align: center;
  }

  .footer-contact-list {
    justify-items: center;
    gap: 8px;
  }

  .footer-contact-item,
  .footer-contact-link,
  .footer-contact-primary,
  .footer-contact-address {
    display: block;
    padding: 0;
    color: #fff5f5;
  }

  .footer-contact-primary {
    margin-top: 2px;
  }

  .footer-contact-text {
    display: block;
  }

  .footer-contact-text strong {
    color: #fff;
    font-size: 14px;
    line-height: 1.85;
    font-weight: 800;
  }

  .footer-contact-text strong::after {
    content: ": ";
    color: rgba(255, 255, 255, .76);
  }

  .footer-contact-text span,
  .footer-contact-primary .footer-contact-text span,
  .footer-contact-address .footer-contact-text span {
    color: #fff5f5;
    font-size: 14px;
    line-height: 1.75;
  }

  .footer-contact-primary .footer-contact-text strong {
    display: none;
  }

  .footer-contact-primary .footer-contact-text span {
    display: block;
    color: #fff;
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: .4px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .45);
  }

  .footer-contact-item .footer-contact-text strong {
    display: inline;
    font-size: 13px;
  }

  .footer-contact-item .footer-contact-text span {
    display: inline;
    font-size: 13px;
    font-weight: 700;
  }

  .footer-qr {
    width: min(100%, 220px);
    max-width: 100%;
    justify-items: center;
    gap: 10px;
    margin: 4px auto 0;
    padding-top: 0;
  }

  .footer-qr-code {
    width: 120px;
    border: 7px solid #fff;
    border-radius: 0;
    background: #fff;
  }

  .footer-qr-text strong {
    color: #fff;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
  }

  .footer-qr-text span {
    display: none;
  }

  .footer-modern-bottom {
    border-top: 0;
    background: #000000;
  }

  .footer-bottom-inner {
    align-items: center;
    flex-direction: column;
    gap: 4px;
    min-height: 0;
    padding: 16px 0 calc(16px + env(safe-area-inset-bottom));
    color: #fff;
    font-size: 12px;
    line-height: 1.8;
    text-align: center;
  }

  .footer-legal {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #fff;
    font-weight: 700;
  }

  .footer-legal a {
    color: #fff;
  }

  .footer-bottom-links {
    display: none;
  }

  .footer-bottom-links a {
    min-height: 44px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 4px;
    background: rgba(255, 255, 255, .08);
    color: #f1f7fb;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    touch-action: manipulation;
  }

  .footer-bottom-links a::after {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    opacity: .72;
    transform: rotate(45deg);
  }

  .footer-bottom-links a:hover,
  .footer-bottom-links a:focus-visible {
    border-color: #fff;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    text-decoration: none;
    outline: 2px solid rgba(255, 255, 255, .28);
    outline-offset: 2px;
  }
}

/* Responsive safety layer for theme-54. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body :where(img, video, iframe, table, swiper-container) {
  max-width: 100%;
}

body :where(img, video, iframe) {
  height: auto;
}

body :where(.container, .xmdsite-container) {
  max-width: 100%;
}

body :where(.item-content-body, .xmdsite-article, .xmdsite-product-article, .contact-richtext) :where(img, video, iframe) {
  max-width: 100% !important;
  height: auto !important;
}

@media (max-width: 1024px) {
  body :where(.product-grid, .case-grid, .news-grid, .service-grid, .items-grid, .list-grid, .xmdsite-card-grid) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body :where(.detail-layout, .xmdsite-detail-grid, .contact-layout, .about-layout, .item-content-layout) {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body:not(.home-page) :where(.hero-media-content, .xmdsite-hero-media-content) {
    height: clamp(260px, 38vw, 420px) !important;
    object-fit: cover !important;
  }
}

@media (max-width: 760px) {
  body {
    min-width: 0;
  }

  body :where(.container, .xmdsite-container),
  body:not(.home-page) main:is(.container, .main, .xmdsite-main, .page-main, .page-shell, .detail-wrap),
  body:not(.home-page) main:is(.page-main, .page-shell)> :where(.container, .xmdsite-container) {
    width: min(100% - 28px, var(--container, 1200px)) !important;
  }

  body :where(.product-grid, .case-grid, .news-grid, .service-grid, .items-grid, .list-grid, .xmdsite-card-grid, .contact-note-grid, .contact-info-list, .partners-grid, .quick-grid) {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body :where(.category-list, .xmdsite-category-list, .xmdsite-tabs-list, .side-list) {
    display: flex !important;
    flex-wrap: nowrap !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body :where(.category-list, .xmdsite-category-list, .xmdsite-tabs-list, .side-list)::-webkit-scrollbar {
    display: none;
  }

  body :where(.category-link, .xmdsite-category-link, .xmdsite-tab, .side-list a, .side-tab, .side-current) {
    flex: 0 0 auto !important;
    max-width: 72vw !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body:not(.home-page) :where(.page-hero, .xmdsite-page-hero) {
    overflow: hidden !important;
  }

  body:not(.home-page) :where(.hero-media-content, .xmdsite-hero-media-content) {
    width: 100% !important;
    height: clamp(210px, 58vw, 300px) !important;
    object-fit: cover !important;
  }

  body :where(.article-card, .xmdsite-article, .xmdsite-product-detail-tabs, .about-content-panel, .content-panel, .contact-entry) {
    max-width: 100% !important;
  }

  body :where(.pagination, .xmdsite-pagination) {
    max-width: 100% !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body :where(.pagination, .xmdsite-pagination)::-webkit-scrollbar {
    display: none;
  }

  body :where(.page-link, .page-control, .xmdsite-pagination-link) {
    flex: 0 0 auto !important;
  }
}

@media (max-width: 420px) {

  body :where(.container, .xmdsite-container),
  body:not(.home-page) main:is(.container, .main, .xmdsite-main, .page-main, .page-shell, .detail-wrap),
  body:not(.home-page) main:is(.page-main, .page-shell)> :where(.container, .xmdsite-container) {
    width: min(100% - 20px, var(--container, 1200px)) !important;
  }

  body :where(.category-link, .xmdsite-category-link, .xmdsite-tab, .side-list a, .side-tab, .side-current) {
    max-width: 78vw !important;
  }
}

@media (max-width: 760px) {

  body.home-page .hero-stage,
  body.home-page .hero-track,
  body.home-page .hero-slide,
  body.home-page .hero-media,
  body.home-page .hero-media-link {
    min-height: clamp(260px, 68vw, 330px) !important;
    height: clamp(260px, 68vw, 330px) !important;
  }

  body.home-page .hero-media {
    object-fit: cover !important;
    object-position: center center !important;
  }

  body.home-page .hero-content {
    width: min(100% - 28px, var(--container, 1200px)) !important;
    padding-top: 18px !important;
    transform: none !important;
  }

  body.home-page .hero-title {
    font-size: clamp(24px, 7vw, 30px) !important;
    line-height: 1.25 !important;
  }

  body.home-page .hero-desc {
    max-width: 100% !important;
    margin-top: 14px !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
  }

  body.home-page .hero-actions {
    margin-top: 18px !important;
  }

  body.home-page .hero .btn-primary {
    width: min(210px, 58vw) !important;
    min-width: 0 !important;
    min-height: 38px !important;
    padding: 0 22px !important;
    font-size: 15px !important;
  }

  body.home-page .hero-dots {
    bottom: 16px !important;
  }
}

@media (max-width: 420px) {

  body.home-page .hero-stage,
  body.home-page .hero-track,
  body.home-page .hero-slide,
  body.home-page .hero-media,
  body.home-page .hero-media-link {
    min-height: 260px !important;
    height: 260px !important;
  }
}


/* Moved from model-list-document.html to reduce rendered HTML size. */
:root {
  --xmdsite-accent: #D32F2F;
  --xmdsite-accent-hover: #D32F2F;
  --xmdsite-accent-soft: #ffebee;
  --xmdsite-bg: #f7f8fb;
  --xmdsite-border: rgba(17, 24, 39, 0.1);
  --xmdsite-border-strong: rgba(17, 24, 39, 0.16);
  --xmdsite-ink: #111827;
  --xmdsite-muted: rgba(17, 24, 39, 0.68);
  --xmdsite-soft: rgba(17, 24, 39, 0.5);
  --xmdsite-surface: #ffffff;
  --xmdsite-surface-soft: #f2f4f7;
  --xmdsite-footer: #333333;
  --xmdsite-shadow: 0 12px 34px rgba(17, 24, 39, 0.08);
  --xmdsite-shadow-hover: 0 20px 44px rgba(17, 24, 39, 0.12);
  --xmdsite-radius: 4px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--xmdsite-bg) 48%, #ffffff 100%);
  color: var(--xmdsite-ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.xmdsite-container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.xmdsite-header {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 16px rgba(20, 34, 67, 0.06);
  transform: translateZ(0);
}

.xmdsite-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 82px;
  padding: 0;
}

.xmdsite-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--xmdsite-ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.xmdsite-brand-logo {
  width: auto;
  max-width: 176px;
  max-height: 48px;
  object-fit: contain;
}

.xmdsite-brand-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.xmdsite-nav-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--xmdsite-border);
  border-radius: var(--xmdsite-radius);
  background: #ffffff;
  color: var(--xmdsite-ink);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.xmdsite-nav-toggle:hover,
.xmdsite-nav-toggle:focus-visible {
  border-color: rgba(21, 101, 192, 0.32);
  background: var(--xmdsite-accent-soft);
  color: var(--xmdsite-accent);
  outline: none;
}

.xmdsite-nav-toggle-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 14px;
}

.xmdsite-nav-toggle-icon::before,
.xmdsite-nav-toggle-icon::after,
.xmdsite-nav-toggle-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.xmdsite-nav-toggle-icon::before {
  top: 0;
}

.xmdsite-nav-toggle-line {
  top: 6px;
}

.xmdsite-nav-toggle-icon::after {
  bottom: 0;
}

.xmdsite-header.is-nav-open .xmdsite-nav-toggle-icon::before {
  transform: translateY(6px) rotate(45deg);
}

.xmdsite-header.is-nav-open .xmdsite-nav-toggle-line {
  opacity: 0;
}

.xmdsite-header.is-nav-open .xmdsite-nav-toggle-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.xmdsite-nav-list,
.xmdsite-nav-sublist,
.xmdsite-breadcrumb-list,
.xmdsite-category-list,
.xmdsite-item-grid,
.xmdsite-footer-list,
.xmdsite-footer-sublist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.xmdsite-nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.xmdsite-nav-item {
  position: relative;
}

.xmdsite-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 82px;
  padding: 0 22px;
  color: #222222;
  font-size: 15px;
  font-weight: 600;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.xmdsite-nav-link::after {
  position: absolute;
  right: 22px;
  bottom: 0;
  left: 22px;
  height: 3px;
  background: var(--xmdsite-accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.xmdsite-nav-link:hover,
.xmdsite-nav-link:focus-visible {
  background: #fff8f8;
  color: var(--xmdsite-accent);
  outline: none;
}

.xmdsite-nav-link:hover::after,
.xmdsite-nav-link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.xmdsite-nav-sublist {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 190px;
  padding: 8px 0;
  border: 1px solid var(--xmdsite-border);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(20, 34, 67, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.xmdsite-nav-item:hover .xmdsite-nav-sublist,
.xmdsite-nav-item:focus-within .xmdsite-nav-sublist {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.xmdsite-nav-sublist .xmdsite-nav-link {
  justify-content: flex-start;
  width: 100%;
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
  white-space: nowrap;
}

.xmdsite-nav-sublist .xmdsite-nav-link::after {
  display: none;
}

.xmdsite-topbar {
  background: #ffffff;
}

.xmdsite-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 110px;
  padding: 16px 0;
}

.xmdsite-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--xmdsite-accent);
  font-weight: 800;
  line-height: 1.2;
}

.xmdsite-brand-logo {
  width: auto;
  max-width: 230px;
  max-height: 72px;
  object-fit: contain;
}

.xmdsite-brand-name {
  display: block;
  overflow: hidden;
  color: var(--xmdsite-accent);
  font-size: 28px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.xmdsite-brand-subname {
  display: block;
  margin-top: 4px;
  color: var(--xmdsite-accent-hover);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.xmdsite-topbar-aside {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  min-width: 240px;
}

.xmdsite-topbar-qrcode {
  width: 88px;
  height: 88px;
  border: 1px solid var(--xmdsite-border);
  object-fit: cover;
}

.xmdsite-hotline {
  color: var(--xmdsite-ink);
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
}

.xmdsite-hotline-label {
  display: block;
  color: var(--xmdsite-muted);
  font-weight: 700;
}

.xmdsite-hotline-value {
  display: block;
  color: #ff7a35;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  word-break: break-word;
}

.xmdsite-header {
  border-bottom: 0;
  background: var(--xmdsite-accent);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.xmdsite-header-inner {
  justify-content: center;
  min-height: 54px;
  padding: 0;
}

.xmdsite-nav {
  width: 100%;
}

.xmdsite-nav-toggle {
  margin-left: auto;
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #ffffff;
}

.xmdsite-nav-toggle:hover,
.xmdsite-nav-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.xmdsite-nav-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
  min-height: 54px;
}

.xmdsite-nav-item {
  flex: 1 1 auto;
}

.xmdsite-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.xmdsite-nav-link::after {
  display: none;
}

.xmdsite-nav-link:hover,
.xmdsite-nav-link:focus-visible {
  background: var(--xmdsite-accent-hover);
  color: #ffffff;
}

.xmdsite-nav-sublist {
  right: auto;
  left: 50%;
  min-width: 170px;
  padding: 0;
  border: 1px solid rgba(15, 100, 96, 0.18);
  background: #ffffff;
  box-shadow: var(--xmdsite-shadow);
  pointer-events: none;
  visibility: visible;
  transform: translate(-50%, 10px);
}

.xmdsite-nav-item:hover .xmdsite-nav-sublist,
.xmdsite-nav-item:focus-within .xmdsite-nav-sublist {
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.xmdsite-nav-sublist .xmdsite-nav-link {
  justify-content: flex-start;
  min-height: 42px;
  color: var(--xmdsite-ink);
  font-size: 14px;
}

.xmdsite-nav-sublist .xmdsite-nav-link:hover,
.xmdsite-nav-sublist .xmdsite-nav-link:focus-visible {
  background: var(--xmdsite-accent-soft);
  color: var(--xmdsite-accent);
}

.xmdsite-page-hero {
  position: relative;
  width: 100%;
  height: 250px;
  min-height: 0;
  overflow: hidden;
  border-bottom: 0;
  background: #dfe8ed;
}

.xmdsite-page-hero-has-media {
  height: 250px;
  min-height: 0;
  background: #f7f8fb;
}

.xmdsite-hero-media {
  position: relative;
  z-index: 0;
  height: 250px;
  overflow: hidden;
  background: #dfe8ed;
}

.xmdsite-hero-image-list,
.xmdsite-hero-slide,
.xmdsite-hero-image-item,
.xmdsite-hero-image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.xmdsite-hero-image-list {
  --swiper-pagination-bottom: 18px;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  --swiper-pagination-bullet-border-radius: 999px;
  --swiper-pagination-bullet-inactive-color: #ffffff;
  --swiper-pagination-bullet-inactive-opacity: 0.95;
  --swiper-theme-color: #D32F2F;
  cursor: grab;
}

.xmdsite-hero-image-list:not(:defined) {
  overflow: hidden;
}

.xmdsite-hero-image-list:not(:defined) .xmdsite-hero-slide:not(:first-child) {
  display: none;
}

.xmdsite-hero-image-list:active {
  cursor: grabbing;
}

.xmdsite-hero-slide {
  display: block;
  height: 100%;
  overflow: hidden;
}

.xmdsite-hero-media-content {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.xmdsite-hero-image-link {
  user-select: none;
  -webkit-user-drag: none;
}

.xmdsite-hero-file {
  display: grid;
  place-items: center;
  min-height: 250px;
  padding: 32px;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  color: var(--xmdsite-ink);
  font-weight: 700;
  text-align: center;
}

.xmdsite-page-hero-content {
  display: none;
}

.xmdsite-page-hero-has-media .xmdsite-page-hero-content {
  align-content: start;
  min-height: 0;
  padding: 40px 0 48px;
}

.xmdsite-eyebrow {
  margin: 0 0 14px;
  color: var(--xmdsite-accent);
  font-size: 13px;
  font-weight: 700;
}

.xmdsite-page-title {
  margin: 0;
  max-width: 820px;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.08;
}

.xmdsite-section-description {
  margin: 18px 0 0;
  max-width: 720px;
  color: var(--xmdsite-muted);
  font-size: 16px;
  line-height: 1.9;
}

.xmdsite-main {
  display: grid;
  gap: 32px;
  padding: 36px 0 88px;
}

.xmdsite-breadcrumb {
  animation: xmdsite-fade-up 520ms ease both;
}

.xmdsite-breadcrumb-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  color: var(--xmdsite-soft);
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
}

.xmdsite-breadcrumb-item {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.xmdsite-breadcrumb-current-item {
  flex: 1 1 auto;
  overflow: hidden;
}

.xmdsite-breadcrumb-item+.xmdsite-breadcrumb-item::before {
  color: rgba(17, 24, 39, 0.28);
  content: "/";
}

.xmdsite-breadcrumb-link {
  color: var(--xmdsite-muted);
  transition: color 180ms ease;
}

.xmdsite-breadcrumb-link:hover,
.xmdsite-breadcrumb-link:focus-visible {
  color: var(--xmdsite-accent);
  outline: none;
}

.xmdsite-breadcrumb-current {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.xmdsite-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  animation: xmdsite-fade-up 520ms ease both;
  animation-delay: 40ms;
}

.xmdsite-category-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--xmdsite-border);
  border-radius: var(--xmdsite-radius);
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--xmdsite-muted);
  font-size: 14px;
  font-weight: 650;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.xmdsite-category-link:hover,
.xmdsite-category-link:focus-visible {
  border-color: rgba(21, 101, 192, 0.28);
  background: var(--xmdsite-accent-soft);
  color: var(--xmdsite-accent-hover);
  outline: none;
  transform: translateY(-1px);
}

.xmdsite-category-link.is-active {
  border-color: rgba(21, 101, 192, 0.34);
  background: var(--xmdsite-accent-soft);
  color: var(--xmdsite-accent-hover);
}

.xmdsite-list-section {
  animation: xmdsite-fade-up 560ms ease both;
  animation-delay: 80ms;
}

.xmdsite-item-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

body.xmdsite-event-list-page .xmdsite-item-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.xmdsite-item-card-link {
  display: grid;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--xmdsite-border);
  border-radius: var(--xmdsite-radius);
  background: var(--xmdsite-surface);
  box-shadow: var(--xmdsite-shadow);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.xmdsite-item-card-link:hover,
.xmdsite-item-card-link:focus-visible {
  border-color: rgba(21, 101, 192, 0.28);
  box-shadow: var(--xmdsite-shadow-hover);
  outline: none;
  transform: translateY(-4px);
}

.xmdsite-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--xmdsite-surface-soft);
}

.xmdsite-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.xmdsite-item-card-link:hover .xmdsite-card-media img,
.xmdsite-item-card-link:focus-visible .xmdsite-card-media img {
  transform: scale(1.035);
}

.xmdsite-card-placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  padding: 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
  color: var(--xmdsite-soft);
  font-size: 13px;
  font-weight: 700;
}

.xmdsite-card-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.xmdsite-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--xmdsite-soft);
  font-size: 13px;
}

.xmdsite-card-title {
  margin: 0;
  font-size: 19px;
  line-height: 1.42;
}

.xmdsite-card-summary {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--xmdsite-muted);
  font-size: 14px;
  line-height: 1.8;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.xmdsite-gallery-list-page .xmdsite-list-section {
  padding-top: 8px;
}

.xmdsite-album-showcase {
  position: relative;
  max-width: 1200px;
  min-height: 0;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.xmdsite-album-showcase::before,
.xmdsite-album-showcase::after {
  display: none;
}

.xmdsite-album-wall {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 24px;
  padding-top: 0;
}

.xmdsite-album-item {
  min-width: 0;
}

.xmdsite-album-card {
  position: relative;
  display: block;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(7, 112, 186, .16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(20, 96, 164, .10);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.xmdsite-album-card:hover,
.xmdsite-album-card:focus-visible {
  border-color: rgba(7, 112, 186, .36);
  outline: none;
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(13, 104, 190, .18);
}

.xmdsite-album-media,
.xmdsite-album-media img,
.xmdsite-album-placeholder {
  width: 100%;
  height: 100%;
}

.xmdsite-album-media img {
  object-fit: cover;
  transition: transform .38s ease;
}

.xmdsite-album-card:hover .xmdsite-album-media img,
.xmdsite-album-card:focus-visible .xmdsite-album-media img {
  transform: scale(1.05);
}

.xmdsite-album-placeholder {
  display: grid;
  place-items: center;
  color: #5e9fc5;
  font-weight: 800;
  background: linear-gradient(135deg, #f8fdff, #dceff8);
}

.xmdsite-album-caption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: none;
  min-height: 36px;
  padding: 0 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 6px;
  background: rgba(7, 112, 186, .92);
  box-shadow: 0 10px 20px rgba(3, 86, 158, .22);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}

.xmdsite-album-caption::before,
.xmdsite-album-caption::after {
  display: none;
}

.xmdsite-album-item:nth-child(n) {
  grid-column: auto;
  grid-row: auto;
  transform: none;
}

.xmdsite-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 0;
  padding-top: 0;
  animation: xmdsite-fade-up 560ms ease both;
  animation-delay: 120ms;
}

.xmdsite-pagination-status {
  color: var(--xmdsite-muted);
  font-size: 14px;
}

.xmdsite-pagination-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.xmdsite-pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--xmdsite-border);
  border-radius: var(--xmdsite-radius);
  padding: 0 14px;
  background: var(--xmdsite-surface);
  color: var(--xmdsite-ink);
  font-size: 14px;
  font-weight: 700;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.xmdsite-pagination-link:hover,
.xmdsite-pagination-link:focus-visible {
  border-color: rgba(21, 101, 192, 0.34);
  color: var(--xmdsite-accent-hover);
  outline: none;
  transform: translateY(-1px);
}

.xmdsite-empty-state {
  border: 1px dashed var(--xmdsite-border-strong);
  border-radius: var(--xmdsite-radius);
  background: rgba(255, 255, 255, 0.74);
  padding: 44px 24px;
  text-align: center;
}

.xmdsite-empty-state h2 {
  margin: 0;
  font-size: 24px;
}

.xmdsite-empty-state p {
  margin: 12px auto 0;
  max-width: 620px;
  color: var(--xmdsite-muted);
}

.xmdsite-footer {
  background: var(--xmdsite-footer);
  color: rgba(255, 255, 255, 0.76);
}

.xmdsite-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, auto);
  gap: 42px;
  padding: 34px 0;
}

.xmdsite-footer-brand {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
}

.xmdsite-footer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
}

.xmdsite-footer-item {
  min-width: 0;
}

.xmdsite-footer-link {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease;
}

.xmdsite-footer-link:hover,
.xmdsite-footer-link:focus-visible {
  color: #ffffff;
  outline: none;
}

.xmdsite-footer-sublist {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.xmdsite-footer-sublist .xmdsite-footer-link {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.xmdsite-footer-aside {
  display: grid;
  align-content: start;
  gap: 12px;
  justify-items: end;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.8;
  text-align: right;
}

.xmdsite-footer-qrcode {
  width: 98px;
  height: 98px;
  border: 4px solid #ffffff;
  background: #ffffff;
  object-fit: cover;
}

.xmdsite-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.xmdsite-footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: flex-start;
  padding: 14px 0;
}

@keyframes xmdsite-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .xmdsite-topbar-inner {
    min-height: 88px;
  }

  .xmdsite-topbar-aside {
    display: none;
  }

  .xmdsite-container.xmdsite-header-inner {
    position: relative;
    align-items: center;
    justify-content: flex-end;
    min-height: 54px;
  }

  .xmdsite-brand {
    flex: 1 1 auto;
  }

  .xmdsite-nav-toggle {
    display: grid;
  }

  .xmdsite-nav {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    width: fit-content;
    min-width: 124px;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--xmdsite-accent);
    box-shadow: var(--xmdsite-shadow);
  }

  .xmdsite-header.is-nav-open .xmdsite-nav {
    display: block;
  }

  .xmdsite-nav-list {
    display: grid;
    justify-items: center;
    gap: 0;
    width: max-content;
    max-width: 100%;
    min-height: 0;
    padding: 10px 14px;
  }

  .xmdsite-nav-link {
    justify-content: center;
    width: max-content;
    min-width: 96px;
    max-width: calc(100vw - 64px);
    min-height: 42px;
    color: #ffffff;
    line-height: 1.45;
    overflow-wrap: anywhere;
    text-align: center;
    white-space: normal;
  }

  .xmdsite-nav-link::after {
    display: none;
  }

  .xmdsite-nav-sublist {
    position: static;
    display: grid;
    justify-items: center;
    min-width: 0;
    padding: 0 0 6px;
    border: 0;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
  }

  .xmdsite-nav-sublist .xmdsite-nav-link {
    color: #ffffff;
    padding-left: 0;
  }

  .xmdsite-page-title {
    font-size: 38px;
  }

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

  .xmdsite-album-showcase {
    padding: 0;
  }

  .xmdsite-album-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 20px;
    padding-top: 0;
  }

  .xmdsite-album-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    transform: none;
  }

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

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

  .xmdsite-page-hero {
    height: 250px;
    min-height: 0;
  }

  .xmdsite-page-hero-has-media {
    height: 250px;
    min-height: 0;
  }

  .xmdsite-page-hero-content {
    padding: 58px 0 48px;
  }

  .xmdsite-page-hero-has-media .xmdsite-page-hero-content {
    padding: 28px 0 38px;
  }

  .xmdsite-page-title {
    font-size: 32px;
  }

  .xmdsite-section-description {
    font-size: 15px;
  }

  .xmdsite-main {
    padding: 28px 0 64px;
  }

  .xmdsite-item-grid {
    grid-template-columns: 1fr;
  }

  .xmdsite-album-showcase {
    min-height: 0;
    padding: 0;
  }

  .xmdsite-album-showcase::before,
  .xmdsite-album-showcase::after {
    display: none;
  }

  .xmdsite-album-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 14px;
    padding-top: 0;
  }

  .xmdsite-album-item:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
  }

  .xmdsite-album-card {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .xmdsite-album-caption {
    right: 8px;
    bottom: 8px;
    left: 8px;
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  .xmdsite-pagination {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .xmdsite-footer-aside {
    justify-items: start;
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
