/* 天和硅业 — 寰泰能源风格首页 (仅 .ue-home) */

:root {
  --ue-brand: #0c0cde;
  --ue-brand-d: #0808a8;
  --ue-brand-soft: #eef0ff;
  --ue-dark: #0a0c18;
  --ue-text: #1a1d26;
  --ue-gray: #5c6170;
  --ue-muted: #8b91a0;
  --ue-line: #dde0ea;
  --ue-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ue-font: 'Outfit', 'PingFang SC', sans-serif;
  --ind-header: 76px;
}

/* ===== PREMIUM NAV ===== */
.ind-header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  height: var(--ind-header);
  gap: 20px;
}
.ind-logo {
  flex-shrink: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-right: 0;
}
.ind-logo::after { display: none; }
.ind-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.ind-nav {
  flex: none;
  display: flex;
  justify-content: center;
  min-width: 0;
  z-index: 1;
}
.ind-nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  max-width: 100%;
}
.ind-nav-list > li { position: relative; flex-shrink: 0; }
.ind-nav-list > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-family: var(--ue-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--ind-text);
  border-radius: 8px;
  white-space: nowrap;
  transition: color .25s var(--ue-ease);
  background: none;
}
.ind-nav-list > li > a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--ind-brand);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform .3s var(--ue-ease);
}
.ind-nav-list > li > a.on::after,
.ind-nav-list > li > a:hover::after { transform: scaleX(1); }
.ind-nav-list > li > a.on,
.ind-nav-list > li > a:hover { color: var(--ind-brand); background: none; }
.ind-nav-mark { display: none !important; }
.ind-nav-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3.5px solid currentColor;
  opacity: .4;
  transition: transform .25s var(--ue-ease);
}
.ind-nav li.has-sub:hover > a .ind-nav-arrow {
  transform: rotate(180deg);
  opacity: .7;
}

/* 下拉 */
.ind-sub {
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 180px;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(12, 12, 222, .08);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(10, 12, 24, .12);
  opacity: 0;
  visibility: hidden;
  transition: all .25s var(--ue-ease);
}
.ind-nav li.has-sub:hover .ind-sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.ind-sub-head { display: none; }
.ind-sub a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--ind-gray);
  border-radius: 8px;
  border-left: none;
  transition: all .2s var(--ue-ease);
}
.ind-sub a:hover {
  color: var(--ind-brand);
  background: rgba(12, 12, 222, .05);
  padding-left: 14px;
}
.ind-sub a i { display: none; }

/* 右侧工具 */
.ind-header-right {
  flex-shrink: 0;
  z-index: 2;
  gap: 10px;
}
.ind-hd-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ind-gray);
  padding: 0;
  border-radius: 0;
  white-space: nowrap;
}
.ind-hd-phone:hover { color: var(--ind-brand); background: none; }
.ind-hd-phone svg { color: var(--ind-brand); flex-shrink: 0; }
.ind-hd-phone-ico { display: none; }
.ind-hd-wx {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ind-line);
  background: transparent;
  color: #07c160;
}
.ind-hd-wx:hover {
  background: rgba(7, 193, 96, .08);
  border-color: #07c160;
  transform: none;
}
.ind-hd-lang-wrap {
  padding: 3px;
  background: rgba(12, 12, 222, .04);
  border: 1px solid rgba(12, 12, 222, .08);
  border-radius: 100px;
}
.ind-hd-lang button {
  padding: 5px 10px;
  font-size: 11px;
  border-radius: 100px;
}
.ind-hd-lang button.on {
  background: #fff;
  color: var(--ind-brand);
  box-shadow: 0 1px 6px rgba(12, 12, 222, .1);
}
.ind-hd-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 4px 0 18px;
  background: var(--ind-brand);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 6px 20px rgba(12, 12, 222, .25);
  transition: all .3s var(--ue-ease);
}
.ind-hd-quote:hover {
  background: var(--ind-brand-d);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(12, 12, 222, .3);
}
.ind-hd-quote-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, .15);
  border-radius: 50%;
  font-style: normal;
  font-size: 12px;
}

/* 首页毛玻璃 */
body:has(.ind-home) .ind-header:not(.is-scroll) .ind-nav-list > li > a {
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, .25);
}
body:has(.ind-home) .ind-header:not(.is-scroll) .ind-nav-list > li > a.on,
body:has(.ind-home) .ind-header:not(.is-scroll) .ind-nav-list > li > a:hover {
  color: #fff;
  background: none;
}
body:has(.ind-home) .ind-header:not(.is-scroll) .ind-nav-list > li > a::after {
  background: #fff;
}
body:has(.ind-home) .ind-header:not(.is-scroll) .ind-hd-phone {
  color: rgba(255, 255, 255, .85);
}
body:has(.ind-home) .ind-header:not(.is-scroll) .ind-hd-phone svg { color: #fff; }
body:has(.ind-home) .ind-header:not(.is-scroll) .ind-hd-lang-wrap {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .18);
}
body:has(.ind-home) .ind-header:not(.is-scroll) .ind-hd-lang button { color: rgba(255, 255, 255, .55); }
body:has(.ind-home) .ind-header:not(.is-scroll) .ind-hd-lang button.on { color: #fff; background: rgba(255, 255, 255, .18); }
body:has(.ind-home) .ind-header:not(.is-scroll) .ind-hd-wx {
  border-color: rgba(255, 255, 255, .25);
  color: #fff;
}

body:has(.ind-home) .ind-header:not(.is-scroll) .ind-header-bar {
  border-radius: 14px;
  padding: 0 20px;
  background: rgba(10, 12, 24, .35);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

.ind-header.is-scroll .ind-header-bar {
  border-radius: 0;
  border-bottom: 1px solid rgba(12, 12, 222, .06);
}

@media (max-width: 1280px) {
  .ind-nav-list > li > a { padding: 8px 10px; font-size: 13px; }
  .ind-hd-phone-num { display: none; }
}
@media (max-width: 1100px) {
  .ind-hd-phone { display: none; }
}

/* 移动端导航 */
@media (max-width: 768px) {
  .ind-header-inner {
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }
  .ind-nav-list > li > a {
    padding: 16px 0;
    font-size: 16px;
    border-radius: 0;
  }
  .ind-nav-list > li > a::after { display: none; }
  .ind-nav {
    position: fixed;
    top: 0; right: 0;
    z-index: 502;
    width: min(320px, 86vw);
    height: 100vh;
    background: #fff;
    padding: 80px 24px 32px;
    transform: translateX(100%);
    transition: transform .35s var(--ue-ease);
    box-shadow: -8px 0 40px rgba(0, 0, 0, .12);
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
  }
  .ind-nav.open { transform: translateX(0); }
  .ind-nav-list { flex-direction: column; align-items: stretch; width: 100%; }
  .ind-sub {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0 0 8px 16px;
    background: transparent;
  }
}

/* ===== 通用 UE 组件 ===== */
.ue-label {
  display: inline-block;
  font-family: var(--ue-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ue-brand);
  margin-bottom: 20px;
  padding: 6px 14px;
  background: var(--ue-brand-soft);
  border: 1px solid rgba(12, 12, 222, .12);
  border-radius: 100px;
}
.ue-label.light {
  color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .15);
}
.ue-title {
  font-family: var(--ue-font);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 24px;
  color: var(--ue-text);
  letter-spacing: -.02em;
}
.ue-title.light { color: #fff; }
.ue-title em {
  font-style: normal;
  color: var(--ue-brand);
}
.ue-title.light em { color: rgba(255, 255, 255, .92); }
.ue-lead {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ue-gray);
  max-width: 640px;
  margin: 0 0 28px;
}
.ue-lead.light { color: rgba(255, 255, 255, .88); text-shadow: 0 1px 12px rgba(0, 0, 0, .35); }
.ue-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ue-brand);
  transition: gap .3s var(--ue-ease);
}
.ue-more::after { content: '→'; transition: transform .3s; }
.ue-more:hover { gap: 12px; }
.ue-more:hover::after { transform: translateX(4px); }
.ue-more.light { color: rgba(255, 255, 255, .9); }
.ue-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ue-text);
  border: 1px solid var(--ue-line);
  border-radius: 100px;
  transition: all .3s var(--ue-ease);
}
.ue-more-btn::after { content: '→'; color: var(--ue-brand); }
.ue-more-btn:hover { border-color: var(--ue-brand); color: var(--ue-brand); }
.ue-anim { opacity: 0; transform: translateY(30px); }
body.ue-ready .ue-anim { opacity: 1; transform: none; transition: all .6s var(--ue-ease); }

/* SplitText 字符动画 */
.ue-home [data-split-text] .line {
  overflow: hidden;
  display: block;
  line-height: inherit;
  margin: 0;
  padding: 0;
}
.ue-home .ue-title[data-split-text] .line {
  line-height: 1.25;
  min-height: 1.25em;
}
.ue-home [data-split-text] .char,
.ue-home [data-split-text] .word {
  display: inline-block;
  will-change: transform, opacity;
  vertical-align: top;
}
@media (prefers-reduced-motion: reduce) {
  .ue-home [data-split-text] .char,
  .ue-home [data-split-text] .word { transform: none !important; opacity: 1 !important; }
}

/* ===== HERO 底部控制区 ===== */
.ue-hero { position: relative; }
.ue-hero-controls {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: flex-end;
  padding: 0 calc((100vw - var(--ind-content)) / 2 + var(--ind-gutter));
  pointer-events: none;
}
.ue-scroll-pct {
  justify-self: start;
  font-family: var(--ue-font);
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  line-height: 1;
}
.ue-scroll-pct span {
  display: inline-block;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 300;
  color: #fff;
  letter-spacing: -.03em;
  margin-right: 2px;
}
.ue-hero-copy {
  justify-self: end;
  font-size: 10px;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  text-align: right;
}
.ue-hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: auto;
}
.ue-home .ind-hero-pagination {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  transform: none;
}
.ue-home .ind-hero-pagination .swiper-pagination-bullet {
  width: 44px;
  height: 2px;
  margin: 0 !important;
  border-radius: 2px;
  background: rgba(255, 255, 255, .28);
  opacity: 1;
  cursor: pointer;
  transition: all .4s var(--ue-ease);
}
.ue-home .ind-hero-pagination .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, .5);
}
.ue-home .ind-hero-pagination .swiper-pagination-bullet-active {
  width: 56px;
  height: 3px;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, .35);
}
.ue-hero-frac {
  position: static;
  font-family: var(--ue-font);
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .06em;
}
.ue-hero-frac .cur {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -.02em;
}

/* ===== 首页产品板块 ===== */
.ue-home-prod-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(12, 12, 222, .08);
}
.ue-home-prod-head-main {
  flex: 1;
  min-width: 0;
}
.ue-home-prod-head .ue-label { margin-bottom: 16px; }
.ue-home-prod-head .ue-title { margin-bottom: 12px; }
.ue-home-prod-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ue-gray);
  margin: 0;
  max-width: 560px;
}
.ue-home-prod-head .ue-more-btn {
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 4px 16px rgba(12, 12, 222, .06);
}
.ue-home-prod-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.ue-home-prod-nav {
  display: flex;
  gap: 8px;
}
.ue-home-prod-prev,
.ue-home-prod-next {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(12, 12, 222, .12);
  border-radius: 50%;
  background: #fff;
  color: var(--ue-text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(12, 12, 222, .06);
  transition: all .25s var(--ue-ease);
}
.ue-home-prod-prev:hover,
.ue-home-prod-next:hover {
  color: #fff;
  background: var(--ue-brand);
  border-color: var(--ue-brand);
}
.ue-home-prod-prev.swiper-button-disabled,
.ue-home-prod-next.swiper-button-disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}
.ue-home-prod-swiper-wrap {
  margin: 0 -4px;
  padding: 8px 4px 4px;
  overflow: hidden;
}
.ue-home-prod-swiper {
  overflow: visible;
}
.ue-home-prod-swiper .swiper-slide {
  height: auto;
}
.ue-home-prod-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(12, 12, 222, .08);
  box-shadow: 0 8px 28px rgba(12, 12, 222, .05);
  transition: all .4s var(--ue-ease);
  position: relative;
  text-decoration: none;
  color: inherit;
}
.ue-home-prod-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ue-brand), #6b6eff);
  opacity: 0;
  transition: opacity .35s var(--ue-ease);
  z-index: 2;
}
.ue-home-prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(12, 12, 222, .12);
  border-color: rgba(12, 12, 222, .16);
}
.ue-home-prod-card:hover::before { opacity: 1; }
.ue-home-prod-card .pic {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef0f7;
}
.ue-home-prod-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #fff;
  background: rgba(10, 12, 24, .55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
}
.ue-home-prod-card .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ue-ease);
}
.ue-home-prod-card:hover .pic img { transform: scale(1.06); }
.ue-home-prod-card .body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 22px;
}
.ue-home-prod-card h3 {
  margin: 0 0 8px;
  font-family: var(--ue-font);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ue-text);
  transition: color .25s;
}
.ue-home-prod-card:hover h3 { color: var(--ue-brand); }
.ue-home-prod-model {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ue-brand);
}
.ue-home-prod-card .body p {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ue-gray);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ue-home-prod-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--ue-brand);
  transition: gap .3s var(--ue-ease);
}
.ue-home-prod-more::after {
  content: '→';
  transition: transform .3s var(--ue-ease);
}
.ue-home-prod-card:hover .ue-home-prod-more { gap: 10px; }
.ue-home-prod-card:hover .ue-home-prod-more::after { transform: translateX(3px); }
.ue-home-prod-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(12, 12, 222, .08);
}
.ue-home-prod-cats a {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ue-gray);
  background: #fff;
  border: 1px solid rgba(12, 12, 222, .1);
  border-radius: 100px;
  transition: all .25s var(--ue-ease);
}
.ue-home-prod-cats a:hover {
  color: #fff;
  background: var(--ue-brand);
  border-color: var(--ue-brand);
}

/* ===== 浅色动态背景 (About / Solution / News 共用) ===== */
.ue-about,
.ue-home-prod,
.ue-solution,
.ue-news {
  padding: 72px 0;
  background: #f8f9fc;
  position: relative;
  overflow: hidden;
}
.ue-about .pub_case,
.ue-home-prod .pub_case,
.ue-solution .pub_case,
.ue-news .pub_case {
  position: relative;
  z-index: 1;
}
.ue-light-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ue-light-bg-gradient {
  position: absolute;
  inset: -40%;
  width: 180%;
  height: 180%;
  background:
    radial-gradient(ellipse 70% 55% at 15% 35%, rgba(12, 12, 222, .07), transparent 55%),
    radial-gradient(ellipse 55% 45% at 85% 55%, rgba(12, 12, 222, .05), transparent 50%),
    radial-gradient(ellipse 45% 35% at 50% 90%, rgba(180, 195, 255, .18), transparent 55%),
    linear-gradient(180deg, #fff 0%, #f4f6fb 55%, #eef1f8 100%);
  animation: ueLightBgGradientShift 28s ease-in-out infinite;
}
.ue-light-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  will-change: transform;
  animation: ueLightBgBlobFloat 22s ease-in-out infinite;
}
.ue-light-bg-blob-1 {
  width: 460px;
  height: 460px;
  background: rgba(12, 12, 222, .09);
  top: -12%;
  left: -6%;
}
.ue-light-bg-blob-2 {
  width: 340px;
  height: 340px;
  background: rgba(200, 210, 255, .45);
  top: 35%;
  right: -10%;
  animation-delay: -7s;
  animation-duration: 24s;
}
.ue-light-bg-blob-3 {
  width: 260px;
  height: 260px;
  background: rgba(12, 12, 222, .06);
  bottom: -8%;
  left: 38%;
  animation-delay: -14s;
  animation-duration: 18s;
}
.ue-light-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 12, 222, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 12, 222, .028) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, #000 15%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, #000 15%, transparent 100%);
  opacity: .55;
  animation: ueLightBgGridDrift 40s linear infinite;
}

/* About — 柔和光斑 + 方格网格（色块在左上内容区循环漂移） */
.ue-light-bg--about .ue-light-bg-gradient {
  background:
    radial-gradient(ellipse 70% 55% at 15% 35%, rgba(12, 12, 222, .07), transparent 55%),
    radial-gradient(ellipse 55% 45% at 85% 55%, rgba(12, 12, 222, .05), transparent 50%),
    radial-gradient(ellipse 45% 35% at 50% 90%, rgba(180, 195, 255, .18), transparent 55%),
    linear-gradient(180deg, #fff 0%, #f4f6fb 55%, #eef1f8 100%);
  animation: ueAboutGradientLoop 28s ease-in-out infinite;
}
.ue-light-bg--about .ue-light-bg-blob-1 {
  width: 400px;
  height: 400px;
  top: -5%;
  left: 0;
  background: rgba(12, 12, 222, .13);
  animation: ueAboutBlobPath1 22s ease-in-out infinite;
}
.ue-light-bg--about .ue-light-bg-blob-2 {
  width: 340px;
  height: 340px;
  top: 10%;
  left: 18%;
  right: auto;
  background: rgba(195, 205, 255, .58);
  animation: ueAboutBlobPath2 28s ease-in-out infinite;
  animation-delay: -7s;
}
.ue-light-bg--about .ue-light-bg-blob-3 {
  width: 260px;
  height: 260px;
  top: auto;
  bottom: 0;
  left: auto;
  right: 8%;
  animation: ueAboutBlobPath3 24s ease-in-out infinite;
  animation-delay: -14s;
}

/* Products — 首页产品板块背景 */
.ue-light-bg--prod .ue-light-bg-gradient {
  background:
    radial-gradient(ellipse 65% 50% at 80% 20%, rgba(12, 12, 222, .07), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(180, 195, 255, .2), transparent 50%),
    linear-gradient(180deg, #fff 0%, #f5f7fc 100%);
}
.ue-light-bg--prod .ue-light-bg-blob-1 {
  width: 360px;
  height: 360px;
  top: -8%;
  right: 5%;
  left: auto;
  background: rgba(12, 12, 222, .1);
  animation: ueAboutBlobPath2 26s ease-in-out infinite;
}
.ue-light-bg--prod .ue-light-bg-blob-2 {
  width: 280px;
  height: 280px;
  bottom: -5%;
  left: 8%;
  background: rgba(195, 205, 255, .5);
  animation: ueAboutBlobPath1 30s ease-in-out infinite;
  animation-delay: -9s;
}

/* Solution — 斜线纹理 + 横向漂移光斑 */
.ue-light-bg--solution .ue-light-bg-gradient {
  background:
    radial-gradient(ellipse 55% 45% at 95% 15%, rgba(12, 12, 222, .08), transparent 50%),
    radial-gradient(ellipse 50% 40% at 5% 85%, rgba(80, 160, 255, .06), transparent 50%),
    linear-gradient(135deg, #f6f8fc 0%, #eef2fa 50%, #f8f9fc 100%);
  animation: ueLightBgGradientTilt 30s ease-in-out infinite;
}
.ue-light-bg--solution .ue-light-bg-blob-1 {
  width: 520px;
  height: 520px;
  top: -18%;
  left: auto;
  right: -8%;
  background: rgba(12, 12, 222, .08);
  animation: ueLightBgBlobDriftH 26s ease-in-out infinite;
}
.ue-light-bg--solution .ue-light-bg-blob-2 {
  width: 400px;
  height: 400px;
  top: auto;
  bottom: -12%;
  left: -10%;
  right: auto;
  background: rgba(100, 180, 255, .22);
  animation: ueLightBgBlobDriftH 32s ease-in-out infinite;
  animation-delay: -10s;
}
.ue-light-bg--solution .ue-light-bg-blob-3 { display: none; }
.ue-light-bg--solution .ue-light-bg-grid {
  background-image: repeating-linear-gradient(
    135deg,
    rgba(12, 12, 222, .022) 0,
    rgba(12, 12, 222, .022) 1px,
    transparent 1px,
    transparent 36px
  );
  background-size: auto;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 10%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 10%, transparent 100%);
  opacity: .7;
  animation: ueLightBgStripeDrift 35s linear infinite;
}

/* News — 圆点纹理 + 波浪脉冲 + 微光扫过 */
.ue-light-bg--news .ue-light-bg-gradient {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(180, 195, 255, .22), transparent 60%),
    radial-gradient(ellipse 55% 40% at 15% 90%, rgba(12, 12, 222, .05), transparent 50%),
    linear-gradient(180deg, #fafbfd 0%, #f0f3fa 100%);
  animation: ueLightBgWavePulse 24s ease-in-out infinite;
}
.ue-light-bg--news .ue-light-bg-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .45) 50%, transparent 62%);
  animation: ueLightBgShimmer 12s ease-in-out infinite;
}
.ue-light-bg--news .ue-light-bg-blob-1 {
  width: 380px;
  height: 380px;
  top: 8%;
  left: 55%;
  background: rgba(12, 12, 222, .06);
  animation: ueLightBgBlobPulse 20s ease-in-out infinite;
}
.ue-light-bg--news .ue-light-bg-blob-2 {
  width: 300px;
  height: 300px;
  top: auto;
  bottom: 0;
  left: 8%;
  right: auto;
  background: rgba(210, 195, 255, .28);
  animation: ueLightBgBlobPulse 26s ease-in-out infinite;
  animation-delay: -9s;
}
.ue-light-bg--news .ue-light-bg-blob-3 { display: none; }
.ue-light-bg--news .ue-light-bg-grid {
  background-image: radial-gradient(circle, rgba(12, 12, 222, .055) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 55%, #000 12%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 55%, #000 12%, transparent 100%);
  opacity: .5;
  animation: ueLightBgDotDrift 48s linear infinite;
}

@keyframes ueLightBgGradientShift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-4%, -2%) rotate(1.5deg); }
  66% { transform: translate(3%, 2%) rotate(-1deg); }
}
@keyframes ueLightBgGradientTilt {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(4%, -3%) scale(1.02); }
  66% { transform: translate(-2%, 2%) scale(1.04); }
}
@keyframes ueLightBgWavePulse {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.05) translateY(-2%); }
}
@keyframes ueLightBgBlobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(60px, -45px) scale(1.06); }
  50% { transform: translate(90px, 30px) scale(0.94); }
  75% { transform: translate(-30px, 70px) scale(1.04); }
}
@keyframes ueLightBgBlobDriftH {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-70px, 35px) scale(1.05); }
  50% { transform: translate(50px, 60px) scale(0.96); }
  75% { transform: translate(90px, -20px) scale(1.08); }
}
@keyframes ueLightBgBlobPulse {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .88; }
  33% { transform: translate(50px, -40px) scale(1.1); opacity: 1; }
  66% { transform: translate(-35px, 55px) scale(0.95); opacity: .92; }
}
@keyframes ueAboutBlobPath1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(90px, 70px) scale(1.08); }
  50% { transform: translate(50px, 140px) scale(0.92); }
  75% { transform: translate(-60px, 80px) scale(1.05); }
}
@keyframes ueAboutBlobPath2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-80px, 60px) scale(1.06); }
  50% { transform: translate(70px, -50px) scale(0.94); }
  75% { transform: translate(100px, 90px) scale(1.1); }
}
@keyframes ueAboutBlobPath3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-90px, -50px) scale(1.05); }
  66% { transform: translate(-45px, 60px) scale(0.96); }
}
@keyframes ueAboutGradientLoop {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-4%, 3%); }
  66% { transform: translate(3%, -3%); }
}
@keyframes ueLightBgGridDrift {
  0% { background-position: 0 0; }
  100% { background-position: 52px 52px; }
}
@keyframes ueLightBgStripeDrift {
  0% { background-position: 0 0; }
  100% { background-position: 36px 36px; }
}
@keyframes ueLightBgDotDrift {
  0% { background-position: 0 0; }
  100% { background-position: 22px 22px; }
}
@keyframes ueLightBgShimmer {
  0%, 100% { transform: translateX(-120%); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: translateX(120%); opacity: 1; }
  60% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .ue-light-bg-gradient,
  .ue-light-bg-blob,
  .ue-light-bg-grid,
  .ue-light-bg--news .ue-light-bg-gradient::after { animation: none; }
}

/* ===== ABOUT US ===== */
.ue-about .pub_case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.ue-about-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
  padding-top: 0;
  border-top: none;
}
.ue-metric {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px 20px;
  text-align: left;
  background: linear-gradient(160deg, #fff 0%, #f7f8fc 100%);
  border: 1px solid rgba(12, 12, 222, .08);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(12, 12, 222, .04);
  transition: all .4s var(--ue-ease);
  position: relative;
  overflow: hidden;
}
.ue-metric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ue-brand), rgba(12, 12, 222, .15));
  opacity: 0;
  transition: opacity .4s;
}
.ue-metric:hover {
  border-color: rgba(12, 12, 222, .18);
  box-shadow: 0 16px 40px rgba(12, 12, 222, .1);
  transform: translateY(-4px);
}
.ue-metric:hover::before { opacity: 1; }
.ue-metric:hover .ue-metric-ico {
  background: var(--ue-brand);
  color: #fff;
  border-color: var(--ue-brand);
}
.ue-metric-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--ue-brand-soft);
  border: 1px solid rgba(12, 12, 222, .1);
  color: var(--ue-brand);
  flex-shrink: 0;
  transition: all .4s var(--ue-ease);
}
.ue-metric-ico svg {
  width: 22px;
  height: 22px;
  display: block;
}
.ue-metric-body { min-width: 0; }
.ue-metric h3 {
  font-size: 11px;
  font-weight: 600;
  color: var(--ue-muted);
  margin: 0 0 8px;
  letter-spacing: .08em;
}
.ue-metric .val {
  font-family: var(--ue-font);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 400;
  color: var(--ue-brand);
  line-height: 1;
  letter-spacing: -.03em;
}
.ue-about-visual-wrap {
  position: relative;
  padding: 0 0 16px 16px;
}
.ue-about-visual-deco {
  position: absolute;
  top: 20px;
  left: 0;
  right: 20px;
  bottom: 0;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(12, 12, 222, .1) 0%, rgba(12, 12, 222, .03) 100%);
  border: 1px solid rgba(12, 12, 222, .1);
  pointer-events: none;
  z-index: 0;
}
.ue-about-visual {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  min-height: 440px;
  box-shadow: 0 32px 80px rgba(10, 12, 24, .14), 0 0 0 1px rgba(255, 255, 255, .6) inset;
}
.ue-about-swiper { width: 100%; height: 100%; position: absolute; inset: 0; }
.ue-about-swiper .swiper-slide { position: relative; overflow: hidden; }
.ue-about-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 7s ease-out;
}
.ue-about-swiper .swiper-slide-active img { transform: scale(1.07); }
.ue-about-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 12, 24, .22) 0%, transparent 28%, transparent 62%, rgba(10, 12, 24, .35) 100%),
    linear-gradient(90deg, rgba(10, 12, 24, .12) 0%, transparent 40%);
}
.ue-about-slide-cap {
  position: absolute;
  left: 24px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 100px;
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s var(--ue-ease), transform .5s var(--ue-ease);
}
.ue-about-swiper .swiper-slide-active .ue-about-slide-cap {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .25s;
}
.ue-about-slide-cap .idx {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ue-brand);
  font-family: var(--ue-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.ue-about-slide-cap .lbl {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
}
.ue-about-pager {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  padding: 8px 14px;
  background: rgba(10, 12, 20, .45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 100px;
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
}
.ue-about-pager b { color: #fff; font-size: 16px; font-weight: 400; }
.ue-about-pager em { font-style: normal; }
.ue-about-dots {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 3;
  display: flex;
  gap: 6px;
}
.ue-about-dots button {
  width: 24px;
  height: 3px;
  padding: 0;
  border: none;
  border-radius: 100px;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: width .35s var(--ue-ease), background .35s;
}
.ue-about-dots button.on {
  width: 36px;
  background: #fff;
}
.ue-about-dots button:hover:not(.on) { background: rgba(255, 255, 255, .6); }
.ue-about-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 3px;
  background: rgba(255, 255, 255, .15);
}
.ue-about-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--ue-brand), rgba(12, 12, 222, .6));
  animation: ueAboutProgress 4.5s linear forwards;
}
@keyframes ueAboutProgress {
  from { width: 0; }
  to { width: 100%; }
}
.ue-about-badge {
  position: absolute;
  right: 24px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 14px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(10, 12, 24, .12);
  border: 1px solid rgba(255, 255, 255, .8);
}
.ue-about-badge-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--ue-brand-soft) 0%, rgba(12, 12, 222, .12) 100%);
  color: var(--ue-brand);
  flex-shrink: 0;
}
.ue-about-badge-ico svg { width: 18px; height: 18px; display: block; }
.ue-about-badge-txt b { display: block; font-size: 16px; font-weight: 600; color: var(--ue-text); line-height: 1.2; }
.ue-about-badge-txt span { font-size: 11px; color: var(--ue-muted); letter-spacing: .02em; }
@media (prefers-reduced-motion: reduce) {
  .ue-about-swiper .swiper-slide img { transition: none; transform: none !important; }
  .ue-about-slide-cap { opacity: 1; transform: none; transition: none; }
  .ue-about-progress span { animation: none; width: 100%; }
}

/* ===== 应用足迹 ===== */
.ue-footprint { position: relative; }
.ue-fp-stage {
  position: relative;
  min-height: max(760px, 88vh);
  height: auto;
  overflow: hidden;
}
.ue-fp-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 45%;
  transition: background-image .8s var(--ue-ease);
  transform: scale(1.06);
  will-change: transform;
}
.ue-fp-stage.is-active .ue-fp-bg { transform: scale(1.06); }
.ue-fp-mask {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 8, 16, .88) 0%, rgba(6, 8, 16, .62) 38%, rgba(6, 8, 16, .28) 68%, rgba(6, 8, 16, .18) 100%),
    linear-gradient(180deg, rgba(6, 8, 16, .45) 0%, transparent 28%, transparent 52%, rgba(6, 8, 16, .72) 100%);
  pointer-events: none;
}
.ue-fp-wrap {
  position: relative; z-index: 2;
  min-height: max(760px, 88vh);
  height: auto;
  display: flex;
  flex-direction: column;
  padding-top: 88px;
  padding-bottom: 160px;
  box-sizing: border-box;
}
.ue-fp-head { margin-bottom: auto; }
.ue-fp-nav {
  position: absolute;
  right: 0;
  bottom: 40px;
  top: auto;
  left: auto;
  transform: none;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 6px;
  z-index: 3;
  padding: 12px 14px;
  min-width: 0;
  max-width: calc(100% - 24px);
  background: rgba(8, 10, 18, .62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .28);
}
.ue-fp-nav button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-width: 88px;
  border: 1px solid transparent;
  background: none;
  padding: 12px 10px 10px;
  border-radius: 14px;
  cursor: pointer;
  text-align: center;
  color: rgba(255, 255, 255, .55);
  transition: all .35s var(--ue-ease);
  position: relative;
}
.ue-fp-nav button::before { display: none; }
.ue-fp-nav button .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .7);
  transition: all .35s var(--ue-ease);
}
.ue-fp-nav button .ico svg {
  width: 22px;
  height: 22px;
  display: block;
}
.ue-fp-nav button .label {
  flex: none;
  font-size: 13px;
  font-weight: 500;
  opacity: 1;
  transform: none;
  white-space: nowrap;
  letter-spacing: .04em;
  line-height: 1.2;
}
.ue-fp-nav button .n {
  display: none;
}
.ue-fp-nav button:hover {
  color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .06);
}
.ue-fp-nav button:hover .ico {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}
.ue-fp-nav button.on {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}
.ue-fp-nav button.on .ico {
  background: var(--ue-brand);
  border-color: var(--ue-brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(12, 12, 222, .4);
}
.ue-fp-nav button.on .n { display: none; }
.ue-fp-nav button.on .label { font-weight: 600; color: #fff; }
.ue-fp-info {
  margin-top: auto;
  max-width: 520px;
  width: 100%;
  padding-bottom: 12px;
  padding-right: 0;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}
.ue-fp-region {
  display: block;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 12px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .35);
}
.ue-fp-name {
  font-family: var(--ue-font);
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 500;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.25;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}
.ue-fp-type {
  font-size: 15px;
  color: rgba(255, 255, 255, .82);
  margin: 0 0 14px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .3);
}
.ue-fp-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .9);
  margin: 0 0 24px;
  text-shadow: 0 1px 14px rgba(0, 0, 0, .45);
}
.ue-fp-stat {
  margin-bottom: 22px;
  display: inline-block;
  padding: 14px 20px 12px;
  background: rgba(8, 10, 18, .45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
}
.ue-fp-stat span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 4px;
  letter-spacing: .06em;
}
.ue-fp-stat b {
  font-family: var(--ue-font);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
  display: block;
}
body.lang-en .ue-fp-nav button {
  min-width: 76px;
  padding: 10px 8px 8px;
}
body.lang-en .ue-fp-nav button .label {
  font-size: 11px;
  letter-spacing: .02em;
}

/* ===== 产业布局 ===== */
.ue-presence {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ue-pre-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.12);
  will-change: transform;
}
.ue-presence:hover .ue-pre-bg { transform: scale(1.12); }
.ue-pre-mask {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 8, 16, .9) 0%, rgba(6, 8, 16, .72) 42%, rgba(6, 8, 16, .35) 72%, rgba(6, 8, 16, .2) 100%),
    radial-gradient(ellipse 80% 60% at 85% 50%, rgba(12, 12, 222, .12) 0%, transparent 60%);
}
.ue-pre-wrap {
  position: relative; z-index: 2;
  padding: 72px 0;
}
.ue-pre-inner {
  display: block;
  max-width: 640px;
}
.ue-pre-text { max-width: 560px; }
.ue-pre-text .ue-title { margin-bottom: 8px; }
.ue-pre-en {
  font-family: var(--ue-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
  margin: 0 0 28px;
}
.ue-pre-text .ue-lead { margin-bottom: 24px; }
.ue-pre-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(10, 12, 22, .62);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, .35),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}
.ue-pre-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12, 12, 222, .7), transparent);
  z-index: 1;
}
.ue-pre-stat {
  position: relative;
  padding: 40px 24px 36px;
  text-align: center;
  transition: background .4s var(--ue-ease);
}
.ue-pre-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18%;
  right: 0;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .14), transparent);
}
.ue-pre-stat:hover { background: rgba(255, 255, 255, .04); }
.ue-pre-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 22px;
  border-radius: 50%;
  color: rgba(255, 255, 255, .75);
  background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
  transition: all .4s var(--ue-ease);
}
.ue-pre-ico svg {
  width: 20px;
  height: 20px;
  display: block;
}
.ue-pre-stat:hover .ue-pre-ico {
  color: #fff;
  border-color: rgba(12, 12, 222, .4);
  background: linear-gradient(145deg, rgba(12, 12, 222, .45), rgba(12, 12, 222, .2));
  box-shadow: 0 8px 28px rgba(12, 12, 222, .25);
}
.ue-pre-num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
}
.ue-pre-num b {
  font-family: var(--ue-font);
  font-size: clamp(36px, 3.6vw, 46px);
  font-weight: 300;
  line-height: 1;
  color: #fff;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}
.ue-pre-num em {
  font-family: var(--ue-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  color: rgba(255, 255, 255, .55);
  letter-spacing: 0;
}
.ue-pre-lbl {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .45);
}

/* ===== 技术方案 ===== */
.ue-sol-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(12, 12, 222, .08);
}
.ue-sol-head-main {
  flex: 1;
  min-width: 0;
}
.ue-sol-head .ue-label { margin-bottom: 16px; }
.ue-sol-head .ue-title { margin-bottom: 12px; }
.ue-sol-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ue-gray);
  margin: 0;
  max-width: 520px;
}
.ue-sol-head .ue-more-btn {
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 4px 16px rgba(12, 12, 222, .06);
}
.ue-sol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ue-sol-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(12, 12, 222, .08);
  box-shadow: 0 8px 28px rgba(12, 12, 222, .05);
  transition: all .4s var(--ue-ease);
  position: relative;
}
.ue-sol-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ue-brand), rgba(12, 12, 222, .15));
  opacity: 0;
  transition: opacity .4s;
  z-index: 2;
}
.ue-sol-card:hover {
  border-color: rgba(12, 12, 222, .2);
  box-shadow: 0 20px 48px rgba(12, 12, 222, .1);
  transform: translateY(-6px);
}
.ue-sol-card:hover::before { opacity: 1; }
.ue-sol-card .pic {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ind-bg);
}
.ue-sol-idx {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--ue-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: #fff;
  padding: 5px 10px;
  background: rgba(8, 10, 18, .45);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .15);
}
.ue-sol-card .pic::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 10, 18, .15) 100%);
  pointer-events: none;
}
.ue-sol-card .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ue-ease);
}
.ue-sol-card:hover .pic img { transform: scale(1.05); }
.ue-sol-card .body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ue-sol-card h3 {
  font-family: var(--ue-font);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ue-text);
}
.ue-sol-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ue-gray);
  margin: 0 0 14px;
  flex: 1;
}
.ue-sol-card .ue-more {
  font-size: 13px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(12, 12, 222, .06);
}

/* ===== 新闻资讯 ===== */
.ue-news-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(12, 12, 222, .08);
}
.ue-news-head-main { flex: 1; min-width: 0; }
.ue-news-head-main .ue-label { margin-bottom: 16px; }
.ue-news-head-main .ue-title { margin-bottom: 10px; }
.ue-news-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ue-gray);
  margin: 0;
  max-width: 520px;
}
.ue-news-head-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  flex-shrink: 0;
}
.ue-news-head-side .ue-more-btn {
  background: #fff;
  box-shadow: 0 4px 16px rgba(12, 12, 222, .06);
}
.ue-news-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0 28px;
  margin: 0;
  padding: 0;
}
.ue-news-tabs a {
  position: relative;
  padding: 0 0 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ue-gray);
  white-space: nowrap;
  transition: color .25s;
}
.ue-news-tabs a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--ue-brand);
  transform: scaleX(0);
  transition: transform .3s var(--ue-ease);
}
.ue-news-tabs a.on,
.ue-news-tabs a:hover { color: var(--ue-brand); }
.ue-news-tabs a.on::after,
.ue-news-tabs a:hover::after { transform: scaleX(1); }
.ue-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ue-news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(12, 12, 222, .08);
  box-shadow: 0 8px 28px rgba(12, 12, 222, .05);
  transition: all .4s var(--ue-ease);
  position: relative;
}
.ue-news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ue-brand), rgba(12, 12, 222, .15));
  opacity: 0;
  z-index: 2;
  transition: opacity .4s;
}
.ue-news-card:hover {
  border-color: rgba(12, 12, 222, .2);
  box-shadow: 0 20px 48px rgba(12, 12, 222, .1);
  transform: translateY(-6px);
}
.ue-news-card:hover::before { opacity: 1; }
.ue-news-card .pic {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ind-bg);
}
.ue-news-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(8, 10, 18, .5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .15);
}
.ue-news-card .pic::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 10, 18, .12) 100%);
  pointer-events: none;
}
.ue-news-card .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ue-ease);
}
.ue-news-card:hover .pic img { transform: scale(1.05); }
.ue-news-card .body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 26px;
}
.ue-news-card time {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ue-muted);
  margin-bottom: 10px;
}
.ue-news-card h3 {
  font-family: var(--ue-font);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 10px;
  color: var(--ue-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .3s;
}
.ue-news-card:hover h3 { color: var(--ue-brand); }
.ue-news-card p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--ue-gray);
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ue-news-card .ue-more {
  font-size: 13px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(12, 12, 222, .06);
}

/* ===== 内页 UE 增强 ===== */

/* —— Banner：全幅背景图 · 文字悬浮 —— */
.ue-inner .ind-page-hero {
  position: relative;
  min-height: clamp(420px, 52vh, 560px);
  margin-top: 0;
  padding: 0;
  display: flex;
  align-items: flex-end;
  background: var(--ind-dark);
  overflow: hidden;
  isolation: isolate;
}
.ue-inner .ind-page-hero::before,
.ue-inner .ind-page-hero::after {
  display: none;
}
.ue-inner .ind-page-hero .bg {
  position: absolute;
  inset: 0;
  opacity: 1;
  background-size: cover;
  background-position: center;
}
.ue-inner .ind-page-hero .mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 12, 24, .2) 0%,
    rgba(10, 12, 24, .05) 45%,
    rgba(10, 12, 24, .5) 100%
  );
}
.ue-inner .ind-page-hero .pub_case {
  position: relative;
  z-index: 2;
  width: var(--ind-content);
  margin: 0 auto;
  padding: calc(var(--ind-header) + 48px) var(--ind-gutter) 56px;
}
.ue-inner .ind-page-hero .pub_case > * {
  max-width: none;
}
.ue-inner .ind-page-hero h1 {
  font-family: var(--ue-font);
  font-weight: 500;
  letter-spacing: -.03em;
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  margin: 12px 0 0;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .2);
}
.ue-inner .ind-page-hero .ind-tag.light {
  display: inline-block;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 0;
  letter-spacing: .16em;
}

/* —— 内容区块 —— */
.ue-inner .ind-page-body {
  padding: clamp(72px, 8vw, 100px) 0;
  position: relative;
}
.ue-inner .ind-page-body.gray {
  background: #f5f7fc;
  overflow: hidden;
}
.ue-inner .ind-page-body.gray::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(12, 12, 222, .06) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(12, 12, 222, .04) 0%, transparent 40%);
  pointer-events: none;
}
.ue-inner .ind-page-body.gray > .pub_case { position: relative; z-index: 1; }

.ue-inner .ind-sec-tag,
.ue-inner .ind-tag {
  display: inline-block;
  border-radius: 100px;
  letter-spacing: .16em;
  padding: 6px 16px;
  background: rgba(12, 12, 222, .07);
  border: 1px solid rgba(12, 12, 222, .1);
  margin-bottom: 16px;
}
.ue-inner .ind-h2 {
  font-family: var(--ue-font);
  font-weight: 500;
  letter-spacing: -.02em;
  font-size: clamp(28px, 3.5vw, 42px);
}
.ue-inner .ind-lead {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ue-gray);
}
.ue-inner .ind-sec-head { margin-bottom: clamp(40px, 5vw, 64px); }
.ue-inner .ind-sec-head.center .ind-h2 { margin-bottom: 0; }

/* —— 图文分栏 —— */
.ue-inner .ind-split-img {
  position: relative;
  padding: 0 0 16px 16px;
}
.ue-inner .ind-split-img::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 0;
  right: 16px;
  bottom: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(12, 12, 222, .12), rgba(12, 12, 222, .04));
  z-index: 0;
}
.ue-inner .ind-split-img img,
.ue-inner .ind-factory img {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(10, 12, 24, .1);
}
.ue-inner .ind-factory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* —— 数据卡片 —— */
.ue-inner .ind-adv-grid { gap: 16px; }
.ue-inner .ind-adv-card {
  padding: 28px 22px;
  text-align: left;
  background: linear-gradient(160deg, #fff 0%, #f7f8fc 100%);
  border: 1px solid rgba(12, 12, 222, .08);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(12, 12, 222, .04);
  transition: all .35s var(--ue-ease);
  position: relative;
  overflow: hidden;
}
.ue-inner .ind-adv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ue-brand), rgba(12, 12, 222, .15));
  opacity: 0;
  transition: opacity .35s;
}
.ue-inner .ind-adv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(12, 12, 222, .16);
  box-shadow: 0 16px 40px rgba(12, 12, 222, .1);
}
.ue-inner .ind-adv-card:hover::before { opacity: 1; }
.ue-inner .ind-adv-card .num {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -.03em;
}

/* —— 横向发展历程 —— */
.ue-inner .ind-timeline-h {
  margin-top: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(12, 12, 222, .2) transparent;
  padding-bottom: 8px;
}
.ue-inner .ind-timeline-h::-webkit-scrollbar { height: 4px; }
.ue-inner .ind-timeline-h::-webkit-scrollbar-thumb {
  background: rgba(12, 12, 222, .25);
  border-radius: 4px;
}
.ue-inner .ind-timeline-track {
  display: flex;
  gap: 0;
  position: relative;
  min-width: min(100%, 960px);
  padding: 12px 0 4px;
}
.ue-inner .ind-timeline-track::before {
  content: '';
  position: absolute;
  top: 19px;
  left: 28px;
  right: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--ue-brand) 0%, rgba(12, 12, 222, .15) 100%);
  border-radius: 2px;
}
.ue-inner .ind-timeline-h .item {
  flex: 1 1 0;
  min-width: 200px;
  padding: 0 16px;
  position: relative;
}
.ue-inner .ind-timeline-h .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ue-brand);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--ue-brand);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: transform .3s var(--ue-ease);
}
.ue-inner .ind-timeline-h .item:hover .dot { transform: scale(1.2); }
.ue-inner .ind-timeline-h .year {
  font-family: var(--ue-font);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 500;
  color: var(--ue-brand);
  letter-spacing: -.03em;
  margin-bottom: 14px;
  line-height: 1;
}
.ue-inner .ind-timeline-h .year::after {
  content: '年';
  font-size: .55em;
  font-weight: 600;
  margin-left: 2px;
  opacity: .7;
}
.ue-inner .ind-timeline-h .card {
  background: #fff;
  border: 1px solid rgba(12, 12, 222, .08);
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 4px 20px rgba(12, 12, 222, .05);
  transition: all .35s var(--ue-ease);
  min-height: 120px;
}
.ue-inner .ind-timeline-h .item:hover .card {
  border-color: rgba(12, 12, 222, .16);
  box-shadow: 0 12px 32px rgba(12, 12, 222, .1);
  transform: translateY(-3px);
}
.ue-inner .ind-timeline-h .card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ue-gray);
  margin: 0;
}

/* —— 技术/资质卡片 —— */
.ue-inner .ind-tech-card {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(12, 12, 222, .08);
  border-left: 3px solid var(--ue-brand);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(12, 12, 222, .04);
  transition: all .35s var(--ue-ease);
}
.ue-inner .ind-tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(12, 12, 222, .1);
  border-color: rgba(12, 12, 222, .14);
}
.ue-inner .ind-certs {
  gap: 16px;
  align-items: stretch;
}
.ue-inner .ind-certs img,
.ue-inner .ind-cert-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(160deg, #fff 0%, #f7f8fc 100%);
  border-radius: 12px;
  border: 1px solid rgba(12, 12, 222, .08);
  box-shadow: 0 4px 16px rgba(10, 12, 24, .06);
  transition: all .35s var(--ue-ease);
}
.ue-inner .ind-certs img:hover,
.ue-inner .ind-cert-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(12, 12, 222, .12);
}

/* —— 资料下载 —— */
.ue-inner .ind-dl-item {
  border-radius: 14px;
  border: 1px solid rgba(12, 12, 222, .08);
  background: #fff;
  box-shadow: 0 4px 16px rgba(12, 12, 222, .04);
  transition: all .35s var(--ue-ease);
}
.ue-inner .ind-dl-item:hover {
  border-color: rgba(12, 12, 222, .18);
  box-shadow: 0 12px 32px rgba(12, 12, 222, .1);
  transform: translateY(-3px);
}
.ue-inner .ind-dl-item .ico { border-radius: 10px; }
.ue-inner .ind-dl-action { border-radius: 50%; }

/* —— 新闻列表 Tab —— */
.ue-inner .ind-tabs {
  gap: 0 28px;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(12, 12, 222, .08);
}
.ue-inner .ind-tabs a {
  position: relative;
  padding: 0 0 10px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--ue-gray);
  transition: color .25s;
}
.ue-inner .ind-tabs a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--ue-brand);
  transform: scaleX(0);
  transition: transform .3s var(--ue-ease);
}
.ue-inner .ind-tabs a.on,
.ue-inner .ind-tabs a:hover {
  background: transparent;
  color: var(--ue-brand);
  border-color: transparent;
  box-shadow: none;
}
.ue-inner .ind-tabs a.on::after,
.ue-inner .ind-tabs a:hover::after { transform: scaleX(1); }

/* —— 新闻列表卡片（旧版行布局保留兼容） —— */
.ue-inner .ind-news-row {
  border-radius: 16px;
  border: 1px solid rgba(12, 12, 222, .08);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(12, 12, 222, .04);
  transition: all .35s var(--ue-ease);
}
.ue-inner .ind-news-row:hover {
  transform: translateY(-4px);
  border-color: rgba(12, 12, 222, .16);
  box-shadow: 0 16px 40px rgba(12, 12, 222, .1);
}

/* ===== 新闻列表页 ===== */
.ue-news-page {
  background: #f5f7fc;
  padding-top: clamp(48px, 6vw, 72px);
}
.ue-news-list-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(12, 12, 222, .08);
}
.ue-news-list-head-main { flex: 1; min-width: 0; }
.ue-news-list-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ue-gray);
  margin: 0;
  max-width: 520px;
}
.ue-news-page .ue-news-tabs {
  flex-shrink: 0;
  justify-content: flex-end;
}
.ue-news-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.ue-news-list-page .ue-news-card {
  height: 100%;
}
.ue-news-noimg {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(12, 12, 222, .06) 0%, transparent 50%),
    linear-gradient(160deg, #eef1f8 0%, #e4e9f2 100%);
}
.ue-news-pager { padding-top: 8px; }
.ue-news-pager .th-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.ue-news-pager .th-pagination a {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ue-gray);
  background: #fff;
  border: 1px solid rgba(12, 12, 222, .1);
  border-radius: 10px;
  transition: all .25s;
}
.ue-news-pager .th-pagination a.on,
.ue-news-pager .th-pagination a:hover {
  background: var(--ue-brand);
  color: #fff;
  border-color: var(--ue-brand);
}
.ue-news-pager .th-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--ue-muted);
  font-size: 15px;
}

/* ===== 产品中心 ===== */
.ue-prod-page { background: #f5f7fc; }
.ue-prod-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}
.ue-prod-side {
  position: sticky;
  top: calc(var(--ind-header) + 24px);
  padding: 28px 22px;
  background: #fff;
  border: 1px solid rgba(12, 12, 222, .08);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(12, 12, 222, .05);
}
.ue-prod-side-label {
  display: block;
  font-family: var(--ue-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ue-brand);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(12, 12, 222, .08);
}
.ue-prod-cats {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ue-prod-cats a {
  position: relative;
  display: block;
  padding: 11px 14px 11px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ue-gray);
  border-radius: 10px;
  transition: all .25s var(--ue-ease);
}
.ue-prod-cats a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--ue-brand);
  border-radius: 2px;
  transition: height .25s var(--ue-ease);
}
.ue-prod-cats a.on,
.ue-prod-cats a:hover {
  color: var(--ue-brand);
  background: rgba(12, 12, 222, .05);
}
.ue-prod-cats a.on::before,
.ue-prod-cats a:hover::before { height: 18px; }

.ue-prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.ue-prod-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(12, 12, 222, .08);
  box-shadow: 0 8px 28px rgba(12, 12, 222, .05);
  transition: all .4s var(--ue-ease);
  position: relative;
}
.ue-prod-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ue-brand), rgba(12, 12, 222, .15));
  opacity: 0;
  transition: opacity .4s;
  z-index: 2;
}
.ue-prod-card:hover {
  border-color: rgba(12, 12, 222, .18);
  box-shadow: 0 20px 48px rgba(12, 12, 222, .12);
  transform: translateY(-6px);
}
.ue-prod-card:hover::before { opacity: 1; }
.ue-prod-card .pic {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(160deg, #f7f8fc 0%, #eef1f8 100%);
}
.ue-prod-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #fff;
  padding: 5px 10px;
  background: rgba(8, 10, 18, .5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .15);
}
.ue-prod-card .pic::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8, 10, 18, .06) 100%);
  pointer-events: none;
}
.ue-prod-card .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ue-ease);
}
.ue-prod-card:hover .pic img { transform: scale(1.06); }
.ue-prod-card .body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ue-prod-card h3 {
  font-family: var(--ue-font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 8px;
  color: var(--ue-text);
  transition: color .25s;
}
.ue-prod-card:hover h3 { color: var(--ue-brand); }
.ue-prod-card .body p {
  font-size: 12px;
  line-height: 1.65;
  color: var(--ue-muted);
  margin: 0 0 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ue-prod-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ue-brand);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(12, 12, 222, .06);
  transition: gap .3s var(--ue-ease);
}
.ue-prod-more::after { content: '→'; transition: transform .3s; }
.ue-prod-card:hover .ue-prod-more { gap: 10px; }
.ue-prod-card:hover .ue-prod-more::after { transform: translateX(3px); }

.ue-prod-pager { padding-top: 8px; }
.ue-prod-pager .th-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.ue-prod-pager .th-pagination a {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ue-gray);
  background: #fff;
  border: 1px solid rgba(12, 12, 222, .1);
  border-radius: 10px;
  transition: all .25s;
}
.ue-prod-pager .th-pagination a.on,
.ue-prod-pager .th-pagination a:hover {
  background: var(--ue-brand);
  color: #fff;
  border-color: var(--ue-brand);
}

/* —— 联系页 —— */
.ue-inner .ind-contact-card,
.ue-inner .ind-form-box {
  border-radius: 16px;
  border: 1px solid rgba(12, 12, 222, .08);
  box-shadow: 0 8px 32px rgba(12, 12, 222, .06);
}
.ue-inner .ind-contact-card {
  background: linear-gradient(160deg, #fff 0%, #f7f8fc 100%);
}
.ue-inner .ind-form-box {
  background: #fff;
}
.ue-inner .ind-form-box input,
.ue-inner .ind-form-box textarea {
  border-radius: 10px;
  border-color: rgba(12, 12, 222, .1);
  transition: border-color .25s;
}
.ue-inner .ind-form-box input:focus,
.ue-inner .ind-form-box textarea:focus {
  outline: none;
  border-color: var(--ue-brand);
}
.ue-inner .ind-form-box button {
  border-radius: 10px;
  transition: background .25s, transform .25s;
}
.ue-inner .ind-form-box button:hover { transform: translateY(-1px); }
.ue-inner .ind-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(12, 12, 222, .08);
  box-shadow: 0 8px 32px rgba(12, 12, 222, .06);
}

/* —— 产品详情页 —— */
.ue-prod-detail-page .ue-prod-detail-body {
  background: #f5f7fc;
  padding-top: clamp(48px, 6vw, 72px);
}
.ue-prod-crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: 32px;
  font-size: 13px;
  color: var(--ue-muted);
}
.ue-prod-crumb a {
  color: var(--ue-gray);
  transition: color .25s;
}
.ue-prod-crumb a:hover { color: var(--ue-brand); }
.ue-prod-crumb i {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(12, 12, 222, .25);
  flex-shrink: 0;
}
.ue-prod-crumb span {
  color: var(--ue-text);
  font-weight: 500;
}

.ue-prod-detail {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
.ue-prod-gallery-frame {
  position: relative;
  padding: 0 0 16px 16px;
}
.ue-prod-gallery-frame::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 0;
  right: 16px;
  bottom: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(12, 12, 222, .12), rgba(12, 12, 222, .04));
  z-index: 0;
}
.ue-prod-detail .main-img {
  position: relative;
  z-index: 1;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, #fff 0%, #f0f2f8 100%);
  border: 1px solid rgba(12, 12, 222, .08);
  box-shadow: 0 20px 60px rgba(12, 12, 222, .1);
}
.ue-prod-detail .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ue-ease);
}
.ue-prod-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
  padding-left: 16px;
}
.ue-prod-thumbs .ind-prod-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: .65;
  transition: all .25s var(--ue-ease);
  background: #fff;
  box-shadow: 0 2px 8px rgba(12, 12, 222, .06);
}
.ue-prod-thumbs .ind-prod-thumb.on,
.ue-prod-thumbs .ind-prod-thumb:hover {
  opacity: 1;
  border-color: var(--ue-brand);
  box-shadow: 0 4px 16px rgba(12, 12, 222, .15);
}

.ue-prod-info {
  position: sticky;
  top: calc(var(--ind-header) + 24px);
  padding: 32px 32px 28px;
  background: #fff;
  border: 1px solid rgba(12, 12, 222, .08);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(12, 12, 222, .06);
}
.ue-prod-info-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ue-brand);
  padding: 5px 12px;
  background: rgba(12, 12, 222, .07);
  border: 1px solid rgba(12, 12, 222, .1);
  border-radius: 100px;
  margin-bottom: 16px;
}
.ue-prod-info-title {
  font-family: var(--ue-font);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.3;
  margin: 0 0 12px;
  color: var(--ue-text);
}
.ue-prod-model {
  font-size: 14px;
  color: var(--ue-muted);
  margin: 0 0 24px;
}
.ue-prod-model em {
  font-style: normal;
  font-weight: 600;
  color: var(--ue-text);
  margin-left: 6px;
}

.ue-prod-specs {
  margin: 0 0 28px;
  padding: 4px 0;
  background: linear-gradient(160deg, #fafbfd 0%, #f5f7fc 100%);
  border: 1px solid rgba(12, 12, 222, .07);
  border-radius: 14px;
  overflow: hidden;
}
.ue-prod-specs .spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(12, 12, 222, .06);
}
.ue-prod-specs .spec-row:last-child { border-bottom: none; }
.ue-prod-specs dt {
  font-size: 13px;
  color: var(--ue-muted);
  flex-shrink: 0;
}
.ue-prod-specs dd {
  font-size: 14px;
  font-weight: 600;
  color: var(--ue-text);
  text-align: right;
  margin: 0;
}

.ue-prod-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.ue-prod-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  transition: all .3s var(--ue-ease);
  white-space: nowrap;
}
.ue-prod-btn-primary {
  background: var(--ind-navy);
  color: #fff;
  box-shadow: 0 6px 20px rgba(10, 10, 110, .25);
}
.ue-prod-btn-primary:hover {
  background: var(--ue-brand);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(12, 12, 222, .3);
}
.ue-prod-btn-outline {
  color: var(--ue-brand);
  border: 1.5px solid rgba(12, 12, 222, .2);
  background: #fff;
}
.ue-prod-btn-outline:hover {
  border-color: var(--ue-brand);
  background: rgba(12, 12, 222, .04);
  transform: translateY(-2px);
}
.ue-prod-btn-ghost {
  color: var(--ue-gray);
  border: 1.5px solid rgba(12, 12, 222, .1);
  background: transparent;
}
.ue-prod-btn-ghost:hover {
  color: var(--ue-brand);
  border-color: rgba(12, 12, 222, .2);
}

.ue-prod-hint {
  padding: 18px 20px;
  background: rgba(12, 12, 222, .04);
  border: 1px solid rgba(12, 12, 222, .08);
  border-radius: 14px;
}
.ue-prod-hint strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ue-brand);
  margin-bottom: 6px;
}
.ue-prod-hint p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ue-gray);
  margin: 0;
}

.ue-prod-content {
  padding: 40px 44px;
  background: #fff;
  border: 1px solid rgba(12, 12, 222, .08);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(12, 12, 222, .05);
}
.ue-prod-content-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(12, 12, 222, .08);
}
.ue-prod-content-head .ind-h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-bottom: 0;
}
.ue-prod-content-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--ue-gray);
}
.ue-prod-content-body p { margin: 0 0 1em; }
.ue-prod-content-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 16px 0;
}
.ue-prod-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.ue-prod-content-body th,
.ue-prod-content-body td {
  padding: 12px 16px;
  border: 1px solid rgba(12, 12, 222, .08);
}
.ue-prod-content-body th {
  background: rgba(12, 12, 222, .04);
  font-weight: 600;
  color: var(--ue-text);
}

.ue-inner .ind-news-article .cover img { border-radius: 16px; }

/* —— CTA —— */
.ue-inner .ind-cta {
  background: linear-gradient(135deg, #0a0a5c 0%, var(--ue-brand) 55%, #1a1ad4 100%);
}
.ue-inner .ind-cta::before {
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(255, 255, 255, .08) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v1H0zm0 0v60h1V0z' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
}

/* —— 内页响应式 —— */
@media (max-width: 1200px) {
  .ue-prod-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .ue-inner .ind-page-hero {
    min-height: clamp(320px, 45vh, 440px);
    padding: 0;
    align-items: flex-end;
  }
  .ue-inner .ind-page-hero .bg {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    margin: 0;
    border-radius: 0;
  }
  .ue-inner .ind-page-hero .mask {
    display: block;
  }
  .ue-inner .ind-page-hero .pub_case {
    max-width: none;
    padding: calc(var(--ind-header) + 32px) var(--ind-gutter) 40px;
  }
  .ue-inner .ind-timeline-h .item { min-width: 180px; }

  .ue-prod-layout { grid-template-columns: 1fr; gap: 28px; }
  .ue-prod-side {
    position: static;
    padding: 20px;
  }
  .ue-prod-cats {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .ue-prod-cats::-webkit-scrollbar { display: none; }
  .ue-prod-cats a {
    flex-shrink: 0;
    padding: 8px 16px;
    white-space: nowrap;
    border: 1px solid rgba(12, 12, 222, .1);
    border-radius: 100px;
    background: #fff;
  }
  .ue-prod-cats a::before { display: none; }
  .ue-prod-cats a.on,
  .ue-prod-cats a:hover {
    background: var(--ue-brand);
    color: #fff;
    border-color: var(--ue-brand);
  }
  .ue-prod-grid { grid-template-columns: repeat(2, 1fr); }
  .ue-prod-detail { grid-template-columns: 1fr; gap: 32px; }
  .ue-prod-info { position: static; }
  .ue-prod-content { padding: 28px 24px; }

  .ue-news-list-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 24px;
  }
  .ue-news-page .ue-news-tabs {
    justify-content: flex-start;
    gap: 0 24px;
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .ue-news-page .ue-news-tabs::-webkit-scrollbar { display: none; }
  .ue-news-list-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ue-inner .ind-page-body { padding: 64px 0; }
  .ue-inner .ind-adv-grid { grid-template-columns: repeat(2, 1fr); }
  .ue-inner .ind-timeline-track { min-width: 720px; }
  .ue-prod-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ue-news-list-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .ue-prod-grid { grid-template-columns: 1fr; }
}

body:not(:has(.ue-home)) .ind-footer,
.ue-home ~ .ind-footer {
  background: linear-gradient(180deg, #0a0a5c 0%, var(--ue-dark) 100%);
  padding: 80px 0 32px;
}
body:not(:has(.ue-home)) .ind-footer h4 {
  color: rgba(255, 255, 255, .45);
  letter-spacing: .14em;
}
body:not(:has(.ue-home)) .ind-footer-copy {
  border-top-color: rgba(255, 255, 255, .08);
}

/* ===== 响应式 ===== */
@media (max-width: 1100px) {
  .ue-about .pub_case { grid-template-columns: 1fr; gap: 48px; }
  .ue-about-metrics { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ue-metric { padding: 20px 18px; }
  .ue-pre-inner { grid-template-columns: 1fr; gap: 48px; }
  .ue-pre-stats { grid-template-columns: repeat(3, 1fr); }
  .ue-pre-stat { padding: 32px 16px 28px; }
  .ue-sol-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 24px;
  }
  .ue-sol-head .ue-more-btn { align-self: flex-start; }
  .ue-sol-grid { grid-template-columns: repeat(2, 1fr); }
  .ue-home-prod-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 24px;
  }
  .ue-home-prod-tools {
    width: 100%;
    justify-content: space-between;
  }
  .ue-home-prod-head .ue-more-btn { align-self: auto; }
  .ue-news-grid { grid-template-columns: repeat(2, 1fr); }
  .ue-news-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 24px;
    margin-bottom: 32px;
  }
  .ue-news-head-side {
    align-items: flex-start;
    width: 100%;
  }
  .ue-news-tabs { justify-content: flex-start; gap: 0 24px; }
  .ue-fp-stage {
    min-height: max(680px, 82vh);
  }
  .ue-fp-wrap {
    min-height: max(680px, 82vh);
    padding-bottom: 148px;
  }
  .ue-fp-info { max-width: 420px; padding-right: 0; }
  .ue-fp-nav button { min-width: 72px; padding: 10px 8px 8px; }
  .ue-fp-nav button .label { font-size: 11px; }
}
@media (max-width: 768px) {
  .ue-about, .ue-home-prod, .ue-solution, .ue-news { padding: 56px 0; }
  .ue-pre-wrap { padding: 56px 0; }
  .ue-presence { min-height: 0; }
  .ue-about-metrics { grid-template-columns: 1fr 1fr; }
  .ue-about-visual { min-height: 300px; }
  .ue-about-visual-wrap { padding: 0 0 10px 10px; }
  .ue-about-slide-cap { left: 16px; bottom: 20px; }
  .ue-about-slide-cap .lbl { font-size: 12px; }
  .ue-about-badge { right: 16px; bottom: 20px; padding: 10px 14px 10px 10px; gap: 10px; }
  .ue-about-badge-ico { width: 32px; height: 32px; border-radius: 8px; }
  .ue-about-badge-txt b { font-size: 14px; }
  .ue-about-pager, .ue-about-dots { top: 16px; }
  .ue-about-pager { right: 16px; }
  .ue-about-dots { left: 16px; }
  .ue-fp-nav {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: 100%;
    margin: 20px 0 0;
    order: 3;
    padding: 10px 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .ue-fp-nav::-webkit-scrollbar { display: none; }
  .ue-fp-nav button {
    flex: 0 0 auto;
    min-width: 72px;
    padding: 10px 10px 8px;
    gap: 6px;
  }
  .ue-fp-nav button .ico { width: 40px; height: 40px; border-radius: 10px; }
  .ue-fp-nav button .ico svg { width: 20px; height: 20px; }
  .ue-fp-nav button .label { font-size: 11px; }
  .ue-fp-info {
    padding-bottom: 0;
    padding-right: 0;
    max-width: 100%;
    order: 2;
  }
  .ue-fp-head { order: 1; margin-bottom: 28px; }
  .ue-fp-stage {
    min-height: 0;
    height: auto;
  }
  .ue-fp-wrap {
    min-height: 0;
    padding-top: 56px;
    padding-bottom: 48px;
  }
  .ue-fp-stat {
    margin-bottom: 18px;
  }
  .ue-fp-stat b { font-size: clamp(32px, 10vw, 44px); }
  .ue-fp-desc { font-size: 14px; color: rgba(255, 255, 255, .92); }
  .ue-hero-controls {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 var(--ind-gutter);
    bottom: 28px;
  }
  .ue-hero-center { order: -1; }
  .ue-scroll-pct { justify-self: start; }
  .ue-hero-copy { justify-self: start; text-align: left; }
  .ue-news-grid { grid-template-columns: 1fr; }
  .ue-sol-grid { grid-template-columns: 1fr; }
  .ue-sol-head .ue-more-btn { width: auto; }
  .ue-home-prod-cats { gap: 8px; }
  .ue-home-prod-cats a { font-size: 12px; padding: 7px 12px; }
  .ue-pre-stats { grid-template-columns: 1fr; }
  .ue-pre-stat:not(:last-child)::after {
    top: auto;
    right: 12%;
    bottom: 0;
    left: 12%;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
  }
  .ue-pre-stat { padding: 28px 24px; }
}
