:root {
  --ycg-primary: #b42318;
  --ycg-primary-dark: #8f1d14;
  --ycg-text: #111827;
  --ycg-muted: #667085;
  --ycg-border: #e5e7eb;
  --ycg-surface: #ffffff;
  --ycg-surface-soft: #f7f8fa;
  --ycg-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

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

header {
  position: fixed;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

header.on {
  position: fixed;
  background: rgba(255, 255, 255, 0.9);
}

header .menu nav > ul > li > a {
  color: #ffffff;
  text-shadow: 0 1px 12px rgba(4, 10, 20, 0.28);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

header.on .menu nav > ul > li > a {
  color: var(--ycg-text);
  text-shadow: none;
}

header .menu nav > ul > li > a:hover,
header .menu nav > ul > li.on > a {
  color: var(--ycg-primary);
}

header .logo img {
  content: url("/logo.png");
  filter: none;
}

.banner,
.banner .swiper-slide,
.banner .swiper-slide .bg,
.banner .video-bg,
#video-container,
.banner-video {
  height: 72vh;
  min-height: 600px;
  max-height: 760px;
}

.banner .swiper-slide .bg::after,
.banner .video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 15, 27, 0.08) 0%, rgba(8, 15, 27, 0.04) 42%, rgba(8, 15, 27, 0.3) 100%);
  pointer-events: none;
}

.banner .ban-txt {
  z-index: 4;
  padding: 0 24px;
}

.banner-tech-layer,
.banner-light-orbit,
.banner-sound-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.banner-tech-layer {
  z-index: 2;
  overflow: hidden;
  background: radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.035) 24%, transparent 52%);
}

.banner-tech-layer::before,
.banner-tech-layer::after {
  content: "";
  position: absolute;
  top: -22%;
  left: 50%;
  width: 42vw;
  min-width: 420px;
  height: 132%;
  transform-origin: 50% 0;
  opacity: 0;
}

.banner-tech-layer::before {
  background: linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.02) 34%, rgba(255, 255, 255, 0.22) 50%, rgba(255, 255, 255, 0.025) 66%, transparent 82%);
  filter: blur(8px);
  animation: bannerSpotlightLeft 2.4s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.banner-tech-layer::after {
  background: linear-gradient(75deg, transparent 18%, rgba(255, 255, 255, 0.02) 34%, rgba(210, 232, 255, 0.18) 50%, rgba(255, 255, 255, 0.025) 66%, transparent 82%);
  filter: blur(12px);
  animation: bannerSpotlightRight 2.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both, bannerSpotlightSweep 12s ease-in-out 3.2s infinite alternate;
}

.banner-light-orbit {
  z-index: 3;
  overflow: hidden;
  opacity: 0;
  --orbit-outer-width: min(74vw, 1180px);
  --orbit-outer-height: min(30vw, 360px);
  --orbit-inner-width: min(52vw, 820px);
  --orbit-inner-height: min(20vw, 230px);
  --orbit-outer-rotate: -8deg;
  --orbit-inner-rotate: -8deg;
  animation: bannerOrbitIn 1.8s ease 0.9s forwards;
  transition: opacity 0.5s ease;
}

.banner-light-orbit::before,
.banner-light-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(220, 238, 255, 0.2);
  border-radius: 50%;
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1), height 1.1s cubic-bezier(0.22, 1, 0.36, 1), border-radius 1.1s ease;
}

.banner-light-orbit::before {
  width: var(--orbit-outer-width);
  height: var(--orbit-outer-height);
  box-shadow: 0 0 36px rgba(205, 230, 255, 0.06), inset 0 0 28px rgba(255, 255, 255, 0.04);
  animation: bannerOrbitOuter 9s ease-in-out infinite alternate, bannerOrbitGlow 4.8s ease-in-out infinite;
}

.banner-light-orbit::after {
  width: var(--orbit-inner-width);
  height: var(--orbit-inner-height);
  border-color: rgba(255, 255, 255, 0.14);
  animation: bannerOrbitInner 7s ease-in-out 0.8s infinite alternate-reverse;
}

.banner-light-orbit.orbit-shape-1 {
  --orbit-outer-width: min(88vw, 1380px);
  --orbit-outer-height: min(23vw, 270px);
  --orbit-inner-width: min(44vw, 680px);
  --orbit-inner-height: min(31vw, 410px);
  --orbit-outer-rotate: 2deg;
  --orbit-inner-rotate: -18deg;
}

.banner-light-orbit.orbit-shape-2 {
  --orbit-outer-width: min(58vw, 880px);
  --orbit-outer-height: min(39vw, 500px);
  --orbit-inner-width: min(72vw, 1080px);
  --orbit-inner-height: min(17vw, 210px);
  --orbit-outer-rotate: 14deg;
  --orbit-inner-rotate: 7deg;
}

.banner-light-orbit.orbit-changing {
  opacity: 0.26;
}

.banner-sound-stage {
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(28px, 7vw, 120px);
  overflow: hidden;
  opacity: 0;
  animation: bannerSoundIn 1.4s ease 1.25s forwards;
}

.banner-sound-wave {
  display: flex;
  width: clamp(74px, 8vw, 132px);
  height: 96px;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 0.45vw, 8px);
  opacity: 0.42;
}

.banner-sound-wave span {
  width: 1px;
  height: 18%;
  border-radius: 2px;
  background: linear-gradient(180deg, transparent, rgba(224, 241, 255, 0.9), transparent);
  box-shadow: 0 0 10px rgba(193, 226, 255, 0.3);
  transform-origin: center;
  animation: bannerSoundPulse 2.8s ease-in-out infinite;
}

.banner-sound-wave span:nth-child(2) { animation-delay: -2.3s; }
.banner-sound-wave span:nth-child(3) { animation-delay: -1.8s; }
.banner-sound-wave span:nth-child(4) { animation-delay: -1.3s; }
.banner-sound-wave span:nth-child(5) { animation-delay: -0.8s; }
.banner-sound-wave span:nth-child(6) { animation-delay: -0.3s; }
.banner-sound-wave-right { transform: scaleX(-1); }

@keyframes bannerSpotlightLeft {
  0% { opacity: 0; transform: translateX(-92%) rotate(-24deg) scaleX(0.55); }
  38% { opacity: 0.72; }
  100% { opacity: 0.18; transform: translateX(-55%) rotate(-12deg) scaleX(1); }
}

@keyframes bannerSpotlightRight {
  0% { opacity: 0; transform: translateX(-8%) rotate(25deg) scaleX(0.5); }
  42% { opacity: 0.62; }
  100% { opacity: 0.14; transform: translateX(-45%) rotate(12deg) scaleX(1); }
}

@keyframes bannerSpotlightSweep {
  from { transform: translateX(-48%) rotate(10deg) scaleX(0.92); opacity: 0.08; }
  to { transform: translateX(-52%) rotate(16deg) scaleX(1.08); opacity: 0.2; }
}

@keyframes bannerOrbitIn {
  from { opacity: 0; }
  to { opacity: 0.7; }
}

@keyframes bannerOrbitOuter {
  from { transform: translate(-50%, -50%) rotate(var(--orbit-outer-rotate)) scale(0.98); }
  to { transform: translate(-50%, -51.5%) rotate(calc(var(--orbit-outer-rotate) + 5deg)) scale(1.025); }
}

@keyframes bannerOrbitInner {
  from { transform: translate(-50%, -50%) rotate(var(--orbit-inner-rotate)) scale(0.98); }
  to { transform: translate(-50%, -51.5%) rotate(calc(var(--orbit-inner-rotate) + 5deg)) scale(1.025); }
}

@keyframes bannerOrbitGlow {
  0%, 100% { border-color: rgba(220, 238, 255, 0.14); box-shadow: 0 0 30px rgba(205, 230, 255, 0.04), inset 0 0 24px rgba(255, 255, 255, 0.03); }
  50% { border-color: rgba(230, 244, 255, 0.28); box-shadow: 0 0 54px rgba(205, 230, 255, 0.11), inset 0 0 36px rgba(255, 255, 255, 0.07); }
}

@keyframes bannerSoundIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes bannerSoundPulse {
  0%, 100% { height: 16%; opacity: 0.28; }
  50% { height: 76%; opacity: 0.9; }
}

.banner .ban-txt .tit {
  max-width: 1080px;
  margin: 0 auto 20px;
  color: #ffffff;
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 650;
  line-height: 1.16;
  letter-spacing: -0.025em;
  text-shadow: 0 4px 28px rgba(4, 10, 20, 0.38);
}

.banner .ban-txt .note {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 18px rgba(4, 10, 20, 0.48);
}

.banner .bancj {
  z-index: 5;
}

@media (prefers-reduced-motion: reduce) {
  .banner-tech-layer::before,
  .banner-tech-layer::after,
  .banner-light-orbit,
  .banner-light-orbit::before,
  .banner-light-orbit::after,
  .banner-sound-stage,
  .banner-sound-wave span {
    animation: none;
  }

  .banner-tech-layer::before,
  .banner-tech-layer::after {
    opacity: 0.12;
  }

  .banner-light-orbit {
    opacity: 0.5;
  }

  .banner-sound-stage {
    opacity: 0.4;
  }
}

@media (max-width: 640px) {
  .banner-light-orbit,
  .banner-light-orbit.orbit-shape-1,
  .banner-light-orbit.orbit-shape-2 {
    --orbit-outer-width: 118vw;
    --orbit-outer-height: 48vw;
    --orbit-inner-width: 82vw;
    --orbit-inner-height: 32vw;
  }

  .banner-sound-stage {
    padding: 0 14px;
  }

  .banner-sound-wave {
    width: 54px;
    height: 64px;
    gap: 4px;
    opacity: 0.3;
  }

}

.banner .bancj .swiper-pagination-progressbar {
  background: rgba(255, 255, 255, 0.35);
}

.banner .bancj .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.banner .swiper-pagination-bullet,
.banner .swiper-pagination-bullet-active {
  background: var(--ycg-primary);
}

.hm-case,
.hm-news,
.hm-about,
.serlogo,
.youshi {
  color: var(--ycg-text);
  background-color: var(--ycg-surface);
  background-image: none;
}

.hm-news,
.serlogo,
.youshi {
  background-color: var(--ycg-surface-soft);
}

.hm-title .en {
  color: var(--ycg-primary);
}

.hm-title .cn,
.yous-list ul li a .tit,
.hm-about-main .tit,
.hm-news-tab .bd ul li a .txt .tit {
  color: var(--ycg-text);
}

.yous-list ul li a .note,
.hm-about-main .note,
.hm-news-tab .bd ul li a .txt .note,
.hm-news-tab .bd ul li a .txt .time {
  color: var(--ycg-muted);
}

.hm-case-list li > a,
.yous-list ul li a,
.hm-news-tab .bd ul li a,
.hm-abdata ul,
.serlogo .ticker-row {
  border: 1px solid var(--ycg-border);
  background: var(--ycg-surface);
  box-shadow: var(--ycg-shadow);
}

.hm-case-list li > a,
.yous-list ul li a,
.hm-news-tab .bd ul li a {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hm-case .am-container,
.yousmain {
  width: min(100% - 48px, 1480px);
  max-width: 1480px;
  margin-right: auto;
  margin-left: auto;
}

.hm-case-list {
  margin-top: 44px;
}

.hm-case-list ul,
.yous-list ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 28px);
  margin: 0;
}

.hm-case-list ul::before,
.hm-case-list ul::after,
.yous-list ul::before,
.yous-list ul::after {
  display: none;
}

.hm-case-list ul li,
.yous-list ul li {
  width: auto;
  min-width: 0;
  padding: 0;
  float: none;
}

.hm-case-list li > a {
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.09);
}

.hm-case-list .ycg-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  background: #eef1f5;
}

.hm-case-list .ycg-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.hm-case-list .ycg-thumb .ycg-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 35%, rgba(15, 23, 42, 0.82) 100%);
  pointer-events: none;
}

.hm-case-list .ycg-thumb .ycg-mask::before {
  display: none;
}

.hm-case-list .ycg-thumb .ycg-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 34%;
  align-items: flex-end;
  padding: 5px 5px 24px 24px;
  text-align: left;
  pointer-events: none;
}

.hm-case-list .ycg-caption .tit {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #ffffff;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.yous-list {
  margin-top: 48px;
  padding-bottom: 80px;
}

.yous-list ul {
  align-items: stretch;
}

.yous-list ul li a {
  display: flex;
  height: 100%;
  min-height: 390px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(28px, 3vw, 44px);
  text-align: left;
  border: 0;
  border-radius: 0;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.yous-list ul li a i {
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: #f2f4f7;
}

.yous-list ul li a i img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: invert(1);
}

.yous-list ul li a .tit {
  margin: 26px 0 16px;
  font-size: clamp(18px, 1.3vw, 22px);
  font-weight: 600;
  line-height: 1.45;
  white-space: normal;
}

.yous-list ul li a .note {
  height: auto;
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}

.hm-case-list li > a:hover,
.yous-list ul li a:hover,
.hm-news-tab .bd ul li a:hover {
  transform: translateY(-4px);
  border-color: #d0d5dd;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
}

.hm-case-list a:hover .ycg-thumb img {
  transform: scale(1.015);
}

.hm-news-tab .hd {
  border-color: var(--ycg-border);
}

.hm-news-tab .bd ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  margin: 0;
}

.hm-news-tab .bd ul::before,
.hm-news-tab .bd ul::after {
  display: none;
}

.hm-news-tab .bd ul li {
  width: auto;
  min-width: 0;
  padding: 0;
  float: none;
}

.hm-news-tab .bd ul li a {
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
}

.hm-news-tab .bd ul li a i {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #eef1f5;
  line-height: 0;
}

.hm-news-tab .bd ul li a i img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hm-news-tab .bd ul li a .txt {
  padding: 22px 24px 24px;
}

.hm-news-tab .hd ul li a {
  color: var(--ycg-muted);
}

.hm-news-tab .hd ul li a:hover,
.hm-news-tab .hd ul li.on a {
  color: #ffffff;
}

.hm-news-tab .hd .move {
  background: var(--ycg-primary);
}

.hm-news-tab .bd ul li a .txt .time {
  border-color: var(--ycg-border);
  opacity: 1;
}

.hm-about .hm-title,
.hm-about-main,
.hm-about-main .tit,
.hm-about-main .note,
.hm-about-main .hm-more {
  text-align: center;
}

.serlogo .hm-title {
  text-align: center;
}

.hm-about-main .note {
  text-indent: 0;
}

.hm-abdata ul li {
  color: var(--ycg-text);
}

.hm-abdata ul {
  position: relative;
  gap: clamp(20px, 4vw, 64px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hm-abdata ul li {
  position: relative;
  flex: 1;
  padding: 28px 12px;
  text-align: center;
}

.hm-abdata ul li + li::before {
  content: "";
  position: absolute;
  top: 24%;
  bottom: 24%;
  left: calc(clamp(20px, 4vw, 64px) / -2);
  width: 1px;
  background: linear-gradient(180deg, transparent, #d0d5dd, transparent);
}

.hm-abdata ul li .tit span {
  font-family: "Noto Sans SC", sans-serif;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.hm-abdata ul li .note {
  margin-top: 8px;
  color: var(--ycg-muted);
}

.hm-abdata ul li .tit,
.foot-contant .tel a,
.foot-contant .phone a {
  color: var(--ycg-primary);
}

.hm-more a {
  color: var(--ycg-primary);
}

.hm-more a i {
  background: #fee4e2;
}

.hm-more a i::before,
.hm-more a i::after {
  border-color: var(--ycg-primary);
}

footer {
  background-color: #101828;
  background-image: linear-gradient(135deg, #101828 0%, #1d2939 100%);
}

footer .foot-tit,
footer .foot-tit a,
footer .foot-main .foot-contant {
  color: #ffffff;
}

footer .foot-main .foot-nav ul li p,
footer .foot-main .foot-nav ul li p a,
footer .foot-copyr,
footer .foot-copyr a {
  color: #98a2b3;
}

footer .foot-main .foot-nav ul li p a:hover,
footer .foot-copyr a:hover {
  color: #ffffff;
}

footer .foot-copyr {
  border-color: rgba(255, 255, 255, 0.12);
}

.foot-bar {
  background: #ffffff;
  border-top: 1px solid var(--ycg-border);
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
}

.foot-bar ul li a {
  color: #344054;
}

.foot-bar ul li a img {
  filter: invert(1);
}

@media (max-width: 1024px) {
  header,
  header.on {
    transform: none;
  }

  .hm-case .am-container,
  .yousmain {
    width: min(100% - 40px, 1480px);
  }

  .hm-news-tab .hd {
    display: block;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .hm-news-tab .hd::-webkit-scrollbar {
    display: none;
  }

  .hm-news-tab .hd ul {
    display: flex;
    width: max-content;
  }

  .hm-news-tab .hd ul li {
    flex: 0 0 auto;
  }

  .hm-news-tab .hd ul li a {
    width: auto;
    min-width: 96px;
    padding-right: 18px;
    padding-left: 18px;
    white-space: nowrap;
  }

  .hm-news-tab .hd ul li a:hover {
    color: var(--ycg-muted);
  }

  .hm-news-tab .hd ul li.on a,
  .hm-news-tab .hd ul li.on a:hover {
    color: var(--ycg-primary);
    background: transparent;
    border-radius: 50px;
  }

  .hm-news-tab .hd .move {
    display: none;
  }

  .hm-case-list ul,
  .yous-list ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .hm-news-tab .bd ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .case-cate {
    display: flex;
    width: calc(100% - 40px);
    max-width: max-content;
    margin-right: auto;
    margin-left: auto;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 0;
    white-space: nowrap;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .case-cate a {
    width: auto;
    min-width: max-content;
    flex: 0 0 auto;
    padding: 14px 22px;
    line-height: 1.4;
    white-space: nowrap;
  }

  .case-cate .move {
    display: none;
  }

  .yous-list ul li a {
    min-height: 330px;
  }

  .menu-bar {
    border-color: #ffffff;
  }

  .menu-bar::before,
  .menu-bar::after {
    background: #ffffff;
  }

  header.on .menu-bar {
    border-color: var(--ycg-text);
  }

  header.on .menu-bar::before,
  header.on .menu-bar::after {
    background: var(--ycg-text);
  }

  header .menu nav .ulnav {
    background: #ffffff;
  }

  header .menu nav .ulnav > li {
    border-color: var(--ycg-border);
  }

  header .menu nav.active > ul > li > a,
  header.on .menu nav > ul > li > a {
    color: var(--ycg-text);
    text-shadow: none;
  }

  header .menu nav .ulnav > li .xm,
  nav .am-close {
    color: var(--ycg-muted);
  }
}

@media (max-width: 640px) {
  .hm-case .am-container,
  .yousmain {
    width: calc(100% - 28px);
  }

  .hm-case-list {
    margin-top: 28px;
  }

  .yous-list ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hm-case-list ul {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hm-news-tab .bd ul {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hm-news-tab .bd ul li a .txt {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    margin: 0;
    padding: 58px 18px 16px;
    float: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 40%, rgba(255, 255, 255, 0.98) 72%, #ffffff 100%);
  }

  .hm-case-list .ycg-thumb {
    min-height: 190px;
    aspect-ratio: auto;
    line-height: 0;
  }

  .hm-case-list .ycg-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hm-case-list .ycg-thumb .ycg-mask {
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0.68) 68%, rgba(255, 255, 255, 0.97) 86%, #ffffff 100%);
  }

  .hm-case-list .ycg-thumb img,
  .hm-news-tab .bd ul li a i img {
    vertical-align: top;
  }

  .hm-case-list .ycg-thumb .ycg-caption {
    z-index: 2;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    min-height: 36%;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 38px 18px 16px;
    text-align: left;
  }

  .hm-case-list .ycg-caption .tit {
    color: var(--ycg-text);
    font-size: 14px;
    line-height: 1.4;
    text-shadow: none;
  }

  .hm-news-tab .bd ul li a {
    position: relative;
    min-height: 210px;
    padding: 0;
    margin: 0;
    border: 0;
    background: #ffffff;
  }

  .hm-news-tab .bd ul li a i {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    float: none;
  }

  .hm-news-tab .bd ul li a i::after {
    content: "";
    position: absolute;
    inset: 0;
    display: none;
    pointer-events: none;
  }

  .hm-news-tab .bd ul li a .txt .tit,
  .hm-news-tab .bd ul li a .txt .note {
    white-space: normal;
  }

  .hm-news-tab .bd ul li a .txt .tit {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .case-cate {
    width: calc(100% - 28px);
  }

  .case-cate a {
    padding: 12px 18px;
    font-size: 13px;
  }

  .hm-news-tab .bd ul li a .txt .time {
    display: block;
  }

  .yous-list {
    margin-top: 28px;
    padding-bottom: 48px;
  }

  .yous-list ul li a {
    min-height: 0;
    padding: 22px 18px;
  }

  .yous-list ul li a i {
    width: 48px;
    height: 48px;
  }

  .yous-list ul li a i img {
    width: 26px;
    height: 26px;
  }

  .yous-list ul li a .tit {
    margin: 18px 0 10px;
    font-size: 16px;
  }

  .yous-list ul li a .note {
    font-size: 12px;
    line-height: 1.75;
  }

  .hm-abdata ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .hm-abdata ul li {
    padding: 20px 8px;
  }

  .hm-abdata ul li + li::before {
    display: none;
  }

  .hm-abdata ul li:nth-child(odd)::after {
    content: "";
    position: absolute;
    top: 24%;
    right: 0;
    bottom: 24%;
    width: 1px;
    background: linear-gradient(180deg, transparent, #d0d5dd, transparent);
  }

  .hm-abdata ul li:nth-child(n + 3) {
    border-top: 1px solid #eef0f3;
  }

  .banner,
  .banner .swiper-slide,
  .banner .swiper-slide .bg,
  .banner .video-bg,
  #video-container,
  .banner-video {
    height: 72vh;
    min-height: 520px;
    max-height: 640px;
  }

  .banner .swiper-slide .bg::after,
  .banner .video-bg::after {
    background: linear-gradient(180deg, rgba(8, 15, 27, 0.08) 0%, rgba(8, 15, 27, 0.04) 45%, rgba(8, 15, 27, 0.42) 100%);
  }

  .banner .ban-txt .tit {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .banner .ban-txt .note {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.04em;
  }

  .hm-news-tab .bd ul li a {
    border-color: var(--ycg-border);
  }
}
