:root {
  --ink: #1a2733;
  --muted: #667787;
  --line: #e7eef2;
  --mint: #13c9a5;
  --mint-dark: #05a98a;
  --cyan: #69e5ff;
  --blue: #0a3c67;
  --deep: #082033;
  --paper: #ffffff;
  --soft: #f6fbfd;
  --shadow: 0 18px 48px rgba(11, 58, 82, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: #ffffff;
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

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

a[href^="tel:"] {
  color: inherit;
  font: inherit;
  text-decoration: none;
}

img,
svg,
video {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(19, 201, 165, 0.45);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  height: 74px;
  padding: 0 max(24px, calc((100vw - 1200px) / 2));
  color: #ffffff;
  background: rgba(8, 32, 51, 0.62);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
}

.logo img {
  display: block;
  width: 142px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.site-nav a {
  position: relative;
  padding: 28px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 0;
  height: 2px;
  background: var(--mint);
  content: "";
  transition: width 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.header-search {
  display: flex;
  width: 176px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 2px;
  overflow: hidden;
}

.header-search input {
  min-width: 0;
  width: 100%;
  padding: 0 10px;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.16);
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.74);
}

.header-search button {
  width: 48px;
  border: 0;
  color: #ffffff;
  background: var(--mint);
  font-size: 13px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 640px;
  padding-top: 74px;
  color: #ffffff;
  overflow: hidden;
  background: #0b2638 url("./assets/矩形 503 拷贝@2x.jpg") center top / cover
    no-repeat;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 32, 51, 0.82) 0 45%,
    rgba(8, 32, 51, 0.12) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 145px 0 120px;
}

.hero-kicker {
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: 18px;
  font-weight: 700;
}

.hero h1 {
  max-width: 690px;
  margin: 0 0 20px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.9;
}

.hero-search {
  display: flex;
  width: min(600px, 100%);
  height: 54px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  padding: 0 18px;
  border: 0;
  outline: 0;
  color: var(--ink);
}

.hero-search button {
  width: 138px;
  border: 0;
  color: #ffffff;
  background: var(--mint);
  font-weight: 700;
}

.hotwords {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.hotwords a {
  color: var(--cyan);
}

.quick-contact {
  position: fixed;
  right: 22px;
  top: 290px;
  z-index: 10;
  display: grid;
  width: 76px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.quick-contact a {
  display: grid;
  min-height: 54px;
  place-items: center;
  padding: 8px;
  color: var(--ink);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  text-align: center;
}

.quick-contact a:first-child {
  color: #ffffff;
  background: var(--mint);
}

.section {
  padding: 82px 0;
}

body.standalone-page {
  padding-top: 74px;
  background: #ffffff;
}

body.mobile-search-page {
  padding-top: 0;
}

.mobile-search-page > .site-header {
  display: none;
}

.mobile-search-page .mobile-search-page{
  padding: 0px !important;
}

.about-ui-page {
  margin: 0;
  min-width: 320px;
  color: #202c35;
  background: #ffffff;
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

.about-ui-container {
  width: min(1760px, calc(100% - 160px));
  margin: 0 auto;
}

.about-ui-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: 80px;
  color: #ffffff;
  background: rgba(3, 18, 36, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.about-ui-nav {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr) 224px auto;
  align-items: center;
  gap: 22px;
  width: min(1760px, calc(100% - 160px));
  height: 100%;
  margin: 0 auto;
}

.about-ui-logo img {
  display: block;
  width: 140px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.about-ui-nav nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 2.4vw, 52px);
  font-size: 17px;
  font-weight: 400;
}

.about-ui-nav nav a {
  position: relative;
  display: grid;
  align-items: center;
  height: 80px;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.about-ui-nav nav a::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #ffffff;
  transform: translateX(-50%);
  content: "";
}

.about-ui-nav nav a.active::after,
.about-ui-nav nav a:hover::after {
  width: 48px;
}

.about-ui-search {
  display: grid;
  grid-template-columns: 1fr 38px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 2px;
  overflow: hidden;
}

.about-ui-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 12px;
  color: #ffffff;
  background: rgba(3, 16, 31, 0.36);
  font-size: 13px;
}

.about-ui-search input::placeholder {
  color: rgba(255, 255, 255, 0.76);
}

.about-ui-search button {
  border: 0;
  background:
    url("./assets/sousuo@2x.png") center / 16px 16px no-repeat,
    rgba(2, 14, 28, 0.2);
}

.about-ui-lang {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.about-ui-hero {
  position: relative;
  display: grid;
  min-height: 400px;
  padding-top: 80px;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
  background: url("./assets/lanhu-about-hero.jpg") center top / cover no-repeat;
}

.about-ui-hero::after {
  position: absolute;
  inset: 0;
  background: rgba(3, 13, 34, 0.1);
  content: "";
}

.about-ui-hero-title {
  position: relative;
  z-index: 1;
  margin-top: 54px;
  text-align: center;
}

.about-ui-hero h1 {
  margin: 0 0 20px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.about-ui-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.about-ui-breadcrumb {
  height: 74px;
  display: grid;
  align-items: center;
  color: #8da3a4;
  background: #edfafa;
  font-size: 17px;
}

.about-ui-breadcrumb .about-ui-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-ui-breadcrumb span::before {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: -3px;
  background: url("./assets/定位@2x.png") center / contain no-repeat;
  content: "";
}

.about-ui-breadcrumb em {
  color: #aebfc0;
  font-style: normal;
}

.about-ui-breadcrumb strong {
  color: #303b41;
}

.about-ui-intro {
  /* padding: 42px 0 88px; */
  background: #edfafa;
  padding-top: 0;
}

.about-ui-intro-grid {
  display: grid;
  grid-template-columns: 1fr 817px;
  gap: 80px;
  align-items: center;
}

.about-ui-copy {
  position: relative;
  padding-top: 0;
}

.about-ui-copy::before {
  position: absolute;
  top: -80px;
  left: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 205px;
  font-weight: 800;
  line-height: 1;
  content: "“";
}

.about-ui-copy h2 {
  position: relative;
  margin: 0 0 44px;
  color: #1c262d;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}

.about-ui-copy p {
  position: relative;
  margin: 0 0 26px;
  color: #63777f;
  font-size: 18px;
  line-height: 2.1;
}

.about-ui-photo img {
  display: block;
  width: 100%;
  height: 464px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: none;
}

.about-ui-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 45px;
}

.about-ui-stats article {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 20px;
  min-height: 100px;
  padding: 20px 36px;
  background: #ffffff;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(11, 58, 82, 0.08);
}

.about-ui-stats img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: saturate(1.1);
}

.about-ui-stats strong,
.about-ui-stats span {
  display: block;
}

.about-ui-stats strong {
  margin-bottom: 7px;
  color: #1f2b32;
  font-size: 22px;
}

.about-ui-stats span {
  color: #7c9196;
  font-size: 14px;
  line-height: 1.55;
}

.about-ui-values {
  padding: 92px 0 102px;
  margin-top: -2px;
  background: #ffffff;
}

.about-ui-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-ui-value-grid article {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 0;
  color: #ffffff;
  box-shadow: none;
}

.about-ui-value-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-ui-value-grid article::after {
  position: absolute;
  inset: 0;
  background: rgba(8, 31, 52, 0.08);
  content: "";
}

.about-ui-value-grid div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  height: 100%;
  padding: 38px 42px;
  text-align: center;
}

.about-ui-value-grid h3 {
  margin: 0 0 20px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
}

.about-ui-value-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.8;
}

.about-ui-section-title {
  margin: 0 auto 54px;
  text-align: center;
}

.about-ui-section-title p {
  margin: 0 0 -10px;
  color: rgba(26, 201, 169, 0.13);
  font-size: clamp(52px, 6vw, 104px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-ui-section-title h2 {
  position: relative;
  margin: 0;
  color: #202c35;
  font-size: 34px;
  line-height: 1.3;
  letter-spacing: 0;
}

.about-ui-section-title h2::after {
  display: block;
  width: 46px;
  height: 3px;
  margin: 18px auto 0;
  background: #18c8a8;
  content: "";
}

.about-ui-section-title.light p {
  color: rgba(255, 255, 255, 0.18);
}

.about-ui-section-title.light h2 {
  color: #ffffff;
}

.about-ui-brand {
  padding: 0 0 128px;
  background: #ffffff;
}

.about-ui-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 210px;
  width: min(100%, 1340px);
  margin: 0 auto;
}

.about-ui-brand-grid article {
  min-height: 292px;
  padding: 44px 38px 36px;
  background: #ffffff;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 10px 34px rgba(11, 58, 82, 0.09);
  text-align: center;
}

.about-ui-brand-grid img {
  display: block;
  width: 86px;
  height: 86px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.about-ui-brand-grid h3 {
  margin: 0 0 12px;
  color: #202c35;
  font-size: 24px;
  font-weight: 800;
}

.about-ui-brand-grid p {
  margin: 0;
  color: #6b7f86;
  font-size: 16px;
  line-height: 1.75;
}

.about-ui-partners {
  padding: 88px 0 270px;
  background: #edfafa;
}

.about-ui-partners .about-ui-section-title {
  margin-bottom: 48px;
}

.about-ui-partners .about-ui-section-title p {
  margin-bottom: -7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(44px, 5.1vw, 78px);
}

.about-ui-partners .about-ui-section-title h2 {
  color: #202c35;
  font-size: 28px;
}

.about-ui-partners .about-ui-section-title h2::after {
  background: #18c8a8;
}

.about-ui-partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  width: min(100%, 1760px);
  margin: 0 auto;
}

.about-ui-partner-grid span {
  display: grid;
  min-height: 96px;
  place-items: center;
  padding: 14px 24px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 10px 18px rgba(5, 67, 66, 0.06);
}

.about-ui-partner-grid img {
  display: block;
  width: 100%;
  max-width: 132px;
  height: 42px;
  object-fit: contain;
}

.about-ui-intro.home-ui-about .about-ui-copy::before {
  content: none;
}

.about-ui-brand .home-ui-brand-grid img,
.about-ui-partners .home-ui-partner-grid img {
  max-width: none;
  height: auto;
}

.about-ui-float {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 25;
  display: grid;
  width: 62px;
  transform: translateY(-50%);
  filter: drop-shadow(0 8px 18px rgba(6, 88, 78, 0.18));
}

.about-ui-float a {
  display: grid;
  width: 62px;
  min-height: 62px;
  place-items: center;
  color: #ffffff;
  background: #14c8ad;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 12px;
  font-weight: 700;
}

.about-ui-float a:first-child {
  border-top-left-radius: 4px;
}

.about-ui-float a:last-child {
  border-bottom: 0;
  border-bottom-left-radius: 4px;
}

.about-ui-float img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-footer {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  overflow: hidden;
  /* background:
    linear-gradient(90deg, rgba(14, 189, 165, 0.95), rgba(13, 197, 171, 0.94)),
    url("./assets/图层 50@2x.png") center / cover no-repeat; */
    background-image: url('./assets/图层 50@2x.png');
    background-size: 100% 100%;
}

.site-footer::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 30%,
      rgba(255, 255, 255, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 84% 20%,
      rgba(255, 255, 255, 0.12),
      transparent 26%
    );
  pointer-events: none;
  content: "";
}

.site-footer-container {
  width: min(1760px, calc(100% - 160px));
  margin: 0 auto;
}

.site-footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(780px, 1.4fr) 277px;
  gap: clamp(42px, 5.2vw, 104px);
  align-items: start;
  min-height: 448px;
  padding: 65px 0 50px;
}

.site-footer-brand > img {
  display: block;
  width: 200px;
  height: auto;
  margin: 0 0 58px;
  filter: brightness(0) invert(1);
}

.site-footer-brand p {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
}

.site-footer-brand ul {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-brand li {
  display: block;
  min-width: 0;
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
}

.site-footer-brand li span {
  color: #ffffff;
  font-weight: 700;
  margin-right: 12px;
}

.site-footer-brand li img {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.site-footer-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(78px, 1fr));
  gap: 42px;
  padding-top: 14px;
}

.site-footer-links h3 {
  position: relative;
  margin: 0 0 26px;
  padding-bottom: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.site-footer-links h3::after {
  display: none;
}

.site-footer-links a {
  display: block;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.25;
}

.site-footer-links a:hover {
  color: #ffffff;
}

.site-footer-qrs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 28px;
  width: 277px;
  padding: 20px 27px 23px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.site-footer-qrs figure {
  margin: 0;
  text-align: center;
}

.site-footer-qrs img {
  display: block;
  width: 86px;
  height: 86px;
  margin: 0 auto 8px;
  padding: 0;
  object-fit: contain;
  background: #ffffff;
}

.site-footer-qrs figcaption {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.1;
}

.site-footer-extra {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
  align-self: end;
  padding-top: 32px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.2;
}

.site-footer-extra span {
  font-weight: 500;
}

.site-footer-extra a:hover {
  color: #ffffff;
}

.site-footer-copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 0 max(80px, calc((100vw - 1760px) / 2));
  color: rgba(255, 255, 255, 0.74);
  background: #067464;
  font-size: 17px;
}

.site-footer-copy a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer-bottom-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 95;
  color: #ffffff;
  background: transparent;
  padding: 0;
  pointer-events: none;
}

.site-footer-bottom-inner {
  position: relative;
  display: grid;
  grid-template-columns: 340px minmax(560px, 850px) 275px;
  gap: clamp(46px, 3.1vw, 60px);
  align-items: center;
  /* width: 100%; */
  min-height: 114px;
  margin: 0 80px max(10px, env(safe-area-inset-bottom)) 80px;
  padding: 0 49px 0 57px;
  background: #55d0bd;
  border-radius: 10px;
  box-shadow: 0 -10px 28px rgba(14, 91, 86, 0.16);
  pointer-events: auto;
}

.site-footer-bottom-close {
  position: absolute;
  top: 12px;
  right: 9px;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.25);
  font-size: 18px;
  line-height: 1;
}

.site-footer-bottom-phone {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-areas:
    "icon label"
    "icon number";
  gap: 3px 18px;
  align-items: center;
  min-width: 0;
}

.site-footer-bottom-phone img {
  grid-area: icon;
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-footer-bottom-phone strong {
  grid-area: label;
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.site-footer-bottom-phone small {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 400;
}

.site-footer-bottom-phone span {
  grid-area: number;
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}

.site-footer-quote {
  display: grid;
  min-width: 0;
  height: 61px;
  place-items: center;
  color: #08bea0;
  background: #e9fffb;
  border-radius: 3px;
  font-size: 20px;
  font-weight: 700;
  justify-self: stretch;
}

.site-footer-bottom-service {
  display: grid;
  grid-template-columns: minmax(84px, auto) 94px;
  gap: 17px;
  align-items: center;
  justify-content: end;
  min-width: 0;
}

.site-footer-bottom-service span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
}

.site-footer-bottom-qr {
  display: block;
  width: 94px;
  height: 94px;
  padding: 0;
  object-fit: contain;
  background: #ffffff;
}

body.standalone-page .site-header {
  background: rgba(8, 32, 51, 0.9);
}

.standalone-main {
  min-height: calc(100vh - 74px);
}

.page-hero {
  min-height: 318px;
  display: grid;
  align-items: center;
  color: #ffffff;
  text-align: center;
  background: #0b2638 url("./assets/矩形 503 拷贝@2x.jpg") center / cover
    no-repeat;
}

.about-page-hero {
  background-image:
    linear-gradient(rgba(8, 32, 51, 0.38), rgba(8, 32, 51, 0.38)),
    url("./assets/花瓣素材_医疗系列简约风多个组合分子背景_193898428@2x.jpg");
}

.product-page-hero,
.product-detail-hero {
  background-image:
    linear-gradient(rgba(8, 32, 51, 0.42), rgba(8, 32, 51, 0.42)),
    url("./assets/花瓣素材_美妆系列科技感蓝色分子结构背景_194766923@2x.png");
}

.join-page-hero {
  background-image:
    linear-gradient(rgba(8, 32, 51, 0.45), rgba(8, 32, 51, 0.45)),
    url("./assets/图层 50@2x.png");
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: 34px;
  letter-spacing: 0;
}

.page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.real-home-hero {
  min-height: 690px;
  display: grid;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(
      90deg,
      rgba(8, 32, 51, 0.82) 0 48%,
      rgba(8, 32, 51, 0.12) 100%
    ),
    url("./assets/矩形 503 拷贝@2x.jpg") center / cover no-repeat;
}

.real-home-inner {
  padding: 90px 0;
}

.real-home-inner h1 {
  max-width: 720px;
  margin: 0 0 20px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.2;
  letter-spacing: 0;
}

.real-product-board tbody tr:hover {
  background: #f6fffc;
}

.standalone-placeholder {
  display: grid;
  align-content: center;
  min-height: calc(100vh - 74px);
  padding: 80px 20px;
  background: #f6fbfd;
}

.mobile-shell {
  width: min(100%, 390px);
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  color: var(--ink);
  background: #f6fbfd;
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 16px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.mobile-header img {
  width: 118px;
  height: auto;
}

.mobile-header button,
.mobile-search-box button {
  border: 0;
  color: #ffffff;
  background: var(--mint);
}

.mobile-banner {
  min-height: 210px;
  display: grid;
  align-content: center;
  padding: 24px;
  color: #ffffff;
  background:
    linear-gradient(rgba(8, 32, 51, 0.46), rgba(8, 32, 51, 0.46)),
    url("./assets/矩形 503 拷贝@2x.jpg") center / cover no-repeat;
}

.mobile-banner h1 {
  margin: 0 0 8px;
  font-size: 26px;
  letter-spacing: 0;
}

.mobile-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.mobile-search-box {
  display: grid;
  grid-template-columns: 1fr 72px;
  gap: 8px;
  padding: 14px;
  background: #ffffff;
}

.mobile-search-box input {
  min-width: 0;
  height: 40px;
  border: 1px solid var(--line);
  outline: 0;
  padding: 0 12px;
}

.mobile-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 10px 0;
  background: var(--line);
}

.mobile-menu-grid a {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 8px;
  background: #ffffff;
  color: var(--ink);
  font-size: 13px;
  text-align: center;
}

.mobile-section {
  display: grid;
  gap: 12px;
  padding: 18px 14px 34px;
}

.mobile-section h1,
.mobile-section h2 {
  margin: 0;
  font-size: 18px;
}

.mobile-section article {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.mobile-section article img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #f8fcfd;
}

.mobile-section strong,
.mobile-section span {
  display: block;
}

.mobile-section span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.mobile-search-ui {
  width: min(100%, 750px);
  min-height: 100vh;
  margin: 0 auto;
  color: #6d7378;
  background: #ffffff;
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

.mobile-search-ui-head {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  height: 51px;
  padding: 0 13px 0 0;
  background: #ffffff;
  box-shadow: 0 3px 7px rgba(31, 52, 62, 0.14);
}

.mobile-search-ui-back {
  position: relative;
  display: block;
  width: 34px;
  height: 51px;
}

.mobile-search-ui-back::before,
.mobile-search-ui-back::after {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 2px;
  height: 19px;
  background: #33393d;
  transform-origin: center;
  content: "";
}

.mobile-search-ui-back::before {
  transform: translateY(calc(-50% - 6px)) rotate(42deg);
}

.mobile-search-ui-back::after {
  transform: translateY(calc(-50% + 6px)) rotate(-42deg);
}

.mobile-search-ui-form {
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr);
  align-items: center;
  height: 39px;
  margin: 0;
  padding: 0 11px;
  background: #f3f3f3;
  border-radius: 4px;
}

.mobile-search-ui-form span {
  position: relative;
  width: 19px;
  height: 19px;
  border: 3px solid #a5a9ad;
  border-radius: 50%;
}

.mobile-search-ui-form span::after {
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 10px;
  height: 3px;
  background: #a5a9ad;
  transform: rotate(45deg);
  transform-origin: left center;
  content: "";
}

.mobile-search-ui-form input {
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  color: #666f75;
  background: transparent;
  font-size: 16px;
  line-height: 1;
}

.mobile-search-ui-form input::placeholder {
  color: #b3b5b7;
}

.mobile-search-ui-history {
  padding: 35px 14px 0 15px;
}

.mobile-search-ui-history h2 {
  margin: 0 0 11px;
  color: #a5a8ab;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
}

.mobile-search-ui-history div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 13px;
}

.mobile-search-ui-history a {
  position: relative;
  min-width: 0;
  padding-left: 22px;
  overflow: hidden;
  color: #4f5559;
  font-size: 14px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-search-ui-history a::before {
  position: absolute;
  left: 1px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid #a5a9ad;
  border-radius: 50%;
  transform: translateY(-50%);
  content: "";
}

.mobile-search-ui-history a::after {
  position: absolute;
  left: 7px;
  top: calc(50% - 6px);
  width: 5px;
  height: 6px;
  border-left: 2px solid #a5a9ad;
  border-bottom: 2px solid #a5a9ad;
  transform: rotate(0deg);
  transform-origin: left bottom;
  content: "";
}

.mobile-ui-topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: none;
  grid-template-columns: minmax(0, 1fr) 58px 58px;
  align-items: center;
  height: 64px;
  background: #ffffff;
  border-bottom: 1px solid #dce8e8;
  box-shadow: 0 2px 8px rgba(13, 48, 62, 0.08);
}

.mobile-ui-logo {
  display: flex;
  align-items: center;
  min-width: 0;
  height: 100%;
  padding: 0 12px 0 14px;
}

.mobile-ui-logo img {
  display: block;
  width: min(100%, 284px);
  height: auto;
}

.mobile-ui-search-trigger,
.mobile-ui-menu-toggle {
  display: grid;
  width: 58px;
  height: 64px;
  place-items: center;
  border: 0;
  border-left: 1px solid #e1eeee;
  background: #ffffff;
}

.mobile-ui-search-trigger img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.mobile-ui-menu-toggle {
  gap: 7px;
  padding: 17px 13px;
}

.mobile-ui-menu-toggle span {
  display: block;
  width: 30px;
  height: 4px;
  background: #72787c;
}

.mobile-ui-main {
  min-height: calc(100vh - 64px);
}

.mobile-ui-main .mobile-shell {
  width: min(100%, 750px);
  min-height: calc(100vh - 64px);
}

.mobile-ui-main .mobile-header {
  display: none;
}

.mobile-ui-main .mobile-banner {
  margin: 28px 32px 0;
  min-height: 214px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(11, 156, 130, 0.82), rgba(33, 195, 169, 0.42)),
    url("./assets/矩形 503 拷贝@2x.jpg") center / cover no-repeat;
}

.mobile-ui-main .mobile-banner h1 {
  font-size: 28px;
}

.mobile-ui-main .mobile-search-box {
  margin: -88px 50px 0;
  padding: 0;
  grid-template-columns: 1fr;
  background: transparent;
}

.mobile-ui-main .mobile-search-box input {
  height: 46px;
  padding: 0 18px;
  border: 0;
  color: #82959a;
  background: rgba(255, 255, 255, 0.96);
  font-size: 13px;
}

.mobile-ui-main .mobile-search-box button {
  display: none;
}

.mobile-ui-main .mobile-menu-grid {
  display: none;
}

.mobile-ui-main .mobile-section {
  padding-top: 96px;
}

.mobile-ui-menu {
  position: fixed;
  top: 64px;
  right: 0;
  z-index: 58;
  width: min(70vw, 360px);
  min-width: 280px;
  min-height: calc(100vh - 64px);
  padding: 22px 0 32px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: -14px 18px 34px rgba(26, 60, 65, 0.09);
  backdrop-filter: blur(8px);
  visibility: hidden;
  transform: translateX(calc(100% + 40px));
  transition: transform 0.22s ease;
}

.mobile-ui-menu.open {
  visibility: visible;
  transform: translateX(0);
}

.mobile-ui-close {
  display: grid;
  width: 40px;
  height: 40px;
  margin: 0 0 6px 22px;
  place-items: center;
  border: 0;
  background: transparent;
}

.mobile-ui-close img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: invert(60%) sepia(16%) saturate(178%) hue-rotate(138deg);
}

.mobile-ui-lang-row {
  position: absolute;
  top: 27px;
  right: 22px;
  display: flex;
  gap: 11px;
}

.mobile-ui-lang-row a {
  display: grid;
  min-width: 66px;
  height: 52px;
  place-items: center;
  color: #35c6ad;
  border: 1px solid rgba(53, 198, 173, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 28px;
  line-height: 1;
}

.mobile-ui-lang-row a.active {
  color: #ffffff;
  background: #35c6ad;
}

.mobile-ui-menu nav {
  display: grid;
  margin-top: 42px;
}

.mobile-ui-menu nav a {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 82px;
  padding: 0 32px 0 28px;
  color: #202c35;
  border-bottom: 1px solid rgba(188, 213, 213, 0.62);
  background: rgba(255, 255, 255, 0.42);
  font-size: 28px;
  line-height: 1.2;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}

.mobile-ui-menu nav a.active,
.mobile-ui-menu nav a:hover {
  color: #35c6ad;
  background: rgba(255, 255, 255, 0.58);
}

.mobile-ui-menu nav a i {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
}

.mobile-ui-menu nav a i img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.section-kicker {
  margin: 0 0 8px;
  color: rgba(19, 201, 165, 0.2);
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: 0;
}

.section-title.centered {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-title h2,
.section-copy h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 30px;
  letter-spacing: 0;
}

.section-title p:not(.section-kicker),
.section-copy p {
  color: var(--muted);
  line-height: 1.9;
}

.about {
  position: relative;
  overflow: hidden;
  background: #eefafa
    url("./assets/花瓣素材_医疗系列简约风多个组合分子背景_193898428@2x.jpg")
    center top / cover no-repeat;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.section-copy h3 {
  margin: 0 0 18px;
  font-size: 20px;
}

.pill-link {
  display: inline-grid;
  min-width: 106px;
  min-height: 36px;
  margin-top: 8px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--mint);
  font-size: 14px;
}

.about-media {
  min-height: 310px;
}

.about-media img {
  display: block;
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.feature-strip article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 6px 14px;
  align-items: center;
  min-height: 78px;
  padding: 18px 20px;
  border: 1px solid rgba(19, 201, 165, 0.22);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 25px rgba(11, 58, 82, 0.06);
}

.feature-strip strong,
.feature-strip span {
  display: block;
}

.feature-strip img {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.feature-strip strong {
  margin-bottom: 8px;
  color: var(--mint-dark);
}

.feature-strip span {
  color: var(--muted);
  font-size: 13px;
}

.products {
  background: #ffffff;
}

.product-board {
  display: grid;
  grid-template-columns: 160px 1fr;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.category-tabs {
  display: grid;
  align-content: start;
  background: #effbf8;
}

.category-tabs button {
  min-height: 58px;
  border: 0;
  border-bottom: 1px solid rgba(19, 201, 165, 0.2);
  color: var(--mint-dark);
  background: transparent;
  font-weight: 700;
}

.category-tabs button.active {
  color: #ffffff;
  background: var(--mint);
}

.product-table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
}

th {
  color: #ffffff;
  background: var(--mint);
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: 14px;
}

td {
  color: #526272;
}

td strong {
  color: var(--ink);
}

.product-thumb {
  display: inline-block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  border: 1px solid #dff2ee;
  background: #ffffff;
}

.service-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.service-icons article {
  display: grid;
  gap: 8px;
  min-height: 126px;
  place-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  background: #ffffff;
  text-align: center;
}

.service-icons img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.service-icons em,
.advantage-grid p,
.news-card p {
  margin: 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.8;
}

.advantages {
  background: var(--soft);
}

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

.advantage-grid article {
  min-height: 210px;
  padding: 30px;
  border: 1px solid var(--line);
  background: #ffffff;
  text-align: center;
  box-shadow: 0 12px 28px rgba(11, 58, 82, 0.06);
}

.advantage-grid img {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.advantage-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

.partners {
  color: #ffffff;
  background: #11b89c url("./assets/图层 50@2x.png") center / cover no-repeat;
}

.section-title.light h2 {
  color: #ffffff;
}

.section-title.light .section-kicker {
  color: rgba(255, 255, 255, 0.2);
}

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

.partner-grid span {
  display: grid;
  min-height: 74px;
  place-items: center;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(5, 67, 66, 0.12);
}

.partner-grid img {
  width: 100%;
  max-width: 170px;
  height: 56px;
  object-fit: contain;
}

.news {
  background: #ffffff;
}

.news-tabs {
  display: flex;
  gap: 10px;
}

.news-tabs button {
  min-width: 78px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #ffffff;
}

.news-tabs button.active {
  color: #ffffff;
  border-color: var(--mint);
  background: var(--mint);
}

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

.news-card {
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(11, 58, 82, 0.06);
}

.news-image {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.news-card div:last-child {
  padding: 22px;
}

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

.news-card h3 {
  min-height: 52px;
  margin: 10px 0;
  font-size: 18px;
  line-height: 1.45;
}

.news-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--mint-dark);
  font-weight: 700;
}

.subpage {
  border-top: 1px solid var(--line);
}

.detail-layout,
.join-grid,
.article-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 54px;
  align-items: center;
}

.detail-image {
  display: grid;
  min-height: 320px;
  place-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #f7fffc, #eefaf8);
  box-shadow: var(--shadow);
}

.detail-image img {
  width: min(220px, 70%);
  height: auto;
}

.detail-copy h3,
.article-layout h3,
.join-grid h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

.detail-copy dl {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.detail-copy dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
}

.detail-copy dt {
  color: var(--ink);
  font-weight: 700;
}

.detail-copy dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.join {
  background: #f7fbfb;
}

.join-grid > img {
  width: min(220px, 70%);
  justify-self: center;
}

.join-grid p {
  color: var(--muted);
  line-height: 1.9;
}

.join-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.join-steps article {
  padding: 20px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.join-steps span {
  display: block;
  color: var(--mint);
  font-size: 24px;
  font-weight: 800;
}

.join-steps strong {
  display: block;
  margin-top: 8px;
}

.news-detail {
  background: #ffffff;
}

body.news-detail-page {
  padding-top: 0;
}

.ui-news-detail-page {
  padding: 0 0 0;
  background: #edfafa;
}

.ui-news-detail-page > .container {
  width: min(1760px, calc(100% - 160px));
}

.ui-news-detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  margin-bottom: 22px;
  color: #7a8d92;
  font-size: 15px;
}

.ui-news-detail-breadcrumb span {
  position: relative;
  padding-left: 22px;
}

.ui-news-detail-breadcrumb span::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 15px;
  background: url("./assets/定位@2x.png") center / contain no-repeat;
  transform: translateY(-50%);
  content: "";
}

.ui-news-detail-breadcrumb i {
  font-style: normal;
  color: #a6b6b8;
}

.ui-news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1460px) 350px;
  gap: 30px;
  align-items: start;
}

.ui-news-detail-main {
  min-height: 1088px;
  padding: 50px 90px 24px;
  background: #ffffff;
  border-radius: 8px;
}

.ui-news-detail-head {
  padding: 0 0 24px;
  border-bottom: 1px solid #edf1f1;
  text-align: center;
}

.ui-news-detail-head h2 {
  margin: 0;
  color: #111819;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.35;
}

.ui-news-detail-meta {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 24px;
  color: #8e989b;
  font-size: 17px;
}

.ui-news-detail-meta time,
.ui-news-detail-meta span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding-left: 28px;
}

.ui-news-detail-meta time::before,
.ui-news-detail-meta span::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  opacity: 0.46;
  content: "";
}

.ui-news-detail-meta time::before {
  background: url("./assets/时间 (1)@2x.png") center / contain no-repeat;
}

.ui-news-detail-meta span::before {
  border: 1.5px solid currentColor;
  border-radius: 12px;
  box-sizing: border-box;
}

.ui-news-detail-meta span::after {
  position: absolute;
  left: 7px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
  opacity: 0.46;
  content: "";
}

.ui-news-detail-copy {
  padding: 48px 0 0;
}

.ui-news-detail-copy p {
  margin: 0 0 12px;
  color: #8b9699;
  font-size: 17px;
  line-height: 1.85;
}

.ui-news-detail-figure {
  margin: 48px 0 0;
  text-align: center;
}

.ui-news-detail-figure img {
  display: inline-block;
  width: min(100%, 750px);
  border-radius: 8px;
}

.ui-news-detail-tags {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid #edf1f1;
}

.ui-news-detail-tags h3,
.ui-news-detail-related h3 {
  position: relative;
  margin: 0;
  padding-left: 22px;
  color: #111819;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
}

.ui-news-detail-tags h3::before,
.ui-news-detail-related h3::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 36px;
  border-radius: 999px;
  background: #10c4a8;
  content: "";
}

.ui-news-detail-tags div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ui-news-detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 20px;
  color: #65787d;
  background: #f0f8f8;
  border-radius: 4px;
  font-size: 17px;
}

.ui-news-detail-prevnext {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 0;
}

.ui-news-detail-prevnext a {
  color: #535f63;
  font-size: 17px;
}

.ui-news-detail-side .ui-hot-card {
  background: #ffffff;
  border-radius: 8px;
  min-height: 744px;
  padding: 25px 25px 0;
}

.ui-news-detail-side .ui-hot-card h3 {
  margin-bottom: 22px;
  font-size: 28px;
}

.ui-news-detail-side .ui-hot-card a {
  padding: 20px 0 21px;
  color: #606d70;
  font-size: 19px;
  line-height: 1.55;
}

.ui-news-detail-related {
  margin-top: 30px;
  margin-bottom: 0;
  padding: 38px 36px 50px;
  background: #ffffff;
  border-radius: 8px;
}

.ui-news-detail-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  margin-top: 33px;
}

.ui-news-detail-related-grid ul {
  display: grid;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ui-news-detail-related-grid li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding-left: 18px;
}

.ui-news-detail-related-grid li::before {
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #35c6ad;
  content: "";
}

.ui-news-detail-related-grid a {
  color: #4f6065;
  font-size: 17px;
  line-height: 1.5;
}

.ui-news-detail-related-grid a:hover {
  color: var(--mint);
}

.ui-news-detail-related-grid time {
  position: relative;
  min-width: 112px;
  padding-left: 24px;
  color: #9aa8ac;
  font-size: 15px;
}

.ui-news-detail-related-grid time::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  background: url("./assets/时间 (1)@2x.png") center / contain no-repeat;
  transform: translateY(-50%);
  opacity: 0.46;
  content: "";
}

.article-layout {
  align-items: start;
  grid-template-columns: 1fr 300px;
}

.article-layout article {
  padding: 34px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.article-layout time {
  display: block;
  margin-bottom: 16px;
  color: var(--mint-dark);
}

.article-layout p {
  color: var(--muted);
  line-height: 2;
}

.article-layout aside {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #f8fcfd;
}

.article-layout aside img {
  width: 34px;
  height: 34px;
}

.article-layout aside a {
  color: var(--muted);
}

.mobile-pages {
  background: #f6fbfd;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 360px));
  justify-content: center;
  gap: 34px;
}

.phone-frame {
  min-height: 640px;
  padding: 18px;
  border: 10px solid #182d3a;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-header {
  margin: -18px -18px 18px;
  padding: 18px;
  color: #ffffff;
  background: var(--deep);
  font-weight: 700;
}

.phone-hero {
  height: 180px;
  margin-bottom: 18px;
  background: url("./assets/矩形 503 拷贝@2x.jpg") center / cover no-repeat;
}

.phone-search {
  min-height: 44px;
  margin-bottom: 18px;
  padding: 12px 14px;
  color: var(--muted);
  background: #f2f7f7;
}

.phone-search.active {
  color: var(--ink);
  border: 1px solid var(--mint);
  background: #ffffff;
}

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

.phone-list span,
.phone-result {
  padding: 16px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.phone-result {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.phone-result img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.page-overview {
  background: #ffffff;
}

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

.overview-grid a {
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #f8fcfd;
  font-weight: 700;
}

.overview-grid a:hover {
  color: #ffffff;
  border-color: var(--mint);
  background: var(--mint);
}

.contact-page {
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    url("./assets/矩形 10 拷贝@2x.png") center / cover no-repeat;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: start;
}

.contact-layout p {
  color: var(--muted);
  line-height: 1.9;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-cards article {
  padding: 18px 22px;
  border-left: 4px solid var(--mint);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(5, 67, 66, 0.08);
}

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

.contact-cards span {
  margin-top: 6px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  outline: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfefe;
}

.contact-form textarea {
  min-height: 126px;
  resize: vertical;
}

.contact-form button {
  min-height: 44px;
  border: 0;
  color: #ffffff;
  background: var(--mint);
  font-weight: 700;
}

.placeholder-pages {
  background: #f6fbfd;
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.placeholder-grid article {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 42px 32px;
  border: 1px solid var(--line);
  background: #ffffff;
  text-align: center;
  box-shadow: 0 12px 28px rgba(11, 58, 82, 0.06);
}

.placeholder-grid img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.placeholder-grid h1,
.placeholder-grid h3 {
  margin: 0;
  font-size: 22px;
}

.placeholder-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.ui-page {
  margin: 0;
  min-width: 320px;
  color: #202c35;
  background: #ffffff;
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

.ui-page-soft {
  background: #edfafa;
}

.ui-product-list-page .about-ui-float {
  display: none;
}

.ui-advantages-page .about-ui-float a:first-child {
  display: none;
}

.ui-join-page .about-ui-float a:first-child {
  display: none;
}

.ui-news-list-page .about-ui-float a:first-child {
  display: none;
}

.ui-container {
  width: min(1760px, calc(100% - 160px));
  margin: 0 auto;
}

.ui-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: 80px;
  border-bottom: 1px solid rgba(18, 84, 92, 0.1);
}

.ui-header-light {
  color: #1d2c34;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 16px rgba(14, 70, 78, 0.05);
}

.ui-header-dark {
  color: #ffffff;
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.22);
  transition:
    background 0.22s ease,
    backdrop-filter 0.22s ease;
}

.ui-header-dark.is-scrolled {
  background: rgba(3, 18, 36, 0.52);
  backdrop-filter: blur(8px);
}

.ui-nav {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr) 224px auto;
  align-items: center;
  gap: 22px;
  width: min(1760px, calc(100% - 160px));
  height: 100%;
  margin: 0 auto;
}

.ui-logo img {
  display: block;
  width: 124px;
  height: auto;
}

.ui-header-dark .ui-logo img {
  filter: brightness(0) invert(1);
}

.ui-nav nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 2.35vw, 52px);
  font-size: 15px;
}

.ui-nav nav a {
  position: relative;
  display: grid;
  align-items: center;
  height: 80px;
  white-space: nowrap;
}

.ui-header-light .ui-nav nav a {
  color: #1f2c34;
}

.ui-header-dark .ui-nav nav a {
  color: rgba(255, 255, 255, 0.92);
}

.ui-nav nav a::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #17b99f;
  transform: translateX(-50%);
  content: "";
}

.ui-nav nav a.active {
  color: #17b99f;
}

.ui-header-dark .ui-nav nav a.active {
  color: #ffffff;
}

.ui-header-dark .ui-nav nav a::after {
  background: #ffffff;
}

.ui-nav nav a.active::after,
.ui-nav nav a:hover::after {
  width: 48px;
}

.ui-search {
  display: grid;
  grid-template-columns: 1fr 38px;
  height: 32px;
  border: 1px solid rgba(27, 84, 88, 0.25);
  border-radius: 2px;
  overflow: hidden;
}

.ui-header-dark .ui-search {
  border-color: rgba(255, 255, 255, 0.55);
}

.ui-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 12px;
  color: inherit;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.home-ui-highlight {
  color: #35c6ad;
}

.ui-header-dark .ui-search input {
  color: #ffffff;
  background: transparent;
}
.ui-header-dark .ui-search input::placeholder {
  color: #ffffff;
}
.ui-search button {
  border: 0;
  background:
    url("./assets/sousuo 拷贝@2x.png") center / 16px 16px no-repeat,
    transparent;
}

.ui-lang {
  white-space: nowrap;
  font-size: 13px;
}

.ui-main-offset {
  padding-top: 80px;
}

.ui-breadcrumb {
  display: grid;
  align-items: center;
  min-height: 58px;
  color: #8da3a4;
  background: #edfafa;
  font-size: 13px;
}

.ui-breadcrumb .ui-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ui-breadcrumb span::before {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: -3px;
  background: url("./assets/定位@2x.png") center / contain no-repeat;
  content: "";
}

.ui-breadcrumb em {
  color: #aebfc0;
  font-style: normal;
}

.ui-breadcrumb strong {
  color: #303b41;
}

.ui-hero {
  position: relative;
  display: grid;
  min-height: 350px;
  padding-top: 80px;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

.ui-hero::after {
  position: absolute;
  inset: 0;
  background: rgba(4, 19, 37, 0.28);
  content: "";
}

.ui-hero > div {
  position: relative;
  z-index: 1;
}

.ui-hero p {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.14);
  font-size: clamp(76px, 13vw, 176px);
  font-weight: 900;
  line-height: 1;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.ui-hero h1 {
  margin: 0 0 14px;
  font-size: 38px;
  letter-spacing: 0;
}

.ui-hero span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.ui-hero-service {
  min-height: 400px;
  background: url("./assets/advantage-hero-bg.jpg") center top / cover no-repeat;
}

.ui-hero-service::after {
  display: none;
}

.ui-hero-service > div {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
}

.ui-hero-contact {
  background:
    linear-gradient(90deg, rgba(39, 199, 172, 0.86), rgba(38, 198, 171, 0.84)),
    url("./assets/矩形 10 拷贝@2x.png") center / cover no-repeat;
}

.ui-product-page {
  padding: 0 0 85px;
  background: #edfafa;
}

.ui-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1380px) 350px;
  gap: 30px;
}

.ui-filter-panel {
  display: grid;
  gap: 24px;
  margin-bottom: 34px;
  padding: 38px 23px 37px 25px;
  background: #ffffff;
  border-radius: 8px;
}

.ui-filter-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  min-width: 0;
  color: #1f2d34;
  font-size: 20px;
  line-height: 1.2;
}

.ui-filter-panel a {
  flex: 0 1 auto;
  white-space: nowrap;
}

.ui-filter-panel span,
.ui-filter-panel button {
  flex: 0 0 auto;
  color: #8d8d8d;
}

.ui-filter-panel a.on {
  color: #25c8ad;
}

.ui-filter-panel button {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  border: 0;
  background: transparent;
  font: inherit;
}

.ui-filter-panel button::after {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 12px;
  border-right: 2px solid #9ea7aa;
  border-bottom: 2px solid #9ea7aa;
  transform: rotate(45deg) translateY(-3px);
  content: "";
}

.ui-product-list {
  display: grid;
  gap: 19px;
}

.ui-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 33px;
  font-size: 20px;
}

.ui-pagination a {
  display: inline-grid;
  min-width: 40px;
  height: 40px;
  padding: 0 13px;
  place-items: center;
  color: #969696;
  line-height: 1;
  background: #ffffff;
  border: 0;
  border-radius: 3px;
}

.ui-pagination a.active {
  color: #ffffff;
  background: #15c3a4;
}

.ui-pagination .ui-page-prev,
.ui-pagination .ui-page-next {
  min-width: 90px;
}

.ui-product-item {
  display: grid;
  grid-template-columns: 198px minmax(0, 1fr) 168px;
  gap: 28px;
  align-items: center;
  min-height: 221px;
  padding: 19px 40px 19px 21px;
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
}

.ui-product-item:hover {
  border-color: #10c4a8;
}

/* .ui-product-item.featured {
  border-color: #10c4a8;
} */

.ui-product-item > img {
  width: 178px;
  height: 178px;
  object-fit: contain;
  border: 0;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(24, 88, 94, 0.09);
}

.ui-product-item h2 {
  margin: 0 0 11px;
  color: #202020;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.ui-product-item.featured h2 {
  color: #10c4a8;
}

.ui-product-item p {
  max-width: 980px;
  margin: 0 0 24px;
  color: #969696;
  font-size: 20px;
  line-height: 1.58;
}

.ui-product-item.featured p {
  color: #262626;
}

.ui-product-item span,
.ui-detail-summary dd span {
  display: inline-block;
  min-width: 156px;
  margin-right: 10px;
  padding: 7px 17px 8px;
  color: #4d4d4d;
  background: #effafa;
  border-radius: 3px;
  font-size: 20px;
  line-height: 1.2;
}

.ui-inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 136px;
  height: 54px;
  justify-self: end;
  gap: 10px;
  color: #ffffff;
  background: #15c3a4;
  border-radius: 3px;
  font-size: 24px;
  line-height: 1;
}

.ui-inquiry::before {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin-right: 0;
  background: url("./assets/询价@2x.png") center / contain no-repeat;
  content: "";
}

.ui-sidebar {
  display: grid;
  align-content: start;
  gap: 22px;
}

.ui-service-card,
.ui-hot-card,
.ui-related,
.ui-detail-panel {
  background: #ffffff;
  border-radius: 8px;
}

.ui-service-card {
  display: grid;
  justify-items: center;
  height: 393px;
  padding: 51px 24px 40px;
  text-align: center;
}

.ui-service-card img {
  width: 146px;
  height: 113px;
  object-fit: contain;
  margin-bottom: 30px;
}

.ui-service-card h3 {
  margin: 0 0 15px;
  color: #202020;
  font-size: 24px;
  font-weight: 700;
}

.ui-service-card p {
  margin: 0 0 26px;
  color: #10c4a8;
  font-size: 18px;
}

.ui-service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  min-height: 54px;
  gap: 10px;
  color: #ffffff;
  background: #15c3a4;
  border-radius: 3px;
  font-size: 20px;
}

.ui-service-card a::before {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  margin-right: 0;
  background: url("./assets/询价@2x.png") center / contain no-repeat;
  content: "";
}

.ui-hot-card {
  padding: 21px 20px 0;
}

.ui-hot-card h3,
.ui-related h2 {
  position: relative;
  margin: 0 0 16px;
  padding-left: 24px;
  color: #202020;
  font-size: 28px;
  font-weight: 700;
}

.ui-hot-card h3::before,
.ui-related h2::before,
.ui-block-heading::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 5px;
  height: 34px;
  background: #10c4a8;
  border-radius: 999px;
  content: "";
}

.ui-hot-card a {
  display: block;
  padding: 17px 0 18px;
  color: #747474;
  border-bottom: 1px solid #edf1f1;
  font-size: 20px;
  line-height: 1.6;
}

.ui-hot-card a:hover{
  color: #10c4a8;
}

/* .ui-hot-card a:nth-of-type(2) {
  color: #10c4a8;
} */

.ui-detail-hero {
  padding: 72px 0 76px;
  background: #ffffff;
}

.ui-detail-top {
  display: grid;
  grid-template-columns: 450px minmax(0, 1fr);
  gap: 62px;
  align-items: start;
}

.ui-detail-image {
  display: grid;
  width: 420px;
  height: 420px;
  place-items: center;
  justify-self: end;
  border: 1px solid #edf1f1;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(16, 72, 76, 0.04);
}

.ui-detail-image img {
  width: 300px;
  height: 300px;
  object-fit: contain;
}

.ui-detail-summary {
  position: relative;
  min-height: 360px;
  padding-top: 4px;
}

.ui-detail-summary h1 {
  margin: 0 0 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e8eeee;
  font-size: 22px;
  font-weight: 500;
}

.ui-detail-summary dl {
  display: grid;
  gap: 22px;
  margin: 0;
}

.ui-detail-summary dl div {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
}

.ui-detail-summary dt {
  color: #506267;
}

.ui-detail-summary dd {
  margin: 0;
  color: #7c8b90;
}

.ui-detail-summary .ui-inquiry {
  position: absolute;
  right: 0;
  top: 140px;
}

.ui-detail-content {
  padding: 32px 0 86px;
  background: #edfafa;
}

.ui-detail-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.ui-related {
  padding: 30px 22px;
}

.ui-related a {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  align-items: center;
  padding: 13px 0;
  color: #202c35;
  font-size: 15px;
  line-height: 1.45;
}

.ui-related img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  border: 1px solid #edf1f1;
  border-radius: 6px;
}

.ui-detail-tabs {
  display: flex;
  gap: 70px;
  min-height: 64px;
  align-items: center;
  padding: 0 34px;
  border-bottom: 1px solid #e8eeee;
}

.ui-detail-tabs button {
  position: relative;
  border: 0;
  background: transparent;
  color: #202c35;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.ui-detail-tabs button.active::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -21px;
  height: 3px;
  background: #35c6ad;
  content: "";
}

.ui-detail-body {
  min-height: 640px;
  padding: 34px 34px 54px;
  color: #44585f;
  font-size: 16px;
  line-height: 2.05;
}

.ui-detail-body p {
  margin: 0 0 8px;
}

.ui-detail-body p:nth-of-type(n + 7) {
  margin-top: 26px;
}

.ui-detail-body h3 {
  display: inline-block;
  margin: 28px 0 0;
  padding-bottom: 12px;
  border-bottom: 3px solid #35c6ad;
  color: #202c35;
  font-size: 22px;
  scroll-margin-top: 120px;
}

.ui-detail-body .ui-detail-section-title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.ui-title {
  position: relative;
  margin: 0 auto 50px;
  text-align: center;
}

.ui-title p {
  margin: 0 0 -13px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(54px, 6.4vw, 92px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.ui-join-brand .ui-title p,
.ui-contact-page .ui-title p {
  color: rgba(40, 202, 176, 0.08);
}

.ui-title h2 {
  margin: 0 0 14px;
  color: #101b22;
  font-size: 32px;
  font-weight: 800;
}

.ui-title span {
  color: #9aaaae;
  font-size: 18px;
}

.ui-services {
  padding: 35px 0 84px;
  background: linear-gradient(#edfafa 0 1032px, #ffffff 1032px 100%);
}

.ui-services .ui-title {
  margin-bottom: 45px;
}

.ui-services .ui-title p {
  margin-bottom: -10px;
  font-size: clamp(50px, 6vw, 80px);
  line-height: 0.86;
}

.ui-services .ui-title h2 {
  margin-bottom: 10px;
}

.ui-custom-grid {
  display: grid;
  grid-template-columns: repeat(3, 528px);
  justify-content: space-between;
  gap: 0;
  margin-bottom: 76px;
}

.ui-custom-grid article {
  position: relative;
  min-height: 294px;
  padding: 54px 48px 42px 49px;
  /* overflow: hidden; */
  background: #ffffff;
  border-radius: 10px;
  box-shadow: none;
}

.ui-custom-grid article::after {
  position: absolute;
  right: 49px;
  bottom: 31px;
  width: 130px;
  height: 130px;
  background: center / contain no-repeat;
  /* opacity: 0.1; */
  content: "";
}

.ui-custom-grid article:nth-child(1)::after {
  background-image: url("./assets/化合物@2x.png");
}

.ui-custom-grid article:nth-child(2)::after {
  background-image: url("./assets/上-抗体界面按钮-非选中@2x.png");
}

.ui-custom-grid article:nth-child(3)::after {
  background-image: url("./assets/更多@2x.png");
}

.ui-custom-grid b {
  display: block;
  margin-bottom: 24px;
  color: #202c35;
  font-size: 24px;
  font-weight: 700;
}

.ui-custom-grid p {
  margin: 0;
  color: #8b8b8b;
  font-size: 16px;
  line-height: 2;
}

.ui-custom-grid i {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 88px;
  height: 88px;
  padding: 0;
  overflow: hidden;
  color: #ffffff;
  /* background: #36c6b5; */
  clip-path: polygon(0 0, 62% 0, 100% 38%, 100% 100%);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  writing-mode: horizontal-tb;
  text-indent: -999px;
}

.ui-custom-grid i::before {
  position: absolute;
  top: 28px;
  right: -4px;
  width: 88px;
  color: #ffffff;
  text-indent: 0;
  transform: rotate(45deg);
  transform-origin: center;
  content: attr(data-label);
}

.ui-import-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  width: min(100%, 1180px);
  margin: 0 auto 132px;
}

.ui-import-grid article {
  display: grid;
  min-height: 220px;
  align-content: center;
  padding: 39px 44px;
  color: #ffffff;
  border-radius: 7px;
  text-align: center;
  box-shadow: none;
}

.ui-import-grid article:nth-child(1) {
  background: linear-gradient(135deg, #4d72ee, #33c6d7);
}

.ui-import-grid article:nth-child(2) {
  background: linear-gradient(135deg, #31c7a9, #78d6bc);
}

.ui-import-grid article:nth-child(3) {
  background: linear-gradient(135deg, #4e65e6, #955be9);
}

.ui-import-grid h3 {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 700;
}

.ui-import-grid p {
  margin: 0;
  font-size: 19px;
  line-height: 1.6;
}

.ui-service-image-grid,
.ui-brand-cards,
.ui-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.ui-service-image-grid article,
.ui-brand-cards article,
.ui-contact-cards article {
  padding: 28px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(20, 78, 90, 0.07);
  text-align: center;
}

.ui-service-image-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  min-height: 240px;
  padding: 0 48px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) calc(100% - 18px), #effaf8 calc(100% - 18px)),
    #ffffff;
  box-shadow: 0 13px 28px rgba(23, 92, 112, 0.09);
  text-align: left;
  transition:
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.ui-service-image-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 42px rgba(23, 92, 112, 0.13);
}

.ui-service-image-grid article::before {
  position: absolute;
  inset: 0 0 18px;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

/* .ui-service-image-grid article::after {
  position: absolute;
  inset: 0 0 18px;
  z-index: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0 38%, rgba(255, 255, 255, 0.56) 100%);
  content: "";
} */
.ui-service-image-grid .ui-service-card-register{
  background-image: url("./assets/花瓣素材_美妆系列科技感蓝色分子结构背景_194766923@2x.png");
  background-position: center;
  background-size: 100% 100%;
}
/* .ui-service-image-grid .ui-service-card-register::before {
  background-image: url("./assets/花瓣素材_医疗系列简约风多个组合分子背景_193898428@2x.jpg");
  background-position: center;
} */

.ui-service-image-grid .ui-service-card-compliance{
background-image: url("./assets/花瓣素材_法律咨询服务理念，律师为司法、法律、商业立法工作，文书专家咨询，图标与背景的人_111963110@2x.png");
  background-position: center;
  background-size: 100% 100%;
}

/* .ui-service-image-grid .ui-service-card-compliance::before {
  background-image: url("./assets/花瓣素材_法律咨询服务理念，律师为司法、法律、商业立法工作，文书专家咨询，图标与背景的人_111963110@2x.png");
  background-position: center;
} */

/* .ui-service-image-grid .ui-service-card-coldchain::before {
  background-image: url("./assets/花瓣素材_常规内容-科技风系列科技感抽象几何线条背景_194312191@2x.png");
  background-position: center bottom;
} */

.ui-service-image-grid .ui-service-card-coldchain{
  background-image: url("./assets/图层 59@2x.png");
  background-position: center;
  background-size: 100% 100%;
}

.ui-service-image-grid i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  background: transparent;
  border-radius: 50%;
  font-style: normal;
}

.ui-service-image-grid i img {
  display: block;
  width: 132px;
  height: 132px;
  object-fit: contain;
}

.ui-service-image-grid div {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.ui-service-image-grid h3 {
  margin: 0 0 18px;
  color: #111111;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.2;
}

.ui-service-image-grid p {
  margin: 0;
  color: #666666;
  font-size: 19px;
  line-height: 1.45;
}

.ui-cooperation-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 42%);
  align-items: center;
  min-height: 313px;
  margin-top: 84px;
  padding: 0 100px;
  color: #111111;
  border-radius: 0;
  background: url("./assets/c36e9349f206a06b1a11d4211e03df5b24ebb3b92b1d1b-fTgoKP@2x.png");
  background-size: 100% 100%;
  text-align: left;
}

.ui-cooperation-banner::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
}

.ui-cooperation-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
}

.ui-cooperation-copy h2 {
  margin: 0;
  color: #111111;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.25;
}

.ui-cooperation-copy h2::after {
  display: block;
  width: 104px;
  height: 5px;
  margin: 34px 0 34px;
  background: #10c5aa;
  content: "";
}

.ui-cooperation-copy p {
  margin: 0 0 12px;
  font-weight: 400;
  font-size: 21px;
  color: #111111;
}

.ui-cooperation-copy a {
  color: #111111;
  font-weight: bold;
font-size: 27px;
color: #111111;
  letter-spacing: 0;
}

.ui-cooperation-visual {
  display: none;
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 470px);
  height: 260px;
}

.ui-cooperation-orbit {
  position: absolute;
  right: 36px;
  top: 28px;
  width: 250px;
  height: 150px;
  border: 1px solid rgba(23, 194, 180, 0.45);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.ui-cooperation-orbit::before,
.ui-cooperation-orbit::after {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #0bbca6;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(11, 188, 166, 0.12);
  content: "";
}

.ui-cooperation-orbit::before {
  left: 28px;
  top: 22px;
}

.ui-cooperation-orbit::after {
  right: 34px;
  bottom: 20px;
}

.ui-cooperation-dna {
  position: absolute;
  right: 54px;
  top: 0;
  width: 82px;
  height: 180px;
  border-radius: 999px;
  transform: rotate(25deg);
}

.ui-cooperation-dna::before,
.ui-cooperation-dna::after {
  position: absolute;
  inset: 0;
  border: 10px solid transparent;
  border-left-color: #28b9ff;
  border-right-color: #28b9ff;
  border-radius: 50%;
  content: "";
}

.ui-cooperation-dna::after {
  border-left-color: #04d6c0;
  border-right-color: #04d6c0;
  transform: scaleX(-1) translateX(16px);
}

.ui-cooperation-flask {
  position: absolute;
  right: 238px;
  top: 74px;
  width: 74px;
  height: 108px;
  border: 8px solid rgba(16, 198, 190, 0.72);
  border-top: 0;
  border-radius: 8px 8px 38px 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(23, 219, 196, 0.42));
  transform: rotate(-16deg);
}

.ui-cooperation-flask::before {
  position: absolute;
  left: 19px;
  top: -54px;
  width: 22px;
  height: 56px;
  background: rgba(40, 185, 255, 0.62);
  border-radius: 10px 10px 2px 2px;
  content: "";
}

.ui-cooperation-platform {
  position: absolute;
  right: 48px;
  bottom: 18px;
  width: 256px;
  height: 72px;
  background: linear-gradient(180deg, #ffffff, #dffcff);
  border: 3px solid rgba(40, 215, 190, 0.9);
  border-radius: 24px;
  box-shadow:
    0 16px 28px rgba(25, 171, 178, 0.16),
    inset 0 -12px 20px rgba(20, 205, 184, 0.14);
  transform: skewX(-18deg);
}

.ui-cooperation-platform::before {
  position: absolute;
  left: 38px;
  right: 38px;
  top: 22px;
  height: 18px;
  background: linear-gradient(90deg, rgba(16, 198, 170, 0.2), rgba(40, 185, 255, 0.25));
  border-radius: 999px;
  content: "";
}

.ui-join-top {
  padding: 26px 0 74px;
  background: #edfafa;
}

.ui-join-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.ui-join-cards article {
  min-height: 240px;
  padding: 82px 56px 48px;
  background: #ffffff url("./assets/bg-manual-1@2x.png") center / cover
    no-repeat;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(42, 158, 150, 0.05);
}

.ui-join-cards article:nth-child(2) {
  background-image: url("./assets/bg-manual-2@2x.png");
}

.ui-join-cards h2 {
  margin: 0 0 12px;
  color: #202c35;
  font-size: 21px;
  line-height: 1.28;
}

.ui-join-cards p {
  margin: 0 0 26px;
  color: #9aa8ac;
  font-size: 13px;
}

.ui-join-cards a,
.ui-join-about-grid a {
  display: inline-grid;
  min-width: 102px;
  min-height: 34px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(90deg, #21ceb0, #12bea1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.ui-join-about {
  padding: 116px 0 66px;
  background: #ffffff;
}

.ui-join-about-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 94px;
  align-items: center;
}

.ui-join-about-grid h2 {
  margin: 0 0 28px;
  color: #202c35;
  font-size: 24px;
}

.ui-join-about-grid p {
  margin: 0 0 12px;
  color: #687b80;
  font-size: 14px;
  line-height: 2.08;
}

.ui-join-about-grid > img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

.ui-join-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.ui-join-stats article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 6px 16px;
  align-items: center;
  min-height: 100px;
  padding: 20px 28px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 14px 32px rgba(20, 78, 90, 0.07);
}

.ui-join-stats b {
  color: #202c35;
  font-size: 16px;
}

.ui-join-stats img {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.ui-join-stats span {
  color: #7b8b90;
  font-size: 13px;
}

.ui-join-brand {
  padding: 80px 0 92px;
  background: #ffffff;
}

.ui-join-brand .ui-title {
  margin-bottom: 64px;
}

.ui-brand-cards {
  width: min(100%, 1030px);
  margin: 0 auto;
  gap: 58px 142px;
}

.ui-brand-cards article {
  display: grid;
  justify-items: center;
  min-height: 250px;
  padding: 38px 32px 28px;
  border: 1px solid #eef2f2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(43, 85, 94, 0.08);
}

.ui-brand-cards img {
  width: 74px;
  height: 74px;
  padding: 18px;
  object-fit: contain;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    rgba(92, 128, 255, 0.92),
    rgba(135, 243, 174, 0.78)
  );
  box-shadow: 0 8px 20px rgba(40, 116, 126, 0.12);
}

.ui-brand-cards article:nth-child(2) img {
  background: linear-gradient(145deg, #25d0bc, #4de4b0);
}

.ui-brand-cards article:nth-child(3) img {
  background: linear-gradient(145deg, #6e6bf4, #81b4ff);
}

.ui-brand-cards article:nth-child(4) img {
  background: linear-gradient(145deg, #62e490, #a8ffd4);
}

.ui-brand-cards article:nth-child(5) img {
  background: linear-gradient(145deg, #f0b65e, #ffe2a0);
}

.ui-brand-cards article:nth-child(6) img {
  background: linear-gradient(145deg, #69d9ff, #9be6ff);
}

.ui-brand-cards h3 {
  margin: 18px 0 13px;
  color: #202c35;
  font-size: 18px;
}

.ui-brand-cards p {
  margin: 0;
  color: #7c8e93;
  font-size: 13px;
  line-height: 1.8;
}

.ui-supplier-strength,
.ui-join-partners {
  padding: 90px 0 86px;
  background: #edfafa;
}

.ui-supplier-strength .ui-title,
.ui-join-partners .ui-title {
  margin-bottom: 62px;
}

.ui-supplier-strength .ui-title p,
.ui-join-partners .ui-title p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(46px, 6vw, 78px);
}

.ui-supplier-strength .ui-title h2,
.ui-join-partners .ui-title h2 {
  margin-top: -30px;
  color: #202c35;
}

.ui-supplier-strength .ui-title span,
.ui-join-partners .ui-title span {
  color: #9aaaae;
}

.ui-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 42px;
}

.ui-video-grid article {
  position: relative;
  margin: 0;
}

.ui-video-grid article::before {
  position: absolute;
  inset: 0 0 43px;
  border-radius: 7px;
  background: rgba(2, 22, 35, 0.2);
  content: "";
  pointer-events: none;
}

.ui-video-grid img {
  display: block;
  width: 100%;
  height: 202px;
  object-fit: cover;
  border-radius: 7px;
}

.ui-video-grid i {
  position: absolute;
  left: 50%;
  top: 101px;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 22px rgba(20, 78, 90, 0.14);
}

.ui-video-grid i::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #5d6e78;
  content: "";
}

.ui-video-grid p {
  margin: 14px 0 0;
  color: #202c35;
  font-size: 14px;
}

.ui-join-partners {
  padding-top: 64px;
}

.ui-join-partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 42px;
}

.ui-join-partner-grid span {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 14px 20px;
  background: #ffffff;
  border-radius: 4px;
}

.ui-join-partner-grid img {
  width: 100%;
  max-width: 150px;
  height: 52px;
  object-fit: contain;
}

.ui-join-contact {
  padding: 78px 0 82px;
  background: #ffffff;
}

.ui-join-contact .ui-container > div {
  display: grid;
  min-height: 170px;
  place-items: center;
  padding: 34px 24px;
  color: #ffffff;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(23, 195, 166, 0.95), rgba(19, 183, 161, 0.94)),
    url("./assets/花瓣素材_美妆系列科技感蓝色分子结构背景_194766923@2x.png")
      center / cover no-repeat;
  text-align: center;
}

.ui-join-contact h2 {
  margin: 0 0 20px;
  font-size: 20px;
}

.ui-join-contact h2::after {
  display: block;
  width: 54px;
  height: 3px;
  margin: 16px auto 0;
  background: rgba(255, 255, 255, 0.8);
  content: "";
}

.ui-join-contact span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.ui-join-contact strong {
  font-size: 20px;
}

.ui-join-page .ui-join-top {
  padding: 10px 0 112px;
  background: #edfafa;
}

.ui-join-page .ui-join-cards {
  gap: 60px;
}

.ui-join-page .ui-join-cards article {
  height: 210px;
  min-height: 210px;
  padding: 55px 54px 34px;
  background-position: center;
  border-radius: 8px;
  box-shadow: none;
}

.ui-join-page .ui-join-cards h2 {
  margin-bottom: 12px;
  font-size: 21px;
  font-weight: 800;
}

.ui-join-page .ui-join-cards p {
  margin-bottom: 24px;
  font-weight: 400;
font-size: 16px;
color: #999999;
}

.ui-join-page .ui-join-cards a,
.ui-join-page .ui-join-about-grid a {
  min-width: 112px;
  min-height: 36px;
  font-size: 14px;
}

.ui-join-page .ui-join-about {
  padding: 88px 0 54px;
}

.ui-join-page .ui-join-about-grid {
  grid-template-columns: minmax(0, 1fr) 840px;
  gap: 84px;
}

.ui-join-page .ui-join-about-grid h2 {
  margin-bottom: 31px;
  font-size: 27px;
  font-weight: 800;
}

.ui-join-page .ui-join-about-grid p {
  margin-bottom: 17px;
  color: #666666;
  text-indent: 2rem;
  font-size: 19px;
  line-height: 2.02;
}

.ui-join-page .ui-join-about-grid > img {
  width: 840px;
  height: 475px;
  border-radius: 8px;
}

.ui-join-page .ui-join-stats {
  gap: 28px;
  margin-top: 50px;
}

.ui-join-page .ui-join-stats article {
  min-height: 100px;
  padding: 22px 38px;
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(20, 78, 90, 0.08);
}

.ui-join-page .ui-join-stats b {
  font-size: 24px;
  font-weight: 800;
}

.ui-join-page .ui-join-stats span {
  color: #666666;
  font-size: 16px;
}

.ui-join-page .ui-join-brand {
  padding: 72px 0 98px;
  overflow: hidden;
  background: #ffffff;
}

.ui-join-page .ui-join-brand .ui-title {
  display: grid;
  justify-items: center;
  margin: 0 auto 64px;
  text-align: center;
}

.ui-join-page .ui-join-brand .ui-title p {
  position: absolute;
  left: 50%;
  top: -20px;
  width: auto;
  min-width: 650px;
  margin: 0;
  color: rgba(218, 249, 244, 0.72);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 74px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}

.ui-join-page .ui-join-brand .ui-title h2 {
  position: relative;
  z-index: 1;
  margin: 18px 0 10px;
  color: #111111;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
}

.ui-join-page .ui-join-brand .ui-title span {
  position: relative;
  z-index: 1;
  color: #9aa3a4;
  font-size: 14px;
  line-height: 1.6;
}

.ui-join-page .ui-brand-cards {
  width: min(100%, 1360px);
  grid-template-columns: repeat(3, 408px);
  justify-content: space-between;
  gap: 64px 0;
}

.ui-join-page .ui-brand-cards article {
  display: grid;
  align-content: center;
  justify-items: center;
  height: 356px;
  min-height: 0;
  padding: 24px 34px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(32, 55, 62, 0.09);
  text-align: center;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.ui-join-page .ui-brand-cards article.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ui-join-page .ui-brand-cards article:hover {
  transform: translateY(-12px);
  border-color: rgba(53, 198, 173, 0.38);
  box-shadow: 0 24px 46px rgba(30, 88, 98, 0.12);
}

.ui-join-page .ui-brand-cards i {
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  margin-bottom: 24px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.45s ease;
}

.ui-join-page .ui-brand-cards article:hover i {
  transform: rotateY(180deg);
}

.ui-join-page .ui-brand-cards img {
  width: 132px;
  height: 132px;
  padding: 0;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ui-join-page .ui-brand-cards h3 {
  position: relative;
  margin: 0 0 28px;
  color: #12181b;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.25;
}

.ui-join-page .ui-brand-cards h3::after {
  position: absolute;
  left: 50%;
  bottom: -17px;
  width: 65px;
  height: 2px;
  background: #2b63f0;
  transform: translateX(-50%);
  content: "";
}

.ui-join-page .ui-brand-cards article:nth-child(2) h3::after {
  background: #0cb6a8;
}

.ui-join-page .ui-brand-cards article:nth-child(4) h3::after {
  background: #13dd74;
}

.ui-join-page .ui-brand-cards article:nth-child(5) h3::after {
  background: #dba55d;
}

.ui-join-page .ui-brand-cards article:nth-child(6) h3::after {
  background: #48c2ed;
}

.ui-join-page .ui-brand-cards p {
  margin: 0;
  color: #72858a;
  font-size: 19px;
  line-height: 1.6;
}

.ui-join-page .ui-supplier-strength {
  padding: 92px 0 82px;
}

.ui-join-page .ui-supplier-strength .ui-title,
.ui-join-page .ui-join-partners .ui-title {
  margin-bottom: 60px;
}

.ui-join-page .ui-video-grid {
  gap: 38px 40px;
}

.ui-join-page .ui-video-grid img {
  height: 314px;
}

.ui-join-page .ui-video-grid article::before {
  inset: 0 0 51px;
}

.ui-join-page .ui-video-grid i {
  top: 157px;
  width: 82px;
  height: 82px;
}

.ui-join-page .ui-video-grid p {
  margin-top: 17px;
  font-size: 20px;
}

.ui-join-page .ui-join-partners {
  padding: 70px 0 86px;
}

.ui-join-page .ui-join-partner-grid {
  gap: 25px 42px;
}

.ui-join-page .ui-join-partner-grid span {
  min-height: 92px;
}

.ui-join-page .ui-join-contact {
  padding: 96px 0 104px;
  background: #ffffff;
}

.ui-join-page .ui-join-contact .ui-container > div {
  display: grid;
  min-height: 309px;
  align-content: center;
  justify-items: center;
  padding: 38px 24px 34px;
  overflow: hidden;
  color: #ffffff;
  border-radius: 8px;
  background-image:url("./assets/矩形 698 拷贝@2x.png");
  background-size: 100% 100%;
  text-align: center;
}

.ui-join-page .ui-join-contact h2 {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.35;
}

.ui-join-page .ui-join-contact h2::after {
  display: block;
  width: 103px;
  height: 6px;
  margin: 18px auto 0;
  background: #FFFFFF;
  content: "";
}

.ui-join-page .ui-join-contact span {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.4;
}

.ui-join-page .ui-join-contact strong {
  color: #ffffff;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.25;
}

.ui-news-page {
  padding: 0 0 125px;
  background: #edfafa;
}

.ui-block-heading {
  position: relative;
  margin: 0 0 22px;
  padding-left: 17px;
  color: #202c35;
  font-size: 24px;
  line-height: 1.2;
}

.ui-feature-news {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 70px;
}

.ui-feature-news article {
  min-width: 0;
  cursor: pointer;
}

.ui-feature-news img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 7px;
}

.ui-feature-news h3 {
  margin: 16px 0 0;
  color: #202c35;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
}

.ui-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 42px;
  align-items: start;
}

.ui-news-page .ui-hot-card {
  padding: 24px 24px 14px;
  border-radius: 7px;
  box-shadow: none;
}

.ui-news-page .ui-hot-card h3 {
  margin-bottom: 22px;
  font-size: 22px;
  line-height: 1.25;
}

.ui-news-page .ui-hot-card a {
  padding: 13px 0 15px;
  color: #5e7076;
  font-size: 15px;
  line-height: 1.68;
}
.ui-news-page .ui-hot-card a:hover{
  color: #2ebba4;
}

.ui-news-title-row {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.ui-news-title-row p {
  margin: 0 0 -14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 62px;
  font-weight: 900;
  line-height: 0.8;
}

.ui-news-title-row h1 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.15;
}

.ui-news-title-row span {
  color: #8a9da1;
}

.ui-news-title-row nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ui-news-title-row button {
  min-width: 114px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  color: #202c35;
  background: #ffffff;
  font-size: 16px;
}

.ui-news-title-row button.active {
  color: #2ebba4;
  border: 1px solid #2ebba4;
}

.ui-news-list {
  display: grid;
  gap: 20px;
}

.ui-news-list article {
  display: grid;
  grid-template-columns: 323px 1fr;
  gap: 36px;
  min-height: 236px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

/* .ui-news-list article.active {
  border-color: #2ebba4;
} */


.ui-news-list article:hover {
  border-color: #2ebba4;
  box-shadow: 0 12px 30px rgba(5, 67, 66, 0.09);
  transform: translateY(-2px);
}

.ui-news-list img {
  width: 323px;
  height: 200px;
  object-fit: cover;
  border-radius: 7px;
}

.ui-news-list h2 {
  margin: 0 0 12px;
  color: #2ebba4;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.45;
}

.ui-news-list p {
  margin: 0 0 5px;
  color: #202c35;
  font-size: 16px;
  line-height: 1.82;
}

.ui-news-list time {
  display: block;
  margin: 10px 0 12px;
  color: #98a6a9;
  font-size: 15px;
}

.ui-news-list span {
  display: inline-block;
  margin-right: 8px;
  padding: 6px 12px;
  color: #697d82;
  background: #edfafa;
  font-size: 15px;
}

.ui-news-pagination {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 42px 0 0;
}

.ui-news-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 40px;
  padding: 0 13px;
  place-items: center;
  color: #8c9698;
  background: #ffffff;
  border: 0;
  border-radius: 4px;
  font-size: 18px;
}

.ui-news-pagination a.active,
.ui-news-pagination a:hover {
  color: #ffffff;
  background: #35c6ad;
  border-color: #35c6ad;
}

@media (min-width: 901px) {
  .ui-news-list-page .ui-news-page {
    padding-bottom: 96px;
  }

  .ui-news-list-page .ui-block-heading {
    margin-bottom: 22px;
    font-size: 24px;
    font-weight: 800;
  }

  .ui-news-list-page .ui-feature-news {
    gap: 28px;
    margin-bottom: 72px;
  }

  .ui-news-list-page .ui-feature-news h3 {
    margin-top: 15px;
    font-size: 18px;
  }

  .ui-news-list-page .ui-news-layout {
    grid-template-columns: minmax(0, 1418px) 300px;
    gap: 42px;
  }

  .ui-news-list-page .ui-news-title-row {
    margin-bottom: 28px;
  }

  .ui-news-list-page .ui-news-title-row p {
    font-size: 68px;
  }

  .ui-news-list-page .ui-news-title-row h1 {
    font-size: 34px;
    font-weight: 800;
  }

  .ui-news-list-page .ui-news-list {
    gap: 18px;
  }

  .ui-news-list-page .ui-news-list article {
    grid-template-columns: 323px minmax(0, 1fr);
    gap: 36px;
    min-height: 226px;
    padding: 18px;
  }

  .ui-news-list-page .ui-news-list img {
    height: 190px;
  }

  .ui-news-list-page .ui-news-list h2 {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .ui-news-list-page .ui-news-list p {
    font-size: 16px;
    line-height: 1.68;
  }

  .ui-news-list-page .ui-news-list time {
    margin: 8px 0 10px;
  }

  .ui-news-list-page .ui-news-page .ui-hot-card {
    min-height: 564px;
  }

  .ui-news-list-page .ui-news-pagination {
    margin-top: 36px;
  }
}

.ui-contact-page {
  padding: 42px 0 92px;
  background: #ffffff;
}

.ui-message-form {
  display: grid;
  justify-items: center;
  min-height: 915px;
  padding: 150px 0 74px;
  background: #eefafa;
  border-radius: 7px;
}

.ui-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 126px;
  width: min(1180px, calc(100% - 160px));
  margin-top: 50px;
}

.ui-form-grid label {
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 20px;
  color: #202c35;
  font-size: 20px;
  line-height: 1.2;
}

.ui-form-grid input,
.ui-form-grid select,
.ui-form-grid textarea {
  width: 100%;
  border: 1px solid #d7e6e6;
  outline: 0;
  background: rgba(255, 255, 255, 0.12);
  min-height: 50px;
  padding: 0 18px;
  color: #44585f;
  font-size: 16px;
}

.ui-form-grid .wide {
  grid-column: 1 / -1;
  align-items: start;
}

.ui-form-grid textarea {
  min-height: 244px;
  padding: 14px 18px;
  resize: vertical;
}

.ui-message-form > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 150px;
  min-height: 52px;
  margin-top: 54px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: #35c6ad;
  font-size: 18px;
}

.ui-message-form > button::before {
  display: block;
  width: 24px;
  height: 24px;
  background: url("./assets/fj.png") center / contain no-repeat;
  content: "";
}

.ui-business {
  padding: 98px 0 0;
}

.contact-ui-page .ui-business {
  position: relative;
  padding-top: 98px;
}

.contact-ui-page .ui-business::before {
  display: none;
}

.contact-ui-page .ui-contact-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 54px;
  height: 394px;
  margin-top: 56px;
  padding: 54px 76px 0;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(239, 254, 253, 0.78),
      rgba(215, 248, 244, 0.88)
    ),
    url("./assets/矩形 10 拷贝@2x.png") center bottom / cover no-repeat;
  border-radius: 8px;
}

.contact-ui-page .ui-contact-cards article {
  position: relative;
  min-height: 346px;
  padding: 44px 28px 28px;
  overflow: hidden;
  background: #ffffff;
  border: 10px solid #313c3e;
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 18px 40px rgba(17, 79, 86, 0.08);
  text-align: center;
}

.contact-ui-page .ui-contact-cards img {
  display: block;
  width: 118px;
  height: 118px;
  margin: 24px auto 26px;
  padding: 7px;
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 0 18px rgba(16, 57, 61, 0.07);
}

.contact-ui-page .ui-contact-cards h3 {
  margin: 0;
  color: #202c35;
  font-size: 21px;
  font-weight: 800;
}

.contact-ui-page .ui-contact-cards p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 40px;
  margin: 0;
  color: #ffffff;
  background: #12c5a6;
  border-radius: 999px;
  font-size: 17px;
}

.ui-contact-cards img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 14px;
}

.ui-contact-cards p {
  color: #64777d;
}

.contact-ui-page .ui-header-dark {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.contact-ui-page .ui-header-dark.is-scrolled {
  background: rgba(39, 190, 164, 0.9);
}

.contact-ui-page .ui-hero {
  min-height: 400px;
  padding-top: 80px;
   background-image: url("./assets/矩形 589 拷贝@2x.jpg");
   background-size: 100% 100%;
}

.contact-ui-page .ui-hero::after {
  background: rgba(16, 180, 154, 0.02);
}

.contact-ui-page .ui-hero p {
  color: rgba(255, 255, 255, 0.16);
  font-size: clamp(86px, 13vw, 178px);
}

.contact-ui-page .ui-hero h1 {
  margin-bottom: 15px;
  font-size: 34px;
}

.contact-ui-page .ui-breadcrumb {
  min-height: 66px;
  background: #ffffff;
}

.contact-ui-page .ui-breadcrumb .ui-container {
  width: min(1760px, calc(100% - 160px));
}

.contact-ui-page .ui-message-form .ui-title {
  position: relative;
  display: grid;
  justify-items: center;
  margin: 0 auto 46px;
  text-align: center;
}

.contact-ui-page .ui-message-form .ui-title p {
  position: absolute;
  left: 50%;
  top: -18px;
  z-index: 0;
  width: max-content;
  margin: 0;
  color: rgba(218, 249, 244, 0.88);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(58px, 5.8vw, 94px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}

.contact-ui-page .ui-message-form .ui-title h2 {
  position: relative;
  z-index: 1;
  margin: 22px 0 12px;
  color: #111111;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
}

.contact-ui-page .ui-message-form .ui-title span,
.contact-ui-page .ui-business .ui-title span {
  position: relative;
  z-index: 1;
  color: #8ea2a6;
  font-size: 16px;
  line-height: 1.6;
}

.contact-ui-page .ui-business .ui-title {
  position: relative;
  display: grid;
  justify-items: center;
  margin: 0 auto 54px;
  text-align: center;
}

.contact-ui-page .ui-business .ui-title p {
  position: absolute;
  left: 50%;
  top: -18px;
  z-index: 0;
  width: max-content;
  margin: 0;
  color: rgba(218, 249, 244, 0.88);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(58px, 6.1vw, 104px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}

.contact-ui-page .ui-business .ui-title h2 {
  position: relative;
  z-index: 1;
  margin: 24px 0 12px;
  color: #111111;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
}

.contact-ui-page .ui-contact-page {
  padding: 0 0 42px;
}

.contact-ui-page .ui-container {
  width: min(1760px, calc(100% - 160px));
}

.contact-ui-page .ui-message-form {
  min-height: 870px;
  padding: 96px 0 62px;
  background: #EFFAF8;
}

.contact-ui-page .ui-form-grid {
  gap: 16px 110px;
  width: 1220px;
  margin-top: 38px;
}

.contact-ui-page .ui-form-grid label {
  grid-template-columns: 104px 1fr;
  gap: 12px;
  font-size: 16px;
}

.contact-ui-page .ui-form-grid input,
.contact-ui-page .ui-form-grid select,
.contact-ui-page .ui-form-grid textarea {
  min-height: 42px;
  padding: 0 14px;
  color: #66797f;
  background: rgba(255, 255, 255, 0.24);
  font-size: 13px;
}

.contact-ui-page .ui-form-grid textarea {
  min-height: 184px;
  padding: 12px 14px;
  resize: none;
}

.contact-ui-page .ui-message-form > button {
  min-width: 152px;
  min-height: 48px;
  margin-top: 28px;
  gap: 8px;
  font-size: 16px;
}

.contact-ui-page .ui-business-banner {
  position: relative;
  min-height: 308px;
  overflow: hidden;
  background-image: url("./assets/c36e9349f206a06b1a11d4211e03df5b24ebb3b92b1d1b-fTgoKP@2x.jpg");
  background-size: 100% 100%;
  border-radius: 0;
}

.contact-ui-page .ui-business-banner::after {
  position: absolute;
  right: 170px;
  bottom: 0;
  width: 292px;
  height: 226px;
  /* background: url("./assets/图层 595@2x.png") center / contain no-repeat; */
  content: "";
}

.contact-ui-page .ui-business-banner > div {
  position: relative;
  z-index: 1;
  padding: 72px 0 0 200px;
}

.contact-ui-page .ui-business-banner h3 {
  margin: 0 0 24px;
  color: #111819;
  font-size: 28px;
  font-weight: 800;
}

.contact-ui-page .ui-business-banner span {
  display: block;
  width: 102px;
  height: 5px;
  margin-bottom: 41px;
  background: #12c5a6;
}

.contact-ui-page .ui-business-banner p {
  margin: 0 0 9px;
  color: #334044;
  font-size: 20px;
}

.contact-ui-page .ui-business-banner strong {
  display: block;
  color: #111819;
  font-size: 30px;
  line-height: 1.1;
}

.contact-ui-page .ui-message-form > button::before {
  width: 22px;
  height: 22px;
}

.home-ui-page {
  margin: 0;
  min-width: 320px;
  color: #202c35;
  background: #ffffff;
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

.home-ui-hero {
  position: relative;
  display: grid;
  min-height: 650px;
  align-items: center;
  padding-top: 80px;
  color: #ffffff;
  overflow: hidden;
  background: #051527;
}

.home-ui-hero::before {
  position: absolute;
  inset: -48px 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 21, 39, 0.78) 0 42%,
      rgba(5, 21, 39, 0.18) 68%,
      rgba(5, 21, 39, 0.04)
    ),
    url("./assets/矩形 503 拷贝@2x.jpg") center
      calc(50% + var(--parallax-y, 0px)) / cover no-repeat;
  transform: scale(1.03);
  content: "";
}

.home-ui-hero::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 34%,
    rgba(59, 214, 200, 0.1),
    transparent 30%
  );
  pointer-events: none;
  content: "";
}

.home-ui-hero-inner {
  position: relative;
  z-index: 1;
  padding: 86px 0 112px;
}

.home-ui-hero h2 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: 0;
}

.home-ui-hero p {
  max-width: 720px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.8;
}

.home-ui-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 138px;
  width: min(690px, 100%);
  height: 46px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(2, 16, 30, 0.22);
}

.home-ui-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 20px;
  color: #344950;
  font-size: 14px;
}

.home-ui-search input::placeholder {
  color: #9caeb0;
}

.home-ui-search button {
  position: relative;
  border: 0;
  color: #ffffff;
  background: #2fc0a8;
  font-weight: 700;
}

.home-ui-search button::after {
  position: absolute;
  width: 16px;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  background: url("./assets/sousuo 拷贝@2x.png") center / contain no-repeat;
  content: "";
}

.home-ui-hotwords {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: #afffef;
  font-size: 13px;
}

.home-ui-hotwords a {
  color: #afffef;
}

.home-ui-about {
  position: relative;
  /* padding: 54px 0 66px; */
  overflow: hidden;
  background: linear-gradient(to right, rgba(237, 250, 250, 0.9) 0%, rgba(221, 239, 241, 1) 70%, rgb(235, 247, 247) 100%);
}

.home-ui-about .ui-container {
  padding: 100px 0 100px;
  background: url("./assets/花瓣素材_医疗系列简约风多个组合分子背景_193898428@2x.jpg");
  background-size: 100% 100%;
  background-repeat: no-repeat;


      /* background-image: url(https://omo-oss-image1.thefastimg.com/portal-saas/pg2024062817443858692/cms/image/13b39efb-0ffd-443e-8795-dbf1d0a3afaa.jpg); */
    /* background-repeat: no-repeat; */
    background-position: top center;
    padding-bottom: 5%;
    background-attachment: fixed;
}

/* .home-ui-about::before {
  position: absolute;
  inset: -60px 0;
  background:
    linear-gradient(rgba(237, 250, 250, 0.9), rgba(237, 250, 250, 0.92)),
    url("./assets/花瓣素材_医疗系列简约风多个组合分子背景_193898428@2x.jpg") center calc(50% + var(--parallax-y, 0px)) / cover no-repeat;
  content: "";
} */

.home-ui-about > .ui-container,
.home-ui-partners > .ui-container,
.site-footer > * {
  position: relative;
  z-index: 1;
}

.home-ui-title {
  position: relative;
  margin: 0 auto 38px;
  text-align: center;
}

.home-ui-title p {
  position: absolute;
  width: 100%;
  top: -28px;
  margin: 0 0 -12px;
  color: rgba(39, 202, 176, 0.08);
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  white-space: nowrap;
}

.home-ui-title h2 {
  margin: 0 0 12px;
  color: #101b22;
  font-size: 35px;
  line-height: 1.25;
}

.home-ui-title span {
  color: #8a9ca0;
  font-size: 19px;
}

.home-ui-title-about p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(78px, 10vw, 150px);
}

.home-ui-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
  gap: 76px;
  align-items: center;
}

.home-ui-about-grid article {
  position: relative;
  padding-top: 12px;
}

/* .home-ui-about-grid article::before {
  position: absolute;
  top: -60px;
  left: -38px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 150px;
  font-weight: 900;
  line-height: 1;
  content: "“";
} */

.home-ui-about-grid h3 {
  position: relative;
  margin: 0 0 22px;
  color: #1d2b32;
  font-size: 27px;
}

.home-ui-about-grid p {
  position: relative;
  margin: 0 0 17px;
  text-indent: 2rem;
  color: #63787e;
  font-size: 19px;
  line-height: 2.05;
}

.home-ui-about-grid p._t {
  margin-bottom: 0;
}

.home-ui-about-grid a {
  width: fit-content;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 34px;
  place-items: center;
  margin-top: 6px;
  color: #ffffff;
  background: #35c6ad;
  border-radius: 999px;
  font-size: 19px;
  padding: 14px 20px;
}

.home-ui-about-grid a img {
  margin-left: 12px;
  width: 22px;
  height: 22px;
}

.home-ui-about-grid > img {
  display: block;
  width: 100%;
  height: 502px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(13, 48, 62, 0.12);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.home-ui-about-grid > img:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 24px 48px rgba(13, 48, 62, 0.18);
}

.home-ui-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.home-ui-stats article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 6px 16px;
  align-items: center;
  min-height: 86px;
  padding: 20px 26px;
  background: #f7f8fc;
  box-shadow: 0px 0px 23px 1px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  border-radius: 5px;
  box-shadow: 0 10px 26px rgba(11, 58, 82, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.home-ui-stats article:hover {
  transform: translateY(-8px);
  border-color: rgba(53, 198, 173, 0.4);
  box-shadow: 0 18px 36px rgba(11, 58, 82, 0.14);
}

.home-ui-stats img {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.home-ui-stats b {
  color: #202c35;
  font-size: 24px;
}

.home-ui-stats span {
  color: #7f9094;
  font-size: 16px;
  line-height: 1.45;
}

.home-ui-products {
  padding: 62px 0 50px;
  background: #ffffff;
}

.home-ui-product-table {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 30px;
  width: 100%;
  margin: 0 auto;
  overflow: visible;
  box-shadow: 0 0 0 rgba(13, 87, 92, 0);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.home-ui-product-table:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(13, 87, 92, 0.1);
}

.home-ui-product-table aside {
  display: grid;
  align-content: start;
  overflow: hidden;
  background: #e9f7f5;
  border-radius: 12px 12px 0px 0px;
}

.home-ui-product-table aside strong,
.home-ui-product-table aside a {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 18px 20px;
  border-bottom: 0;
  font-size: 24px;
  line-height: 1.22;
  text-align: center;
}

.home-ui-product-table aside strong {
  min-height: 52px;
  color: #ffffff;
  background: #16bea0;
  font-size: 24px;
  font-weight: 400;
}
.about-ui-intro.home-ui-about{
  background: #EFFAF8;
}
.about-ui-intro.home-ui-about .ui-container{
  background: #EFFAF8;
}
.about-ui-partners.home-ui-partners{
  background: #EFFAF8;

}
.about-ui-partners.home-ui-partners .home-ui-title-light p{
    /* position: relative; */
    color: #FFFFFF;
    /* z-index: 1; */
}
.about-ui-partners.home-ui-partners .home-ui-title-light h2{
   position: relative;
    color: #111111;
    z-index: 2;
}
.about-ui-partners.home-ui-partners .home-ui-title-light span{
    color: #999999;
}

.home-ui-product-table aside a:first-of-type {
  min-height: 150px;
  padding: 0 20px;
  /* color: #ffffff; */
  background: #e9f7f5;
}

.home-ui-product-table aside a {
  color: #1d2c34;
  font-size: 24px;
  min-height: 150px;
  font-weight: 400;
}

.home-ui-product-table aside a:first-of-type {
  justify-self: center;
  align-self: center;
  width: 160px;
  min-height: 150px !important;
  padding: 0;
  /* background: #16bea0; */
  border-radius: 10px;
}

.home-ui-table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  background: #eaf8f6;
  border-radius: 12px 12px 0px 0px;
}

.home-ui-product-table table {
  min-width: 1530px;
  box-shadow: none;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}

.home-ui-product-table th {
  height: 70px;
  padding: 0 16px;
  color: #ffffff;
  background: #16bea0;
  border-bottom: 0;
  font-size: 24px;
  font-weight: 400;
}

.home-ui-product-table th:nth-child(1),
.home-ui-product-table td:nth-child(1) {
  width: 140px;
}

.home-ui-product-table th:nth-child(2),
.home-ui-product-table td:nth-child(2) {
  width: 250px;
}

.home-ui-product-table th:nth-child(3),
.home-ui-product-table td:nth-child(3) {
  width: 280px;
}

.home-ui-product-table th:nth-child(4),
.home-ui-product-table td:nth-child(4) {
  width: 250px;
}

.home-ui-product-table td {
  height: 150px;
  padding: 20px 18px;
  color: #0d1518;
  background: #eaf8f6;
  border-bottom: 0;
  font-size: 21px;
  line-height: 1.35;
  vertical-align: middle;
}

.home-ui-product-table tbody tr:nth-child(even) td {
  background: #ffffff;
}

.home-ui-product-table tbody tr td {
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.home-ui-product-table tbody tr:hover td {
  color: #0d6f62;
  background: #e9fbf8;
}

.home-ui-structure {
  display: inline-grid;
  width: 100px;
  height: 100px;
  place-items: center;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(6, 65, 64, 0.06);
}

.home-ui-product-table td img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.home-ui-service-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 108px;
  width: min(100%, 1320px);
  margin: 100px auto 0;
}

.home-ui-service-row article {
  display: grid;
  min-height: 316px;
  align-content: center;
  justify-items: center;
  padding: 46px 24px 40px;
  background: #edfafa;
  border-radius: 8px;
  text-align: center;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.home-ui-service-row article:hover {
  transform: translateY(-10px);
  background: #e4faf6;
  box-shadow: 0 18px 34px rgba(11, 58, 82, 0.1);
}

.home-ui-service-row img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  margin-bottom: 34px;
}

.home-ui-service-row b {
  color: #0e1619;
  font-size: 26px;
  line-height: 1.25;
}

.home-ui-service-row span {
  margin-top: 14px;
  color: #8f989a;
  font-size: 20px;
  line-height: 1.25;
}

.home-ui-brand {
  padding: 76px 0 98px;
  background: #ffffff;
}

.home-ui-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 62px 140px;
  width: min(100%, 1528px);
  margin: 0 auto;
}

.home-ui-brand-grid article {
  display: grid;
  justify-items: center;
  height: 356px;
  align-content: center;
  padding: 24px 34px 24px;
  border: 0;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.home-ui-brand-grid article:hover {
  transform: translateY(-12px);
  border-color: rgba(53, 198, 173, 0.38);
  box-shadow: 0 24px 46px rgba(30, 88, 98, 0.12);
}

.home-ui-brand-grid i {
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  margin-bottom: 24px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.45s ease;
}

.home-ui-brand-grid article:hover i {
  transform: rotateY(180deg);
}

.home-ui-brand-grid img {
  width: 132px;
  height: 132px;
  object-fit: contain;
}

.home-ui-brand-grid h3 {
  position: relative;
  margin: 0 0 28px;
  color: #12181b;
  font-size: 27px;
  font-weight: 400;
}

.home-ui-brand-grid h3::after {
  position: absolute;
  left: 50%;
  bottom: -17px;
  width: 65px;
  height: 2px;
  background: #2b63f0;
  transform: translateX(-50%);
  content: "";
}

.home-ui-brand-grid article:nth-child(2) h3::after {
  background: #0cb6a8;
}

.home-ui-brand-grid article:nth-child(4) h3::after {
  background: #13dd74;
}

.home-ui-brand-grid article:nth-child(5) h3::after {
  background: #dba55d;
}

.home-ui-brand-grid article:nth-child(6) h3::after {
  background: #48c2ed;
}

.home-ui-brand-grid p {
  margin: 0;
  color: #72858a;
  font-size: 19px;
  line-height: 1.6;
}

.home-ui-partners {
  padding: 72px 0 84px;
  position: relative;
  overflow: hidden;
  background: #13bfa5;
  padding-top: 130px;
  background-image: url('./assets/矩形 10 拷贝@2x.png');
  background-size: 100% 100%;
  background-position: top center;
    padding-bottom: 5%;
    background-attachment: fixed;
}

.home-ui-partners::before {
  position: absolute;
  inset: -60px 0;
  /* background:
    linear-gradient(90deg, rgba(22, 196, 168, 0.9), rgba(19, 191, 165, 0.9)),
    url("./assets/图层 50@2x.png") center calc(50% + var(--parallax-y, 0px)) /
      cover no-repeat; */
  content: "";
}

.home-ui-partners .home-ui-title {
  margin-bottom: 72px;
}

.home-ui-title-light p {
  font-family: DIN Black;
  color: rgba(255, 255, 255, 0.2);
  font-size: clamp(48px, 6.2vw, 86px);
}

.home-ui-title-light h2,
.home-ui-title-light span {
  color: #ffffff;
}

.home-ui-title-light h2 {
  margin-top: -30px;
  margin-bottom: 14px;
  font-size: 32px;
  font-weight: 800;
}

.home-ui-title-light span {
  font-size: 18px;
}

.home-ui-partner-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 36px 38px;
  width: 100%;
  margin: 0 auto;
}

.home-ui-partner-grid span {
  display: grid;
  /* min-height: 156px; */
  place-items: center;
  /* padding: 22px 24px; */
  background: #ffffff;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.home-ui-partner-grid span:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(3, 86, 77, 0.14);
}

.home-ui-page .home-ui-partner-grid span {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  box-shadow: none;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.home-ui-page .home-ui-partner-grid span:hover,
.home-ui-page .home-ui-partner-grid span:focus-visible,
.home-ui-page .home-ui-partner-grid span.is-active {
  transform: translateY(-8px);
  filter: saturate(1.04);
  box-shadow: 0 18px 34px rgba(3, 86, 77, 0.14);
}

.home-ui-page .home-ui-partner-grid span:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.home-ui-page .home-ui-partner-grid img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.home-ui-page .home-ui-partner-grid span:hover img,
.home-ui-page .home-ui-partner-grid span:focus-visible img,
.home-ui-page .home-ui-partner-grid span.is-active img {
  transform: scale(1.02);
}

.home-ui-partner-grid img {
  width: 100%;
  /* max-width: 214px;
  height: 86px; */
  object-fit: contain;
}

.home-ui-news {
  padding: 88px 0 106px;
  background: #ffffff;
}

.home-ui-news-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  margin-bottom: 48px;
}

.home-ui-news-head .home-ui-title {
  margin: 0;
  text-align: left;
}

.home-ui-news-head nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.home-ui-news-head nav a {
  display: grid;
  min-width: 164px;
  min-height: 56px;
  place-items: center;
  color: #12181b;
  background: #f6f7fb;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 22px;
}

.home-ui-news-head nav a.active {
  color: #14bfa4;
  background: #ffffff;
  border-color: #14bfa4;
}

.home-ui-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.home-ui-news-grid article {
  background: #ffffff;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.home-ui-news-grid article.active {
  box-shadow: 0 18px 36px rgba(20, 191, 164, 0.18);
  transform: translateY(-8px);
}

.home-ui-news-grid article:hover {
  transform: translateY(-8px);
}

.home-ui-news-grid img {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.home-ui-news-grid article:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) brightness(0.96);
}

.home-ui-news-grid h3 {
  margin: 24px 0 14px;
  color: #111719;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.home-ui-news-grid p {
  min-height: 92px;
  margin: 0 0 24px;
  color: #8f9699;
  font-size: 19px;
  line-height: 1.65;
}

.home-ui-news-grid article > div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.home-ui-news-grid a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 152px;
  min-height: 46px;
  padding: 0 20px;
  place-items: center;
  color: #ffffff;
  background: #14bfa4;
  border-radius: 999px;
  font-size: 20px;
}

.home-ui-news-grid a span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  background: #ffffff;
  border-radius: 50%;
}

.home-ui-news-grid a span::before {
  width: 7px;
  height: 7px;
  border-top: 2px solid #14bfa4;
  border-right: 2px solid #14bfa4;
  transform: rotate(45deg);
  content: "";
}

.home-ui-news-grid time {
  position: relative;
  padding-left: 26px;
  color: #767d80;
  font-size: 17px;
}

.home-ui-news-grid time::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid #d7dcdf;
  border-radius: 50%;
  transform: translateY(-50%);
  content: "";
}

.home-ui-news-grid time::after {
  position: absolute;
  left: 7px;
  top: calc(50% - 5px);
  width: 5px;
  height: 6px;
  border-left: 2px solid #d7dcdf;
  border-bottom: 2px solid #d7dcdf;
  content: "";
}

.home-ui-float {
  top: 220px;
  right: 0;
  width: 120px;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 8px 22px rgba(5, 82, 72, 0.16));
  transform: none;
}

.home-ui-float a {
  position: relative;
  display: grid;
  width: 120px;
  min-height: 125px;
  background: rgba(255, 255, 255, 0.96);
  border: 0;
  /* border-bottom: 1px solid #eef4f3; */
  color: #26383f;
  place-items: center;
  padding: 8px 9px 8px;
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  box-shadow: none;
}

.home-ui-float a ._tit{
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: #111111;
}

.home-ui-float a:first-child {
  border-top-left-radius: 0;
}

.home-ui-float a:last-child {
  border-bottom: 0;
  border-bottom-left-radius: 0;
}

.home-ui-float a::before {
  display: none;
}

.home-ui-float .home-ui-float-contact::before {
  position: absolute;
  left: -15px;
  top: 0;
  bottom: 0;
  display: block;
  width: 15px;
  background: #16cbb3;
  content: "";
}

.home-ui-float .home-ui-float-contact::after {
  position: absolute;
  left: -9px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-50%);
  content: "";
}

.home-ui-float .home-ui-float-contact {
  min-height: 125px;
  color: #24353c;
  background: rgba(255, 255, 255, 0.94);
}

.home-ui-float img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  filter: none;
}

.home-ui-float .home-ui-float-contact img {
  width: 35px;
  height: 35px;
  margin-bottom: 5px;
  opacity: 1;
}

.home-ui-float strong {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  color: #1d282e;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.home-ui-float span {
  display: block;
  width: 100%;
  margin-top: 6px;
  color: #a7afb0;
  font-size: 11px;
  font-weight: 400;
  white-space: nowrap;
}

.home-ui-float .home-ui-float-contact span {
  padding: 6px 8px;
  margin-top: 0;
  color: #1d282e;
  font-size: 12px;
  font-weight: 800;
  background: #ECEEF6;
border-radius: 4px;
}

.home-ui-float small {
  margin-top: 4px;
  color: #111111;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.about-ui-float,
.home-ui-float {
  right: 0;
  width: 78px;
  overflow: visible;
  filter: drop-shadow(0 8px 20px rgba(5, 82, 72, 0.18));
  transform: translateY(-50%);
  transition: width 0.32s ease;
}

.about-ui-float:hover,
.about-ui-float:focus-within,
.about-ui-float.is-open,
.home-ui-float:hover,
.home-ui-float:focus-within,
.home-ui-float.is-open {
  width: 140px;
  transform: translateY(-50%);
}

.home-ui-float {
  top: 220px;
  width: 76px;
  transform: none;
}

.home-ui-float:hover,
.home-ui-float:focus-within,
.home-ui-float.is-open {
  width: 140px;
  transform: none;
}

.home-ui-float:hover{
  width: 140px !important;
}

.home-ui-float:hover::before{
  height: 116px !important;
}
.home-ui-float:hover::after{
 top: 56px !important;
  transform: rotate(180deg);
}

.home-ui-float:hover a.home-ui-float-contact{

}

.about-ui-float::before,
.home-ui-float::before {
  position: absolute;
  left: 8px;
  top: 0;
  z-index: 2;
  display: grid;
  width: 18px;
  height: 62px;
  place-items: center;
  color: #ffffff;
  background: #14c8ad;
  border-radius: 6px 0 0 6px;
  content: "";
  pointer-events: none;
}

.home-ui-float::before {
  height: 68px;
}

.about-ui-float::after,
.home-ui-float::after {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 8px solid #ffffff;
  content: "";
  pointer-events: none;
}

.home-ui-float::after {
  top: 50%;
}

.about-ui-float a,
.home-ui-float a {
  position: relative;
  display: grid;
  width: calc(100% - 26px);
  min-height: 62px;
  margin-left: 26px;
  place-items: center;
  padding: 9px 8px;
  color: #14c8ad;
  background: rgba(255, 255, 255, 0.7);
  border: 0;
  /* border-bottom: 1px solid #eef4f3; */
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: none;
  transition:
    background-color 0.22s ease,
    color 0.22s ease;
}

.about-ui-float:not(:hover):not(:focus-within):not(.is-open) a:nth-child(n + 2),
.home-ui-float:not(:hover):not(:focus-within):not(.is-open) a:nth-child(n + 2) {
  display: none;
}

.about-ui-float:not(:hover):not(:focus-within):not(.is-open) a,
.home-ui-float:not(:hover):not(:focus-within):not(.is-open) a {
  min-height: 68px;
}

.home-ui-float:not(:hover):not(:focus-within):not(.is-open) a {
  min-height: 68px;
}

.about-ui-float a:hover,
.about-ui-float a:focus-visible,
.home-ui-float a:hover,
.home-ui-float a:focus-visible {
  outline: 0;
  color: #0e9e88;
  background: rgba(255, 255, 255, 0.7);
}

.about-ui-float a:first-child,
.home-ui-float a:first-child {
  border-top-left-radius: 0;
}

.about-ui-float a:last-child,
.home-ui-float a:last-child {
  border-bottom: 0;
  border-bottom-left-radius: 0;
}

.about-ui-float:not(.home-ui-float) a::after {
  display: block;
  margin-top: 5px;
  color: #64787d;
  font-size: 12px;
  font-weight: 500;
  content: attr(aria-label);
}

.about-ui-float:not(:hover):not(:focus-within):not(.is-open) a::after,
.home-ui-float:not(:hover):not(:focus-within):not(.is-open) strong,
.home-ui-float:not(:hover):not(:focus-within):not(.is-open) span,
.home-ui-float:not(:hover):not(:focus-within):not(.is-open) small {
  display: none;
}

.about-ui-float:not(:hover):not(:focus-within):not(.is-open) img,
.home-ui-float:not(:hover):not(:focus-within):not(.is-open) img,
.home-ui-float:not(:hover):not(:focus-within):not(.is-open)
  .home-ui-float-contact
  img {
  width: 30px;
  height: 30px;
  margin: 0;
  object-fit: contain;
}

.about-ui-float img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: none;
}

.home-ui-float img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  filter: none;
}

.home-ui-float .home-ui-float-contact img {
  width: 35px;
  height: 35px;
  margin-bottom: 5px;
  opacity: 1;
}

.home-ui-float .home-ui-float-contact {
  min-height: 125px;
}

.home-ui-float:not(:hover):not(:focus-within):not(.is-open)
  .home-ui-float-contact {
  min-height: 68px;
}

.home-ui-float strong,
.home-ui-float span,
.home-ui-float small {
  display: block;
  width: 100%;
  margin: 0;
  white-space: nowrap;
}

.home-ui-float strong,
.home-ui-float .home-ui-float-contact span {
  color: #1d282e;
  font-size: 16px;
  font-weight: 800;
}

.home-ui-float span {
  margin-top: 5px;
  font-family: Microsoft YaHei;
font-weight: 400;
font-size: 16px;
color: #111111;
}

.home-ui-float small {
  margin-top: 4px;
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 14px;
  border-bottom: 1px solid #eef4f3;
}

.home-ui-float .home-ui-float-contact::before,
.home-ui-float .home-ui-float-contact::after {
  display: none;
}

.home-ui-page .home-ui-hero-inner,
.home-ui-page .home-ui-title,
.home-ui-page .home-ui-about-grid,
.home-ui-page .home-ui-stats article,
.home-ui-page .home-ui-product-table,
.home-ui-page .home-ui-service-row article,
.home-ui-page .home-ui-brand-grid article,
.home-ui-page .home-ui-partner-grid span,
.home-ui-page .home-ui-news-head,
.home-ui-page .home-ui-news-grid article {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.home-ui-page .home-ui-hero-inner.is-visible,
.home-ui-page .home-ui-title.is-visible,
.home-ui-page .home-ui-about-grid.is-visible,
.home-ui-page .home-ui-stats article.is-visible,
.home-ui-page .home-ui-product-table.is-visible,
.home-ui-page .home-ui-service-row article.is-visible,
.home-ui-page .home-ui-brand-grid article.is-visible,
.home-ui-page .home-ui-partner-grid span.is-visible,
.home-ui-page .home-ui-news-head.is-visible,
.home-ui-page .home-ui-news-grid article.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-ui-page .home-ui-hero-inner {
  transition-delay: 0ms;
}

.ui-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.68s ease,
    transform 0.68s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.ui-product-list.is-refreshing {
  animation: uiListRefresh 0.42s ease;
}

.home-ui-table-wrap.is-refreshing,
.home-ui-news-grid.is-refreshing {
  animation: uiListRefresh 0.42s ease;
}

.ui-filter-panel a,
.ui-filter-panel button,
.ui-news-title-row button,
.news-tabs button,
.category-tabs button,
.home-ui-product-table aside a,
.home-ui-news-head nav a,
.ui-pagination a,
.ui-news-pagination a,
.site-footer-qrs figure,
.ui-contact-cards article,
.ui-video-grid article {
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.ui-filter-panel button.is-open::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.home-ui-product-table aside a.active {
  /* color: #ffffff; */
  /* background: #16bea0; */
}

.home-ui-product-table aside a.active span {
  padding: 19px 42px;
  color: #ffffff;
  background: #16bea0;
  border-radius: 12px;
}

.ui-video-grid article {
  cursor: pointer;
}

.ui-video-grid article:hover,
.ui-video-grid article:focus-visible {
  outline: 0;
  transform: translateY(-4px);
}

.ui-video-grid article:hover i,
.ui-video-grid article:focus-visible i {
  background: #18c6a9;
  box-shadow: 0 16px 32px rgba(24, 198, 169, 0.28);
}

.ui-video-grid article:hover i::before,
.ui-video-grid article:focus-visible i::before {
  border-left-color: #ffffff;
}

.site-footer-qrs figure,
.ui-contact-cards article {
  cursor: pointer;
}

.site-footer-qrs figure.is-active,
.ui-contact-cards article.is-active {
  box-shadow: 0 12px 26px rgba(16, 196, 168, 0.18);
  transform: translateY(-3px);
}

.ui-toast {
  position: fixed;
  left: 50%;
  bottom: 112px;
  z-index: 1200;
  max-width: min(380px, calc(100vw - 32px));
  padding: 12px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(17, 39, 50, 0.92);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.ui-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.ui-back-top {
  position: fixed;
  right: 24px;
  bottom: 126px;
  z-index: 950;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: #18c6a9;
  box-shadow: 0 12px 26px rgba(20, 160, 145, 0.3);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    background-color 0.2s ease;
}

.ui-back-top:hover {
  background: #0e9f88;
}

.ui-back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ui-modal-open {
  overflow: hidden;
}

.ui-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  padding: 24px;
  place-items: center;
  background: rgba(4, 19, 28, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.ui-video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.ui-video-modal-panel {
  position: relative;
  width: min(760px, 100%);
  padding: 18px 18px 28px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  transform: scale(0.96);
  transition: transform 0.24s ease;
}

.ui-video-modal.is-open .ui-video-modal-panel {
  transform: scale(1);
}

.ui-video-modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #1c2f35;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.ui-video-modal-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #eef8f7;
}

.ui-video-modal-media img,
.ui-video-modal-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ui-video-modal-media video {
  position: relative;
  z-index: 1;
  background: #0b1f26;
}

.ui-video-modal-media::after {
  position: absolute;
  inset: 0;
  background: rgba(2, 22, 35, 0.18);
  content: "";
  pointer-events: none;
}

.ui-video-modal-media.is-video-media::after,
.ui-video-modal-media.is-video-media i {
  display: none;
}

.ui-video-modal-media i {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%);
}

.ui-video-modal-media i::before {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid #18c6a9;
  content: "";
}

.ui-video-modal-panel h3 {
  margin: 20px 0 8px;
  color: #202c35;
  font-size: 24px;
  line-height: 1.35;
}

.ui-video-modal-panel p {
  margin: 0 0 18px;
  color: #65777c;
  font-size: 16px;
  line-height: 1.7;
}

.ui-video-modal-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  color: #ffffff;
  background: #18c6a9;
  font-size: 15px;
}

@keyframes uiListRefresh {
  0% {
    opacity: 0.45;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-ui-page .home-ui-hero::before,
  .home-ui-page .home-ui-about::before,
  .home-ui-page .home-ui-partners::before {
    background-position: center center;
  }

  .home-ui-page .home-ui-hero-inner,
  .home-ui-page .home-ui-title,
  .home-ui-page .home-ui-about-grid,
  .home-ui-page .home-ui-stats article,
  .home-ui-page .home-ui-product-table,
  .home-ui-page .home-ui-service-row article,
  .home-ui-page .home-ui-brand-grid article,
  .home-ui-page .home-ui-partner-grid span,
  .home-ui-page .home-ui-news-head,
  .home-ui-page .home-ui-news-grid article,
  .home-ui-page .site-footer-main {
    opacity: 1;
    transform: none;
  }

  .ui-reveal,
  .ui-reveal.is-visible,
  .ui-video-modal,
  .ui-video-modal-panel,
  .ui-back-top,
  .ui-toast {
    transition: none;
  }
}

@media (max-width: 1100px) {
  .about-ui-header {
    position: sticky;
  }

  .about-ui-nav {
    grid-template-columns: 130px 1fr;
    width: min(100% - 44px, 960px);
    height: auto;
    min-height: 80px;
    padding: 12px 0;
  }

  .about-ui-nav nav {
    grid-column: 1 / -1;
    order: 4;
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .about-ui-nav nav::-webkit-scrollbar,
  .ui-nav nav::-webkit-scrollbar {
    display: none;
  }

  .about-ui-search,
  .about-ui-lang {
    display: none;
  }

  .about-ui-intro-grid,
  .about-ui-stats,
  .about-ui-value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ui-header {
    position: sticky;
  }

  .ui-nav {
    grid-template-columns: 130px 1fr;
    width: min(100% - 44px, 960px);
    height: auto;
    min-height: 80px;
    padding: 12px 0;
  }

  .ui-nav nav {
    grid-column: 1 / -1;
    order: 4;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 24px;
    scrollbar-width: none;
  }

  .ui-search,
  .ui-lang {
    display: none;
  }

  .ui-two-col,
  .ui-detail-grid,
  .ui-news-layout,
  .ui-join-about-grid,
  .home-ui-about-grid {
    grid-template-columns: 1fr;
  }

  .ui-filter-panel div {
    grid-template-columns: repeat(3, 1fr);
  }

  .ui-filter-panel span {
    grid-column: 1 / -1;
  }

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

  .ui-detail-image {
    justify-self: start;
  }

  .ui-detail-summary .ui-inquiry {
    position: static;
    margin-top: 28px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: transparent;
  }

  .menu-toggle span {
    height: 2px;
    background: #ffffff;
  }

  .site-nav,
  .header-search {
    display: none;
  }

  .site-header.open .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 14px 24px;
    background: rgba(8, 32, 51, 0.96);
  }

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

@media (max-width: 900px) {
  .site-footer-container {
    width: min(100% - 44px, 760px);
  }

  .site-footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: 0;
    padding: 38px 0 30px;
  }

  .site-footer-brand > img {
    width: 104px;
    margin-bottom: 24px;
  }

  .site-footer-brand ul {
    gap: 10px;
  }

  .site-footer-brand li {
    font-size: 14px;
  }

  .site-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 26px;
    padding-top: 0;
  }

  .site-footer-links h3 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .site-footer-links a {
    margin-top: 8px;
    font-size: 13px;
  }

  .site-footer-qrs {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
  }

  .site-footer-qrs img {
    width: 58px;
    height: 58px;
  }

  .site-footer-qrs figcaption,
  .site-footer-extra {
    font-size: 12px;
  }

  .site-footer-copy {
    display: grid;
    justify-content: center;
    gap: 5px;
    min-height: 54px;
    padding: 10px 22px;
    text-align: center;
    font-size: 12px;
    line-height: 1.45;
  }

  .site-footer-bottom-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    width: min(100% - 44px, 760px);
    min-height: 0;
    padding: 20px 20px 22px;
    border-radius: 8px 8px 0 0;
  }

  .site-footer-bottom-phone {
    grid-template-columns: 44px auto;
    gap: 3px 12px;
  }

  .site-footer-bottom-phone img {
    width: 44px;
    height: 44px;
  }

  .site-footer-bottom-phone strong {
    display: grid;
    gap: 3px;
    font-size: 16px;
  }

  .site-footer-bottom-phone small {
    font-size: 12px;
  }

  .site-footer-bottom-phone span {
    font-size: 28px;
    letter-spacing: 0;
  }

  .site-footer-quote {
    height: 48px;
    padding: 0 10px;
    font-size: 14px;
    text-align: center;
  }

  .site-footer-bottom-service {
    grid-template-columns: auto 72px;
    justify-content: start;
  }

  .site-footer-bottom-service span {
    text-align: left;
    font-size: 14px;
  }

  .site-footer-bottom-qr {
    width: 72px;
    height: 72px;
  }

  .ui-container {
    width: min(100% - 44px, 760px);
  }

  .ui-product-item,
  .ui-news-list article {
    grid-template-columns: 140px 1fr;
  }

  .ui-product-item .ui-inquiry {
    grid-column: 2;
    justify-self: start;
  }

  .ui-product-item > img {
    width: 130px;
    height: 130px;
  }

  .ui-news-list img {
    width: 140px;
    height: 110px;
  }

  .ui-custom-grid,
  .ui-import-grid,
  .ui-service-image-grid,
  .ui-assurance-grid,
  .ui-join-cards,
  .ui-join-stats,
  .ui-brand-cards,
  .ui-feature-news,
  .ui-contact-cards,
  .home-ui-stats,
  .home-ui-brand-grid,
  .home-ui-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ui-custom-grid,
  .ui-import-grid {
    gap: 24px;
  }

  .ui-brand-cards {
    gap: 34px;
  }

  .ui-video-grid,
  .ui-join-partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ui-custom-grid article {
    padding: 38px 32px;
  }

  .home-ui-hero {
    min-height: 560px;
  }

  .home-ui-about-grid {
    gap: 34px;
  }

  .home-ui-about-grid > img {
    height: 320px;
  }

  .home-ui-product-table {
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .home-ui-service-row,
  .home-ui-partner-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .home-ui-news-head {
    align-items: start;
    flex-direction: column;
  }

  .ui-form-grid {
    grid-template-columns: 1fr;
  }

  .ui-form-grid span {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 96px 0 80px;
  }

  .about-grid,
  .product-board,
  .advantage-grid,
  .news-grid,
  .site-footer-main,
  .detail-layout,
  .join-grid,
  .article-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .ui-news-detail-layout,
  .ui-news-detail-related-grid {
    grid-template-columns: 1fr;
  }

  .ui-news-detail-main,
  .ui-news-detail-related {
    padding-left: 28px;
    padding-right: 28px;
  }

  .ui-news-detail-prevnext {
    flex-direction: column;
  }

  .feature-strip,
  .service-icons,
  .partner-grid,
  .join-steps,
  .phone-grid,
  .overview-grid,
  .placeholder-grid,
  .about-ui-brand-grid,
  .about-ui-partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-contact {
    display: none;
  }

  .section-title.split {
    align-items: start;
    flex-direction: column;
  }

  .about-ui-container,
  .about-ui-nav,
  .site-footer-container {
    width: min(100% - 44px, 760px);
  }

  .site-footer-main {
    gap: 34px;
    padding: 48px 0 38px;
  }

  .site-footer-links {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .site-footer-qrs {
    grid-template-columns: repeat(4, minmax(76px, 1fr));
    justify-self: stretch;
  }

  .site-footer-extra {
    gap: 18px;
    padding-top: 12px;
  }

  .site-footer-bottom-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    width: min(100% - 44px, 760px);
    height: auto;
    min-height: 0;
    padding: 28px 24px;
  }

  .site-footer-bottom-phone,
  .site-footer-bottom-service {
    justify-content: center;
  }

  .site-footer-quote {
    width: 100%;
  }

  .contact-ui-page .ui-container,
  .contact-ui-page .ui-breadcrumb .ui-container {
    width: min(100% - 44px, 760px);
  }

  .contact-ui-page .ui-message-form {
    min-height: 0;
    padding: 72px 32px 68px;
  }

  .contact-ui-page .ui-form-grid {
    width: 100%;
    gap: 18px;
  }

  .contact-ui-page .ui-business {
    padding-top: 74px;
  }

  .contact-ui-page .ui-business-banner {
    min-height: 260px;
  }

  .contact-ui-page .ui-business-banner::after {
    right: 36px;
    width: 220px;
    height: 170px;
    opacity: 0.6;
  }

  .contact-ui-page .ui-business-banner > div {
    padding: 50px 0 0 52px;
  }

  .contact-ui-page .ui-contact-cards {
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
    min-height: 0;
    padding: 40px 36px 0;
  }
}

@media (max-width: 700px) {
  body.standalone-page{
    padding-top: 0;
  }
  .ui-custom-grid,
  .ui-import-grid,
  .ui-service-image-grid,
  .ui-join-cards {
    grid-template-columns: 1fr;
  }

  .ui-join-cards article {
    min-height: 220px;
    padding: 54px 34px 38px;
  }

  .ui-custom-grid article {
    min-height: auto;
  }

  .ui-cooperation-banner {
    padding: 42px 28px;
  }

  .ui-cooperation-banner h2 {
    font-size: 28px;
  }
}

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

  .about-ui-logo img {
    width: 104px;
  }

  .about-ui-hero {
    min-height: 260px;
    padding-top: 0;
  }

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

  .about-ui-intro,
  .about-ui-values,
  .about-ui-brand,
  .about-ui-partners {
    padding: 48px 0;
  }

  .about-ui-intro-grid,
  .about-ui-stats,
  .about-ui-value-grid {
    grid-template-columns: 1fr;
  }

  .about-ui-copy::before {
    display: none;
  }

  .about-ui-stats article {
    grid-template-columns: 48px 1fr;
    padding: 18px;
  }

  .about-ui-photo img {
    height: auto;
  }

  .about-ui-float {
    display: none;
  }

  .ui-container,
  .ui-nav {
    width: min(100% - 28px, 1200px);
  }

  .ui-logo img {
    width: 104px;
  }

  .ui-hero {
    min-height: 260px;
  }

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

  .ui-hero p {
    font-size: 58px;
  }

  .ui-filter-panel {
    padding: 20px;
  }

  .ui-page-soft .ui-main-offset {
    padding-top: 10px;
  }

  .ui-page-soft .ui-breadcrumb {
    min-height: 44px;
    font-size: 12px;
  }

  .ui-page-soft .ui-breadcrumb .ui-container {
    width: min(100% - 28px, 760px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ui-product-page {
    padding: 12px 0 48px;
  }

  .ui-product-page .ui-container {
    width: min(100% - 28px, 760px);
  }

  .ui-product-page .ui-sidebar {
    display: none;
  }

  .ui-product-page .ui-two-col {
    gap: 0;
  }

  .ui-product-page .ui-filter-panel {
    gap: 14px;
    margin-bottom: 14px;
    padding: 14px;
    border-radius: 6px;
    box-shadow: 0 8px 22px rgba(10, 72, 78, 0.06);
  }

  .ui-product-page .ui-filter-panel div {
    display: flex;
    gap: 8px;
    align-items: center;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .ui-product-page .ui-filter-panel div::-webkit-scrollbar {
    display: none;
  }

  .ui-product-page .ui-filter-panel span {
    flex: 0 0 auto;
    min-width: 64px;
    color: #75898d;
    font-size: 13px;
    font-weight: 700;
  }

  .ui-product-page .ui-filter-panel a,
  .ui-product-page .ui-filter-panel button {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 0 12px;
    color: #50656b;
    background: #f3fbfa;
    border-radius: 999px;
    font-size: 13px;
    white-space: nowrap;
  }

  .ui-product-page .ui-filter-panel a.on {
    color: #ffffff;
    background: #35c6ad;
  }

  .ui-product-page .ui-filter-panel button {
    display: inline-flex;
    align-items: center;
  }

  .ui-product-list {
    gap: 12px;
  }

  .ui-filter-panel div,
  .ui-custom-grid,
  .ui-import-grid,
  .ui-service-image-grid,
  .ui-product-item,
  .ui-detail-top,
  .ui-detail-grid,
  .ui-news-list article,
  .ui-form-grid label {
    grid-template-columns: 1fr;
  }

  .ui-product-item .ui-inquiry {
    grid-column: auto;
  }

  .ui-product-page .ui-product-item {
    position: relative;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    min-height: 0;
    padding: 12px;
    border-color: #e9f2f2;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(10, 72, 78, 0.04);
  }

  .ui-product-page .ui-product-item.featured {
    border-color: rgba(47, 192, 168, 0.45);
    box-shadow: 0 10px 24px rgba(47, 192, 168, 0.1);
  }

  .ui-product-page .ui-product-item > img {
    width: 96px;
    height: 96px;
    max-width: none;
    border-radius: 6px;
  }

  .ui-product-page .ui-product-item h2 {
    margin: 0 0 7px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
  }

  .ui-product-page .ui-product-item p {
    display: -webkit-box;
    min-height: 0;
    margin: 0 0 8px;
    overflow: hidden;
    color: #687b80;
    font-size: 13px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .ui-product-page .ui-product-item span {
    margin: 0 5px 5px 0;
    padding: 4px 8px;
    color: #60777b;
    font-size: 12px;
    line-height: 1.2;
    border-radius: 3px;
  }

  .ui-product-page .ui-product-item .ui-inquiry {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 58px;
    height: 30px;
    font-size: 13px;
    border-radius: 999px;
  }

  .ui-pagination {
    flex-wrap: wrap;
    margin-top: 22px;
  }

  .ui-product-page .ui-pagination {
    gap: 6px;
    margin-top: 18px;
  }

  .ui-product-page .ui-pagination a {
    min-width: 30px;
    height: 30px;
    border-radius: 999px;
  }

  .ui-product-page .ui-pagination .ui-page-prev,
  .ui-product-page .ui-pagination .ui-page-next {
    min-width: 62px;
  }

  .ui-product-item > img,
  .ui-news-list img,
  .ui-detail-image,
  .ui-detail-image img {
    width: 100%;
    max-width: 280px;
    height: auto;
  }

  .ui-detail-image {
    aspect-ratio: 1;
  }

  .ui-detail-tabs {
    flex-wrap: wrap;
    gap: 16px;
    padding: 18px;
  }

  .ui-detail-tabs button.active::after {
    bottom: -8px;
  }

  .ui-news-pagination {
    flex-wrap: wrap;
    margin-top: 28px;
  }

  .ui-video-grid,
  .ui-join-partner-grid {
    grid-template-columns: 1fr;
  }

  .ui-video-grid img {
    height: auto;
    aspect-ratio: 1.75;
  }

  .ui-video-grid i {
    top: calc((100vw - 28px) / 3.5);
  }

  .ui-join-contact {
    padding: 44px 0;
  }

  .ui-custom-grid,
  .ui-import-grid,
  .ui-service-image-grid,
  .ui-join-cards,
  .ui-join-stats,
  .ui-brand-cards,
  .ui-feature-news,
  .ui-contact-cards,
  .home-ui-stats,
  .home-ui-service-row,
  .home-ui-brand-grid,
  .home-ui-news-grid {
    grid-template-columns: 1fr;
  }

  .ui-title p,
  .ui-news-title-row p,
  .home-ui-title p {
    font-size: 42px;
    white-space: normal;
  }

  .home-ui-hero {
    min-height: 480px;
    padding-top: 0;
    background-position: 58% top;
  }

  .home-ui-hero-inner {
    padding: 78px 0 72px;
  }

  .home-ui-hero h2 {
    font-size: 25px;
  }

  .home-ui-hero p {
    font-size: 14px;
  }

  .home-ui-search {
    grid-template-columns: 1fr;
    height: auto;
  }

  .home-ui-search input,
  .home-ui-search button {
    min-height: 42px;
  }

  .home-ui-about,
  .home-ui-products,
  .home-ui-brand,
  .home-ui-partners,
  .home-ui-news {
    padding: 48px 0;
  }

  .home-ui-title{
    margin-bottom: 30px !important;
    margin-top: 40px !important;
  }

   .home-ui-about{
    padding: 0px !important;
   }

  .home-ui-title-about p {
    font-size: 58px;
  }

  .home-ui-about-grid article::before {
    display: none;
  }

  .home-ui-about-grid > img {
    height: auto;
  }

  .home-ui-product-table {
    grid-template-columns: 1fr;
  }

  .home-ui-product-table aside {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-ui-product-table aside strong {
    grid-column: 1 / -1;
  }

  .home-ui-partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ui-header,
  .about-ui-header,
  .site-header {
    display: none;
  }

  .mobile-ui-topbar {
    display: grid;
  }

  .mobile-ui-menu {
    display: block;
  }

  .contact-ui-page .ui-hero p {
    font-size: 58px;
    white-space: nowrap;
  }

  .contact-ui-page .ui-business .ui-title p {
    font-size: 42px;
    white-space: normal;
  }

  .home-ui-page .home-ui-float {
    display: none;
  }

  .ui-news-title-row {
    align-items: start;
    flex-direction: column;
  }

  .ui-news-detail-page {
    padding-top: 16px;
  }

  .ui-news-detail-page > .container {
    width: min(100% - 28px, 1200px);
  }

  .ui-news-detail-breadcrumb {
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px;
  }

  .ui-news-detail-main {
    padding: 22px 18px 20px;
    border-radius: 10px;
  }

  .ui-news-detail-head h2 {
    font-size: 20px;
  }

  .ui-news-detail-meta {
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 18px;
  }

  .ui-news-detail-copy {
    padding-top: 28px;
  }

  .ui-news-detail-copy p {
    font-size: 15px;
  }

  .ui-news-detail-tags {
    flex-direction: column;
    align-items: start;
    gap: 14px;
    margin-top: 36px;
    padding-bottom: 28px;
  }

  .ui-news-detail-tags h3,
  .ui-news-detail-related h3 {
    font-size: 19px;
  }

  .ui-news-detail-tags h3::before,
  .ui-news-detail-related h3::before {
    height: 28px;
  }

  .ui-news-detail-related {
    padding: 24px 18px 18px;
  }

  .ui-news-detail-related-grid {
    gap: 20px;
    margin-top: 20px;
  }

  .ui-news-detail-related-grid li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ui-news-detail-related-grid time {
    min-width: 0;
  }

  .ui-form-grid {
    width: min(100% - 28px, 1200px);
  }

  .container {
    width: min(100% - 28px, 1200px);
  }

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

  .hero-search {
    height: auto;
    flex-direction: column;
  }

  .hero-search input,
  .hero-search button {
    width: 100%;
    min-height: 44px;
  }

  .section {
    padding: 58px 0;
  }

  .section-kicker {
    font-size: 42px;
  }

  .feature-strip,
  .service-icons,
  .partner-grid,
  .join-steps,
  .phone-grid,
  .overview-grid,
  .placeholder-grid,
  .about-ui-brand-grid,
  .about-ui-partner-grid,
  .site-footer-links,
  .site-footer-qrs {
    grid-template-columns: 1fr;
  }

  .detail-copy dl div {
    grid-template-columns: 1fr;
  }

  .about-ui-container,
  .about-ui-nav,
  .site-footer-container {
    width: min(100% - 28px, 1200px);
  }

  .site-footer-main {
    padding: 40px 0 32px;
  }

  .site-footer-extra {
    gap: 12px 18px;
  }

  .site-footer-brand > img {
    width: 104px;
  }

  .site-footer-copy {
    flex-direction: column;
    align-items: center;
    gap: 7px;
    text-align: center;
  }

  .site-footer-bottom-inner {
    width: min(100% - 28px, 1200px);
    padding: 24px 18px;
  }

  .site-footer-bottom-phone {
    grid-template-columns: 44px auto;
    gap: 4px 12px;
  }

  .site-footer-bottom-phone img {
    width: 44px;
    height: 44px;
  }

  .site-footer-bottom-phone strong {
    display: grid;
    gap: 4px;
    font-size: 15px;
  }

  .site-footer-bottom-phone small {
    font-size: 12px;
  }

  .site-footer-bottom-phone span {
    font-size: 28px;
    letter-spacing: 0;
  }

  .site-footer-quote {
    height: 48px;
    padding: 0 12px;
    font-size: 14px;
    text-align: center;
  }

  .site-footer-bottom-service {
    grid-template-columns: auto 76px;
  }

  .site-footer-bottom-service span {
    font-size: 14px;
  }

  .site-footer-bottom-qr {
    width: 76px;
    height: 76px;
  }

  .contact-ui-page .ui-container,
  .contact-ui-page .ui-breadcrumb .ui-container {
    width: min(100% - 28px, 1200px);
  }

  .contact-ui-page .ui-hero {
    min-height: 260px;
    padding-top: 0;
  }

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

  .contact-ui-page .ui-message-form {
    padding: 52px 14px 48px;
  }

  .contact-ui-page .ui-message-form .ui-title p,
  .contact-ui-page .ui-business .ui-title p {
    font-size: 42px;
    white-space: normal;
  }

  .contact-ui-page .ui-message-form .ui-title h2,
  .contact-ui-page .ui-business .ui-title h2 {
    margin-top: -12px;
    font-size: 26px;
  }

  .contact-ui-page .ui-message-form .ui-title span,
  .contact-ui-page .ui-business .ui-title span {
    font-size: 14px;
    line-height: 1.8;
  }

  .contact-ui-page .ui-form-grid {
    width: 100%;
    margin-top: 30px;
    gap: 16px;
  }

  .contact-ui-page .ui-form-grid label {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-ui-page .ui-form-grid input,
  .contact-ui-page .ui-form-grid select,
  .contact-ui-page .ui-form-grid textarea {
    min-height: 44px;
    font-size: 14px;
  }

  .contact-ui-page .ui-form-grid textarea {
    min-height: 180px;
  }

  .contact-ui-page .ui-message-form > button {
    width: 100%;
    max-width: 240px;
    margin-top: 28px;
  }

  .contact-ui-page .ui-business {
    padding-top: 58px;
  }

  .contact-ui-page .ui-business-banner {
    min-height: 220px;
  }

  .contact-ui-page .ui-business-banner::after {
    right: -12px;
    width: 160px;
    height: 124px;
  }

  .contact-ui-page .ui-business-banner > div {
    padding: 36px 24px 0;
  }

  .contact-ui-page .ui-business-banner h3 {
    font-size: 22px;
  }

  .contact-ui-page .ui-business-banner p {
    font-size: 16px;
  }

  .contact-ui-page .ui-business-banner strong {
    font-size: 24px;
  }

  .contact-ui-page .ui-contact-cards {
    grid-template-columns: 1fr;
    margin-top: 28px;
    padding: 28px 28px 0;
  }

  .contact-ui-page .ui-contact-cards article {
    min-height: 0;
    padding: 34px 22px 28px;
    border-width: 7px;
    border-radius: 24px 24px 0 0;
  }

  .contact-ui-page .ui-contact-cards img {
    width: 112px;
    height: 112px;
    margin-bottom: 20px;
  }

  .contact-ui-page .ui-contact-cards h3 {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .contact-ui-page .ui-contact-cards p {
    font-size: 15px;
    line-height: 1.8;
  }
}

@media (max-width: 560px) {
  .ui-page-soft .ui-main-offset {
    padding-top: 10px;
  }

  .ui-page-soft .ui-breadcrumb {
    min-height: 44px;
    font-size: 12px;
  }

  .ui-page-soft .ui-breadcrumb .ui-container,
  .ui-product-page .ui-container {
    width: min(100% - 28px, 760px);
  }

  .ui-product-page {
    padding: 12px 0 48px;
  }

  .ui-product-page .ui-sidebar {
    display: none;
  }

  .ui-product-page .ui-filter-panel {
    gap: 14px;
    margin-bottom: 14px;
    padding: 14px;
    border-radius: 6px;
  }

  .ui-product-page .ui-filter-panel div {
    display: flex;
    grid-template-columns: none;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .ui-product-page .ui-filter-panel div::-webkit-scrollbar {
    display: none;
  }

  .ui-product-page .ui-filter-panel span {
    flex: 0 0 auto;
    min-width: 64px;
    grid-column: auto;
    font-size: 13px;
    font-weight: 700;
  }

  .ui-product-page .ui-filter-panel a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .ui-product-page .ui-filter-panel button {
    display: none;
  }

  .ui-product-page .ui-filter-panel a.on {
    color: #ffffff;
    background: #35c6ad;
  }

  .ui-product-page .ui-product-list {
    gap: 12px;
  }

  .ui-product-page .ui-product-item {
    position: relative;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    min-height: 0;
    padding: 12px;
    border-color: #e9f2f2;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(10, 72, 78, 0.04);
  }

  .ui-product-page .ui-product-item > img {
    width: 96px;
    height: 96px;
    max-width: none;
  }

  .ui-product-page .ui-product-item > div {
    min-width: 0;
    padding-right: 78px;
  }

  .ui-product-page .ui-product-item h2 {
    margin: 0 0 7px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
  }

  .ui-product-page .ui-product-item p {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .ui-product-page .ui-product-item span {
    margin: 0 5px 5px 0;
    padding: 4px 8px;
    font-size: 12px;
    line-height: 1.2;
  }

  .ui-product-page .ui-product-item .ui-inquiry {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 72px;
    height: 32px;
    gap: 5px;
    padding: 0 10px;
    color: #ffffff;
    background: linear-gradient(135deg, #27c7ac, #16b59e);
    box-shadow: 0 8px 18px rgba(22, 181, 158, 0.22);
    font-size: 13px;
    font-weight: 700;
    border-radius: 999px;
  }

  .ui-product-page .ui-product-item .ui-inquiry::before {
    width: 16px;
    height: 16px;
    margin-right: 0;
  }

  .ui-product-page .ui-pagination {
    gap: 6px;
    margin-top: 18px;
  }

  .ui-product-page .ui-pagination a {
    min-width: 30px;
    height: 30px;
    border-radius: 999px;
  }

  .site-footer {
    background:
      linear-gradient(
        135deg,
        rgba(13, 188, 164, 0.96),
        rgba(26, 209, 180, 0.94)
      ),
      url("./assets/图层 50@2x.png") center / cover no-repeat;
  }

  .site-footer-container {
    width: min(100% - 28px, 760px);
  }

  .site-footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 0 24px;
  }

  .site-footer-brand {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px 18px;
    align-items: center;
  }

  .site-footer-brand > img {
    width: 96px;
    margin: 0;
  }

  .site-footer-brand p {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
  }

  .site-footer-brand ul {
    grid-column: 1 / -1;
    gap: 8px;
    margin-top: 4px;
  }

  .site-footer-brand li {
    gap: 7px;
    font-size: 13px;
    line-height: 1.45;
  }

  .site-footer-brand li img {
    width: 15px;
    height: 15px;
    margin-right: 6px;
  }

  .site-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
    padding-top: 4px;
  }

  .site-footer-links h3 {
    margin-bottom: 9px;
    font-size: 15px;
  }

  .site-footer-links h3::after {
    display: none;
  }

  .site-footer-links a {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.35;
  }

  .site-footer-qrs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
  }

  .site-footer-qrs img {
    width: 58px;
    height: 58px;
    margin-bottom: 5px;
    padding: 4px;
  }

  .site-footer-qrs figcaption {
    font-size: 10px;
    line-height: 1.2;
  }

  .site-footer-copy {
    display: grid;
    gap: 4px;
    padding: 10px 14px;
    text-align: center;
    font-size: 10px;
    line-height: 1.45;
  }
}

@media (max-width: 900px) {
  img,
  video,
  canvas,
  iframe {
    max-width: 100%;
  }

  .home-ui-page .home-ui-table-wrap {
    overflow: visible;
  }

  .home-ui-page .home-ui-product-table table,
  .home-ui-page .home-ui-product-table thead,
  .home-ui-page .home-ui-product-table tbody,
  .home-ui-page .home-ui-product-table tr,
  .home-ui-page .home-ui-product-table th,
  .home-ui-page .home-ui-product-table td {
    display: block;
    width: auto;
    min-width: 0;
    height: auto;
  }

  .home-ui-page .home-ui-product-table table {
    min-width: 0;
    border-spacing: 0;
  }

  .home-ui-page .home-ui-product-table thead {
    display: none;
  }

  .home-ui-page .home-ui-product-table tbody {
    display: grid;
    gap: 12px;
    padding: 12px;
    background: #eaf8f6;
  }

  .home-ui-page .home-ui-product-table tr {
    display: grid;
    grid-template-columns: 54px 92px minmax(0, 1fr);
    gap: 8px 12px;
    align-items: center;
    padding: 12px;
    background: #ffffff;
    border-radius: 8px;
  }

  .home-ui-page .home-ui-product-table td {
    padding: 0;
    background: transparent;
    font-size: 13px;
    line-height: 1.45;
  }

  .home-ui-page .home-ui-product-table td:nth-child(1) {
    color: #16bea0;
    font-size: 18px;
    font-weight: 800;
  }

  .home-ui-page .home-ui-product-table td:nth-child(2) {
    grid-row: span 2;
  }

  .home-ui-page .home-ui-product-table td:nth-child(3) {
    color: #111819;
    font-size: 16px;
    font-weight: 800;
  }

  .home-ui-page .home-ui-product-table td:nth-child(4)::before {
    content: "CAS：";
    color: #809196;
  }

  .home-ui-page .home-ui-product-table td:nth-child(5) {
    grid-column: 1 / -1;
    color: #6d7e84;
  }

  .home-ui-page .home-ui-structure {
    width: 76px;
    height: 76px;
  }

  .home-ui-page .home-ui-structure img {
    width: 58px;
    height: 58px;
  }

  .ui-join-page .ui-join-about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ui-join-page .ui-join-about-grid > img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.76;
  }

  .ui-join-page .ui-brand-cards {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .ui-join-page .ui-brand-cards article {
    min-height: 0;
    padding: 28px 20px 24px;
  }

  .ui-join-page .ui-video-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.78;
  }

  .ui-join-page .ui-video-grid i {
    top: calc((100vw - 44px) / 3.56);
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 560px) {
  .home-ui-page .home-ui-product-table aside {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px;
    border-radius: 8px 8px 0 0;
    scrollbar-width: none;
  }

  .home-ui-page .home-ui-product-table aside::-webkit-scrollbar {
    display: none;
  }

  .home-ui-page .home-ui-product-table aside strong,
  .home-ui-page .home-ui-product-table aside a,
  .home-ui-page .home-ui-product-table aside a:first-of-type {
    flex: 0 0 auto;
    width: auto;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 13px;
    white-space: nowrap;
  }

  .home-ui-page .home-ui-product-table tr {
    grid-template-columns: 42px 76px minmax(0, 1fr);
  }

  .home-ui-page .home-ui-structure {
    width: 64px;
    height: 64px;
  }

  .home-ui-page .home-ui-structure img {
    width: 50px;
    height: 50px;
  }

  .ui-join-page .ui-brand-cards {
    grid-template-columns: 1fr;
  }

  .ui-join-page .ui-join-cards article {
    height: auto;
    min-height: 172px;
    padding: 34px 24px 28px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(env(safe-area-inset-bottom) + 126px);
  }

  .mobile-ui-topbar {
    position: sticky;
    top: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 56px 56px;
    height: 58px;
    background: #ffffff;
    border-bottom: 1px solid #e5eeee;
    box-shadow: 0 2px 8px rgba(20, 58, 64, 0.12);
  }

  .mobile-ui-logo {
    padding: 0 10px 0 12px;
  }

  .mobile-ui-logo img {
    width: min(100%, 266px);
    max-height: 42px;
    object-fit: contain;
  }

  .mobile-ui-search-trigger,
  .mobile-ui-menu-toggle {
    width: 56px;
    height: 58px;
    border-left: 1px solid #e5eeee;
    background: #ffffff;
  }

  .mobile-ui-search-trigger img {
    width: 32px;
    height: 32px;
  }

  .mobile-ui-menu-toggle {
    gap: 6px;
    padding: 15px 12px;
  }

  .mobile-ui-menu-toggle span {
    width: 30px;
    height: 3px;
    background: #6e7478;
  }

  .mobile-ui-menu {
    top: 58px;
    right: 0;
    left: auto;
    z-index: 89;
    display: block;
    width: min(64vw, 320px);
    min-width: 266px;
    min-height: calc(100vh - 58px);
    padding: 18px 0 30px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: -18px 12px 38px rgba(18, 62, 68, 0.12);
    backdrop-filter: blur(8px);
    visibility: hidden;
    opacity: 0;
    transform: translateX(102%);
    transition:
      transform 0.24s ease,
      opacity 0.24s ease,
      visibility 0.24s ease;
  }

  .mobile-ui-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .mobile-ui-close {
    width: 36px;
    height: 36px;
    margin: 0 0 6px 18px;
  }

  .mobile-ui-close img {
    width: 24px;
    height: 24px;
    opacity: 0.7;
  }

  .mobile-ui-lang-row {
    top: 18px;
    right: 16px;
    gap: 8px;
  }

  .mobile-ui-lang-row a {
    min-width: 52px;
    height: 42px;
    border-radius: 7px;
    color: #24bfa6;
    border: 1px solid rgba(36, 191, 166, 0.45);
    background: rgba(255, 255, 255, 0.88);
    font-size: 20px;
  }

  .mobile-ui-lang-row a.active {
    color: #ffffff;
    background: #35c6ad;
    border-color: #35c6ad;
  }

  .mobile-ui-menu nav {
    margin-top: 34px;
    border-top: 1px solid rgba(207, 224, 224, 0.62);
  }

  .mobile-ui-menu nav a {
    gap: 18px;
    min-height: 74px;
    padding: 0 24px 0 30px;
    color: #202c35;
    background: rgba(255, 255, 255, 0.44);
    border-bottom: 1px solid rgba(207, 224, 224, 0.68);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
  }

  .mobile-ui-menu nav a.active,
  .mobile-ui-menu nav a:hover {
    color: #35c6ad;
    background: rgba(255, 255, 255, 0.68);
  }

  .mobile-ui-menu nav a i {
    width: 34px;
    height: 34px;
  }

  .mobile-ui-menu nav a i img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .site-footer {
    padding-top: 0;
    background:
      linear-gradient(
        135deg,
        rgba(13, 190, 166, 0.97),
        rgba(22, 205, 178, 0.95)
      ),
      url("./assets/图层 50@2x.png") center / cover no-repeat;
  }

  .site-footer-container {
    width: min(100% - 28px, 750px);
  }

  .site-footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 32px 0 26px;
    opacity: 1 !important;
    transform: none !important;
  }

  .site-footer-brand {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 10px 16px;
    align-items: center;
  }

  .site-footer-brand > img {
    width: 104px;
    margin: 0;
  }

  .site-footer-brand p {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.45;
  }

  .site-footer-brand ul {
    grid-column: 1 / -1;
    gap: 8px;
    margin-top: 2px;
  }

  .site-footer-brand li {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    line-height: 1.45;
  }

  .site-footer-brand li img {
    width: 15px;
    height: 15px;
    margin: 0;
  }

  .site-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
    padding-top: 4px;
  }

  .site-footer-links h3 {
    margin-bottom: 9px;
    color: #ffffff;
    font-size: 15px;
  }

  .site-footer-links h3::after {
    display: none;
  }

  .site-footer-links a {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    line-height: 1.35;
  }

  .site-footer-extra {
    gap: 10px 14px;
    padding-top: 8px;
    font-size: 11px;
  }

  .site-footer-qrs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    justify-self: stretch;
    padding: 12px;
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
  }

  .site-footer-qrs img {
    width: 58px;
    height: 58px;
    margin-bottom: 5px;
    padding: 4px;
  }

  .site-footer-qrs figcaption {
    color: #ffffff;
    font-size: 10px;
    line-height: 1.2;
  }

  .site-footer-copy {
    display: grid;
    gap: 4px;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.76);
    background: rgba(0, 100, 84, 0.36);
    text-align: center;
    font-size: 10px;
    line-height: 1.45;
  }

  .site-footer-bottom-bar {
    padding: 10px 0 0;
    background: #ffffff;
  }

  .site-footer-bottom-inner {
    grid-template-columns: 1fr;
    gap: 13px;
    width: min(100% - 28px, 750px);
    min-height: 0;
    padding: 18px 16px 20px;
    background: #55d0bd;
    border-radius: 8px 8px 0 0;
  }

  .site-footer-bottom-close {
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    font-size: 17px;
  }

  .site-footer-bottom-phone {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 4px 12px;
    justify-content: start;
  }

  .site-footer-bottom-phone img {
    width: 44px;
    height: 44px;
  }

  .site-footer-bottom-phone strong {
    display: grid;
    gap: 4px;
    font-size: 15px;
  }

  .site-footer-bottom-phone small {
    font-size: 12px;
  }

  .site-footer-bottom-phone span {
    font-size: 28px;
    letter-spacing: 0;
  }

  .site-footer-quote {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    color: #08bea0;
    background: #e9fffb;
    border-radius: 3px;
    text-align: center;
    font-size: 14px;
  }

  .site-footer-bottom-service {
    grid-template-columns: minmax(0, 1fr) 70px;
    gap: 12px;
    justify-content: stretch;
  }

  .site-footer-bottom-service span {
    font-size: 14px;
    line-height: 1.35;
    text-align: right;
  }

  .site-footer-bottom-qr {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 760px) {
  .mobile-ui-menu {
    width: 64vw;
    min-width: 320px;
    max-width: 480px;
    padding: 20px 0 30px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: -16px 10px 36px rgba(12, 69, 75, 0.1);
  }

  .mobile-ui-close {
    margin-left: 24px;
    opacity: 0.72;
  }

  .mobile-ui-lang-row {
    right: 18px;
  }

  .mobile-ui-lang-row a {
    min-width: 58px;
    height: 44px;
    font-size: 20px;
  }

  .mobile-ui-menu nav {
    margin-top: 34px;
  }

  .mobile-ui-menu nav a {
    min-height: 74px;
    padding-left: 34px;
    font-size: 24px;
    letter-spacing: 0;
  }

  .mobile-ui-menu nav a i img {
    opacity: 0.9;
  }

  .mobile-ui-menu nav a.active i img,
  .mobile-ui-menu nav a:hover i img {
    opacity: 1;
  }

  .site-footer {
    margin-top: 0;
  }

  .site-footer-main {
    gap: 18px;
    min-height: 0;
    padding: 28px 0 22px;
  }

  .site-footer-brand {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 8px 14px;
  }

  .site-footer-brand > img {
    width: 118px;
    filter: brightness(0) invert(1);
  }

  .site-footer-brand ul {
    gap: 7px;
  }

  .site-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 26px;
  }

  .site-footer-links h3 {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 700;
  }

  .site-footer-links a {
    margin-top: 7px;
    font-size: 12px;
  }

  .site-footer-extra {
    display: none;
  }

  .site-footer-qrs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border-radius: 7px;
  }

  .site-footer-qrs img {
    width: clamp(48px, 10vw, 62px);
    height: clamp(48px, 10vw, 62px);
  }

  .site-footer-copy {
    min-height: 42px;
    padding: 9px 14px;
    background: rgba(0, 116, 98, 0.48);
  }

  .site-footer-bottom-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    padding-top: 0;
    box-shadow: 0 -8px 24px rgba(14, 91, 86, 0.14);
  }

  .site-footer-bottom-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 66px;
    grid-template-areas:
      "phone qr"
      "quote qr";
    gap: 8px 12px;
    width: 100%;
    min-height: 116px;
    padding: 12px 42px 12px 18px;
    border-radius: 0;
  }

  .site-footer-bottom-phone {
    grid-area: phone;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 2px 10px;
  }

  .site-footer-bottom-phone img {
    width: 38px;
    height: 38px;
  }

  .site-footer-bottom-phone strong {
    gap: 3px;
    font-size: 14px;
    white-space: normal;
  }

  .site-footer-bottom-phone small {
    font-size: 11px;
  }

  .site-footer-bottom-phone span {
    font-size: clamp(20px, 5.2vw, 24px);
    line-height: 1.05;
  }

  .site-footer-quote {
    grid-area: quote;
    height: 38px;
    justify-self: stretch;
    font-size: 13px;
  }

  .site-footer-bottom-service {
    grid-area: qr;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    justify-items: center;
  }

  .site-footer-bottom-service span {
    font-size: 11px;
    line-height: 1.25;
    text-align: center;
  }

  .site-footer-bottom-qr {
    width: 62px;
    height: 62px;
  }
}

@media (max-width: 420px) {
  .mobile-ui-menu {
    width: 64vw;
    min-width: 240px;
  }

  .mobile-ui-menu nav a {
    min-height: 68px;
    padding-left: 24px;
    font-size: 21px;
    font-weight: 400 !important;
  }

  .mobile-ui-menu nav a i {
    width: 30px;
    height: 30px;
  }

  .mobile-ui-lang-row a {
    min-width: 48px;
    height: 38px;
    font-size: 18px;
  }
}

.site-footer-mobile-actions {
  display: none;
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(env(safe-area-inset-bottom) + 86px);
  }

  .mobile-ui-topbar {
    grid-template-columns: minmax(0, 1fr) clamp(56px, 10.67vw, 80px) clamp(
        54px,
        10.13vw,
        76px
      );
    height: clamp(68px, 12.8vw, 96px);
    box-shadow: 0 4px 12px rgba(16, 43, 47, 0.14);
  }

  .mobile-ui-logo {
    padding: 0 clamp(12px, 2.4vw, 18px) 0 clamp(14px, 3.07vw, 23px);
  }

  .mobile-ui-logo img {
    width: min(100%, 475px);
    max-height: clamp(43px, 7.87vw, 59px);
  }

  .mobile-ui-search-trigger,
  .mobile-ui-menu-toggle {
    width: auto;
    height: clamp(68px, 12.8vw, 96px);
  }

  .mobile-ui-search-trigger img {
    width: clamp(34px, 6vw, 45px);
    height: clamp(34px, 6vw, 45px);
  }

  .mobile-ui-menu-toggle {
    gap: clamp(7px, 1.33vw, 10px);
    padding: clamp(20px, 3.73vw, 28px) clamp(14px, 2.67vw, 20px);
  }

  .mobile-ui-menu-toggle span {
    width: clamp(32px, 5.87vw, 44px);
    height: clamp(4px, 0.67vw, 5px);
  }

  .mobile-ui-menu {
    top: clamp(68px, 12.8vw, 96px);
    z-index: 95;
    width: 64vw;
    min-width: 240px;
    max-width: 480px;
    min-height: calc(100vh - clamp(68px, 12.8vw, 96px));
    padding: clamp(21px, 4.53vw, 34px) 0 0;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: -18px 10px 36px rgba(17, 57, 59, 0.08);
    backdrop-filter: blur(6px);
  }

  .mobile-ui-close {
    width: clamp(34px, 6.13vw, 46px);
    height: clamp(34px, 6.13vw, 46px);
    margin: 0 0 clamp(14px, 2.8vw, 21px) clamp(18px, 3.47vw, 26px);
  }

  .mobile-ui-close img {
    width: clamp(24px, 4.27vw, 32px);
    height: clamp(24px, 4.27vw, 32px);
    opacity: 0.72;
  }

  .mobile-ui-lang-row {
    top: clamp(16px, 3.2vw, 24px);
    right: clamp(14px, 2.67vw, 20px);
    gap: clamp(8px, 1.73vw, 13px);
  }

  .mobile-ui-lang-row a {
    min-width: clamp(48px, 10.93vw, 82px);
    height: clamp(39px, 8.53vw, 64px);
    border-radius: clamp(7px, 1.33vw, 10px);
    font-size: clamp(18px, 3.6vw, 27px);
  }

  .mobile-ui-menu nav {
    margin-top: 0;
    border-top: 1px solid rgba(218, 230, 230, 0.72);
  }

  .mobile-ui-menu nav a {
    gap: clamp(16px, 3.33vw, 25px);
    min-height: clamp(68px, 12.67vw, 95px);
    padding: 0 clamp(18px, 3.2vw, 24px) 0 clamp(24px, 6.4vw, 48px);
    border-bottom: 1px solid rgba(218, 230, 230, 0.72);
    background: rgba(255, 255, 255, 0.42);
    color: #1f272b;
    font-size: clamp(22px, 4.8vw, 36px);
    font-weight: 500;
  }

  .mobile-ui-menu nav a.active,
  .mobile-ui-menu nav a:hover {
    color: #39c5ad;
    background: rgba(255, 255, 255, 0.56);
  }

  .mobile-ui-menu nav a i {
    width: clamp(24px, 5.2vw, 39px);
    height: clamp(24px, 5.2vw, 39px);
  }

  .mobile-ui-menu nav a i img {
    opacity: 1;
  }

  .mobile-ui-menu-contact {
    position: absolute;
    bottom: 0;
    display: grid;
    width: 100%;
    gap: clamp(8px, 1.6vw, 12px);
    margin: clamp(22px, 4.27vw, 32px) 0 0;
    padding: 0px !important;
    color: #263239;

    /* background: #E6E6E6; */
    /* border-top: 1px solid rgba(218, 230, 230, 0.72);
    border-bottom: 1px solid rgba(218, 230, 230, 0.72); */
  }

   .mobile-ui-menu-contact ._lx{
     padding: clamp(25px, 5.33vw, 40px) clamp(28px, 6.4vw, 48px);
    background: RGBA(242, 242, 242, .7);
   }
    .mobile-ui-menu-contact ._tips{
      font-weight: 400;
      font-size: 14px;
      color: #A4A4A4;
      line-height: 30px;
      text-align: center;
    }

    .mobile-ui-menu-contact ._lx p{
      margin-bottom: 10px;
    }

    .mobile-ui-menu-contact ._lx p:last-child{
      margin-bottom: 0px;
    }

  .mobile-ui-menu-contact p {
    display: flex;
    align-items: baseline;
    gap: clamp(8px, 1.6vw, 12px);
    margin: 0;
    font-size: clamp(15px, 2.8vw, 21px);
    line-height: 1.35;
    white-space: nowrap;
  }
.mobile-ui-menu-contact img{
width: 18px;
}
  .mobile-ui-menu-contact span {
    color: #2a3439;
    font-weight: 700;
  }

  .mobile-ui-menu-contact strong {
    color: #2d3438;
    font-weight: 700;
  }

  .site-footer {
    padding-top: 0;
    background:
      linear-gradient(
        180deg,
        rgba(19, 199, 170, 0.94),
        rgba(9, 190, 163, 0.96)
      ),
      url("./assets/图层 50@2x.png") center / cover no-repeat;
  }

  .site-footer::before {
    background: rgba(255, 255, 255, 0.02);
  }

  .site-footer-container {
    width: min(100% - 32px, 750px);
  }

  .site-footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(26px, 5.2vw, 39px);
    min-height: 0;
    padding: clamp(32px, 5.87vw, 44px) 0 clamp(22px, 3.33vw, 25px);
    opacity: 1 !important;
    transform: none !important;
  }

  .site-footer-brand {
    display: block;
  }

  .site-footer-brand > img {
    display: none;
  }

  .site-footer-brand p {
    display: none;
  }

  .site-footer-brand ul {
    display: grid;
    gap: clamp(14px, 3.33vw, 25px);
    margin: 0;
  }

  .site-footer-brand li {
    display: flex;
    align-items: center;
    gap: 0;
    color: #ffffff;
    font-size: clamp(18px, 4.53vw, 34px);
    font-weight: 500;
    line-height: 1.15;
  }

  .site-footer-brand li img {
    display: none;
  }

  .site-footer-brand li span {
    min-width: clamp(88px, 22.27vw, 167px);
    margin-right: 0;
    font-weight: 500;
  }

  .site-footer-links {
    display: none;
  }

  .site-footer-qrs {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 4.53vw, 34px) clamp(34px, 10vw, 75px);
    width: auto;
    margin-top: clamp(12px, 2.67vw, 20px);
    padding: clamp(28px, 6.4vw, 48px) clamp(42px, 10.13vw, 76px)
      clamp(22px, 4.4vw, 33px);
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
  }

  .site-footer-qrs img {
    width: min(100%, clamp(108px, 26.93vw, 202px));
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto 17px;
    padding: 0;
    background: #ffffff;
  }

  .site-footer-qrs figcaption {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(15px, 3.33vw, 25px);
    line-height: 1.2;
  }

  .site-footer-extra {
    display: flex;
    grid-column: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px clamp(18px, 4.13vw, 31px);
    padding-top: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(13px, 3.07vw, 23px);
    line-height: 1.3;
  }

  .site-footer-extra span {
    width: auto;
  }

  .site-footer-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 84px;
    padding: 0 21px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(0, 109, 91, 0.75);
    text-align: left;
    font-size: clamp(11px, 2.53vw, 19px);
    line-height: 1.45;
  }

  .site-footer-copy a {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(14px, 3.2vw, 24px);
    white-space: nowrap;
  }

  .site-footer-bottom-bar {
    display: none;
  }

  .site-footer-mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 7px;
    height: calc(86px + env(safe-area-inset-bottom));
    padding: 7px 11px max(7px, env(safe-area-inset-bottom));
    background: #ffffff;
    box-shadow: 0 -4px 16px rgba(12, 75, 71, 0.08);
  }

  .site-footer-mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(9px, 2.27vw, 17px);
    min-width: 0;
    min-height: 50px;
    padding: 5px 10px;
    color: #ffffff;
    background: linear-gradient(180deg, #27d7bd, #11bda4);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: clamp(17px, 3.6vw, 27px);
    font-weight: 700;
    line-height: 1.08;
    text-align: left;
  }

  .site-footer-mobile-actions img {
    width: clamp(34px, 6.53vw, 49px);
    height: clamp(34px, 6.53vw, 49px);
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .site-footer-mobile-call {
    font-size: clamp(18px, 4.13vw, 31px);
    white-space: nowrap;
  }

  body.mobile-menu-open .site-footer-mobile-actions {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 420px) {
  body {
    padding-bottom: calc(env(safe-area-inset-bottom) + 68px);
  }

  .mobile-ui-topbar {
    grid-template-columns: minmax(0, 1fr) 56px 54px;
    height: 68px;
  }

  .mobile-ui-logo {
    padding-left: 14px;
  }

  .mobile-ui-logo img {
    max-height: 43px;
  }

  .mobile-ui-search-trigger,
  .mobile-ui-menu-toggle {
    height: 68px;
  }

  .mobile-ui-search-trigger img {
    width: 34px;
    height: 34px;
  }

  .mobile-ui-menu-toggle {
    gap: 7px;
    padding: 20px 14px;
  }

  .mobile-ui-menu-toggle span {
    width: 32px;
    height: 4px;
  }

  .mobile-ui-menu {
    top: 68px;
    min-width: 240px;
    min-height: calc(100vh - 68px);
    padding-top: 21px;
  }

  .mobile-ui-lang-row a {
    min-width: 48px;
    height: 39px;
    font-size: 18px;
  }

  .mobile-ui-menu nav a {
    min-height: 68px;
    padding-left: 24px;
    font-size: 22px;
  }

  .mobile-ui-menu nav a i {
    width: 30px;
    height: 30px;
  }

  .site-footer-main {
    padding-top: 32px;
  }

  .site-footer-brand li {
    font-size: 18px;
  }

  .site-footer-brand li span {
    min-width: 88px;
  }

  .site-footer-qrs {
    gap: 20px 34px;
    padding: 28px 42px 22px;
  }

  .site-footer-qrs figcaption {
    font-size: 15px;
  }

  .site-footer-extra {
    gap: 2px 18px;
    font-size: 13px;
  }

  .site-footer-copy {
    min-height: 62px;
    font-size: 11px;
  }

  .site-footer-copy a {
    font-size: 14px;
  }

  .site-footer-mobile-actions {
    height: calc(64px + env(safe-area-inset-bottom));
    padding: 5px 7px max(5px, env(safe-area-inset-bottom));
  }

  .site-footer-mobile-actions a {
    height: 50px;
    gap: 9px;
    font-size: 17px;
  }

  .site-footer-mobile-actions img {
    width: 34px;
    height: 34px;
  }

  .site-footer-mobile-call {
    font-size: 18px;
  }
}

.about-ui-brand .about-ui-brand-grid.home-ui-brand-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 62px 140px;
  width: min(100%, 1528px);
}

.about-ui-partners .about-ui-partner-grid.home-ui-partner-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 36px 38px;
  width: 100%;
}

.about-ui-partners .about-ui-partner-grid.home-ui-partner-grid span {
  min-height: 0;
  padding: 0;
}

.about-ui-partners .about-ui-partner-grid.home-ui-partner-grid img {
  width: 100%;
  max-width: none;
  height: auto;
}

@media (max-width: 1100px) {
  .about-ui-brand .about-ui-brand-grid.home-ui-brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-ui-partners .about-ui-partner-grid.home-ui-partner-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .about-ui-brand .about-ui-brand-grid.home-ui-brand-grid {
    grid-template-columns: 1fr;
  }

  .about-ui-partners .about-ui-partner-grid.home-ui-partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ui-breadcrumb,
.about-ui-breadcrumb {
  min-height: 74px;
  color: #8da3a4;
  background: #edfafa;
  font-size: 17px;
}

.contact-ui-page .ui-breadcrumb {
  min-height: 74px;
  /* background: #edfafa; */
  font-size: 17px;
}

.ui-breadcrumb .ui-container,
.about-ui-breadcrumb .about-ui-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ui-breadcrumb span::before,
.about-ui-breadcrumb span::before {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: -3px;
  background: url("./assets/定位@2x.png") center / contain no-repeat;
  content: "";
}

.ui-breadcrumb em,
.about-ui-breadcrumb em,
.ui-news-detail-breadcrumb i {
  color: #aebfc0;
  font-style: normal;
}

.ui-breadcrumb strong,
.about-ui-breadcrumb strong,
.ui-news-detail-breadcrumb strong {
  color: #303b41;
}

.ui-news-detail-breadcrumb {
  min-height: 74px;
  margin-bottom: 22px;
  color: #8da3a4;
  font-size: 17px;
}

.ui-news-detail-breadcrumb span {
  padding-left: 0;
}

.ui-news-detail-breadcrumb span::before {
  position: static;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: -3px;
  background: url("./assets/定位@2x.png") center / contain no-repeat;
  transform: none;
  content: "";
}

@media (max-width: 900px) {
  .ui-page-soft .ui-breadcrumb,
  .ui-breadcrumb,
  .about-ui-breadcrumb,
  .ui-news-detail-breadcrumb {
    min-height: 74px;
    font-size: 17px;
  }
}

.ui-product-list-page .about-ui-float.home-ui-float,
.ui-advantages-page .about-ui-float.home-ui-float,
.ui-join-page .about-ui-float.home-ui-float,
.ui-news-list-page .about-ui-float.home-ui-float {
  display: block;
}

.ui-advantages-page .about-ui-float.home-ui-float a:first-child,
.ui-join-page .about-ui-float.home-ui-float a:first-child,
.ui-news-list-page .about-ui-float.home-ui-float a:first-child {
  display: grid;
}

@media (max-width: 760px) {
  .about-ui-float.home-ui-float,
  .ui-product-list-page .about-ui-float.home-ui-float,
  .ui-advantages-page .about-ui-float.home-ui-float,
  .ui-join-page .about-ui-float.home-ui-float,
  .ui-news-list-page .about-ui-float.home-ui-float {
    display: none;
  }

  .ui-custom-grid i {
    width: 72px;
    height: 72px;
    font-size: 13px;
  }

  .ui-custom-grid i::before {
    top: 17px;
    width: 72px;
  }
}

body.ui-join-page .ui-join-partners.home-ui-partners {
  padding: 74px 0 102px;
  background: #eaf9f7;
  background-image: none;
  background-attachment: scroll;
}

.ui-join-partners.home-ui-partners{
  background: #eaf9f7 !important;
}

body.ui-join-page .ui-join-partners.home-ui-partners .home-ui-title {
  display: grid;
  justify-items: center;
  margin: 0 auto 46px;
  text-align: center;
}

body.ui-join-page .ui-join-partners.home-ui-partners .home-ui-title p {
  position: absolute;
  left: 50%;
  top: -18px;
  width: auto;
  min-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 70px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}

body.ui-join-page .ui-join-partners.home-ui-partners .home-ui-title h2 {
  position: relative;
  z-index: 1;
  margin: 18px 0 12px;
  color: #111111;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
}

body.ui-join-page .ui-join-partners.home-ui-partners .home-ui-title span {
  position: relative;
  z-index: 1;
  color: #9aa3a4;
  font-size: 14px;
  line-height: 1.6;
}

body.ui-join-page .ui-join-partner-grid.home-ui-partner-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 36px 38px;
  width: 100%;
}

body.ui-join-page .ui-join-partner-grid.home-ui-partner-grid span {
  min-height: 0;
  padding: 0;
  border-radius: 8px;
}

body.ui-join-page .ui-join-partner-grid.home-ui-partner-grid img {
  width: 100%;
  max-width: none;
  height: auto;
}

@media (max-width: 1100px) {
  body.ui-join-page .ui-join-partner-grid.home-ui-partner-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .ui-join-page .ui-join-brand {
    padding: 42px 0 48px;
  }

  .ui-join-page .ui-join-brand .ui-title {
    margin-bottom: 28px;
    text-align: center;
  }

  .ui-join-page .ui-join-brand .ui-title p {
    top: -4px;
    min-width: 0;
    max-width: calc(100vw - 24px);
    overflow: hidden;
    font-size: clamp(34px, 11vw, 46px);
  }

  .ui-join-page .ui-join-brand .ui-title h2 {
    margin: 14px 0 8px;
    font-size: 24px;
  }

  .ui-join-page .ui-join-brand .ui-title span {
    max-width: 18em;
    font-size: 13px;
  }

  .ui-join-page .ui-brand-cards article {
    height: auto;
    min-height: 278px;
    padding: 26px 20px 24px;
  }

  .ui-join-page .ui-brand-cards i {
    width: 96px;
    height: 96px;
    margin-bottom: 18px;
  }

  .ui-join-page .ui-brand-cards img {
    width: 96px;
    height: 96px;
    padding: 0;
  }

  .ui-join-page .ui-brand-cards h3 {
    margin: 20px 0 24px;
    font-size: 20px;
  }

  .ui-join-page .ui-brand-cards p {
    font-size: 13px;
    line-height: 1.75;
  }

  body.ui-join-page .ui-join-partners.home-ui-partners {
    padding: 42px 0 48px;
  }

  body.ui-join-page .ui-join-partners.home-ui-partners .home-ui-title {
    margin-bottom: 26px;
  }

  body.ui-join-page .ui-join-partners.home-ui-partners .home-ui-title p {
    top: -4px;
    min-width: 0;
    max-width: calc(100vw - 24px);
    overflow: hidden;
    font-size: clamp(34px, 11vw, 46px);
  }

  body.ui-join-page .ui-join-partners.home-ui-partners .home-ui-title h2 {
    margin: 14px 0 8px;
    font-size: 24px;
  }

  body.ui-join-page .ui-join-partners.home-ui-partners .home-ui-title span {
    max-width: 18em;
    font-size: 13px;
  }

  body.ui-join-page .ui-join-partner-grid.home-ui-partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Unified mobile layout polish */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
    background: #f5fbfa;
  }

  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  img,
  video,
  canvas,
  table {
    max-width: 100%;
  }

  .ui-container,
  .about-ui-container,
  .container,
  .site-footer-container,
  .ui-page-soft .ui-breadcrumb .ui-container,
  .contact-ui-page .ui-container,
  .contact-ui-page .ui-breadcrumb .ui-container,
  .ui-news-detail-page > .container,
  .ui-product-page .ui-container {
    width: calc(100% - 28px);
    max-width: 520px;
    margin-right: auto;
    margin-left: auto;
  }

  .ui-header,
  .about-ui-header,
  .site-header {
    display: none !important;
  }

  .mobile-ui-topbar {
    position: sticky;
    top: 0;
    z-index: 120;
    grid-template-columns: minmax(0, 1fr) 54px 54px;
    height: 64px;
    width: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(215, 232, 232, 0.9);
    box-shadow: 0 4px 16px rgba(14, 53, 58, 0.1);
    backdrop-filter: blur(10px);
  }

  .mobile-ui-logo {
    min-width: 0;
    padding: 0 10px 0 14px;
  }

  .mobile-ui-logo img {
    width: min(100%, 255px);
    max-height: 42px;
    object-fit: contain;
  }

  .mobile-ui-search-trigger,
  .mobile-ui-menu-toggle {
    box-sizing: border-box;
    width: 100%;
    height: 64px;
    border-left: 1px solid rgba(215, 232, 232, 0.85);
  }

  .mobile-ui-search-trigger img {
    width: 30px;
    height: 30px;
  }

  .mobile-ui-menu-toggle {
    gap: 6px;
    padding: 19px 13px;
  }

  .mobile-ui-menu-toggle span {
    width: 28px;
    height: 3px;
    border-radius: 999px;
  }

  .mobile-ui-menu {
    top: 64px;
    z-index: 119;
    width: min(74vw, 330px);
    min-width: 250px;
    max-width: calc(100vw - 32px);
    min-height: calc(100dvh - 64px);
    padding: 18px 0 0;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: -18px 10px 36px rgba(17, 57, 59, 0.14);
    backdrop-filter: blur(10px);
  }

  .mobile-ui-close {
    width: 36px;
    height: 36px;
    margin: 0 0 12px 18px;
  }

  .mobile-ui-lang-row {
    top: 18px;
    right: 14px;
  }

  .mobile-ui-lang-row a {
    min-width: 48px;
    height: 38px;
    font-size: 17px;
  }

  .mobile-ui-menu nav {
    margin-top: 0;
  }

  .mobile-ui-menu nav a {
    gap: 14px;
    min-height: 58px;
    padding: 0 18px 0 22px;
    font-size: 18px;
    line-height: 1.2;
  }

  .mobile-ui-menu nav a i {
    width: 28px;
    height: 28px;
  }

  .mobile-ui-menu-contact {
    gap: 10px;
    margin-top: 14px;
    padding: 18px 22px 22px;
  }

  .mobile-ui-menu-contact p {
    gap: 7px;
    white-space: normal;
    font-size: 13px;
  }

  .mobile-ui-menu-contact img {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
  }

  .ui-main-offset {
    padding-top: 0;
  }

  .ui-hero,
  .about-ui-hero {
    min-height: 210px;
    padding: 42px 14px 34px;
    background-position: center;
  }

  .ui-hero > div,
  .about-ui-hero-title {
    width: 100%;
    padding: 0 14px;
    text-align: center;
  }

  .ui-hero p,
  .contact-ui-page .ui-hero p {
    margin-bottom: 2px;
    font-size: clamp(30px, 11vw, 48px);
    line-height: 0.95;
    white-space: normal;
  }

  .ui-hero h1,
  .about-ui-hero h1 {
    font-size: 26px;
    line-height: 1.25;
  }

  .ui-hero span,
  .about-ui-hero p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.7;
  }

  .ui-breadcrumb,
  .about-ui-breadcrumb,
  .ui-news-detail-breadcrumb,
  .ui-page-soft .ui-breadcrumb,
  .contact-ui-page .ui-breadcrumb {
    min-height: 42px;
    overflow: hidden;
    background: #ecfaf8;
    font-size: 12px;
  }

  .ui-breadcrumb .ui-container,
  .about-ui-breadcrumb .about-ui-container,
  .ui-news-detail-breadcrumb {
    gap: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .ui-breadcrumb span,
  .about-ui-breadcrumb span,
  .ui-news-detail-breadcrumb span {
    flex: 0 0 auto;
  }

  .ui-breadcrumb strong,
  .about-ui-breadcrumb strong,
  .ui-news-detail-breadcrumb strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .home-ui-about,
  .home-ui-products,
  .home-ui-brand,
  .home-ui-partners,
  .home-ui-news,
  .about-ui-intro,
  .about-ui-values,
  .about-ui-brand,
  .about-ui-partners,
  .ui-services,
  .ui-join-top,
  .ui-join-about,
  .ui-join-brand,
  .ui-supplier-strength,
  .ui-join-partners,
  .ui-contact-page,
  .ui-news-page,
  .ui-detail-content,
  .ui-detail-hero {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .home-ui-title,
  .ui-title,
  .ui-news-title-row,
  .ui-block-heading {
    margin-bottom: 22px;
  }

  .home-ui-title p,
  .ui-title p,
  .ui-news-title-row p {
    font-size: clamp(28px, 10vw, 40px);
    line-height: 0.95;
    white-space: normal;
  }

  .home-ui-title h2,
  .ui-title h2,
  .ui-news-title-row h1,
  .ui-block-heading {
    font-size: 23px;
    line-height: 1.25;
  }

  .home-ui-title span,
  .ui-title span,
  .ui-news-title-row span {
    font-size: 13px;
    line-height: 1.7;
  }

  .home-ui-hero {
    min-height: auto;
    background-position: 57% center;
  }

  .home-ui-hero::before {
    opacity: 0.5;
  }

  .home-ui-hero-inner {
    padding: 58px 0 46px;
  }

  .home-ui-hero h2 {
    max-width: 11em;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.22;
    text-shadow: 0 2px 14px rgba(0, 40, 48, 0.38);
  }

  .home-ui-hero p {
    max-width: 18em;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.75;
    text-shadow: 0 2px 10px rgba(0, 40, 48, 0.28);
  }

  .home-ui-search {
    gap: 8px;
    margin-top: 22px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
    backdrop-filter: blur(4px);
  }

  .home-ui-search input,
  .home-ui-search button {
    min-height: 44px;
    border-radius: 4px;
    font-size: 14px;
  }

  .home-ui-hotwords {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 10px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    text-shadow: 0 1px 8px rgba(0, 40, 48, 0.3);
  }

  .home-ui-hotwords a {
    color: #ffffff;
  }

  .home-ui-about-grid,
  .about-ui-intro-grid,
  .ui-join-about-grid,
  .ui-detail-top,
  .ui-detail-grid,
  .ui-news-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-ui-about-grid article,
  .about-ui-copy,
  .ui-join-about-grid article,
  .ui-detail-summary,
  .ui-detail-panel,
  .ui-news-detail-main,
  .ui-news-detail-related,
  .ui-message-form {
    padding: 20px 16px;
    border-radius: 8px;
  }

  .home-ui-about-grid h3,
  .about-ui-copy h3,
  .ui-join-about-grid h2,
  .ui-detail-summary h1 {
    font-size: 21px;
    line-height: 1.35;
  }

  .home-ui-about-grid p,
  .about-ui-copy p,
  .ui-join-about-grid p,
  .ui-detail-body p,
  .ui-news-detail-copy p {
    font-size: 14px;
    line-height: 1.8;
  }

  .home-ui-about-grid > img,
  .about-ui-intro-grid > img,
  .ui-join-about-grid > img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .home-ui-stats,
  .about-ui-stats,
  .ui-join-stats,
  .ui-custom-grid,
  .ui-import-grid,
  .ui-brand-cards,
  .about-ui-value-grid,
  .home-ui-brand-grid,
  .about-ui-brand-grid,
  .ui-feature-news,
  .ui-video-grid,
  .ui-contact-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-ui-stats article,
  .about-ui-stats article,
  .ui-join-stats article,
  .ui-custom-grid article,
  .ui-import-grid article,
  .ui-brand-cards article,
  .about-ui-value-grid article {
    min-height: 0;
    padding: 18px 16px;
    border-radius: 8px;
  }

  .home-ui-product-table,
  .home-ui-table-wrap {
    overflow: hidden;
    border-radius: 8px;
  }

  .home-ui-product-table aside {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px;
    scrollbar-width: none;
  }

  .home-ui-product-table aside::-webkit-scrollbar {
    display: none;
  }

  .home-ui-product-table aside strong,
  .home-ui-product-table aside a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 999px;
  }

  .home-ui-table-wrap {
    overflow-x: auto;
  }

  .home-ui-table-wrap table {
    min-width: 620px;
    font-size: 13px;
  }

  .home-ui-partner-grid,
  .about-ui-partner-grid,
  body.ui-join-page .ui-join-partner-grid.home-ui-partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-ui-partner-grid span,
  .about-ui-partner-grid span,
  .ui-join-partner-grid span {
    min-height: 68px;
    padding: 12px;
    border-radius: 8px;
  }

  .home-ui-partner-grid span{
    padding: 0px;
  }

  .home-ui-news-head {
    align-items: stretch;
    gap: 16px;
  }

  .home-ui-news-head nav,
  .ui-news-title-row nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .home-ui-news-head nav::-webkit-scrollbar,
  .ui-news-title-row nav::-webkit-scrollbar {
    display: none;
  }

  .home-ui-news-head nav a,
  .ui-news-title-row button {
    flex: 0 0 auto;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
  }

  .home-ui-news-grid,
  .ui-news-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-ui-news-grid article,
  .ui-news-list article {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 12px;
    border-radius: 8px;
  }

  .home-ui-news-grid img,
  .ui-news-list img,
  .ui-feature-news img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.25;
    object-fit: cover;
    border-radius: 6px;
  }

  .home-ui-news-grid h3,
  .ui-news-list h2,
  .ui-feature-news h3 {
    display: -webkit-box;
    margin: 0 0 7px;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .home-ui-news-grid p,
  .ui-news-list p {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .ui-news-list p + p,
  .ui-news-page .ui-hot-card,
  .ui-news-detail-side,
  .ui-related {
    display: none;
  }

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

  .ui-feature-news article {
    border-radius: 8px;
    overflow: hidden;
  }

  .ui-news-page {
    padding-top: 28px;
  }

  .ui-news-title-row {
    align-items: stretch;
  }

  .ui-news-pagination,
  .ui-pagination {
    gap: 6px;
    margin-top: 20px;
  }

  .ui-news-pagination a,
  .ui-pagination a {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 13px;
  }

  .ui-product-page {
    padding: 14px 0 38px;
  }

  .ui-product-page .ui-filter-panel {
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
  }

  .ui-product-page .ui-product-item {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
  }

  .ui-product-page .ui-product-item > img {
    width: 92px;
    height: 92px;
    border-radius: 6px;
  }

  .ui-product-page .ui-product-item h2 {
    padding-right: 50px;
    font-size: 15px;
  }

  .ui-product-page .ui-product-item p {
    -webkit-line-clamp: 2;
  }

  .ui-product-page .ui-product-item .ui-inquiry,
  .ui-detail-summary .ui-inquiry {
    min-width: 56px;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 13px;
    line-height: 30px;
  }

  .ui-page-soft .ui-detail-hero {
    padding: 18px 0 26px;
    background: #f5fbfa;
  }

  .ui-page-soft .ui-detail-hero .ui-detail-top {
    grid-template-columns: 1fr;
    gap: 14px;
    width: calc(100% - 28px);
    max-width: 520px;
  }

  .ui-page-soft .ui-detail-hero .ui-detail-image {
    justify-self: stretch;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 24px 18px;
    aspect-ratio: 1 / 0.76;
    background: #ffffff;
    border: 1px solid rgba(221, 236, 235, 0.9);
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(11, 79, 82, 0.06);
  }

  .ui-page-soft .ui-detail-hero .ui-detail-image img {
    width: min(62vw, 220px);
    height: min(62vw, 220px);
    object-fit: contain;
  }

  .ui-page-soft .ui-detail-hero .ui-detail-summary {
    min-height: 0;
    padding: 18px 16px 16px;
    background: #ffffff;
    border: 1px solid rgba(221, 236, 235, 0.9);
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(11, 79, 82, 0.05);
  }

  .ui-page-soft .ui-detail-hero .ui-detail-summary h1 {
    margin: 0 0 14px;
    padding-bottom: 13px;
    color: #111b1f;
    border-bottom: 1px solid rgba(222, 237, 236, 0.92);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.35;
  }

  .ui-page-soft .ui-detail-hero .ui-detail-summary dl {
    gap: 10px;
  }

  .ui-page-soft .ui-detail-hero .ui-detail-summary dl div {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    min-height: 32px;
  }

  .ui-page-soft .ui-detail-hero .ui-detail-summary dt {
    padding-top: 5px;
    color: #6f8085;
    font-size: 13px;
    line-height: 1.35;
  }

  .ui-page-soft .ui-detail-hero .ui-detail-summary dd {
    min-width: 0;
    color: #263439;
    font-size: 14px;
    line-height: 1.55;
  }

  .ui-page-soft .ui-detail-hero .ui-detail-summary dd span {
    display: inline-flex;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 7px 10px;
    color: #16a88f;
    background: #effafa;
    border-radius: 5px;
    font-size: 13px;
    line-height: 1.25;
    white-space: normal;
  }

  .ui-page-soft .ui-detail-hero .ui-detail-summary .ui-inquiry {
    position: static;
    width: 100%;
    min-width: 0;
    height: 42px;
    margin-top: 16px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 16px;
    line-height: 42px;
  }

  .ui-page-soft .ui-detail-hero .ui-detail-summary .ui-inquiry::before {
    width: 20px;
    height: 20px;
  }

  .ui-detail-hero {
    background: #f5fbfa;
  }

  .ui-detail-image {
    width: min(100%, 280px);
    margin: 0 auto;
    aspect-ratio: 1;
    border-radius: 8px;
  }

  .ui-page-soft .ui-detail-hero .ui-detail-image {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 22px 18px;
    aspect-ratio: 1 / 0.76;
  }

  .ui-page-soft .ui-detail-hero .ui-detail-image img {
    width: min(58vw, 190px);
    max-width: 100%;
    height: min(58vw, 190px);
  }

  .ui-detail-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px;
    scrollbar-width: none;
  }

  .ui-detail-tabs::-webkit-scrollbar {
    display: none;
  }

  .ui-detail-tabs button {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .ui-news-detail-page {
    padding-top: 14px;
  }

  .ui-news-detail-main {
    box-shadow: 0 10px 24px rgba(16, 84, 86, 0.06);
  }

  .ui-news-detail-head h2 {
    font-size: 20px;
    line-height: 1.45;
  }

  .ui-news-detail-meta {
    gap: 8px 16px;
    margin-top: 14px;
    font-size: 12px;
  }

  .ui-news-detail-copy {
    padding-top: 22px;
  }

  .ui-news-detail-figure img {
    border-radius: 8px;
  }

  .ui-news-detail-tags,
  .ui-news-detail-prevnext {
    gap: 10px;
    margin-top: 24px;
  }

  .ui-news-detail-prevnext {
    display: grid;
  }

  .ui-news-detail-prevnext a {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ui-news-detail-related-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ui-news-detail-related-grid li {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .ui-services .ui-title,
  .ui-join-brand .ui-title,
  .ui-supplier-strength .ui-title,
  .contact-ui-page .ui-title {
    text-align: left;
  }

  .contact-ui-page .ui-message-form .ui-title,
  .contact-ui-page .ui-business .ui-title {
    justify-items: center;
    margin-bottom: 28px;
    text-align: center;
  }

  .contact-ui-page .ui-message-form .ui-title p,
  .contact-ui-page .ui-business .ui-title p {
    top: -4px;
    max-width: calc(100vw - 24px);
    overflow: hidden;
    font-size: clamp(34px, 11vw, 46px);
    white-space: nowrap;
  }

  .contact-ui-page .ui-message-form .ui-title h2,
  .contact-ui-page .ui-business .ui-title h2 {
    margin: 14px 0 8px;
    font-size: 24px;
  }

  .contact-ui-page .ui-message-form .ui-title span,
  .contact-ui-page .ui-business .ui-title span {
    max-width: 18em;
    font-size: 13px;
    line-height: 1.7;
  }

  .ui-custom-grid i {
    width: 64px;
    height: 64px;
  }

  .ui-service-image-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ui-service-image-grid article,
  .ui-service-image-grid img,
  .ui-cooperation-banner,
  .ui-cooperation-banner img {
    border-radius: 8px;
  }

  .ui-join-page .ui-join-contact {
    padding: 42px 0 48px;
  }

  .ui-join-page .ui-join-contact .ui-container > div {
    min-height: 164px;
    padding: 28px 18px 26px;
    border-radius: 8px;
    background-position: center;
  }

  .ui-join-page .ui-join-contact h2 {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .ui-join-page .ui-join-contact h2::after {
    width: 48px;
    height: 2px;
    margin-top: 13px;
  }

  .ui-join-page .ui-join-contact span {
    font-size: 13px;
  }

  .ui-join-page .ui-join-contact strong {
    font-size: 21px;
  }

  .ui-join-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ui-join-cards article {
    min-height: 150px;
    padding: 24px 18px;
    border-radius: 8px;
  }

  .ui-join-cards h2,
  .ui-join-contact h2 {
    font-size: 22px;
    line-height: 1.35;
  }

  .ui-video-grid img {
    height: auto;
    aspect-ratio: 1.72;
  }

  .ui-join-contact {
    padding: 34px 0;
  }

  .ui-join-contact .ui-container > div {
    min-height: 170px;
    padding: 28px 18px;
    border-radius: 8px;
  }

  .ui-join-contact strong {
    font-size: 28px;
  }

  .contact-ui-page .ui-message-form {
    padding: 32px 16px;
    background: #ffffff;
  }

  .contact-ui-page .ui-form-grid,
  .ui-form-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-ui-page .ui-form-grid > span {
    display: none;
  }

  .contact-ui-page .ui-form-grid label,
  .ui-form-grid label {
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 13px;
  }

  .contact-ui-page .ui-form-grid input,
  .contact-ui-page .ui-form-grid select,
  .contact-ui-page .ui-form-grid textarea {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 14px;
  }

  .contact-ui-page .ui-form-grid textarea {
    min-height: 130px;
    padding-top: 12px;
  }

  .contact-ui-page .ui-message-form > button {
    width: 100%;
    max-width: none;
    height: 44px;
    border-radius: 999px;
  }

  .contact-ui-page .ui-business {
    padding-top: 36px;
  }

  .contact-ui-page .ui-business-banner {
    min-height: 180px;
    border-radius: 8px;
    background: #FFFFFF;
  }

  .contact-ui-page .ui-business-banner > div {
    padding: 28px 18px;
  }

  .contact-ui-page .ui-business-banner h3 {
    font-size: 21px;
  }

  .contact-ui-page .ui-business-banner strong {
    font-size: 25px;
  }

  .contact-ui-page .ui-contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
    padding: 0;
  }

  .contact-ui-page .ui-contact-cards article {
    min-height: 0;
    padding: 18px 10px;
    border-width: 0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(14, 88, 89, 0.07);
  }

  .contact-ui-page .ui-contact-cards h3 {
    font-size: 14px;
    line-height: 1.35;
  }

  .contact-ui-page .ui-contact-cards img {
    width: min(100%, 98px);
    height: auto;
    margin: 12px auto;
  }

  .contact-ui-page .ui-contact-cards p {
    font-size: 12px;
  }

  .standalone-main,
  .placeholder-page,
  .product-empty-page,
  .news-empty-page {
    padding: 28px 14px 38px;
  }

  .placeholder-grid,
  .overview-grid,
  .phone-grid,
  .feature-strip,
  .service-icons,
  .partner-grid,
  .join-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .site-footer {
    margin-top: 0;
  }

  .site-footer-main {
    gap: 22px;
    padding: 30px 0 22px;
  }

  .site-footer-brand li {
    align-items: flex-start;
    gap: 6px;
    font-size: 15px;
    line-height: 1.55;
  }

  .site-footer-brand li span {
    flex: 0 0 auto;
    min-width: 76px;
  }

  .site-footer-qrs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 16px;
  }

  .site-footer-qrs img {
    width: 92px;
    height: 92px;
    margin-bottom: 8px;
  }

  .site-footer-extra {
    gap: 8px 18px;
    font-size: 13px;
  }

  .site-footer-copy {
    grid-template-columns: 1fr;
    min-height: 54px;
    gap: 4px;
    padding: 10px 14px;
    text-align: center;
    font-size: 10px;
  }

  .site-footer-bottom-bar {
    display: none !important;
  }

  .site-footer-mobile-actions {
    height: calc(64px + env(safe-area-inset-bottom));
    padding: 8px 10px max(8px, env(safe-area-inset-bottom));
  }

  .site-footer-mobile-actions a {
    height: 50px;
    gap: 8px;
    border-radius: 6px;
    font-size: 15px;
  }

  .site-footer-mobile-actions img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 420px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  .ui-container,
  .about-ui-container,
  .container,
  .site-footer-container,
  .ui-page-soft .ui-breadcrumb .ui-container,
  .contact-ui-page .ui-container,
  .contact-ui-page .ui-breadcrumb .ui-container,
  .ui-news-detail-page > .container,
  .ui-product-page .ui-container {
    width: calc(100% - 24px);
  }

  .mobile-ui-topbar {
    grid-template-columns: minmax(0, 1fr) 50px 50px;
    height: 60px;
  }

  .mobile-ui-logo img {
    max-height: 38px;
  }

  .mobile-ui-search-trigger,
  .mobile-ui-menu-toggle {
    height: 60px;
  }

  .mobile-ui-search-trigger img {
    width: 28px;
    height: 28px;
  }

  .mobile-ui-menu-toggle {
    padding: 17px 12px;
  }

  .mobile-ui-menu-toggle span {
    width: 26px;
  }

  .mobile-ui-menu {
    top: 60px;
    width: 76vw;
    min-height: calc(100dvh - 60px);
  }

  .mobile-ui-menu nav a {
    min-height: 54px;
    font-size: 16px;
  }

  .mobile-ui-menu nav a i {
    width: 25px;
    height: 25px;
  }

  .ui-hero,
  .about-ui-hero {
    min-height: 190px;
  }

  .ui-hero h1,
  .about-ui-hero h1 {
    font-size: 24px;
  }

  .home-ui-hero h2 {
    font-size: 25px;
  }

  .home-ui-news-grid article,
  .ui-news-list article {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .ui-product-page .ui-product-item {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .ui-product-page .ui-product-item > img {
    width: 84px;
    height: 84px;
  }

  .contact-ui-page .ui-contact-cards {
    gap: 10px;
  }

  .contact-ui-page .ui-contact-cards article {
    padding: 16px 8px;
  }

  .contact-ui-page .ui-contact-cards img {
    width: 82px;
  }

  .site-footer-qrs {
    gap: 12px;
    padding: 14px;
  }

  .site-footer-qrs img {
    width: 78px;
    height: 78px;
  }

  .site-footer-mobile-actions {
    height: calc(64px + env(safe-area-inset-bottom));
    padding: 6px 8px max(6px, env(safe-area-inset-bottom));
  }

  .site-footer-mobile-actions a {
    height: 50px;
    font-size: 14px;
  }

  .site-footer-mobile-actions img {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 760px) {
  .home-ui-page .home-ui-product-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .home-ui-page .home-ui-product-table:hover {
    box-shadow: none;
    transform: none;
  }

  .home-ui-page .home-ui-product-table aside {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px;
    background: #e9f7f5;
    border-radius: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .home-ui-page .home-ui-product-table aside::-webkit-scrollbar {
    display: none;
  }

  .home-ui-page .home-ui-product-table aside strong,
  .home-ui-page .home-ui-product-table aside a,
  .home-ui-page .home-ui-product-table aside a:first-of-type {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: auto;
    min-height: 34px !important;
    height: 34px;
    padding: 0 13px;
    color: #2f474c;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(22, 190, 160, 0.14);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .home-ui-page .home-ui-product-table aside strong {
    color: #16bea0;
    background: rgba(255, 255, 255, 0.58);
    border-color: rgba(22, 190, 160, 0.28);
  }

  .home-ui-page .home-ui-product-table aside a span {
    display: inline;
    padding: 0;
    color: inherit;
    background: transparent;
    border-radius: 0;
    white-space: nowrap;
  }

  .home-ui-page .home-ui-product-table aside a.active,
  .home-ui-page .home-ui-product-table aside a[aria-pressed="true"] {
    color: #ffffff;
    background: linear-gradient(180deg, #22d5ba 0%, #12bda3 100%);
    border-color: #12bda3;
    box-shadow: 0 6px 14px rgba(18, 189, 163, 0.22);
  }

  .home-ui-page .home-ui-product-table aside a.active span,
  .home-ui-page .home-ui-product-table aside a[aria-pressed="true"] span {
    padding: 0;
    color: inherit;
    background: transparent;
    border-radius: 0;
  }

  .home-ui-page .home-ui-product-table aside a:active {
    transform: scale(0.97);
  }

  .home-ui-page .home-ui-product-table aside a br {
    display: none;
  }

  .home-ui-page .home-ui-table-wrap {
    overflow: visible;
    background: transparent;
    border-radius: 0;
  }

  .home-ui-page .home-ui-product-table table,
  .home-ui-page .home-ui-product-table thead,
  .home-ui-page .home-ui-product-table tbody,
  .home-ui-page .home-ui-product-table tr,
  .home-ui-page .home-ui-product-table th,
  .home-ui-page .home-ui-product-table td {
    display: block;
    width: auto;
    min-width: 0;
    height: auto;
  }

  .home-ui-page .home-ui-product-table table {
    min-width: 0;
    border-spacing: 0;
  }

  .home-ui-page .home-ui-product-table thead {
    display: none;
  }

  .home-ui-page .home-ui-product-table tbody {
    display: grid;
    gap: 12px;
    padding: 0;
    background: transparent;
  }

  .home-ui-page .home-ui-product-table tbody tr {
    display: grid;
    grid-template-columns: 36px 76px minmax(0, 1fr);
    grid-template-areas:
      "num image name"
      "num image cas"
      "quality quality quality";
    gap: 6px 10px;
    align-items: center;
    padding: 12px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(22, 190, 160, 0.16);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(11, 79, 82, 0.05);
  }

  .home-ui-page .home-ui-product-table tbody tr:nth-child(even) td,
  .home-ui-page .home-ui-product-table tbody tr:hover td {
    color: inherit;
    background: transparent;
  }

  .home-ui-page .home-ui-product-table tbody td {
    min-width: 0;
    padding: 0;
    background: transparent;
    border: 0;
    font-size: 13px;
    line-height: 1.45;
  }

  .home-ui-page .home-ui-product-table tbody td:nth-child(1) {
    grid-area: num;
    align-self: start;
    padding-top: 3px;
    color: #16bea0;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
  }

  .home-ui-page .home-ui-product-table tbody td:nth-child(2) {
    grid-area: image;
  }

  .home-ui-page .home-ui-product-table tbody td:nth-child(3) {
    grid-area: name;
    overflow: hidden;
    color: #0e1a1d;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .home-ui-page .home-ui-product-table tbody td:nth-child(4) {
    grid-area: cas;
    overflow: hidden;
    color: #62777d;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .home-ui-page .home-ui-product-table tbody td:nth-child(4)::before {
    content: "CAS号：";
    color: #91a1a5;
  }

  .home-ui-page .home-ui-product-table tbody td:nth-child(5) {
    grid-area: quality;
    display: -webkit-box;
    margin-top: 4px;
    padding-top: 10px;
    overflow: hidden;
    color: #5f7378;
    border-top: 1px solid rgba(218, 233, 232, 0.86);
    font-size: 12px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .home-ui-page .home-ui-product-table tbody td:nth-child(5)::before {
    content: "质量指标：";
    color: #91a1a5;
  }

  .home-ui-page .home-ui-structure {
    width: 68px;
    height: 68px;
    border-radius: 7px;
    box-shadow: 0 6px 14px rgba(6, 65, 64, 0.07);
  }

  .home-ui-page .home-ui-structure img {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 420px) {
  .home-ui-page .home-ui-product-table tbody tr {
    grid-template-columns: 32px 66px minmax(0, 1fr);
    gap: 6px 9px;
    padding: 10px;
  }

  .home-ui-page .home-ui-product-table tbody td:nth-child(1) {
    font-size: 16px;
  }

  .home-ui-page .home-ui-product-table tbody td:nth-child(3) {
    font-size: 15px;
  }

  .home-ui-page .home-ui-structure {
    width: 60px;
    height: 60px;
  }

  .home-ui-page .home-ui-structure img {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 760px) {
  .home-ui-page .home-ui-news {
    padding: 38px 0 44px;
    overflow: hidden;
  }

  .home-ui-page .home-ui-news-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
    margin-bottom: 18px;
  }

  .home-ui-page .home-ui-news-head .home-ui-title {
    margin: 0;
    text-align: left;
  }

  .home-ui-page .home-ui-news-head nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .home-ui-page .home-ui-news-head nav::-webkit-scrollbar {
    display: none;
  }

  .home-ui-page .home-ui-news-head nav a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: auto;
    min-height: 34px;
    height: 34px;
    padding: 0 14px;
    color: #33484d;
    background: #f2faf9;
    border: 1px solid rgba(20, 191, 164, 0.16);
    border-radius: 999px;
    box-shadow: none;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
  }

  .home-ui-page .home-ui-news-head nav a.active,
  .home-ui-page .home-ui-news-head nav a[aria-selected="true"] {
    color: #ffffff;
    background: linear-gradient(180deg, #23d5ba 0%, #13bea4 100%);
    border-color: #13bea4;
    box-shadow: 0 6px 14px rgba(19, 190, 164, 0.2);
  }

  .home-ui-page .home-ui-news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-ui-page .home-ui-news-grid article,
  .home-ui-page .home-ui-news-grid article.active,
  .home-ui-page .home-ui-news-grid article:hover {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(216, 235, 234, 0.95);
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(11, 79, 82, 0.05);
    transform: none;
  }

  .home-ui-page .home-ui-news-grid article.active {
    border-color: rgba(20, 191, 164, 0.36);
    /* box-shadow: 0 10px 24px rgba(20, 191, 164, 0.1); */
  }

  .home-ui-page .home-ui-news-grid img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1.68;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    transform: none;
    filter: none;
  }

  .home-ui-page .home-ui-news-grid h3,
  .home-ui-page .home-ui-news-grid p,
  .home-ui-page .home-ui-news-grid article > div {
    width: auto;
    min-width: 0;
    margin-right: 14px;
    margin-left: 14px;
  }

  .home-ui-page .home-ui-news-grid h3 {
    display: -webkit-box;
    margin-top: 13px;
    margin-bottom: 8px;
    overflow: hidden;
    color: #111b1f;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .home-ui-page .home-ui-news-grid p {
    display: -webkit-box;
    min-height: 0;
    margin-top: 0;
    margin-bottom: 13px;
    overflow: hidden;
    color: #6d7e84;
    font-size: 13px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .home-ui-page .home-ui-news-grid article > div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    align-items: start;
    margin-bottom: 14px;
  }

  .home-ui-page .home-ui-news-grid a {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 6px;
    min-width: 0;
    min-height: 30px;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    white-space: nowrap;
    justify-content: center;
  }

  .home-ui-page .home-ui-news-grid a span {
    width: 16px;
    height: 16px;
  }

  .home-ui-page .home-ui-news-grid a span::before {
    width: 5px;
    height: 5px;
    border-width: 1px;
  }

  .home-ui-page .home-ui-news-grid time {
    order: -1;
    flex: 0 1 auto;
    min-width: 0;
    padding-left: 17px;
    overflow: hidden;
    color: #839195;
    font-size: 12px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .home-ui-page .home-ui-news-grid time::before {
    width: 11px;
    height: 11px;
    border-width: 1px;
  }

  .home-ui-page .home-ui-news-grid time::after {
    left: 5px;
    top: calc(50% - 4px);
    width: 3px;
    height: 5px;
  }
}

@media (max-width: 420px) {
  .home-ui-page .home-ui-news-head nav {
    margin-right: -12px;
    margin-left: -2px;
    padding-left: 2px;
    padding-right: 12px;
  }

  .home-ui-page .home-ui-news-grid {
    gap: 12px;
  }

  .home-ui-page .home-ui-news-grid h3,
  .home-ui-page .home-ui-news-grid p,
  .home-ui-page .home-ui-news-grid article > div {
    margin-right: 12px;
    margin-left: 12px;
  }

  .home-ui-page .home-ui-news-grid h3 {
    font-size: 15px;
  }
}

@media (min-width: 761px) {
  .ui-header,
  .about-ui-header,
  .site-header {
    display: block !important;
  }

  .ui-header,
  .about-ui-header {
    position: fixed;
    height: 80px;
  }

  .site-header {
    position: fixed;
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    justify-content: normal;
    height: 74px;
  }

  .ui-nav,
  .about-ui-nav {
    display: grid;
    grid-template-columns: 156px minmax(0, 1fr) 224px auto;
    align-items: center;
    gap: 22px;
    width: min(1760px, calc(100% - 160px));
    height: 100%;
    min-height: 0;
    padding: 0;
  }

  .ui-nav nav,
  .about-ui-nav nav {
    grid-column: auto;
    order: initial;
    justify-content: center;
    overflow: visible;
    gap: clamp(16px, 1.7vw, 52px);
  }

  .ui-nav nav a,
  .about-ui-nav nav a {
    height: 80px;
  }

  .ui-search,
  .ui-lang,
  .about-ui-search,
  .about-ui-lang {
    display: grid;
  }

  .site-nav {
    position: static;
    display: flex !important;
    justify-content: center;
    gap: clamp(18px, 2vw, 34px);
    padding: 0;
    background: transparent;
  }

  .site-nav a {
    padding: 28px 0;
  }

  .header-search {
    display: flex !important;
  }

  .menu-toggle {
    display: none !important;
  }

  .mobile-ui-topbar,
  .mobile-ui-menu {
    display: none !important;
  }

  body {
    padding-bottom: 0;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .ui-nav,
  .about-ui-nav {
    grid-template-columns: 124px minmax(0, 1fr) auto;
    gap: 14px;
    width: calc(100% - 44px);
  }

  .ui-logo img {
    width: 108px;
  }

  .about-ui-logo img {
    width: 118px;
  }

  .ui-nav nav,
  .about-ui-nav nav {
    grid-column: auto;
    order: initial;
    justify-content: flex-start;
    gap: 20px;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1px;
    font-size: 14px;
    scrollbar-width: none;
  }

  .ui-nav nav::-webkit-scrollbar,
  .about-ui-nav nav::-webkit-scrollbar {
    display: none;
  }

  .ui-nav nav a,
  .about-ui-nav nav a {
    flex: 0 0 auto;
  }

  .ui-search,
  .about-ui-search {
    display: none;
  }

  .ui-lang,
  .about-ui-lang {
    display: block;
    white-space: nowrap;
    font-size: 13px;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    padding: 0 22px;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 22px;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .header-search {
    display: none !important;
  }
}

.ui-advantages-page .ui-services {
  padding-top: 72px;
  background: linear-gradient(#edfafa 0 1040px, #ffffff 1040px 100%);
}

.ui-advantages-page .ui-services .ui-title {
  position: relative;
  display: grid;
  justify-items: center;
  margin: 0 auto 54px;
  text-align: center;
}

.ui-advantages-page .ui-services .ui-title p {
  position: absolute;
  left: 50%;
  top: -12px;
  z-index: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: visible;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(62px, 6vw, 96px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}

.ui-advantages-page .ui-services .ui-title h2 {
  position: relative;
  z-index: 1;
  margin: 34px 0 16px;
  color: #0f171c;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
}

.ui-advantages-page .ui-services .ui-title span {
  position: relative;
  z-index: 1;
  color: #97a7ab;
  font-size: 18px;
  line-height: 1.5;
}

.ui-advantages-page .ui-import-grid + .ui-service-image-grid,
.ui-advantages-page .ui-custom-grid + .ui-title {
  margin-top: 78px;
}

@media (max-width: 1200px) and (min-width: 761px) {
  .ui-advantages-page .ui-services .ui-title p {
    max-width: none;
    font-size: clamp(48px, 5.8vw, 66px);
  }

  .ui-advantages-page .ui-services .ui-title h2 {
    margin-top: 26px;
    font-size: 32px;
  }
}

@media (max-width: 760px) {
  .ui-advantages-page .ui-services {
    padding-top: 42px;
    background: #edfafa;
  }

  .ui-advantages-page .ui-services .ui-title {
    justify-items: center;
    margin-bottom: 26px;
    text-align: center;
  }

  .ui-advantages-page .ui-services .ui-title p {
    position: absolute;
    left: 50%;
    top: -2px;
    width: max-content;
    max-width: calc(100vw - 24px);
    margin: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(34px, 11vw, 48px);
    font-weight: 900;
    line-height: 0.95;
    white-space: nowrap;
    transform: translateX(-50%);
  }

  .ui-advantages-page .ui-services .ui-title h2 {
    position: relative;
    z-index: 1;
    margin: 18px 0 9px;
    font-size: 24px;
    font-weight: 900;
  }

  .ui-advantages-page .ui-services .ui-title span {
    position: relative;
    z-index: 1;
    font-size: 13px;
  }

  .ui-advantages-page .ui-import-grid + .ui-service-image-grid,
  .ui-advantages-page .ui-custom-grid + .ui-title {
    margin-top: 42px;
  }
}

.ui-advantages-page .ui-custom-grid i {
  position: absolute;
  top: -6px;
  right: -4px;
  display: block;
  width: 108px;
  height: 108px;
  padding: 0;
  overflow: hidden;
  color: #ffffff;
  clip-path: none;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-indent: -999px;
  white-space: nowrap;
  pointer-events: none;
  background-image: url('./assets/矩形 697@2x.png');
  background-size: 100%;
}

.ui-main-offset.news-detail-page{
  padding-top: 0;
}

/* .ui-advantages-page .ui-custom-grid i::before {
  position: absolute;
  top: 15px;
  right: -40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 34px;
  color: #ffffff;
  background: #5abdb5;
  box-shadow: 0 6px 12px rgba(45, 156, 149, 0.16);
  text-indent: 0;
  transform: rotate(45deg);
  transform-origin: center;
  content: attr(data-label);
  background-image: url('./assets/矩形 697@2x.png');
  background-size: 100%;
} */

.ui-advantages-page .ui-custom-grid i::after {
  /* position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 10px solid rgba(63, 165, 158, 0.42);
  border-left: 10px solid transparent;
  content: ""; */
}

.ui-advantages-page .ui-custom-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

@media (max-width: 760px) {
  .ui-advantages-page .ui-custom-grid i {
    width: 88px;
    height: 88px;
    font-size: 13px;
  }

  .ui-advantages-page .ui-custom-grid i::before {
    top: 12px;
    right: -36px;
    width: 128px;
    height: 30px;
  }
}

.about-ui-page .about-ui-intro.home-ui-about {
  padding: 0;
  overflow: hidden;
  background: #effaf8;
}

.about-ui-page .about-ui-intro.home-ui-about .ui-container {
  width: min(1760px, calc(100% - 160px));
  padding: 88px 0 96px;
  background: #effaf8;
}

.about-ui-page .about-ui-intro-grid.home-ui-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 46.2%);
  gap: clamp(48px, 4.1vw, 78px);
  align-items: start;
}

.about-ui-page .about-ui-intro.home-ui-about .about-ui-copy {
  position: relative;
  padding: 0 0 0 2px;
}

.about-ui-page .about-ui-intro.home-ui-about .about-ui-copy::before {
  position: absolute;
  top: -78px;
  left: -8px;
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 190px;
  font-weight: 900;
  line-height: 1;
  content: "“";
  pointer-events: none;
}

.about-ui-page .about-ui-intro.home-ui-about .about-ui-copy h3 {
  position: relative;
  margin: 0 0 30px;
  color: #0f181d;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
}

.about-ui-page .about-ui-intro.home-ui-about .about-ui-copy p {
  position: relative;
  margin: 0 0 24px;
  color: #61767c;
  font-size: 18px;
  line-height: 2.15;
  text-indent: 2em;
}

.about-ui-page .about-ui-intro.home-ui-about .about-ui-copy p._t {
  margin-bottom: 24px;
}

.about-ui-page .about-ui-intro-grid.home-ui-about-grid > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2.0325;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: none;
  transform: none;
}

.about-ui-page .about-ui-intro-grid.home-ui-about-grid > img:hover {
  box-shadow: none;
  transform: none;
}

.about-ui-page .about-ui-stats.home-ui-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 58px;
}

.about-ui-page .about-ui-stats.home-ui-stats article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 112px;
  padding: 22px 38px;
  background: #ffffff;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(28, 68, 83, 0.08);
  transform: none;
}

.about-ui-page .about-ui-stats.home-ui-stats article:hover {
  box-shadow: 0 14px 32px rgba(28, 68, 83, 0.12);
  transform: translateY(-3px);
}

.about-ui-page .about-ui-stats.home-ui-stats img {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.about-ui-page .about-ui-stats.home-ui-stats b {
  color: #111a20;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.about-ui-page .about-ui-stats.home-ui-stats span {
  color: #6f8086;
  font-size: 18px;
  line-height: 1.45;
}

@media (max-width: 1400px) and (min-width: 761px) {
  .about-ui-page .about-ui-intro.home-ui-about .ui-container {
    width: calc(100% - 80px);
  }

  .about-ui-page .about-ui-intro-grid.home-ui-about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 46%);
    gap: 44px;
  }

  .about-ui-page .about-ui-intro.home-ui-about .about-ui-copy h3 {
    font-size: 25px;
  }

  .about-ui-page .about-ui-intro.home-ui-about .about-ui-copy p {
    font-size: 16px;
    line-height: 2;
  }

  .about-ui-page .about-ui-stats.home-ui-stats {
    gap: 18px;
  }

  .about-ui-page .about-ui-stats.home-ui-stats article {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 20px 22px;
  }

  .about-ui-page .about-ui-stats.home-ui-stats b {
    font-size: 23px;
  }

  .about-ui-page .about-ui-stats.home-ui-stats span {
    font-size: 15px;
  }
}

@media (max-width: 760px) {
  .about-ui-page .about-ui-intro.home-ui-about .ui-container {
    width: calc(100% - 28px);
    max-width: 520px;
    padding: 38px 0;
  }

  .about-ui-page .about-ui-intro-grid.home-ui-about-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-ui-page .about-ui-intro.home-ui-about .about-ui-copy {
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.66);
    border-radius: 8px;
  }

  .about-ui-page .about-ui-intro.home-ui-about .about-ui-copy::before {
    top: -28px;
    left: 8px;
    font-size: 92px;
  }

  .about-ui-page .about-ui-intro.home-ui-about .about-ui-copy h3 {
    margin-bottom: 14px;
    font-size: 21px;
  }

  .about-ui-page .about-ui-intro.home-ui-about .about-ui-copy p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.85;
  }

  .about-ui-page .about-ui-intro-grid.home-ui-about-grid > img {
    height: auto;
    aspect-ratio: 1.75;
  }

  .about-ui-page .about-ui-stats.home-ui-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
  }

  .about-ui-page .about-ui-stats.home-ui-stats article {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 86px;
    padding: 16px;
  }

  .about-ui-page .about-ui-stats.home-ui-stats img {
    width: 42px;
    height: 42px;
  }

  .about-ui-page .about-ui-stats.home-ui-stats b {
    font-size: 20px;
  }

  .about-ui-page .about-ui-stats.home-ui-stats span {
    font-size: 13px;
  }
}

@media (max-width: 760px) {
  .ui-advantages-page {
    background: #f5fbfa;
  }

  .ui-advantages-page .ui-services {
    padding: 38px 0 46px;
    overflow: hidden;
    background: #edfafa;
  }

  .ui-advantages-page .ui-services > .ui-container {
    width: calc(100% - 28px);
    max-width: 520px;
  }

  .ui-advantages-page .ui-services .ui-title {
    justify-items: center;
    margin: 0 auto 24px;
    text-align: center;
  }

  .ui-advantages-page .ui-services .ui-title p {
    top: -4px;
    width: max-content;
    max-width: calc(100vw - 24px);
    overflow: hidden;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1;
    text-overflow: clip;
  }

  .ui-advantages-page .ui-services .ui-title h2 {
    margin: 14px 0 8px;
    font-size: 24px;
    line-height: 1.25;
  }

  .ui-advantages-page .ui-services .ui-title span {
    max-width: 18em;
    font-size: 13px;
    line-height: 1.65;
  }

  .ui-advantages-page .ui-custom-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 36px;
  }

  .ui-advantages-page .ui-custom-grid article {
    min-height: 0;
    padding: 22px 18px 24px;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(11, 79, 82, 0.05);
  }

  .ui-advantages-page .ui-custom-grid article::after {
    right: 16px;
    bottom: 14px;
    width: 82px;
    height: 82px;
  }

  .ui-advantages-page .ui-custom-grid b {
    margin-bottom: 10px;
    padding-right: 70px;
    font-size: 18px;
    line-height: 1.35;
  }

  .ui-advantages-page .ui-custom-grid p {
    position: relative;
    z-index: 1;
    font-size: 13px;
    line-height: 1.8;
  }

  .ui-advantages-page .ui-custom-grid i {
    width: 82px;
    height: 82px;
  }

  .ui-advantages-page .ui-custom-grid i::before {
           top: 21px;
        right: -28px;
    width: 126px;
    height: 28px;
    font-size: 12px;
  }

  .ui-advantages-page .ui-import-grid + .ui-service-image-grid,
  .ui-advantages-page .ui-custom-grid + .ui-title {
    margin-top: 34px;
  }

  .ui-advantages-page .ui-import-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin: 0 auto 28px;
  }

  .ui-advantages-page .ui-import-grid article {
    min-height: 132px;
    padding: 22px 18px;
    border-radius: 8px;
  }

  .ui-advantages-page .ui-import-grid h3 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.35;
  }

  .ui-advantages-page .ui-import-grid p {
    font-size: 13px;
    line-height: 1.65;
  }

  .ui-advantages-page .ui-service-image-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 0;
  }

  .ui-advantages-page .ui-service-image-grid article {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 16px;
    min-height: 126px;
    padding: 18px 20px;
    overflow: hidden;
    /* background:
      linear-gradient(180deg, rgba(255, 255, 255, 0) calc(100% - 10px), #effaf8 calc(100% - 10px)),
      #ffffff; */
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(11, 79, 82, 0.05);
  }

  .ui-advantages-page .ui-service-image-grid article::before,
  .ui-advantages-page .ui-service-image-grid article::after {
    bottom: 10px;
  }

  .ui-advantages-page .ui-service-image-grid i,
  .ui-advantages-page .ui-service-image-grid i img {
    width: 74px;
    height: 74px;
  }

  .ui-advantages-page .ui-service-image-grid h3 {
    margin-bottom: 8px;
    font-size: 20px;
  }

  .ui-advantages-page .ui-service-image-grid p {
    font-size: 14px;
  }

  .ui-advantages-page .ui-cooperation-banner {
    margin-top: 28px;
    grid-template-columns: 1fr;
    min-height: 190px;
    padding: 24px 20px 92px;
    border-radius: 8px;
     background: #FFFFFF;
    /* background-size: c; */
  }

  .ui-advantages-page .ui-cooperation-copy h2 {
    font-size: 21px;
  }

  .ui-advantages-page .ui-cooperation-copy h2::after {
    width: 72px;
    height: 4px;
    margin: 16px 0 18px;
  }

  .ui-advantages-page .ui-cooperation-copy p {
    margin-bottom: 6px;
    font-size: 14px;
  }

  .ui-advantages-page .ui-cooperation-copy a {
    font-size: 24px;
  }

  .ui-advantages-page .ui-cooperation-visual {
    position: absolute;
    right: -18px;
    bottom: 0;
    width: 190px;
    height: 126px;
    opacity: 0.92;
  }

  .ui-advantages-page .ui-cooperation-orbit {
    right: 22px;
    top: 18px;
    width: 120px;
    height: 74px;
  }

  .ui-advantages-page .ui-cooperation-dna {
    right: 30px;
    width: 42px;
    height: 94px;
  }

  .ui-advantages-page .ui-cooperation-dna::before,
  .ui-advantages-page .ui-cooperation-dna::after {
    border-width: 5px;
  }

  .ui-advantages-page .ui-cooperation-flask {
    right: 118px;
    top: 40px;
    width: 34px;
    height: 52px;
    border-width: 4px;
  }

  .ui-advantages-page .ui-cooperation-flask::before {
    left: 8px;
    top: -26px;
    width: 12px;
    height: 28px;
  }

  .ui-advantages-page .ui-cooperation-platform {
    right: 18px;
    bottom: 12px;
    width: 126px;
    height: 38px;
    border-width: 2px;
    border-radius: 14px;
  }
}

@media (max-width: 760px) {
  .ui-join-page .ui-join-top {
    padding: 16px 0 34px;
  }

  .ui-join-page .ui-join-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    width: calc(100% - 28px);
    max-width: 520px;
  }

  .ui-join-page .ui-join-cards article {
    min-height: 158px;
    padding: 24px 20px 22px;
    overflow: hidden;
    background-position: center right;
    border-radius: 8px;
  }

  .ui-join-page .ui-join-cards h2 {
    max-width: 12em;
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.35;
  }

  .ui-join-page .ui-join-cards p {
    max-width: 14em;
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.55;
  }

  .ui-join-page .ui-join-cards a {
    min-width: 96px;
    min-height: 34px;
    padding: 0 16px;
    font-size: 13px;
  }
}

@media (min-width: 761px) {
  body:has(.site-footer-bottom-bar),
  body.has-footer-bottom-bar {
    padding-bottom: 144px;
  }

  .site-footer-bottom-bar {
    position: fixed !important;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 95;
    display: block;
    padding: 0;
    background: transparent;
    pointer-events: none;
  }

  .site-footer-bottom-inner {
    width: auto;
    margin: 0 clamp(24px, 4.17vw, 80px) max(10px, env(safe-area-inset-bottom));
    border-radius: 10px;
    pointer-events: auto;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  body:has(.site-footer-bottom-bar),
  body.has-footer-bottom-bar {
    padding-bottom: 112px;
  }

  .site-footer-bottom-inner {
    grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1fr) minmax(132px, 0.55fr);
    gap: 14px;
    min-height: 92px;
    padding: 12px 40px 12px 24px;
  }

  .site-footer-bottom-phone {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 2px 10px;
  }

  .site-footer-bottom-phone img {
    width: 40px;
    height: 40px;
  }

  .site-footer-bottom-phone strong {
    gap: 4px;
    font-size: 14px;
  }

  .site-footer-bottom-phone small {
    font-size: 11px;
  }

  .site-footer-bottom-phone span {
    font-size: 24px;
    letter-spacing: 0;
  }

  .site-footer-quote {
    height: 46px;
    padding: 0 12px;
    font-size: 14px;
    text-align: center;
  }

  .site-footer-bottom-service {
    grid-template-columns: minmax(58px, auto) 62px;
    gap: 10px;
  }

  .site-footer-bottom-service span {
    font-size: 12px;
  }

  .site-footer-bottom-qr {
    width: 62px;
    height: 62px;
  }
}

.ui-join-page .ui-join-cards a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 126px;
  min-width: 126px;
  height: 40px;
  min-height: 40px;
  padding: 0 7px 0 22px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(180deg, #2ad6bb 0%, #0eb89d 100%);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(16, 184, 157, 0.18);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.ui-join-page .ui-join-cards a img {
  display: block;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.24s ease;
}

.ui-join-page .ui-join-cards a:hover {
  background: linear-gradient(180deg, #31dec5 0%, #10c4a7 100%);
  box-shadow: 0 11px 22px rgba(16, 184, 157, 0.24);
  transform: translateY(-2px);
}

.ui-join-page .ui-join-cards a:hover img {
  transform: translateX(2px);
}

@media (max-width: 760px) {
  .ui-join-page .ui-join-cards a {
    gap: 9px;
    width: 112px;
    min-width: 112px;
    height: 36px;
    min-height: 36px;
    padding: 0 6px 0 18px;
    font-size: 13px;
  }

  .ui-join-page .ui-join-cards a img {
    width: 24px;
    height: 24px;
  }
}

.ui-join-page .ui-join-about-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 148px;
  min-width: 148px;
  height: 44px;
  min-height: 44px;
  margin-top: 16px;
  padding: 0 24px 0 8px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(180deg, #2ad6bb 0%, #0eb89d 100%);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(16, 184, 157, 0.18);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.ui-join-page .ui-join-about-grid a img {
  display: block;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  padding: 6px;
  object-fit: contain;
  /* background: #ffffff; */
  border-radius: 50%;
  transition: transform 0.24s ease;
}

.ui-join-page .ui-join-about-grid a:hover {
  background: linear-gradient(180deg, #31dec5 0%, #10c4a7 100%);
  box-shadow: 0 11px 22px rgba(16, 184, 157, 0.24);
  transform: translateY(-2px);
}

.ui-join-page .ui-join-about-grid a:hover img {
  transform: scale(1.04);
}

@media (max-width: 760px) {
  .ui-join-page .ui-join-about-grid a {
    width: 128px;
    min-width: 128px;
    height: 38px;
    min-height: 38px;
    margin-top: 10px;
    padding: 0 18px 0 6px;
    font-size: 13px;
  }

  .ui-join-page .ui-join-about-grid a img {
    width: 26px;
    height: 26px;
    padding: 5px;
  }
}

@media (max-width: 760px) {
  .site-footer-container.site-footer-main {
    width: min(100% - 32px, 750px);
    max-width: 750px;
  }

  .site-footer-qrs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 4.53vw, 34px) clamp(34px, 10vw, 75px) !important;
    width: 100%;
    margin-top: clamp(12px, 2.67vw, 20px);
    padding: clamp(28px, 6.4vw, 48px) clamp(42px, 10.13vw, 76px)
      clamp(22px, 4.4vw, 33px) !important;
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
  }

  .site-footer-qrs figure {
    display: grid;
    justify-items: center;
    margin: 0;
    min-width: 0;
  }

  .site-footer-qrs img {
    display: block;
    width: min(100%, clamp(108px, 26.93vw, 202px)) !important;
    height: auto !important;
    aspect-ratio: 1;
    margin: 0 auto clamp(8px, 2.27vw, 17px) !important;
    padding: 0;
    border-radius: 8px;
    object-fit: contain;
    background: #ffffff;
  }

  .site-footer-qrs figcaption {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(15px, 3.33vw, 25px) !important;
    line-height: 1.2;
    text-align: center;
  }
}

@media (min-width: 761px) {
  .about-ui-nav nav {
    font-size: 15px;
    font-weight: 400;
  }

  .about-ui-nav nav a {
    height: 80px;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .about-ui-nav nav {
    font-size: 14px;
  }
}

@media (min-width: 761px) {
  .about-ui-header .about-ui-search {
    display: grid;
    grid-template-columns: 1fr 38px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 2px;
    overflow: hidden;
  }

  .about-ui-header .about-ui-search input {
    min-width: 0;
    padding: 0 12px;
    color: #ffffff;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 13px;
  }

  .about-ui-header .about-ui-search input::placeholder {
    color: #ffffff;
  }

  .about-ui-header .about-ui-search button {
    border: 0;
    background:
      url("./assets/sousuo 拷贝@2x.png") center / 16px 16px no-repeat,
      transparent;
  }
}

@media (max-width: 760px) {
  .home-ui-brand-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

.home-ui-brand-grid article {
    height: auto;
    min-height: 278px;
    padding: 26px 20px 24px;
  }

  .home-ui-brand-grid i {
    width: 96px;
    height: 96px;
    margin-bottom: 18px;
  }

  .home-ui-brand-grid img {
    width: 96px;
    height: 96px;
    padding: 0;
  }

 .home-ui-brand-grid h3 {
    margin: 20px 0 24px;
    font-size: 20px;
    line-height: 1.25;
  }

.home-ui-brand-grid p {
    font-size: 13px;
    line-height: 1.75;
  }
}

@media (max-width: 560px) {
 .home-ui-brand-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body.contact-ui-page .ui-contact-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 2.4vw, 14px);
    width: 100%;
    height: auto;
    min-height: 0;
    margin-top: 20px;
    padding: 0;
    overflow: visible;
    background: transparent;
    border-radius: 0;
  }

  body.contact-ui-page .ui-contact-cards article {
    display: grid;
    grid-template-rows: auto auto auto;
    justify-items: center;
    align-content: start;
    min-width: 0;
    min-height: clamp(188px, 36.2vw, 224px);
    padding: clamp(14px, 3.2vw, 20px) clamp(8px, 2.4vw, 12px);
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(14, 88, 89, 0.07);
    text-align: center;
  }

  body.contact-ui-page .ui-contact-cards h3 {
    width: 100%;
    margin: 0;
    overflow: hidden;
    color: #202c35;
    font-size: clamp(13px, 2.65vw, 15px);
    font-weight: 700;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.contact-ui-page .ui-contact-cards img {
    display: block;
    width: clamp(82px, 18.4vw, 104px);
    height: clamp(82px, 18.4vw, 104px);
    margin: clamp(12px, 2.7vw, 16px) auto;
    padding: 6px;
    object-fit: contain;
    background: #ffffff;
    box-shadow: 0 0 14px rgba(16, 57, 61, 0.06);
  }

  body.contact-ui-page .ui-contact-cards p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 132px);
    min-width: 0;
    min-height: 32px;
    margin: 0;
    padding: 0 10px;
    color: #ffffff;
    background: #12c5a6;
    border-radius: 999px;
    font-size: clamp(12px, 2.4vw, 14px);
    line-height: 1.2;
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  body.contact-ui-page .ui-contact-cards {
    gap: 8px;
  }

  body.contact-ui-page .ui-contact-cards article {
    min-height: 178px;
    padding: 14px 7px;
  }

  body.contact-ui-page .ui-contact-cards img {
    width: 78px;
    height: 78px;
    margin: 11px auto;
  }

  body.contact-ui-page .ui-contact-cards p {
    width: min(100%, 112px);
    min-height: 30px;
  }
}
