/* Banner样式 */

/* 平板端轮播图高度强制覆盖 - 最高优先级 */
@media (min-width: 769px) and (max-width: 1366px) {
  .swiper.banner-cont,
  .banner {
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
    margin-bottom: 40px !important; /* 添加底部边距 */
  }
  
  /* 缩小平板端文字和按钮尺寸 */
  .swiper.banner-cont h1 {
    font-size: 36px !important;
  }
  
  .banner-desc {
    font-size: 16px !important;
    margin-bottom: 20px !important;
  }
  
  .btn.btn-primary {
    padding: 8px 20px !important;
    font-size: 14px !important;
  }
}

/* PC端保持原有间距 */
@media (min-width: 1367px) {
  .swiper.banner-cont,
  .banner {
    margin-bottom: 60px; /* PC端保持原有间距 */
  }
}

/* 引入阿里妈妈数黑体字体 */
@font-face {
  font-family: 'AlimamaShuHeiTi-Bold';
  src: url('/web/hbyv10sym1/assets/font/AlimamaShuHeiTi-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* 引入本地MiSans字体 */
@font-face {
  font-family: 'MiSans';
  src: url('/web/hbyv10sym1/assets/font/MiSans-Normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.banner {
  position: relative;
  overflow: hidden;
  /* 确保有足够的空间显示卡片 */
  margin-top: 0;
  /* 删除上方空白 */
}

/* 轮播图容器 */
.swiper.banner-cont {
  width: 100%;
  height: 700px;
  overflow: hidden;
  min-height: 700px; /* 与height一致，避免内部塌陷 */
  position: relative;
  z-index: 1;
  margin-top: 0;
  /* 确保没有上边距 */
}

/* 平板端轮播图高度覆盖 */
@media (min-width: 769px) and (max-width: 1366px) {
  .swiper.banner-cont,
  .banner {
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
  }
}

/* 轮播图幻灯片 */
.swiper.banner-cont .swiper-slide {
  position: relative;
  display: flex;
  height: 100%; /* 明确让幻灯片充满容器高度 */
  align-items: stretch; /* 让子元素在纵向撑满容器 */
  justify-content: flex-start;
  /* 将内容左对齐 */
  background-color: transparent; /* 移除灰色底色，避免露出灰底 */
}

/* 幻灯片图片 */
.swiper.banner-cont .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 幻灯片内容 */
.swiper.banner-cont .section-content {
  position: absolute;
  top: 50%;
  left: 25%;
  /* 更靠右显示文字内容，从15%改为25% */
  right: auto;
  transform: translate(0, -50%);
  /* 只垂直居中，不水平偏移 */
  text-align: left;
  color: #000;
  /* 改为纯黑色 */
  z-index: 2;
  width: 100%;
  max-width: 600px;
  padding: 25px;
  border-radius: 8px;
  background-color: transparent;
  /* 移除背景透明度 */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* 幻灯片标题 */
.swiper.banner-cont h1 {
  font-size: 58px;
  margin-bottom: 25px;
  font-weight: 700;
  font-family: 'AlimamaShuHeiTi-Bold', 'MiSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  /* 添加轻微文字阴影增强可读性 */
  line-height: 1.2;
  letter-spacing: -0.5px;
  /* 轻微调整字间距 */
  position: relative;
  padding-left: 0;
  /* 确保没有左内边距 */
  margin-left: 0;
  /* 确保没有左外边距 */
  display: block;
  /* 块级显示 */
  width: 100%;
  /* 占满容器宽度 */
  color: #000;
  /* 确保标题为纯黑色 */
}

/* 移除标题装饰线 */
.swiper.banner-cont h1::after {
  display: none;
}

/* 描述文字 */
.banner-desc {
  font-size: 21px;
  margin-bottom: 35px;
  max-width: 520px;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  /* 添加轻微文字阴影增强可读性 */
  font-weight: 300;
  /* 字重稍微调细一点 */
  padding-left: 0;
  /* 确保没有左内边距 */
  margin-left: 0;
  /* 左对齐 */
  margin-right: auto;
  display: block;
  /* 块级显示 */
  width: 100%;
  /* 占满容器宽度 */
  color: #000;
  /* 确保描述文本为纯黑色 */
}

/* 导航圆点 - 显示分页器 */
.swiper.banner-cont .swiper-pagination-bullet {
  display: inline-block;
  /* 显示所有分页点 */
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 0.8;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1);
}

.swiper.banner-cont .swiper-pagination-bullet-active {
  display: inline-block;
  /* 显示当前活动分页点 */
  background: #fff;
  opacity: 1;
  width: 14px;
  height: 14px;
  transform: scale(1.1);
}

/* 显示分页器容器 */
.swiper-pagination {
  display: block !important;
  /* 显示分页器容器 */
  position: absolute;
  text-align: center;
  bottom: 20px !important;
  left: 0;
  width: 100%;
  z-index: 20 !important;
  /* 确保层级高于内容 */
  opacity: 1 !important;
  visibility: visible !important;
}

/* 简化分页器显示样式 */
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 20px;
  left: 0;
  width: 100%;
}

/* 轮播图遮罩 - 移除半透明遮罩 */
.swiper-slide::before {
  display: none;
  /* 完全隐藏遮罩层 */
}

/* 响应式调整 */
@media (max-width: 992px) {
  .banner-desc {
    font-size: 18px;
  }

  .swiper.banner-cont .btn {
    padding: 10px 25px;
  }
}

/* 确保body和section没有默认边距 */
body {
  margin: 0;
  padding: 0;
}

/* 删除header后的空白并与轮播图直接连接 */
header {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.section.banner {
  margin-top: -1px;
  /* 使用负边距处理可能的间隙 */
  padding-top: 0;
  margin-bottom: 0; /* 添加底部边距为0 */
}

  /* 移动端样式调整 */
@media (max-width: 768px) {
  /* 轮播图容器高度优化 */
  .swiper.banner-cont {
    height: 45vh; /* 进一步减少移动端高度 */
    min-height: 300px; /* 减少最小高度 */
    max-height: 400px; /* 减少最大高度 */
  }

  .swiper.banner-cont h1 {
    font-size: 24px; /* 减小标题字体 */
    line-height: 1.3;
    margin: 15px 0 15px 5px; /* 调整移动端标题边距，增加左外边距 */
  }

  .banner-desc {
    font-size: 14px; /* 减小描述字体 */
    line-height: 1.4;
    margin-bottom: 20px;
    margin-left: 5px; /* 增加左外边距 */
  }

  .swiper.banner-cont .section-content {
    max-width: 90%; /* 增加内容宽度利用率 */
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; /* 移动端居中对齐更美观 */
    padding: 20px 15px;
  }

  .swiper.banner-cont h1::after {
    left: 50%;
    transform: translateX(-50%); /* 装饰线居中 */
  }

  .banner-desc {
    margin: 0 auto 20px auto; /* 描述文字居中 */
    max-width: 280px; /* 限制描述文字宽度 */
    margin-left: 5px; /* 增加左外边距 */
  }

  /* 按钮优化 */
  .btn.btn-primary {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 0 !important; /* 移除圆角 */
    margin-left: 8px !important;
  }

  /* 进度控制按钮容器移动端优化 */
  .banner-timeline-controls {
    margin-top: 20px; /* 移动端减少上边距 */
  }
}

/* 轮播图分页器样式 */
.swiper-pagination {
  bottom: 20px !important;
  z-index: 10;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.2);
}

/* 移动端分页器优化 */
@media (max-width: 768px) {
  .swiper-pagination {
    bottom: 15px !important;
  }

  .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 3px;
  }

  .swiper-pagination-bullet-active {
    transform: scale(1.3);
  }
}

/* 按钮样式已移至banner-buttons.css */

/* 轮播图文本区域样式 */
.banner-text-area {
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.banner-text-area.loaded {
  opacity: 1;
  transform: translateY(0);
}

.banner-text-label {
  display: inline-block;
  background: rgba(22, 119, 255, 0.1);
  color: #1677ff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  border: 1px solid rgba(22, 119, 255, 0.2);
}

.banner-text-content {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* 移动端文本区域优化 */
@media (max-width: 768px) {
  .banner-text-area {
    margin-bottom: 12px;
  }

  .banner-text-label {
    font-size: 12px;
    padding: 4px 10px;
    margin-bottom: 6px;
  }

  .banner-text-content {
    font-size: 13px;
    line-height: 1.3;
  }
}
.banner .banner-media {
  position: absolute; /* 让媒体层覆盖整个幻灯片 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner .banner-media img,
.banner .banner-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 针对未使用 .banner 父级的结构，补充媒体元素的铺满规则，确保在iPad上不受默认比例影响 */
.swiper.banner-cont .banner-media img,
.swiper.banner-cont .banner-media video,
.swiper.banner-cont .banner-media iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 强制铺满容器，避免仅显示一角 */
  object-position: center center; /* 居中显示 */
  display: block;
}

/* 让swiper内部结构全高，避免子元素高度塌陷 */
.swiper.banner-cont .swiper-wrapper {
  height: 100%;
}

/* 幻灯片裁切到容器内，避免灰色露出 */
.swiper.banner-cont .swiper-slide {
  overflow: hidden;
}

/* 覆盖在轮播上的内容布局 */
#home-banner .section-content {
  position: absolute;
  z-index: 5; /* 提高层级到媒体层之上 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(-30px);
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* JS加载完成后显示内容 */
#home-banner .section-content.banner-loaded {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) translateX(0);
}

#home-banner h1 {
  font-size: 52px;
  font-weight: 700;
  color: #111;
  margin: 20px 0 20px 0; /* 增加上下外边距 */
  font-family: 'AlimamaShuHeiTi-Bold', 'MiSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

#home-banner .banner-desc {
  font-size: 20px;
  color: #333;
  max-width: 720px;
}

#home-banner .btn.btn-primary {
  display: inline-block;
  padding: 12px 36px;
  background: #1677ff;
  color: #fff;
  border-radius: 0.2rem;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

#home-banner .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(22, 119, 255, .25);
}

/* 四个矩形控制按钮容器 */
.banner-timeline-controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 24px; /* 增加上边距，从14px增加到24px */
  max-width: 160px;
  margin-left: 0;
  margin-right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-20px);
}

/* JS加载完成后显示控制按钮 */
.banner-timeline-controls.banner-loaded {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.timeline-btn {
  position: relative;
  height: 6px;
  width: 40px;
  background: rgba(0, 0, 0, .25); /* 背景颜色调灰一点 */
  border: 0;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
}

.timeline-btn .timeline-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #79b0ff, #1677ff);
}

.timeline-btn.active .timeline-progress {
  animation: bannerProgress 5s linear forwards;
}

@keyframes bannerProgress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* 响应式 */
@media (max-width: 768px) {
  #home-banner h1 {
    font-size: 28px;
    font-family: 'AlimamaShuHeiTi-Bold', 'MiSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  }

  #home-banner .banner-desc {
    font-size: 16px;
  }

  .banner-timeline-controls {
    gap: 6px;
    max-width: 65%;
    margin-left: 0;
    margin-right: 0;
  }

  .timeline-btn {
    height: 8px;
    border-radius: 0;
  }
}

/* 新增：左对齐布局 */
#home-banner .section-content.banner-content-left {
  transform: translate(-50%, -50%);
  text-align: left;
}

#home-banner .banner-texts {
  max-width: 720px;
  margin-left: 0;
}

#home-banner .banner-texts .btn.btn-primary {
  margin-left: 0;
}

/* 调整：进度条更小，显示在按钮下方 */
.banner-timeline-controls {
  margin-top: 63px;
  max-width: 160px;
  margin-left: 0;
}

.timeline-btn {
  height: 6px;
  width: 40px;
  border-radius: 0;
}

.timeline-btn .timeline-progress {
  height: 100%;
}

/* 响应式：移动端进一步缩小 */
@media (max-width: 768px) {
  #home-banner .section-content.banner-content-left {
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 15px;
  }

  .banner-timeline-controls {
    margin-top: 20px; /* 与上面保持一致 */
    max-width: 200px; /* 增加宽度 */
    display: flex;
    justify-content: center;
    gap: 8px; /* 增加按钮间距 */
  }

  .timeline-btn {
    height: 8px;
    width: 40px;
    border-radius: 0;
    background: rgba(0, 0, 0, .25); /* 背景颜色调灰一点，与PC端一致 */
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .timeline-btn:hover {
    background: rgba(0, 0, 0, .35); /* hover状态也调整为更灰 */
  }

  .timeline-btn.active {
    background: rgba(0, 0, 0, .4); /* active状态也调整为更灰 */
  }

  .timeline-btn .timeline-progress {
    height: 100%;
    background: linear-gradient(90deg, #79b0ff, #1677ff); /* 使用与PC端一样的蓝色渐变 */
    border-radius: 2px;
    transition: width 0.3s ease;
  }

  /* 小屏幕设备进一步优化 */
  @media (max-width: 480px) {
    .banner-timeline-controls {
      max-width: 180px;
      gap: 6px;
      margin-top: 18px; /* 小屏幕稍微减少边距 */
    }

    .timeline-btn {
      width: 40px;
      height: 3px;
    }
  }
}

/* 超小屏幕设备优化 (iPhone SE等) */
@media (max-width: 375px) {
  .swiper.banner-cont {
    height: 40vh; /* 进一步减少超小屏幕高度 */
    min-height: 280px; /* 减少最小高度 */
  }

  .swiper.banner-cont h1 {
    font-size: 20px;
    margin-bottom: 10px;
    margin-left: 5px; /* 增加左外边距 */
  }

  .banner-desc {
    font-size: 13px;
    max-width: 260px;
    margin-bottom: 18px;
    margin-left: 5px; /* 增加左外边距 */
  }

  .swiper.banner-cont .section-content {
    padding: 15px 10px;
  }

  .btn.btn-primary {
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 0 !important; /* 移除圆角 */
  }

  .banner-text-label {
    font-size: 11px;
    padding: 3px 8px;
  }

  .banner-text-content {
    font-size: 12px;
  }
}

/* 大屏手机优化 (iPhone Plus等) */
@media (min-width: 414px) and (max-width: 768px) {
  .swiper.banner-cont {
    height: 50vh; /* 减少大屏手机高度 */
    min-height: 350px; /* 减少最小高度 */
  }

  .swiper.banner-cont h1 {
    font-size: 26px;
    margin-bottom: 14px;
    margin-left: 5px; /* 增加左外边距 */
  }

  .banner-desc {
    font-size: 15px;
    max-width: 300px;
    margin-left: 5px; /* 增加左外边距 */
  }

  .timeline-btn {
    width: 48px;
    height: 5px;
  }
}
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromLeftDelay {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromLeftSlow {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLineFromLeft {
  0% {
    opacity: 0;
    width: 0;
  }

  100% {
    opacity: 1;
    width: 80px;
  }
}

/* 轮播图内容动画类 */
.banner-content-animate .swiper.banner-cont h1 {
  animation: slideInFromLeftSlow 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.2s;
  opacity: 0;
  background: transparent;
}

.banner-content-animate .banner-desc {
  animation: slideInFromLeft 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.3s;
  opacity: 0;
  background: transparent;
}

.banner-content-animate .btn.btn-primary {
  animation: slideInFromLeftDelay 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.5s;
  opacity: 0;
  background: #1677ff;
}

/* 装饰线动画 */
.banner-content-animate .swiper.banner-cont h1::after {
  animation: slideInLineFromLeft 0.6s ease-out forwards;
  animation-delay: 0.8s;
  opacity: 1;
  width: 0;
  background: transparent;
}

/* 新增文本区域样式 */
.banner-text-area {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 12px;
}

.banner-text-label {
  background: linear-gradient(135deg, #1677ff, #0066ff);
  color: white;
  padding: 6px 12px;
  border-radius: 0.4rem;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(22, 119, 255, 0.3);
}

.banner-text-content {
  font-size: 18px;
  color: #333;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

/* 移动端样式调整 */
@media (max-width: 768px) {
  .banner-text-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
  }

  .banner-text-label {
    font-size: 11px;
    padding: 5px 10px;
  }

  .banner-text-content {
    font-size: 14px;
  }
}

/* 为新文本区域添加入场动画 */
.banner-content-animate .banner-text-area .banner-text-label {
  animation: slideInFromLeft 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s both;
  background: linear-gradient(135deg, #1677ff, #0066ff);
  opacity: 0;
}

.banner-content-animate .banner-text-area .banner-text-content {
  animation: slideInFromLeftDelay 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s both;
  background: transparent;
  opacity: 0;
}

/* 平板端适配 (769px - 1366px) - 覆盖iPad Pro横屏 */
@media (min-width: 769px) and (max-width: 1366px) {
  /* 轮播图容器高度调整 - 进一步减小 */
  .banner {
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
  }
  
  .banner {
    height: 220px !important;
    max-height: 220px !important;
  }
}

/* 大尺寸平板优化 (1025px - 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
  .banner {
    height: 220px !important;
    max-height: 220px !important;
  }
  
  .swiper.banner-cont {
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
  }
}

/* 仅在平板端隐藏轮播图波浪动画效果 */
@media (min-width: 769px) and (max-width: 1366px) {
  .wave-animation {
    display: none !important;
  }

  .wave-animation .wave {
    display: none !important;
  }
}@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromLeftDelay {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromLeftSlow {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLineFromLeft {
  0% {
    opacity: 0;
    width: 0;
  }

  100% {
    opacity: 1;
    width: 80px;
  }
}

/* 轮播图内容动画类 */
.banner-content-animate .swiper.banner-cont h1 {
  animation: slideInFromLeftSlow 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.2s;
  opacity: 0;
  background: transparent;
}

.banner-content-animate .banner-desc {
  animation: slideInFromLeft 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.3s;
  opacity: 0;
  background: transparent;
}

.banner-content-animate .btn.btn-primary {
  animation: slideInFromLeftDelay 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.5s;
  opacity: 0;
  background: #1677ff;
}

/* 装饰线动画 */
.banner-content-animate .swiper.banner-cont h1::after {
  animation: slideInLineFromLeft 0.6s ease-out forwards;
  animation-delay: 0.8s;
  opacity: 1;
  width: 0;
  background: transparent;
}

/* 新增文本区域样式 */
.banner-text-area {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 12px;
}

.banner-text-label {
  background: linear-gradient(135deg, #1677ff, #0066ff);
  color: white;
  padding: 6px 12px;
  border-radius: 0.4rem;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(22, 119, 255, 0.3);
}

.banner-text-content {
  font-size: 18px;
  color: #333;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

/* 移动端样式调整 */
@media (max-width: 768px) {
  .banner-text-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
  }

  .banner-text-label {
    font-size: 11px;
    padding: 5px 10px;
  }

  .banner-text-content {
    font-size: 14px;
  }
}

/* 为新文本区域添加入场动画 */
.banner-content-animate .banner-text-area .banner-text-label {
  animation: slideInFromLeft 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s both;
  background: linear-gradient(135deg, #1677ff, #0066ff);
  opacity: 0;
}

.banner-content-animate .banner-text-area .banner-text-content {
  animation: slideInFromLeftDelay 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s both;
  background: transparent;
  opacity: 0;
}

/* 平板端适配 (769px - 1366px) - 覆盖iPad Pro横屏 */
@media (min-width: 769px) and (max-width: 1366px) {
  .swiper.banner-cont,
  .banner {
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
  }
}

/* 大尺寸平板优化 (1025px - 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
  .swiper.banner-cont,
  .banner {
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
  }
}

/* 仅在平板端隐藏轮播图波浪动画效果 */
@media (min-width: 769px) and (max-width: 1366px) {
  .wave-animation {
    display: none !important;
  }

  .wave-animation .wave {
    display: none !important;
  }
}@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromLeftDelay {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromLeftSlow {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLineFromLeft {
  0% {
    opacity: 0;
    width: 0;
  }

  100% {
    opacity: 1;
    width: 80px;
  }
}

/* 轮播图内容动画类 */
.banner-content-animate .swiper.banner-cont h1 {
  animation: slideInFromLeftSlow 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.2s;
  opacity: 0;
  background: transparent;
}

.banner-content-animate .banner-desc {
  animation: slideInFromLeft 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.3s;
  opacity: 0;
  background: transparent;
}

.banner-content-animate .btn.btn-primary {
  animation: slideInFromLeftDelay 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.5s;
  opacity: 0;
  background: #1677ff;
}

/* 装饰线动画 */
.banner-content-animate .swiper.banner-cont h1::after {
  animation: slideInLineFromLeft 0.6s ease-out forwards;
  animation-delay: 0.8s;
  opacity: 1;
  width: 0;
  background: transparent;
}

/* 新增文本区域样式 */
.banner-text-area {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 12px;
}

.banner-text-label {
  background: linear-gradient(135deg, #1677ff, #0066ff);
  color: white;
  padding: 6px 12px;
  border-radius: 0.4rem;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(22, 119, 255, 0.3);
}

.banner-text-content {
  font-size: 18px;
  color: #333;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

/* 移动端样式调整 */
@media (max-width: 768px) {
  .banner-text-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
  }

  .banner-text-label {
    font-size: 11px;
    padding: 5px 10px;
  }

  .banner-text-content {
    font-size: 14px;
  }
}

/* 为新文本区域添加入场动画 */
.banner-content-animate .banner-text-area .banner-text-label {
  animation: slideInFromLeft 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s both;
  background: linear-gradient(135deg, #1677ff, #0066ff);
  opacity: 0;
}

.banner-content-animate .banner-text-area .banner-text-content {
  animation: slideInFromLeftDelay 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s both;
  background: transparent;
  opacity: 0;
}

/* 平板端适配 (769px - 1366px) - 覆盖iPad Pro横屏 */
@media (min-width: 769px) and (max-width: 1366px) {
  .swiper.banner-cont,
  .banner {
    height: 160px !important;
    min-height: 160px !important;
    max-height: 160px !important;
  }
}

/* 大尺寸平板优化 (1025px - 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
  .swiper.banner-cont,
  .banner {
    height: 160px !important;
    min-height: 160px !important;
    max-height: 160px !important;
  }
}

/* 仅在平板端隐藏轮播图波浪动画效果 */
@media (min-width: 769px) and (max-width: 1366px) {
  .wave-animation {
    display: none !important;
  }

  .wave-animation .wave {
    display: none !important;
  }
}@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromLeftDelay {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromLeftSlow {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLineFromLeft {
  0% {
    opacity: 0;
    width: 0;
  }

  100% {
    opacity: 1;
    width: 80px;
  }
}

/* 轮播图内容动画类 */
.banner-content-animate .swiper.banner-cont h1 {
  animation: slideInFromLeftSlow 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.2s;
  opacity: 0;
  background: transparent;
}

.banner-content-animate .banner-desc {
  animation: slideInFromLeft 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.3s;
  opacity: 0;
  background: transparent;
}

.banner-content-animate .btn.btn-primary {
  animation: slideInFromLeftDelay 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.5s;
  opacity: 0;
  background: #1677ff;
}

/* 装饰线动画 */
.banner-content-animate .swiper.banner-cont h1::after {
  animation: slideInLineFromLeft 0.6s ease-out forwards;
  animation-delay: 0.8s;
  opacity: 1;
  width: 0;
  background: transparent;
}

/* 新增文本区域样式 */
.banner-text-area {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 12px;
}

.banner-text-label {
  background: linear-gradient(135deg, #1677ff, #0066ff);
  color: white;
  padding: 6px 12px;
  border-radius: 0.4rem;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(22, 119, 255, 0.3);
}

.banner-text-content {
  font-size: 18px;
  color: #333;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

/* 移动端样式调整 */
@media (max-width: 768px) {
  .banner-text-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
  }

  .banner-text-label {
    font-size: 11px;
    padding: 5px 10px;
  }

  .banner-text-content {
    font-size: 14px;
  }
}

/* 为新文本区域添加入场动画 */
.banner-content-animate .banner-text-area .banner-text-label {
  animation: slideInFromLeft 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s both;
  background: linear-gradient(135deg, #1677ff, #0066ff);
  opacity: 0;
}

.banner-content-animate .banner-text-area .banner-text-content {
  animation: slideInFromLeftDelay 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s both;
  background: transparent;
  opacity: 0;
}

/* 平板端适配 (769px - 1366px) - 覆盖iPad Pro横屏 */
@media (min-width: 769px) and (max-width: 1366px) {
  .swiper.banner-cont,
  .banner {
    height: 160px !important;
    min-height: 160px !important;
    max-height: 160px !important;
  }
}

/* 大尺寸平板优化 (1025px - 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
  .swiper.banner-cont,
  .banner {
    height: 160px !important;
    min-height: 160px !important;
    max-height: 160px !important;
  }
}

/* 仅在平板端隐藏轮播图波浪动画效果 */
@media (min-width: 769px) and (max-width: 1366px) {
  .wave-animation {
    display: none !important;
  }

  .wave-animation .wave {
    display: none !important;
  }
}@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromLeftDelay {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromLeftSlow {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLineFromLeft {
  0% {
    opacity: 0;
    width: 0;
  }

  100% {
    opacity: 1;
    width: 80px;
  }
}

/* 轮播图内容动画类 */
.banner-content-animate .swiper.banner-cont h1 {
  animation: slideInFromLeftSlow 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.2s;
  opacity: 0;
  background: transparent;
}

.banner-content-animate .banner-desc {
  animation: slideInFromLeft 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.3s;
  opacity: 0;
  background: transparent;
}

.banner-content-animate .btn.btn-primary {
  animation: slideInFromLeftDelay 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.5s;
  opacity: 0;
  background: #1677ff;
}

/* 装饰线动画 */
.banner-content-animate .swiper.banner-cont h1::after {
  animation: slideInLineFromLeft 0.6s ease-out forwards;
  animation-delay: 0.8s;
  opacity: 1;
  width: 0;
  background: transparent;
}

/* 新增文本区域样式 */
.banner-text-area {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 12px;
}

.banner-text-label {
  background: linear-gradient(135deg, #1677ff, #0066ff);
  color: white;
  padding: 6px 12px;
  border-radius: 0.4rem;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(22, 119, 255, 0.3);
}

.banner-text-content {
  font-size: 18px;
  color: #333;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

/* 移动端样式调整 */
@media (max-width: 768px) {
  .banner-text-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
  }

  .banner-text-label {
    font-size: 11px;
    padding: 5px 10px;
  }

  .banner-text-content {
    font-size: 14px;
  }
}

/* 为新文本区域添加入场动画 */
.banner-content-animate .banner-text-area .banner-text-label {
  animation: slideInFromLeft 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s both;
  background: linear-gradient(135deg, #1677ff, #0066ff);
  opacity: 0;
}

.banner-content-animate .banner-text-area .banner-text-content {
  animation: slideInFromLeftDelay 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s both;
  background: transparent;
  opacity: 0;
}

/* 平板端适配 (769px - 1366px) - 覆盖iPad Pro横屏 */
@media (min-width: 769px) and (max-width: 1366px) {
  .swiper.banner-cont,
  .banner {
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
  }
}

/* 大尺寸平板优化 (1025px - 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
  .swiper.banner-cont,
  .banner {
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
  }
}

/* 仅在平板端隐藏轮播图波浪动画效果 */
@media (min-width: 769px) and (max-width: 1366px) {
  .wave-animation {
    display: none !important;
  }

  .wave-animation .wave {
    display: none !important;
  }
}