/* ==================== 全局重置 & 基础设置 ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #212121;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  color: #fff;
  padding-top: 140px;
}
/* 👇 手机版单独设置高度（你可以随便改数值） */
@media (max-width: 768px) {
  body {
    padding-top: 110px !important; /* 手机版高度 */
  }
}

/* ==================== 头部导航容器 ==================== */
.header {
  width: 100%;
  padding: 6px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: transparent !important; /* 强制彻底透明 */
  backdrop-filter: none !important;   /* 关闭所有模糊 */
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;     /* 去掉边框 */
  overflow: visible; /* 防止裁剪 */
}

/* 核心：让内容器也彻底透明，并限制宽度，让两侧留出透明空间 */
.header-inner {
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: transparent !important; /* 内容器也必须透明 */
}

/* ==================== 导航菜单列表 ==================== */

.home-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.home-icon0 img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  margin-right:-4px;
  margin-left: 4px;
}

.home-icon1 img {
  width:18px;height:18px;object-fit:contain;margin-right:-6px;margin-left:3px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: 0 8px 32px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* ==================== 导航项基础样式 ==================== */
.nav-item {
  position: relative;
  padding: 0 4px;
}

.nav-item a {
  display: flex;
  align-items: center;
}

/* ==================== ✅ 液体玻璃按钮（你截图的效果） ==================== */
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 1;
  overflow: hidden;

  /* 液体玻璃核心 */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);

  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 按钮内发光小圆点 */
.nav-link::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  z-index: -1;
  transition: all 0.4s ease;
}

/* 悬停效果（截图同款） */
.nav-link:hover {
  color: #fff;
  background: linear-gradient(135deg, #ce003a, #960000);
  border-color: rgba(206, 0, 58, 0.5);
  /*box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);*/
}

.nav-link:hover::before {
  left: calc(100% - 32px);
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.3);
}



/* ==================== 另外一套悬停效果 ==================== */
.nav-link9-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 100px 0;
}

.nav-link9 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 32px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 13px;
  padding-right: 62px; /* 👈 就加这一行！文字自动左移 */
  font-weight: 500;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 1;
  background: rgba(33, 33, 33, 1);
  border: 1px solid #ffffff80;
  /*animation: glowPulse00 1.6s ease-in-out infinite;*/
}

/*@keyframes glowPulse00 {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
  }
  80% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}*/

/* 常驻图标 + 常驻发光动画 */
.nav-link9::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-image: url("../images/link.png");
  background-size: 40px 40px;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 100;
  pointer-events: none;
  animation: glowPulse0 1.6s ease-in-out infinite; /* 动态一直保留 */
}

.nav-link9::before {
  content: '';
  position: absolute;
  left: 50%;
top: 50%;
transform: translate(-50%, -50%);
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  z-index: 99;
  pointer-events: none;
  transition: all 1.0s ease;
}

.nav-link9:hover {
  color: #fff;
  background: linear-gradient(135deg, #ce003a, #96000080);
  border: 1px solid #b62727;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: glowPulse 1.6s ease-in-out infinite;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(150, 0, 0, 0.8);
  }
  80% {
    box-shadow: 0 0 0 12px rgba(150, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(150, 0, 0, 0);
  }
}

.nav-link9:hover::before {
  left: 50%;             /* 水平居中 */
  top: 50%;
  transform: translate(-50%, -50%); /* 真正居中 */
  width: 25px;           /* 缩成小圆点 */
  height: 25px;
  border-radius: 50%;
  background: transparent;
}

@keyframes glowPulse0 {
  0% {
    box-shadow: 0 0 0 0 rgba(206, 0, 58, 1);
  }
  80% {
    box-shadow: 0 0 0 8px rgba(206, 0, 58, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(206, 0, 58, 0);
  }
}

@media (max-width: 1024px) {
.nav-link9-wrap {
  margin: 50px 0 120px 0;
}
}
/* ==================== 另外一套悬停效果 ==================== */


.nav-link90 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 32px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 13px;
  padding-right: 62px; /* 👈 就加这一行！文字自动左移 */
  font-weight: 500;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 1;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #ffffff80;
  /*animation: glowPulse00 1.6s ease-in-out infinite;*/
}

/*@keyframes glowPulse00 {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
  }
  80% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}*/

/* 常驻图标 + 常驻发光动画 */
.nav-link90::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-image: url("../images/link.png");
  background-size: 40px 40px;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 100;
  pointer-events: none;
  animation: glowPulse0 1.6s ease-in-out infinite; /* 动态一直保留 */
}

.nav-link90::before {
  content: '';
  position: absolute;
  left: 50%;
top: 50%;
transform: translate(-50%, -50%);
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  z-index: 99;
  pointer-events: none;
  transition: all 1.0s ease;
}

.nav-link90:hover {
  color: #fff;
  background: linear-gradient(135deg, #ce003a, #96000080);
  border: 1px solid #b62727;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: glowPulse 1.6s ease-in-out infinite;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(150, 0, 0, 0.8);
  }
  80% {
    box-shadow: 0 0 0 12px rgba(150, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(150, 0, 0, 0);
  }
}

.nav-link90:hover::before {
  left: 50%;             /* 水平居中 */
  top: 50%;
  transform: translate(-50%, -50%); /* 真正居中 */
  width: 25px;           /* 缩成小圆点 */
  height: 25px;
  border-radius: 50%;
  background: transparent;
}

@keyframes glowPulse0 {
  0% {
    box-shadow: 0 0 0 0 rgba(206, 0, 58, 1);
  }
  80% {
    box-shadow: 0 0 0 8px rgba(206, 0, 58, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(206, 0, 58, 0);
  }
}





/* 取消这个按钮的所有悬停效果 */
.no-hover:hover {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow: none !important;
}
.no-hover:hover::before {
  display: none !important;
}

/* ==================== 下拉菜单样式 ==================== */
.has-dropdown > .nav-link::after {
  content: "▼";
  font-size: 14px;
  margin-right:-4px;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.has-dropdown:hover > .nav-link::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  font-size:12px;
  min-width: 260px;
  background-color: #ebebeb;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  z-index: 99;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  color: #212121;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
  border-radius: 8px;
  margin: 6px;
}

.dropdown-menu li a:hover {
  background: rgba(33, 33, 33, 0.05);
}

.dropdown-menu li a img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  margin-left: 8px;
}

/* ==================== CTA按钮样式 ==================== */
.cta-link {
  background: linear-gradient(135deg, #960000, #ce003a);
  color: #fff !important;
  font-weight: 700;
  /*box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);*/
}

.cta-link:hover {
  background: linear-gradient(135deg, #ce003a, #960000);
  /*box-shadow: 0 0 24px rgba(99, 102, 241, 0.7) !important;
  transform: translateY(-2px);*/
}

.cta-icon {
  font-size: 18px;
}

/* ==================== 语言切换样式 ==================== */
.lang-flag {
  font-size: 18px;
}

/* ==================== 响应式适配 ==================== */
@media (max-width: 1024px) {
  .nav-list {
    gap: 4px;
    padding: 6px 8px;
  }
  .nav-link {
    padding: 8px 12px;
    font-size: 14px;
  }
}





/* ==================== 手机版导航（全屏液体玻璃） ==================== */
/* 遮罩层 */
.sp-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(33, 33, 33, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  padding-top: 80px;
}

.sp-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* 容器 */
.sp-nav-container {
  width: 100%;
  height: 100%;
  padding: 0 24px;
  position: relative;
}

/* 关闭按钮（左上角） */
.sp-nav-close {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sp-nav-close:hover {
  background: rgba(206, 0, 58, 0.8);
  border-color: rgba(206, 0, 58, 0.5);
}

/* 导航列表（竖版） */
.sp-nav-list {
  list-style: none;
  padding-top: 40px;
}

.sp-nav-item {
  margin-bottom: 16px;
}

.sp-nav-link {
  display: block;
  padding: 16px 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

/* 手机版下拉菜单 */
.sp-has-dropdown .sp-dropdown-menu {
  list-style: none;
  padding-left: 16px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.sp-has-dropdown.active .sp-dropdown-menu {
  max-height: 300px;
  padding-top: 8px;
}

.sp-dropdown-menu li a {
  display: block;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sp-dropdown-menu li a:hover {
  color: #ce003a;
}

/* CTA按钮 */
.sp-cta-link {
  background: linear-gradient(135deg, #960000, #ce003a);
  color: #fff !important;
  font-weight: 700;
  border-radius: 12px;
  padding: 16px 20px !important;
  border-bottom: none !important;
  text-align: center;
  margin-top: 16px;
}

.sp-cta-link:hover {
  background: linear-gradient(135deg, #ce003a, #960000);
  padding-left: 20px !important;
}

/* 底部备注小字 */
.sp-nav-footer {
  position: absolute;
  bottom: 40px;
  left: 24px;
  right: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* 手机版菜单按钮（汉堡） */
.sp-nav-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.sp-nav-toggle span {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.sp-nav-toggle:hover span {
  background: #ce003a;
}

/* 👇 只单独重置 spOpen 按钮的特效，不影响别人 */
#spOpen {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0px 10px !important;
  font-size:14px !important;
  font-weight:500;
}

/* 悬停也保持干净，不发红 */
#spOpen:hover {
  background: rgba(255,255,255,0.05) !important;
  border: none !important;
}

/* ==================== 响应式：PC隐藏手机按钮，手机隐藏PC菜单 ==================== */
@media (min-width: 1025px) {
  .sp-nav-toggle-item,
  .sp-nav-overlay {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  /* 手机端隐藏PC版多余菜单，只保留按钮+语言 */
  .nav-list .nav-item:not(.sp-nav-toggle-item):not(.home-icon0):not(.home-icon1) {
    display: none;
  }
  
  .nav-list {
    padding: 6px 12px;
  }
}




/* ==================== PC / SP 切替 核心 ==================== */
.pc-only { display: flex !important; }
.sp-only { display: none !important; }

@media (max-width: 768px) {
  .pc-only { display: none !important; }
  .sp-only { display: flex !important; }

  .nav-list {
    padding: 6px 8px !important;
    gap: 6px !important;
  }
  .nav-link {
    padding: 8px 12px !important;
    font-size: 11px !important;
  }
  .cta-link {
    padding: 8px 12px !important;
  }
  .nav-link::before {
    display: none;
  }
  .sp-btn {
    padding: 8px 12px !important;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color:#fff;
    cursor: pointer;
    font-weight: 700;
  }
}

/* ==================== SP全屏菜单 ==================== */
.sp-menu {
  position: fixed;
  top:0; left:0;
  width:100%; height:100vh;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 999999;
  display: none;
  padding: 20px;
}
.sp-menu.show {
  display: block;
}
.sp-close {
  position: absolute;
  top: 24px;
  right: 40px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}
.sp-nav-list {
  margin: 80px 0;
  list-style: none;
  padding:0 20px;
}
.sp-nav-item {
  margin-bottom: 20px;
}
.sp-nav-link {
  color:#fff;
  font-size: 18px;
  text-decoration: none;
  display: block;
  padding: 12px 0;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.sp-dropdown {
  margin-top: 8px;
  list-style: none;
  padding-left: 16px;
  display: none;
}
.sp-dropdown.show {
  display: block;
}
.sp-dropdown a {
  color: #fff;
    font-size: 14px;
    text-decoration: none;
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
}
.sp-dropdown a img {
  margin-left: 6px;
}
/* SVG 图标变白色 */
.icon-white {
  filter: brightness(0) invert(1);
}
.sp-footer {
  /*position: absolute;*/
  bottom:60px; left:0;
  width:100%;
  text-align:center;
  color:rgba(255,255,255,0.4);
  font-size:9px;
  font-family: 'CustomFont2';
}

/* 手机端隐藏语言文字，只留图标 */
@media (max-width: 768px) {
  .lang-txt {
    display: none !important;
  }
  .home-icon1 img {
    width:18px;height:18px;object-fit:contain;margin-right:0px;margin-left:0px;
  }
}




/* 内容宽度限制 1200px 居中 */
.content-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* 手机两边留空隙 */
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
  padding-bottom: 20px;
}

/* PC图片：满屏宽度，等比例缩放 */
.img-pc {
  width: 100%;
  height: auto;
  display: block;
}
/* SP图片：默认隐藏 */
.img-sp {
  display: none;
}
._h1 {
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
}
._h2 {
    color: #aaa;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}
._h3 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

/* 手机版：隐藏PC图，显示SP竖版图 */
@media (max-width: 768px) {
  .img-pc {
    display: none;
  }
  .img-sp {
    display: block;
    width: 100%;
    height: auto;
  }
  ._h1 {
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 0;
    font-size: 21px;
    font-weight: 700;
    line-height: 32px;
}
._h2 {
    color: #aaa;
    font-size: 11px;
    font-weight: 400;
    line-height: 20px;
}
._h3 {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}
}



/* 视频外层黑背景（只负责背景 + 上下间距） */
.video-wrap {
  background-color: #000;
  padding: 60px 20px 120px 20px;
}

/* 👇 核心：视频 + LOGO 共用容器（最大1400px + 居中 + 定位基准） */
.video-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

/* 视频宽度100% */
.video-pc,
.video-sp {
  width: 100%;
  height: auto;
  display: block;
}

/* LOGO 绝对定位 → 永远相对于【1400px的视频容器】 */
.video-logo {
  position: absolute;
  right: 65px;
  bottom: -105px;
  width: 360px;
  z-index: 10;
}

/* PC/SP 切替 */
.video-sp { display: none; }

@media (max-width: 768px) {
  .video-wrap {
    padding: 100px 0;
  }
  .video-pc { display: none; }
  .video-sp { display: block; }
  .video-logo {
    width: 260px;
    left: 20px;
    bottom: -150px;
  }
}


/* ============================== */
/* 视频下方 黑底横条（最大1200px） */
/* ============================== */
.bottom-info {
  background-color: #000;
  padding: 60px 20px;
}
.bottom-info-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

/* 左侧总容器：使用 flex 让两栏并排 */
.bottom-info-left {
  display: flex;
  align-items: flex-start; /* 顶部对齐 */
  gap: 40px; /* 两栏之间的间距，可以自己调 */
  margin-right: 80px;
}

/* 每一栏的基础样式 */
.info-col {
  font-size: 13px;
  /* 👇 加这两行就实现 p 之间间距 10px */
  display: flex;
  flex-direction: column;
  row-gap: 10px; /* p 与 p 之间间距 */
  width: 50%;
  text-align: justify;
}

.info-col p {
  margin: 0;
  color: #aaa;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

/* 分隔间距：如果需要更宽的间隔，可以给这个div加宽度 */
.info-spacer {
  /* 这里可以不写内容，依靠 flex 的 gap 来控制间距 */
  /* 如果需要固定宽度，比如 width: 40px; */
}

/* 右侧图标 */
.bottom-info-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px; /* 标题和图标之间的距离 */
}
.icons-title {
  font-size: 13px;
  color: #aaa;
  margin: 0;
}
.icons-row {
  display: flex;
  gap: 28px; /* 图标之间间距 */
}
.icons-row img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

/* 手机版自适应：两栏变竖排 */
@media (max-width: 768px) {
  .bottom-info-inner {
    flex-direction: column;
    gap: 28px;
    text-align: left;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .bottom-info-left {
    flex-direction: column; /* 手机上两栏上下排 */
    gap: 14px;
    text-align: left;
    margin-right: 0px;
  }
  .info-col {
    font-size: 13px;
    padding: 0 20px 0 0;
    text-align: justify;
    width: 100%
  }
  .bottom-info {
  background-color: #000;
  padding: 120px 20px 80px 20px;
  }
  .right-title {
  font-size: 12px;
  color: #aaa;
  margin: 0;
}
.info-col p{font-size: 12px}

}


/* 苹果风格浏览器窗口（纯CSS + 液体玻璃） */
.browser-mock {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 75%;
  border-radius: 20px;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  background: rgba(255, 255, 255, 0.00);

  /*backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.06);*/

  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  z-index: 5;
}
.browser-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.controls {
  display: flex;
  gap: 8px;
}
.controls span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.controls span:nth-child(1) { background: #ff5f57; }
.controls span:nth-child(2) { background: #ffbd2e; }
.controls span:nth-child(3) { background: #28c840; }
.url-bar {
  flex: 1;
  height: 26px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}
.browser-content {
  flex: 1;
  padding: 20px;
}

/* 手机端隐藏浏览器效果 */
@media (max-width: 768px) {
  .browser-mock {
    width: 58%;
  }
}

/* コードスクロールエリア */
/*.browser-content {
  width: 100%;
  height: calc(100% - 46px);
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.code-scroll {
  width: 100%;
  height: 100%;
  position: relative;
}
.code-list {
  position: absolute;
  bottom: 0;
  width: 100%;
  animation: codeScroll 12s linear infinite;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  line-height: 1.6;
  color: #aaa;
  font-family: 'Menlo', 'Monaco', monospace;
}
.code-list code {
  display: block;
  white-space: nowrap;
  margin-bottom: 4px;
}


@keyframes codeScroll {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}


@media (max-width:768px) {
  .code-list {
    font-size: 10px;
    color: #aaa;
  }
}*/



.main-title-on-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: min(9vw, 136px);
  font-family: 'CustomFont1';
  text-align: center;
  white-space: nowrap;
  z-index: 10;
  line-height: 1.1;

  /* 👇 液体玻璃文字效果 */
  color: transparent;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-background-clip: text;
  background-clip: text;

  /* 轻微白边强化质感 */
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.main-title-on-video span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .main-title-on-video {
    font-size: 40px;
    line-height: 1.1;
    margin-top: 22px;
  }
  .main-title-on-video span {
    font-size: 12px;
    margin-top: 4px;
  }
}



/* 默认（PC）隐藏 */
br.sp {
  display: none;
}

/* 手机显示 */
@media screen and (max-width: 768px) {
  br.sp {
    display: inline;
  }
}



.flora-section {
  padding: 120px 0 0 0;
}
._h1_{
  font-size: 28px;
  line-height: 46px;
  text-align: justify;
}
@media (max-width: 768px) {
.flora-section {
  padding: 90px 0 0 0;
}
._h1_{
  font-size: 20px;
  line-height: 30px;
  text-align: justify;
}
}







.flora0-section .content-img {
      display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 图片基础 */
.flora0-section img {
  display: block;
  height: 40px;
}

/* PC */
@media (min-width: 768px) {
  .flora0-section {
    padding: 60px 0;
  }
  .flora0-section img {
    width: auto; 
  }
}

/* SP */
@media (max-width: 767px) {
  .flora0-section .content-img {
    grid-column-gap: 20px;
    grid-row-gap: 25px;
}
  .flora0-section img {
    height: 30px;
  }
  .flora0-section {
    padding: 30px 0;
  }
}



.service-section {
  padding: 120px 0 0 0;
  text-align: center;
}

.service-title {
  font-size: 50px;
  margin-bottom: 270px;
  color: #ffffff;
  font-family: 'CustomFont1';
  line-height: 42px;
}

.service-title span {
  font-size: 16px;
  font-weight: 400;
  color: #9fa0a0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
}

.service-title00 {
  font-size: 50px;
  margin-bottom: 220px;
  color: #ffffff;
  font-family: 'CustomFont1';
  line-height: 47px;
}

.service-title00 span {
  font-size: 16px;
  font-weight: 400;
  color: #9fa0a0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
}

/* 单独修改 Projects 颜色 */
.service-title00 em {
  color: #bda17b;
  font-style: normal;
}

.service-title000 {
  font-size: 50px;
  margin-bottom: 80px;
  color: #ffffff;
  font-family: 'CustomFont1';
  line-height: 47px;
}

/* 单独修改 Projects 颜色 */
.service-title000 em {
  color: #bda17b;
  font-style: normal;
}

.service-title000 span {
  font-size: 16px;
  font-weight: 400;
  color: #9fa0a0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
}

.service-title0000 {
  font-size: 50px;
  margin-bottom: 80px;
  color: #ffffff;
  font-family: 'CustomFont1';
  line-height: 47px;
}

/* 单独修改 Projects 颜色 */
.service-title0000 em {
  color: #bda17b;
  font-style: normal;
}

.service-title0000 span {
  display: block;
  line-height: 1.8;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  color: #9fa0a0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
}

.service-title000000 {
  font-size: 50px;
  margin-bottom: 20px;
  color: #ffffff;
  font-family: 'CustomFont1';
  line-height: 47px;
}

/* 单独修改 Projects 颜色 */
.service-title000000 em {
  color: #bda17b;
  font-style: normal;
}

.service-title000000 span {
  display: block;
  line-height: 1.8;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  color: #9fa0a0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
}

/* 舞台（带轻微俯视斜角） */
.stage {
  perspective: 1400px;
  display: flex;
  justify-content: center;
}

/* 3D圆柱容器 */
.carousel {
  width: 600px;
  height: 400px;
  position: relative;
  transform-style: preserve-3d;

  /* ⭐关键：整体轻微倾斜（你要的“斜着看圆柱”） */
  transform: rotateX(16deg);
}

/* 卡片 */
.card {
  position: absolute;
  width: 600px;
  height: 400px;

  transform-style: preserve-3d;
}

/* 图片玻璃层 */
.imgBox {
  width: 100%;
  height: 400px;
  border-radius: 0px;
  overflow: hidden;

  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

/* ⭐标题在图片下方 */
.title {
  margin-top: 25px;
  font-size: 15px;
  line-height: 1.4;
  color: #fff;
    background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.title span {
  font-size: 11px;
  color: #aaa;
}

.card {
  cursor: pointer;
}

@media (max-width: 768px) {
  .service-section {
  padding: 90px 0 0 0;
}

  .stage {
    transform: scale(0.35);
    transform-origin: center top;
  }

  .carousel {
    left: 27%;
    transform: translateX(-50%) rotateX(16deg);
  }
  .service-title {
  font-size: 40px;
  margin-bottom: 90px;
  line-height: 26px;
}

.service-title span {
  font-size: 10px;
  font-weight: 400;
}

  .service-title00 {
  font-size: 40px;
  margin-bottom: 90px;
  line-height: 40px;
}
.service-title00 span {
  font-size: 12px;
  font-weight: 400;
}

.service-title000 {
  font-size: 40px;
  margin-bottom: 10px;
  line-height: 40px;
}

.service-title000 span {
  font-size: 12px;
  font-weight: 400;
}

.service-title0000 {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 40px;
}

.service-title0000 span {
  font-size: 12px;
  font-weight: 400;
  display: block;
  line-height: 1.6;
  margin-top: 16px;
}

.service-title000000 {
  font-size: 40px;
  margin-bottom: 0px;
  line-height: 40px;
}

.service-title000000 span {
  font-size: 12px;
  font-weight: 400;
  display: block;
  line-height: 1.6;
  margin-top: 16px;
}

.title {
  margin-top: 30px;
  font-size: 30px;
  line-height: 1.3;
  color: #fff;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 20px;
}

.title span {
  font-size: 20px;
  color: #aaa;
}
}




.line {
  border: 0;
  height: 0.5px;
  width: 100%;
  padding: 0;
  margin: 0;

  background: linear-gradient(
    to right,
    #212121,
    #9fa0a0,
    #212121
  );
}




.flora1-section {
  padding: 0;
}

@media (max-width: 768px) {
.flora1-section {
  padding: 0;
}
}










.scene {
  padding-top: 300px;
  height: calc(800vh + 300px);
  background: transparent; /* ❗关键 */
}

.sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #000; /* ✅ 放这里 */
}

.sticky-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  opacity: .6;
  pointer-events: none;

  background-image: url(../images/szbj.png);
  background-position: 50%;
  background-size: 80px;
  background-repeat: repeat;

  -webkit-mask-image: linear-gradient(#0000 0%, #000 30%);
  mask-image: linear-gradient(#0000 0%, #000 30%);
}

/* 背景通用 */
.bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: none; /* ❗不要用transition，交给JS控制 */
}

  /*.bg1{
    background-image: url('../images/bj1.jpg');
  }*/
  .bg2{
    background-image: url('../images/bj2.jpg');
  }

.black-mask {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
}

/* 玻璃卡片 */
.glass-card {
  position: absolute;
  left: 50%;
  top: 50%;

  width: 240px;
  height: 560px;

  transform: translate(-50%, -50%) translateY(80px);

  border-radius: 160px; /* 关键：形成上下圆 */

  /* 液态玻璃核心 */
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.05) 40%,
    rgba(255,255,255,0.08) 100%
  );

  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);

  border: 2px solid rgba(255,255,255,0.05);

  opacity: 0;
  overflow: hidden;
}

/* 镂空 */
.hole {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);

  width: 220px;
  height: 220px;
  border-radius: 50%;

  /* 半透明玻璃感 */
  /*background: radial-gradient(
    circle,
    rgba(255,255,255,0.25) 0%,
    rgba(255,255,255,0.08) 60%,
    rgba(255,255,255,0.02) 100%
  );

  backdrop-filter: blur(15px);*/
  background-color: #000;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;

  width: 50%;
  height: 200%;

  background: linear-gradient(
    120deg,
    transparent 25%,
    rgba(255,255,255,0.1) 50%,
    transparent 65%
  );

  transform: rotate(25deg) translateX(-200%);
  opacity: 0;
  pointer-events: none;
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2),
    transparent 40%,
    rgba(0,0,0,0.3)
  );

  pointer-events: none;
}

.glass-card:hover::before {
  opacity: 1;
  animation: shine-line 1.2s ease forwards;
}

@keyframes shine-line {
  0% {
    transform: rotate(25deg) translateX(-200%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: rotate(25deg) translateX(500%);
    opacity: 0;
  }
}

/* 内容 */
.content {
  position: absolute;
  bottom: 90px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: 'CustomFont1';
}

.content h2 {
  font-size: 32px;
  margin: 10px 0;
  font-weight: 500;
}

.sub {
  font-size: 11px;
  /*letter-spacing: 2px;*/
  opacity: 0.6;
}

.info {
  font-size: 12px;
  opacity: 0.8;
  line-height: 1.6;
}

.price {
  margin-top: 10px;
  font-size: 18px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;

  border-radius: 999px;
  background: rgba(0,0,0,0.8);
  color: #fff;

  font-size: 12px;
  text-decoration: none;

  backdrop-filter: blur(10px);
}



@media (max-width: 768px){

  /* ✅ 场景高度稍微再拉一点（手机滚动更短） */
.scene{
    padding-top: 0px; /* 比PC稍微小一点 */
    height: calc(600vh + 90px);
    background: transparent;
  }

  .sticky{
    transform: translateY(-90px);
    top: 90px;
  }

  .sticky-bg {
  background-size: 60px;
}

  /*.bg1{
    background-image: url('../images/bj1-sp.jpg');
  }*/
  .bg2{
    background-image: url('../images/bj2-sp.jpg')!important;
  }

  /* ✅ 背景图适配竖屏 */
  .bg{
    background-size: cover;
    background-position: center;
  }

  .bg1, .bg2{
    background-position: center center;
  }

  /* ✅ 玻璃卡片整体缩小 */
  .glass-card{
    width: 180px;
    height: 420px;
    border-radius: 120px;

    /* 保持居中逻辑不变 */
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%) translateY(80px);
  }

  /* ✅ 圆形区域缩小 */
  .hole{
    width: 160px;
    height: 160px;
    top: 10px;
  }

  /* ✅ 内容整体压缩 */
  .content{
    bottom: 58px;
  }

  .content h2{
    font-size: 24px;
  }

  .sub{
    font-size: 10px;
  }

  .info{
    font-size: 10px;
  }

  .price{
    font-size: 14px;
  }

  /* ✅ 按钮缩小 */
  .btn{
    padding: 10px 16px;
    font-size: 10px;
  }

}









.intro-text{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.intro-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  font-size: 28px;
  line-height: 46px;
  font-weight: 700;
  text-align: justify;

  color: rgba(255,255,255,0.95);

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,1),
    rgba(255,255,255,0.9) 60%,
    rgba(255,255,255,0.6)
  );

  -webkit-background-clip: text;
  /*-webkit-text-fill-color: transparent;*/

  text-shadow: 0 10px 30px rgba(0,0,0,0.4);

  transform: translateY(20px);
}

@media (max-width: 768px){
.intro-inner{
  font-size: 20px;
  line-height: 30px;
  text-align: justify;
  font-weight: 700;
}
}



.gif-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;

  pointer-events: none; /* 不影响点击 */
}

.gif-layer img {
  width: 330px;   /* 自己调大小 */
  height: auto;
  border-radius: 50%;
}

@media (max-width: 768px){
.gif-layer img {
  width: 250px; 
}
}









.case-section {
  margin-top: 160px;
}

/* 内容宽度 */
.case-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 第一行 */
.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 右侧按钮 */
.case-nav {
  display: flex;
  gap: 12px;
}

.nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);

  color: #fff;
  font-size: 18px;
  cursor: pointer;

  transition: all .3s ease;
}

.nav-btn:hover {
  background: rgba(255,255,255,0.12);
}

/* 👇 关键：让右侧贴屏幕边 */
.case-scroll-wrap {
  margin-top: 40px;
  padding-left: calc((100vw - 1200px)/2 + 20px);
  overflow: hidden;
}

/* 👇 关键：让左侧贴屏幕边 */
.case-scroll-wrap0011 {
  margin-top: 40px;
  /*padding-right: calc((100vw - 1200px)/2 + 20px);*/
  overflow: hidden;
}

.case-scroll-wrap0011 .case-track {
  /*flex-direction: row-reverse;*/
  padding-left: 40px !important;
}

/* 滚动轨道 */
.case-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-right: 40px;
}

/* 隐藏滚动条 */
.case-track::-webkit-scrollbar {
  display: none;
}

/* 卡片 */
.case-card {
  flex: 0 0 320px;
  height: 460px;

  border-radius: 16px;
  overflow: hidden;

  background: #111;
  color: #fff;
  text-decoration: none;
    border: 1px solid #444444a1;
  display: flex;
  flex-direction: column; /* ✅ 关键 */
}

/* 图片 */
.case-card .img {
  width: 100%;
  aspect-ratio: 4 / 3; /* ✅ 等比例 */
  overflow: hidden;
}

.case-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 保持好看裁切 */
  display: block;
}



/* 图片默认黑白 *//* hover恢复彩色 */
/*
.case-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.6s ease;
}

.case-card:hover .img img {
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .case-card .img img {
    filter: none;
    transform: none;
  }
}
*//* 📱 SP：直接取消所有效果 */



/* 信息 */
.case-info {
  padding: 20px 16px;
}

.case-info h3 {
  font-size: 20px;
  font-family: 'CustomFont2';
  margin-bottom: 8px;
  margin-top: 16px;
  color: #ffffff;
}

.case-info h3 span {
  font-size: 14px;
}

.case-info p {
  font-size: 12px;
  color: #9fa0a0;
  margin-bottom: 16px;
  line-height: 22px;
}

@media (max-width: 768px) {

  .case-section {
  margin-top: 30px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);

  color: #fff;
  font-size: 14px;
  cursor: pointer;

  transition: all .3s ease;
}

  .case-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .case-nav {
    margin-top: 10px;
  }

  .case-scroll-wrap {
    padding-left: 20px;
  }

  .case-scroll-wrap0011 .case-track {
  padding-left: 20px !important;
}

.case-track {
  padding-right: 20px;
}

  .case-card {
    flex: 0 0 70%; /* 👈 关键：1.5张 */
    height: 400px;
  }

  .case-info h3 {
  font-size: 16px;
  line-height: 23px;
}

.case-info h3 span {
  font-size: 11px;
}

}









.case-card999 {
  flex: 0 0 320px;
  height: 470px;

  border-radius: 16px;
  overflow: hidden;

  /*background: #111;*/
  color: #fff;
  text-decoration: none;
  border: 1px solid #444444a1;
  display: flex;
  flex-direction: column;
}

.case-card999 .img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.case-card999 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-info999 {
  padding: 20px 16px;
}

.case-info999 h3 {
  font-size: 20px;
  font-family: 'CustomFont2';
  margin-bottom: 8px;
  margin-top: 16px;
  color: #ffffff;
}

.case-info999 h3 span {
  font-size: 11px;
  font-family: 'CustomFont3';
}

.case-info999 p {
  font-size: 12px;
  color: #9fa0a0;
  margin-bottom: 16px;
  line-height: 20px;
  text-align: justify;
}

@media (max-width: 768px) {
.case-card999 {
  flex: 0 0 70%;
  height: 430px;
  }

.case-info999 h3 {
  font-size: 16px;
  line-height: 23px;
  }

.case-info999 h3 span {
  font-size: 11px;
  }
}








.case-section88 {
    margin-top: 160px;
}
@media (max-width: 768px) {
    .case-section88 {
        margin-top: 120px;
    }
}

.case-section8899 {
    margin-top: 160px;
}
@media (max-width: 768px) {
    .case-section8899 {
        margin-top: 120px;
    }
}

.case-section6699 {
    margin-top: 160px;
}
@media (max-width: 768px) {
    .case-section6699 {
        margin-top: 120px;
    }
}

.case-section8888 {
    position: relative;
    margin: 60px 0;
    height: 820px;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* 背景图 */
.case-bg {
    position: absolute;
    inset: 0;
    background: url("../images/aboutbjg.jpg") center/cover no-repeat;
    filter: brightness(0.5); /* 压暗一点更高级 */
}

/* 内容层 */
.case-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 30px 0;
}

.case-content img {
    height: 80px;
    margin-top: 10px;
}

/* 标题 */
.case-title {
  font-size: 50px;
    color: #ffffff;
    font-family: 'CustomFont1';
    font-weight: 200;
    line-height: 47px;
}

/* 副标题 */
.case-subtitle {
    display: block;
    line-height: 1.8;
    margin-top: 160px;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
}

/* 手机 */
@media (max-width: 768px) {
    .case-section8888 {
        margin: 50px 0 120px 0;
        height: 360px;
    }

    .case-title {
        font-size: 40px;
        line-height: 40px;
    }

    .case-subtitle {
            font-size: 12px;
        font-weight: 400;
        margin-bottom: 10px;
        display: block;
        line-height: 1.6;
        margin-top: 50px;
}
.case-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 40px 0 30px 0;
}
.case-content img {
    height: 50px;
    margin-top: 10px;
}
}

.case-section8888 .nav-link90 {
    display: inline-block;
    width: auto;
}








.light-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

/* 每个光点 */
.light-particles span {
    position: absolute;
    bottom: -20px;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0;

    animation: floatUp linear infinite;
}

/* 动画 */
@keyframes floatUp {
    0% {
        transform: translateY(0) scale(0.6);
        opacity: 0;
    }
    20% {
        opacity: 0.6;
    }
    80% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-800px) scale(1.2);
        opacity: 0;
    }
}










.partner-wrap {
  max-width: 1200px;
  margin: 0px auto 0;
  padding: 0 20px;
  overflow: hidden;
}

/* 横线（两头渐隐） */
.line {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.2),
    transparent
  );
}

/* 每一行 */
.partner-row {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
}

/* 左侧标题 */
.partner-label {
  min-width: 100px;
  font-size: 12px;
  color: #9fa0a0;
  font-family: 'CustomFont2';
}

/* 右侧滚动区域 */
.partner-marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
}

/* 渐隐遮罩（左右淡出） */
.partner-marquee::before,
.partner-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partner-marquee::before {
  left: 0;
  background: linear-gradient(to right, #212121, transparent);
}

.partner-marquee::after {
  right: 0;
  background: linear-gradient(to left, #212121, transparent);
}

/* 滚动轨道 —— 移除 CSS 动画，交给 JS 控制 */
.partner-track {
  display: flex;
  gap: 80px;
  width: max-content;
}

/* logo */
.partner-track img {
  height: 40px;
  opacity: 1;
  filter: grayscale(100%);
  transition: all .3s ease;
  /* 防止图片被压缩变形 */
  flex-shrink: 0;
}

.partner-track img:hover {
  opacity: 0.5;
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .partner-wrap {
  margin: 0px auto 0;
}
  .partner-row {
    gap: 20px;
  }

  .partner-label {
    min-width: 70px;
    font-size: 10px;
  }

  .partner-track {
    gap: 30px;
  }

  .partner-track img {
    height: 24px;
  }
}









.platform-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    gap: 40px;
}

/* 每个卡片 */
.platform-item {
    flex: 1;
}

/* 图片 */
.platform-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 16px;
    border-radius: 16px;
}

/* 时间 */
.platform-date {
    font-size: 12px;
    color: #9fa0a0;;
    margin-bottom: 6px;
    font-family: 'CustomFont2';
}

/* 标题 */
.platform-title {
    font-size: 16px;
    margin-bottom: 36px;
    font-family: 'CustomFont1';
}

/* 描述 */
.platform-desc {
    font-size: 12px;
    line-height: 20px;
    color: #9fa0a0;;
    text-align: justify;
}

/* 📱 手机 */
@media (max-width: 768px) {
    .platform-list {
        flex-direction: column;
        gap: 40px;
        margin-top: 20px;
    }
    .platform-title {
    margin-bottom: 16px;
}
}







.platform-list55 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    gap: 10px;
}

/* 每个卡片 */
.platform-item55 {
    flex: 1;
    background: rgba(49, 49, 49, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 20px;
    border-radius: 16px;
}

.platform-item55.bg-enable::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0px;

  width: 264px;
  height: 160px;

  background: url("../images/kpbj.png") no-repeat;
  background-size: contain;

  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

/* 时间 */
.platform-date55 {
    font-size: 12px;
    color: #9fa0a0;;
    margin-bottom: 20px;
    text-align: justify;
    position: relative;
    z-index: 998;
}

/* 标题 */
.platform-title55 {
    font-size: 16px;
    margin-bottom: 6px;
    font-family: 'CustomFont1';
    position: relative;
    z-index: 997;
}

/* 描述 */
.platform-desc55 {
    font-size: 12px;
    color: #9fa0a0;
    display: flex;
    align-items: center;
}

.platform-desc55 a {
    font-size: 18px;
    color: #fff;
    font-family: 'CustomFont2';
    text-decoration: none; 
}

.platform-desc55 span{
    font-size: 10px;
    color: #9fa0a0;
}

/* 📱 手机 */
@media (max-width: 768px) {
    .platform-list55 {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    .platform-title55 {
    margin-bottom: 5px;
}
.platform-item55.bg-enable::after {
  width: 165px;
  height: 100px;
}
}







.chat-duang {
  height: 38px;
  display: inline-block;
  transform-origin: center bottom;

  animation: duang 1.6s infinite;
}

.chat-duang0 {
  height: 66px;
  display: inline-block;
  transform-origin: center bottom;

  animation: duang 2.6s infinite;
}

/* 💥 核心 duang */
@keyframes duang {
  0%, 100% {
    transform: translateY(0) scale(1,1);
  }

  10% {
    transform: translateY(0) scale(1.1, 0.85); /* 压扁 */
  }

  30% {
    transform: translateY(-10px) scale(0.9, 1.15); /* 弹起 */
  }

  50% {
    transform: translateY(0) scale(1.05, 0.9); /* 落地反弹 */
  }

  70% {
    transform: translateY(-4px) scale(0.97, 1.05); /* 小回弹 */
  }

  85% {
    transform: translateY(0) scale(1.02, 0.98);
  }
}

/* 📱 手机 */
@media (max-width: 768px) {
    .chat-duang {
  height: 28px;
}
/*.sns-wrap {
flex-direction: column;
}*/
.sns-btn {
  padding: 8px 12px !important;
}
}




.sns-wrap {
  display: flex;
  gap: 10px;
}

.sns-wrap a {
  display: flex;
}

/* 基础按钮 */
.sns-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  color: #fff;
  transition: 0.25s ease;
  font-weight:500;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

/* 图标 */
.sns-icon {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}

/* LINE 颜色 */
.line-btn {
  background: #06C755; /* LINE官方绿 */
}

/* WeChat 颜色 */
.wechat-btn {
  background: rgba(31, 31, 31, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  border: 1px solid #ffffff4d;
}

/* hover效果 */
.sns-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* 点击效果 */
.sns-btn:active {
  transform: scale(0.98);
}






/* 底部Footer整体容器 */
.footer {
  width: 100%;
  color: #ffffff;
  margin-top: 180px;
}

/* 顶部全屏淡化分割线 左右渐隐消失 */
.footer-divider {
  width: 100%;
  height: 1px;
  /* 左右透明渐变，中间高亮，实现两端消失效果 */
  background: linear-gradient(90deg, transparent, #666666 50%, transparent);
}

/* 内容居中限制容器 严格按你要求 */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 140px 20px;
  display: flex;
  gap: 120px;
  align-items: flex-start;
}

/* PC端左侧Logo区块 */
.footer-logo-wrap {
  flex: 1;
}
.footer-logo {
  font-size: 12px;
  line-height: 1.3;
  color: #9fa0a0;
  font-family: 'CustomFont2';
}
.footer-logo img {
  height: 58px;
}
.footer-logo .logo-big {
  font-size: 40px;
  color: #9fa0a0;
  /*background: linear-gradient(to right, #003158, #960000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;*/
  display: block;
  line-height: 38px;
  font-family: 'CustomFont1';
  margin-top: 20px;
}
.logo-download {
  color: #ffffff;
  display: inline-block;
  margin: 20px 0 40px;
  font-size: 12px;
  font-family: 'CustomFont2';
  text-decoration: none;
}
.footer-credit {
  color: #9fa0a0;
  font-size: 10px;
  margin-top: auto;
  font-family: 'CustomFont2';
}

/* PC端三列导航容器 */
.footer-nav-wrap {
  flex: 3;
  display: flex;
  /*gap: 60px;*/
}
.footer-nav-col {
  flex: 1;
}
.footer-nav-col h3 {
  font-family: 'CustomFont2';
  font-size: 12px;
  color: #9fa0a0;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: normal;
  letter-spacing: 1px;
}
.footer-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav-col ul li {
  margin-bottom: 12px;
}
.footer-nav-col ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  transition: opacity 0.2s;
}
.footer-nav-col ul li a:hover {
  opacity: 0.7;
}
.footer-address {
  margin-top: 46px;
  font-size: 10px;
  color: #9fa0a0;
  line-height: 1.6;
}
.footer-address img {
  height: 60px;
}

/* ==================== 移动端SP响应式适配 ==================== */
@media screen and (max-width: 768px) {
  .footer {
  margin-top: 130px;
}
  .footer-inner {
    flex-direction: column;
    gap: 50px;
    padding: 60px 20px 180px 20px;
  }
  .footer-nav-wrap {
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }
  .footer-logo .logo-big {
    font-size: 46px;
    line-height: 42px;
  }
}








.company-info-section {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
  background: #212121; 
}
.company-info-section618 {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
  background: #212121; 
}

/* 大标题 */
.section-main-title {
  font-size: 30px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 30px;
}
.section-main-title618 {
  font-size: 30px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 30px;
}

/* 表格整体包裹 */
.info-table-wrap {
  width: 100%;
}

.info-table-wrap618 {
  width: 100%;
  background-color: #f4f4f4;
  padding: 60px 40px;
}

/* 每一条信息项目 */
.info-item {
  width: 100%;
  padding: 20px 0;
  /* 条目中间水平分隔细线 */
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);

  /* PC端左右布局 */
  display: flex;
  gap: 40px;
}

.info-item618 {
  width: 100%;
  padding: 28px 0;
  /* 条目中间水平分隔细线 */
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);

  /* PC端左右布局 */
  display: flex;
      gap: 20px;
    flex-direction: column;
}

/* 左侧标签名称 */
.info-label {
  width: 190px;
  flex-shrink: 0; /* 固定宽度不压缩 */
  color: #ffffff;
  font-size: 14px;
}

/* 右侧内容文本 */
.info-content {
  flex: 1;
  color: #9fa0a0;
  font-size: 14px;
  line-height: 1.66;
  text-align: justify;
}

.info-label618 {
  font-size: 24px;
    font-weight: 600;
  color: #181818;
}

/* 右侧内容文本 */
.info-content618 {
  flex: 1;
  color: #181818;
  font-size: 14px;
  line-height: 1.66;
  text-align: justify;
}

.info-content img {
  height: 60px;
}

/* ========== SP移动端自适应 ========== */
@media (max-width: 768px) {
  .company-info-section {
  margin: 50px auto;
  padding: 0 20px;

}
.company-info-section618 {
  margin: 50px auto;
  padding: 0;
}
.section-main-title618 {
  padding: 0 20px;
}
.info-table-wrap618 {
  padding: 60px 20px;
}
  .info-item {
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
  }

  .info-label {
    width: 100%;
  }
  .info-item618 {
    flex-direction: column;
    gap: 20px;
    padding: 18px 0;
  }

  .info-label618 {
    width: 100%;
    font-size: 19px;
  }
  .section-main-title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}


/* 会社情報 人员表格样式 */
.info-table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  width: 100%;
}
.info-table-grid .grid-item {
  color: #9fa0a0;
  font-size: 14px;
  line-height: 1.4;
}
.info-table-grid .grid-text {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
}

/* SP 手机版：自动上下排版 */
@media (max-width: 768px) {
  .info-table-grid {
    grid-template-columns: 1fr;
    gap: 6px 0;
    margin-top: 10px;
  }
  /*.info-table-grid .grid-item {
    margin-bottom: 4px;
  }*/
  .info-table-grid .grid-text {
    margin-bottom: 14px;
  }
  .info-table-grid .grid-item {
  color: #9fa0a0;
  font-size: 14px;
  line-height: 0.8;
}
}












/* 案例板块容器 严格按你要求 */
.case-timeline-section45 {
      width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    background: #212121;
}

/* 板块大标题 */
.section-title45 {
  font-size: 30px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 50px;
}

/* 时间轴整体包裹 */
.timeline-wrap45 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 20px;
}

/* 单条时间轴项目 */
.timeline-item45 {
  display: flex;
  position: relative;
  gap: 40px;
}

/* 左侧年月时间 */
.timeline-date45 {
  /*width: 80px;*/
  flex-shrink: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  text-align: right;
  line-height: 1.3;
  font-family: 'CustomFont2';
}

/* 贯穿垂直时间竖线 */
.timeline-line45 {
  position: absolute;
  left: 66px;
  top: 0px;
  bottom: -40px;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

/* 右侧案例卡片 PC：左图+右文案横排 */
.case-card45 {
  flex: 1;
  display: flex;
  gap: 30px;
  background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 24px;
  /*border: 1px solid rgba(255,255,255,0.15);*/
  box-shadow: 4px 4px 6px 0px rgba(0, 0, 0, 0.2);
  flex-direction: row;
}

/* 案例图片 */
.case-img45 {
  width: 320px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
}
.case-img45 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* 案例文案内容 */
.case-text45 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.case-text45 h3 {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  line-height: 1.44;
  margin: 0;
}
.case-text45 p {
      font-size: 14px;
    line-height: 1.66;
    color: #9fa0a0;
    text-align: justify;
}
.case-text45 span {
      font-size: 12px;
    font-family: 'CustomFont1';
    color: #bda17b;
}

/* ========== SP移动端自适应 ========== */
@media (max-width: 768px) {
  /* 案例板块容器 严格按你要求 */
.case-timeline-section45 {
            margin: 50px auto;
        padding: 0 20px;
}

  .section-title45 {
            font-size: 30px;
        margin-bottom: 42px;
  }

  .timeline-item45 {
    gap: 24px;
  }

  .timeline-date45 {
    /*width: 60px;*/
    font-size: 16px;
  }
  .timeline-line45 {
    left: 56px;
  }

  /* SP端：图片在上，文案在下 上下排版 */
  .case-card45 {
    flex-direction: column;
    gap: 20px;
    padding: 18px;
  }
  .case-img45 {
    width: 100%;
  }
  .case-text45 p {
      font-size: 12px;
    line-height: 20px;
    color: #9fa0a0;
    text-align: justify;
}
.case-text45 h3 {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
}
}










.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  font-size: 13px;
  z-index: 9999;
  display: none;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.cookie-inner p a {
  color: #ffffff;
}

.cookie-buttons{
  display: flex;
  width: 30%;
  justify-content: flex-end;
}

.cookie-buttons button {
  margin-left: 10px;
  padding: 8px 16px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.cookie-buttons button:hover {
  background: #fff;
  color: #000;
}

.cookie-settings-link {
  position: fixed;
  bottom: 80px; /* 在banner上面 */
  right: 20px;
  z-index: 10000;
}

.cookie-settings-link a {
  color: #000;
  background: #fff;
  padding: 6px 10px;
  border: 1px solid #000;
}

@media (max-width: 768px) {
  .cookie-buttons{
  display: flex;
  width: 400px;
  flex-direction: column;
  gap: 10px;
}
.cookie-inner {
  gap: 30px;
}
.cookie-inner p{
    font-size: 10px;
    line-height: 16px;
    text-align: justify;
}
.cookie-buttons button {
  font-size: 11px;
}
}






.pc-br {
  display: none;
}

@media (min-width: 768px) {
  .pc-br {
    display: inline;
  }
}




.flora-section55 {
  position: relative;
  padding: 100px 0 0 0;
    background-image: url(../images/szbj.png);
    background-position: 50%;
    background-size: 80px;
    background-repeat: repeat;
    -webkit-mask-image: linear-gradient(
  to bottom,
  transparent 0%,
  black 20%,
  black 80%,
  transparent 100%
);

mask-image: linear-gradient(
  to bottom,
  transparent 0%,
  black 20%,
  black 80%,
  transparent 100%
);
}
._h1_55{
  font-size: 28px;
  line-height: 46px;
  text-align: justify;
}
.yingwen{
  font-size: 28px;
  line-height: 32px;
  color: #bda17b;
  opacity: 0.88;
  margin-bottom: 60px;
  font-family: 'CustomFont3';
}
.fangda{
  font-size: 120px;
  color: #525252;
  animation: glowPulse 2s infinite alternate;
  opacity: 0.3;
  margin-bottom: 60px;
  font-family: 'CustomFont1';
}
@keyframes glowPulse {
  from {
    text-shadow: 0 0 5px rgba(82,82,82,0.3);
  }
  to {
    text-shadow: 0 0 20px rgba(82,82,82,0.8);
  }
}

@media (max-width: 768px) {
.flora-section55 {
  padding: 60px 0 0 0;
}
._h1_55{
  font-size: 20px;
  line-height: 30px;
  text-align: justify;
}
.yingwen{
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
}
.fangda{
  font-size: 36px;
  margin-bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
}
}

.flora-img1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  pointer-events: none; /* 防止挡点击 */
}

.flora-img1 img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.38;
}

.flora-img2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 660px;
  pointer-events: none; /* 防止挡点击 */
}

.flora-img2 img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.38;
  /*animation: glowPulse00 2s infinite alternate;*/
}
/*心脏跳动🫀*/
/*@keyframes glowPulse00 {
  0% {
    filter: drop-shadow(0 0 5px rgba(82,82,82,0.3));
    transform: scale(1);
  }
  100% {
    filter: drop-shadow(0 0 25px rgba(82,82,82,0.9));
    transform: scale(1.03);
  }
}*/

.flora-img-left {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);

  left: calc(50% - 620px - 280px); 
}

.flora-img-right {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);

  left: calc(50% + 80px + 20px);
}

@media (max-width: 768px) {

  /* 左图隐藏 */
  .flora-img-left {
    display: none;
  }

  /* 右图变正常流 */
  .flora-img-right {
    position: static;
    transform: none;
    width: 100%;
    margin-top: -60px;
    text-align: center;
  }
.flora-img2 img {
  width: 100%;
  display: flex;
  justify-content: center;
}
}







/* 👇 关键：让左侧贴屏幕边 */
.case-scroll-wrap001111 {
  margin-top: 0px;
  padding-left: calc((100vw - 1200px) / 2 + 20px);
  overflow: hidden;
}

.case-scroll-wrap001111 .case-track {
  /*flex-direction: row-reverse;*/
  padding-left: 0px !important;
}

.case-card99999 {
  flex: 0 0 275px;
  height: auto;

  border-radius: 16px;
  overflow: hidden;

  /*background: #111;*/
  color: #fff;
  text-decoration: none;
  border: 1px solid #444444a1;
  display: flex;
  flex-direction: column;
}

.case-card99999 .img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.case-card99999 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-info99999 {
  padding: 20px 16px;
}

.case-info99999 h3 {
  font-size: 20px;
  font-family: 'CustomFont2';
  margin-bottom: 8px;
  margin-top: 16px;
  color: #ffffff;
}

.case-info99999 h3 span {
  font-size: 11px;
  font-family: 'CustomFont3';
}

.case-info99999 p {
  font-size: 12px;
  color: #9fa0a0;
  margin-bottom: 16px;
  line-height: 20px;
  text-align: justify;
}

@media (max-width: 768px) {
.case-card99999 {
  flex: 0 0 60%;
  height: auto;
  }

.case-info99999 h3 {
  font-size: 16px;
  line-height: 23px;
  }

.case-info99999 h3 span {
  font-size: 11px;
  }
.case-scroll-wrap001111 {
  padding-left: 20px;
  margin-top: 20px;
}
}


.case-section77 {
    margin-top: 160px;
}
@media (max-width: 768px) {
    .case-section77 {
        margin-top: 100px;
    }
}



























