.swiper_box[data-v-2915b66e] {
  position: absolute;
  top: 28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 9;
}
.swiper_box .swiper_dot[data-v-2915b66e] {
  position: relative;
  background: rgb(117, 103, 109);
}
.swiper_box .swiper_dot[data-v-2915b66e]::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 100%;
  z-index: 9;
  background: #fff;
  opacity: 0.5;
  z-index: 9;
}
.swiper_box .swiper_dot.active[data-v-2915b66e]::before {
  -webkit-animation: fullWidth-2915b66e 8s linear forwards;
          animation: fullWidth-2915b66e 8s linear forwards;
}
.box[data-v-2915b66e] {
  width: 100%;
  height: 100%;
}
.box .video_box[data-v-2915b66e] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
@-webkit-keyframes fullWidth-2915b66e {
from {
    width: 0;
}
to {
    width: 100%;
}
}
@keyframes fullWidth-2915b66e {
from {
    width: 0;
}
to {
    width: 100%;
}
}
.scroll-container[data-v-ae216174] {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 12px 0;
}
.scroll-container .left_slide[data-v-ae216174] {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 150px;
  z-index: 10;
}
.scroll-container .right_slide[data-v-ae216174] {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 150px;
  z-index: 10;
}
.scroll-content[data-v-ae216174] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: scroll-ae216174 30s linear infinite;
          animation: scroll-ae216174 30s linear infinite;
}
.scroll-content[data-v-ae216174]:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.item[data-v-ae216174] {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 150px;
  height: 75px;
  margin-right: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.item-icon[data-v-ae216174] {
  font-size: 2rem;
  margin-bottom: 10px;
}
.item-title[data-v-ae216174] {
  font-weight: 600;
  font-size: 1.1rem;
}
@-webkit-keyframes scroll-ae216174 {
0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
}
100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}
}
@keyframes scroll-ae216174 {
0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
}
100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}
}
.index_btn[data-v-6484a26a] {
  height: 32px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #000000;
  margin-right: 14px;
}
.index_btn.LearnMore[data-v-6484a26a]:hover {
  border: 1px solid #21C9CC;
  color: #21C9CC;
}
.index_btn.Products[data-v-6484a26a]:hover {
  background: #21C9CC;
  border: 1px solid #21C9CC;
  color: #fff;
}
.bg-dark[data-v-6484a26a] {
  background: #000000;
  color: #FFFFFF;
}
@charset "UTF-8";
.scroll-container[data-v-7d7a90e7] {
  width: 100%;
  height: 37.5px; /* 建议给容器一个固定高度，防止高度塌陷 */
  overflow: hidden;
  position: relative;
  /* 解决 iOS 滚动时的闪烁问题 */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.scroll-container .left_slide[data-v-7d7a90e7], .scroll-container .right_slide[data-v-7d7a90e7] {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 75px;
  height: 100%; /* 显式高度 */
  z-index: 10;
  pointer-events: none; /* 关键：防止遮罩层阻挡底层交互，虽然这里主要是看，但好习惯 */
}
.scroll-container .left_slide[data-v-7d7a90e7] {
  left: 0;
}
.scroll-container .right_slide[data-v-7d7a90e7] {
  right: 0;
}
.scroll-content[data-v-7d7a90e7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  /* 使用 translate3d 开启硬件加速 */
  -webkit-animation: scroll-7d7a90e7 30s linear infinite;
          animation: scroll-7d7a90e7 30s linear infinite;
  /* 告诉浏览器这个元素会变，提前分配 GPU 资源 */
  will-change: transform;
  /* 防止 iOS 渲染闪烁 */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000;
  -webkit-perspective: 1000;
}

/* 关键修复：
  只在支持鼠标悬停的设备（PC）上启用 hover 暂停。
  防止手机上点击一下变成 hover 状态导致动画永久卡死。
*/
@media (hover: hover) {
.scroll-content[data-v-7d7a90e7]:hover {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
}
}
.item[data-v-7d7a90e7] {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 移除 transition 和 hover transform，减少移动端重绘负担 */
  /* 使用 Tailwind 的类对应的 CSS，或者直接写在这 */
  width: 75px;
  height: 37.5px;
  margin-right: 10px; /* 可选：给 logo 之间加一点间距，看起来不拥挤 */
}
.logo-img[data-v-7d7a90e7] {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain; /* 保持图片比例 */
  display: block; /* 消除图片底部的幽灵空白 */
}
@-webkit-keyframes scroll-7d7a90e7 {
0% {
    /* 使用 translate3d 替代 translateX */
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
}
}
@keyframes scroll-7d7a90e7 {
0% {
    /* 使用 translate3d 替代 translateX */
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
}
}
@charset "UTF-8";
.app_fullpage[data-v-f5383af2] {
  height: calc(100vh - 44px);
}
.video_box[data-v-f5383af2] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

/* 进度条动画 */
@-webkit-keyframes progress-f5383af2 {
from {
    width: 0;
}
to {
    width: 100%;
}
}
@keyframes progress-f5383af2 {
from {
    width: 0;
}
to {
    width: 100%;
}
}
.animate-progress[data-v-f5383af2] {
  -webkit-animation: progress-f5383af2 5s linear forwards;
          animation: progress-f5383af2 5s linear forwards; /* 配合 5秒的轮播时间 */
}
