/* 加载 */
.load {
  /* display: none; */
  width: 100vw;
  height: 110vh;
  position: fixed;
  top: 0;
  z-index: 999999;
  background-color: #fff;
}
.loader {
  width: 60%;
  margin: 0 auto;
  --col1: rgba(228, 19, 141, 0.925);
  --col2: rgb(255, 179, 80);
  font-weight: 600;
  perspective: 800px;
  position: relative;
}

.loader .text::before {
  color: var(--col2);
  animation-delay: 2s;
}

.loader .text::after {
  color: var(--col2);
}

.loader .text {
  animation: anim 3s linear infinite, move 10s linear infinite 1s;
  color: transparent;
  background-image: linear-gradient(90deg, var(--col1) 0%, var(--col2) 100%);
  background-clip: text;
  background-size: 100%;
  background-repeat: no-repeat;
  transform: skew(5deg, -5deg);
  -webkit-background-clip: text;
  position: relative;
  font-size: 0.5rem;
  text-align: center;
  margin-top: 3rem;
}

@keyframes anim {
  0%,
  100% {
    text-shadow: 2px 0px 2px rgba(179, 158, 158, 0.5);
  }

  50% {
    background-size: 0%;
    background-position-x: left;
    text-shadow: 2px 10px 6px rgba(179, 158, 158, 1);
  }
}

@keyframes move {
  50% {
    translate: 0px 0px;
    rotate: x 60deg;
    transform: skew(-5deg, 5deg);
  }
}

@keyframes dotMove {
  0%,
  100% {
    translate: -60px 300px;
  }

  50% {
    translate: 160px -250px;
    scale: 0.5;
    opacity: 0.85;
  }
}

.banner {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

/* 视频结束后隐藏视频容器 */
.banner.video-ended .video {
  display: none !important;
  visibility: hidden;
}

.banner .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover; /* 确保图片铺满无拉伸 */
  background-position: center; /* 图片居中显示 */
  z-index: 1;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* 平滑过渡曲线 */
  will-change: opacity, background-image; /* 告诉浏览器提前优化渲染 */
  backface-visibility: hidden; /* 防止3D变换闪烁 */
  -webkit-backface-visibility: hidden;
}

/* 轮播箭头样式（替换指示点） */
.banner .carousel-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 0.5rem;
  z-index: 10;
  pointer-events: none; /* 不遮挡图片滑动 */
}

.banner .carousel-arrow {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: #ff7f00; /* 高对比度橙色，适配各类背景 */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.3; /* 初始半透明 */
  pointer-events: auto; /* 允许点击 */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* 增强辨识度 */
}

/* 轮播箭头样式（使用图片箭头，替换指示点） */
.banner .carousel-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 0.8rem; /* 左右间距，避免箭头贴边 */
  z-index: 10;
  pointer-events: none; /* 不遮挡图片滑动和点击 */
}

.banner .carousel-arrow {
  width: 0.6rem;
  height: 0.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.3; /* 初始半透明（鼠标不在图片区域） */
  pointer-events: auto; /* 允许箭头点击 */
  /* 箭头图片背景处理 */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* 增加半透明背景板，提升任何图片背景下的辨识度 */
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2); /* 阴影增强轮廓 */
}

/* 上一张箭头（使用指定图片路径） */
.banner .carousel-arrow.prev {
  background-image: url('/static/img/index/swiper-pre.png');
}

/* 下一张箭头（使用指定图片路径） */
.banner .carousel-arrow.next {
  background-image: url('/static/img/index/swiper-next.png');
}

/* 鼠标悬浮图片区域，箭头显亮（完全不透明+轻微放大） */
.banner.video-ended:hover .carousel-arrow {
  opacity: 1;
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(255, 127, 0, 0.5); /* 橙色发光，进一步提升辨识度 */
}

/* 箭头点击/hover 强化效果 */
.banner .carousel-arrow:hover {
  background-color: #fff; /* 纯白背景板，让箭头图片更清晰 */
  box-shadow: 0 0 20px rgba(255, 127, 0, 0.7);
}

/* 移除原有指示点样式（不再使用） */
.banner .carousel-indicators {
  display: none;
}

/* 滑动提示 */
.banner .swipe-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: white;
  font-size: 0.16rem;
  opacity: 0.8;
}

.banner .logo {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.banner .logo * {
  fill: rgba(255, 255, 255, 0.2);
}

.banner .logo.play {
  animation: animate-banner-logo 2s forwards ease;
}

@keyframes animate-banner-logo {
  0% {
    bottom: 0;
    transform: translateY(0%);
  }

  100% {
    bottom: 50%;
    transform: translateY(30%);
  }
}

.banner .text {
  position: absolute;
  bottom: 50%;
  left: 0;
  width: 100%;
  z-index: 3;
}

.banner .text .content {
  opacity: 0;
  transform: translateY(300%) scale(0);
  display: inline-block;
}

.banner .text.play .content {
  animation: animate-banner-text 2s forwards ease;
}

@keyframes animate-banner-text {
  0% {
    opacity: 0;
    transform: translateY(400%) scale(1);
  }

  100% {
    opacity: 1;
    transform: translateY(300%) scale(1);
  }
}

.banner .text h2 {
  font-size: 0.65rem;
  font-family: HYYakuHei;
  text-shadow: 0px 4px 0px rgba(12, 30, 77, 0.51);
}

.banner .text h3 {
  font-family: HYYakuHei;
  font-size: 0.25rem;
  text-shadow: 0px 1px 0px rgba(12, 30, 77, 0.51);
  font-weight: normal !important;
}

.banner .text h2,
.banner .text h3 {
  padding-left: 0.87rem;
  color: #fff;
}

.banner .video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.banner .video::after {
  position: absolute;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.15;
  width: 100%;
  height: 100%;
  content: '';
}

.banner .video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .banner .section-down-arrow {
  bottom: 1rem !important;
} */

.modular1 {
  height: 8.69rem;
  position: relative;
}

.header_title_box {
  width: fit-content;
  text-align: center;
  position: relative;
  font-weight: normal;
  font-size: 0.48rem;
  color: #000000;
  padding: 0.74rem 0 0.29rem;
  margin: auto;
}

.exclusive1_style {
  padding: 1.06rem 0 0.53rem !important;
  margin: auto;
}

.exclusive2_style {
  padding: 1.28rem 0 0.38rem !important;
  margin: auto;
}

.header_title_box .header_title_label {
  letter-spacing: 4px;
}

.modular1 ul {
  /* margin: 0 2.2rem; */

  position: relative;
  display: flex;
}

.modular1 .list .modular1_title {
  font-size: 0.5rem;
  color: #ffffff;
  margin: 0.78rem 0;
  text-align: center;
}

.modular1 ul::after {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  content: '';
  /* border-right: 1px solid rgba(255, 255, 255, 0.5); */
}

/* .modular1 ul::before {
    height: 3.4rem;
    width: 0.06rem;
    background: #F77A0C;
    position: absolute;
    content: '';
    right: 0;
    bottom: 1.3rem;
    z-index: 3;
} */

.modular1 li {
  font-size: 0.19rem;
  width: 3.65rem;
  /* float: left; */
  padding: 0.47rem;
  box-sizing: border-box;
  transition: all 1s;
  height: 100%;
  position: relative;
  cursor: url(/static/img/mouse.svg), auto;
  display: flex;
  align-items: center;
}

.modular1 li::before,
.modular1 li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  width: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.modular1 li::before {
  transition: height 1s;
  height: 0.62rem;
  bottom: 0;
  z-index: 3;
  width: 0;
  /* margin-left: calc(-0.06rem + 1px); */
  border-left: 0.06rem solid #f77a0c;
  transform: translate(calc(-100% + 3px), 0);
}

.modular1 li.active::before {
  height: 0rem;
}

.modular1 li.active {
  width: 5.32rem;
}

.modular1 .list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background: rgba(0, 17, 50, 0.4);
}

.modular1 .list .details {
  width: 5.32rem;
  /* position: absolute; */
  top: 4.4rem;
  z-index: 2;
}

.modular1 .list .wrap {
  height: 100%;
}
.modular1 li.active .title {
  font-size: 0.44rem;
}

.modular1 .title {
  font-size: 0.29rem;
  /* margin-bottom: 1em; */
}

.modular1 .item_detail_line {
  width: 0.37rem;
  height: 0.04rem;
  margin: 0.25rem 0 0.17rem;
  background: #f8650d;
}

.modular1 .sub_title {
  font-size: 0.19rem;
  /* margin-bottom: 1em; */
  font-weight: 500;
}

.modular1 .hide {
  overflow: hidden;
  width: 3.15rem;
}

.modular1 .text {
  line-height: 1.8;
}

.modular1 .text,
.modular1 .item_detail_line,
.modular1 .mores {
  transform: translate(-101%, 0);
  transition: all 1s;
}

.modular1 li .text {
  /* height: 10.8em; */
  overflow: hidden;
  font-weight: 100;
}

.modular1 .more {
  margin-top: 0.2rem;
  display: inline-block;
  /* padding: 0.5em 2em; */
  /* background: #fff; */
  border-radius: 0.05rem;
  color: #fff;
  position: relative;
  padding-right: 1em;
  margin-right: 2em;
}

.modular1 .more span {
  padding-bottom: 0.2em;
  position: relative;
  display: inline-block;
  font-weight: 500;
}

.modular1 .more span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 1s;
  width: 100%;
  border-bottom: 1px solid #fff;
}

.modular1 .more::after {
  content: '';
  display: block;
  width: 0.07rem;
  height: 0.07rem;
  border: 0.02rem solid #fff;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  animation: animate-mark 2s infinite ease;
}

@keyframes animate-mark {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }

  100% {
    opacity: 1;
    transform: translate(0.1rem, 0);
  }
}

.modular1 .more:hover {
  /* background: #023886; */
  color: #fff !important;
}

.modular1 li.active .text,
.modular1 li.active .item_detail_line,
.modular1 li.active .mores {
  transform: translate(0, 0);
}

.modular1 .bgs {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.modular1 .bgs .item {
  position: absolute;
  width: 100%;
  height: 100%;
  background: no-repeat center center;
  background-size: cover;
  opacity: 1;
  transition: all 1s;
}

.modular1 .bgs .item.active {
  opacity: 1;
  z-index: 1;
  animation: modular1-bg 1s;
}

@keyframes modular1-bg {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.modular2 {
  position: relative;
  height: 6.76rem;
}

.modular2 .bgs {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.modular2 .bgs .item {
  position: absolute;
  width: 100%;
  height: 100%;
  background: no-repeat center center;
  background-size: cover;
  opacity: 1;
  transition: all 1s;
}

.modular2 .bgs .item.active {
  opacity: 1;
  z-index: 1;
  animation: modular2-bg 1s;
}

@keyframes modular2-bg {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
.modular2 .list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}
.modular2 .list .wrap {
  height: 100%;
}
.modular2 ul {
  height: 100%;
  position: relative;
  display: flex;
}

.modular2 li {
  font-size: 0.16rem;
  width: 5.08rem;
  padding: 0.4rem;
  box-sizing: border-box;
  transition: all 1s;
  height: 100%;
  position: relative;
  background: rgba(0, 17, 50, 0.5);
  height: 2.71rem;
  margin-top: 4.05rem;
  margin-left: 0.2rem;
  overflow: hidden;
}

.modular2 .details {
  position: absolute;
  top: 0.95rem;
  z-index: 2;
  width: 100%;
  background: rgba(0, 17, 50, 0.5);
  height: 1.76rem;
  transition: all 0.5s;
  padding: 0.5rem;
  box-sizing: border-box;
}
.modular2 li.active .details {
  top: 0rem;
  height: 2.71rem;
}

.modular2 .t1 {
  font-size: 0.32rem;
  color: #fff;
}
.modular2 .t2 {
  font-size: 0.22rem;
  color: #fff;
  padding-top: 0.2rem;
  font-weight: 100;
}
.modular2 .t3 {
  font-size: 0.18rem;
  color: #fff;
  font-weight: 100;
  padding-top: 1.64rem;
  transition: all 1s;
}
.modular2 li.active .t3 {
  padding-top: 0.6rem;
  transition: all 1s;
}
.modular2 .hide {
  overflow: hidden;
}
.modular2 .text {
  text-align: center;
  padding-top: 0.4rem;
}
.modular2 .text h2 {
  font-size: 0.5rem;
  color: #fff;
}

.modular2 .text h3 {
  color: #fff;
  font-size: 0.3rem;
  font-weight: 100;
  margin-top: 0.24rem;
}
.modular3 {
  height: 6.8rem;
  background-size: cover;
  font-size: 0.4rem;
  text-align: center;
  padding-top: 3rem;
}

.modular3 h2 {
  margin-bottom: 0.5em;
  color: #fff;
}

.modular3 h3 {
  margin-bottom: 0.5em;
  color: #fff;
  font-size: 0.3rem;
  font-weight: 400;
}

.modular3 .btn {
  font-size: 0.12rem;
  color: #fff;
  margin-top: 0.2rem;
  display: inline-block;
  padding: 0.5em 2em;
  background: #034184;
  border-radius: 0.05rem;
  transition: all 0.5s;
  border: 1px solid #ffffff;
}

@media screen and (min-width: 768px) {
  .corporate_news {
    padding: 0 2.38rem;
  }
  .corporate_news .item_news,
  .corporate_news .item_news_list {
    width: 4.59rem;
    height: 4.76rem;
    border-radius: 10px;
  }
  .corporate_news .item_news .item_news_img {
    width: 100%;
    height: 2.58rem;
    border-radius: 10px;
  }
  .business_ecology {
    width: 100%;
    padding: 0 2.38rem;
  }
  .business_ecology .main_ecology .main_ecology_img {
    width: 8.07rem;
    height: 5.14rem;
    border-radius: 10px;
  }

  .carousel-item img.lazy-img,
  .item_news_img.lazy-img,
  .main_ecology_img.lazy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .business_ecology .ecology_list .item_ecology {
    width: 4.53rem;
    border-radius: 10px;
  }

  .header_title_box .header_title_more {
    position: absolute;
    right: 2.64rem;
    bottom: 0.29rem;
    width: 0.92rem;
    height: 0.33rem;
    line-height: 0.33rem;
    border-radius: 12px;
    border: 1px solid #000000;
    font-weight: normal;
    font-size: 0.16rem;
    color: #000000;
  }
  .banner_box {
    width: 100%;
    padding: 0 2.38rem;
  }

  .preview_container {
    height: 10.7rem !important;
    min-height: 10.7rem;
    width: 100%;
    overflow: hidden; /* 隐藏内容溢出 */
    position: relative; /* 为内部元素定位提供基准 */
  }

  .preview_container .preview_content {
    position: absolute; /* 脱离文档流，避免加载时影响布局 */
    top: 0;
    left: 0;
    object-fit: cover; /* 保持比例填充容器 */
  }

  .dream_box {
    /* padding: 0 2.75rem 1.78rem; */
    padding-bottom: 1.78rem;
    margin: auto;
  }

  .modular3 .btn:hover {
    background: #fff;
  }

  .modular1 ul {
    height: 5.67rem;
  }
  .modular1 li {
    background: none !important;
  }

  .modular2 li {
    background: none !important;
  }
  .indexWrap {
    margin: auto !important;
    width: calc(100% - 4.38rem) !important;
    max-width: calc(100% - 4.38rem) !important;
  }
}

@media screen and (max-width: 768px) {
  .corporate_news .item_news,
  .corporate_news .item_news_list {
    width: 100%;
  }
  .corporate_news .item_news .item_news_img {
    width: 100%;
    height: 258px;
  }
  .header_title_box .header_title_more {
    position: absolute;
    right: 0;
    bottom: 0.29rem;
    width: 0.92rem;
    height: 0.33rem;
    line-height: 0.33rem;
    border-radius: 12px;
    border: 1px solid #000000;
    font-weight: normal;
    font-size: 0.16rem;
    color: #000000;
  }
  .banner_box {
    width: 100%;
  }

  .indexWrap {
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .modular1 .title {
    font-size: 20px;
  }

  .modular1 li.active .sub_title,
  .modular1 li .sub_title {
    font-size: 16px;
  }

  .modular1 .list .modular1_title {
    position: absolute;
    top: 0.78rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 3;
  }

  .modular1 li::before {
    border-left: none;
  }

  .modular1 li,
  .modular2 li,
  .modular3 .btn {
    font-size: 14px;
  }

  .modular1 {
    height: auto;
    /* margin: 0.6rem 0 1rem 0; */
  }
  .modular2 {
    height: 440px;
    margin: 0;
  }

  .modular1 .bgs {
    display: none;
  }

  .modular2 .bgs {
    display: none;
  }

  .modular1 ul {
    margin: 0;
    display: block;
  }
  .modular2 .wrap {
    width: 100% !important;
    max-width: 100% !important;
  }
  .modular2 ul {
    margin: 0;
    display: block;
  }

  .modular1 li {
    background-size: cover;
    width: 100% !important;
    float: none;
    padding: 32px;
  }

  .modular2 li {
    background-size: cover;
    width: 100% !important;
    float: none;
    padding: 32px;
    margin-top: 0px !important;
    margin-left: 0 !important;
    /* height: 150px; */
    padding: 20px;
  }
  .modular2 .details {
    background: none;
    top: 0rem !important;
  }
  .modular1 .list .details,
  .modular1 .list {
    position: static;
  }

  .modular1 .list .details {
    position: relative;
    top: 0;
  }

  .modular1 li .text,
  .modular1 li .item_detail_line,
  .modular1 li .mores {
    transform: translate(0, 0);
  }

  .modular1 .hide {
    width: 90%;
  }

  .business_ecology .main_ecology .main_ecology_img {
    width: 100%;
    height: 5.14rem;
  }

  .business_ecology .main_ecology .main_ecology_desc {
    padding: 0.84rem;
  }

  .business_ecology .ecology_list .item_ecology {
    width: 100%;
    border-radius: 0;
  }
  .dream_box {
    justify-content: center;
    margin-bottom: 50px;
  }
}

.corporate_news {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.corporate_news .item_news {
  background: #f6f6f6;
  position: relative;
  cursor: pointer;
}

.corporate_news .active-new {
  background: #f8650d !important;
}

.corporate_news .active-new .item_new_desc,
.corporate_news .active-new .item_news_time {
  color: #ffffff !important;
}

.corporate_news .item_news .item_new_desc {
  width: 100%;
  padding: 0.43rem 0.43rem 0;
  font-size: 0.21rem;
  color: #000000;
}

.corporate_news .item_news .item_news_time {
  font-size: 0.16rem;
  color: #656565;
  width: 100%;
  text-align: right;
  padding: 0.61rem 0.43rem 0.54rem;
}

.corporate_news .item_news_list {
  background: #f6f6f6;
  padding: 0.2rem 0.44rem;
  box-sizing: border-box;
}

.corporate_news .item_news_list .news_new {
  width: 100%;
  padding: 0.13rem 0;
  border-bottom: 1px solid #999;
  cursor: pointer;
}

.corporate_news .item_news_list .news_new:last-child {
  border-bottom: none !important;
}

.corporate_news .item_news_list .news_new .news_new_con {
  font-size: 0.21rem;
  color: #000000;
  margin-bottom: 0.12rem;
  height: 0.49rem;
  line-height: 0.24rem;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  white-space: normal;
  /* height: 78rpx; */
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.corporate_news .item_news_list .news_new .news_new_time {
  text-align: right;
  font-size: 0.16rem;
  color: #656565;
}

.business_ecology {
  width: 100%;
}

.business_ecology .main_ecology {
  width: 100%;
  display: flex;
  align-items: center;
  background: #f6f6f6;
  border-radius: 10px;
  margin-bottom: 0.29rem;
  flex-wrap: wrap;
}

.business_ecology .main_ecology .main_ecology_desc {
  flex: 1;
  width: 100%;
  padding-left: 0.84rem;
  padding-right: 0.88rem;
}

.business_ecology .main_ecology .main_ecology_desc .main_ecology_title {
  font-size: 0.37rem;
  color: #000000;
}

.business_ecology .main_ecology .main_ecology_desc .ecology_active {
  width: 0.66rem;
  height: 0.04rem;
  background: #f8650d;
  margin: 0.18rem 0;
}

.business_ecology .main_ecology .main_ecology_desc .ecology_desc {
  font-size: 0.26rem;
  color: #000000;
  margin-bottom: 0.68rem;
}

.business_ecology .main_ecology .main_ecology_desc .main_ecology_more {
  font-size: 0.26rem;
  color: #f8650d;
}

.business_ecology .ecology_list {
  width: 100%;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  gap: 0.3rem;
}

.business_ecology .ecology_list .item_ecology {
  padding-top: 4.43rem;
  padding-bottom: 0.5rem;
  background: #f6f6f6;
  overflow: hidden;
  position: relative;
  background: no-repeat center center;
  background-size: cover;
}

.business_ecology .ecology_list .item_ecology .item_info {
  /* position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  margin: auto; */
  text-align: center;
}

.business_ecology .ecology_list .item_ecology .item_info .item_info_title {
  font-size: 0.37rem;
  color: #ffffff;
  margin-bottom: 0.51rem;
}
.business_ecology .ecology_list .item_ecology .item_info .item_info_more {
  font-size: 0.26rem;
  color: #ffffff;
}

.vision_box {
  width: 100%;
}

.dream_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: fit-content;
}

.dream_box .item_dream {
  display: flex;
  align-items: center;
}

.dream_box .item_dream .item_dream_img {
  width: 2.35rem;
  height: 2.35rem;
}

.dream_box .item_dream:nth-child(1) .item_dream_con {
  width: 4.2rem;
  margin-left: 0.2rem;
}

.dream_box .item_dream:nth-child(2) .item_dream_con {
  width: 3.72rem;
  margin-left: 0.17rem;
}

.dream_box .item_dream .item_dream_con .item_dream_title {
  font-size: 0.2rem;
  font-weight: bold;
  color: #000000;
}

.dream_box .item_dream .item_dream_con .item_dream_line {
  width: 0.46rem;
  height: 0.03rem;
  margin: 0.1rem 0 0.14rem;
  background: #f8650d;
}

.dream_box .item_dream .item_dream_con .item_dream_label {
  font-size: 0.16rem;
  color: #000000;
  line-height: 0.3rem;
}

.banners-container {
  gap: 1.19rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.24rem;
}

.banner_box .preview_img_box {
  width: 100%;

  position: relative;
  border-radius: 10rpx;
  overflow: hidden;
  margin-bottom: 0.2rem;
  backface-visibility: hidden;
  transform: translateZ(0); /* 启用GPU加速，减少动画卡顿 */
}

.banner_box .preview_content {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.banner_box .preview_img_box .preview_container {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner_box .preview_img_box .preview_mask {
  width: 100%;
  height: 0.99rem;
  line-height: 0.99rem;
  padding: 0 0.48rem;
  background: rgba(0, 0, 0, 0.4);
  font-size: 32px;
  color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.banner_box .preview_img_box .preview_mask a,
.banner_box .preview_img_box .preview_mask a:hover {
  color: #ffffff !important;
}

.banner_box .swiper_box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner_box .swiper_box .swiper_pre,
.banner_box .swiper_box .swiper_next {
  width: 0.59rem;
  height: 0.59rem;
  margin: 0 0.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner_box .swiper_box .swiper_con::-webkit-scrollbar {
  display: none;
}

.banner_box .swiper_box .swiper_con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 7.91rem;
  overflow-x: auto;
  gap: 0.15rem;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 0.2rem 0; /* 增加上下内边距，为缩放留出空间 */
}

.banner_box .swiper_box .carousel-item {
  max-width: 50%;
  width: auto;
  height: 1.9rem;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  scroll-snap-align: center;
  position: relative;
  z-index: 1;
  padding: 2px;
  cursor: pointer;
  margin: 0 0.05rem;
}

.banner_box .swiper_box .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.banner_box .swiper_box .carousel-item.video-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--background) center center no-repeat;
  background-size: cover;
  width: 0.71rem;
  height: 0.71rem;
}

.banner_box .swiper_box .carousel-item-active {
  transform: scale(1.15);
  z-index: 10;
  /* 增加选中项的外边距，确保与前后元素的间距 */
  margin: 0 0.15rem;
}

.banner_box .swiper_box .carousel-item-active img {
  transform: scale(1.05);
}

/*.modular1 .sub_title{font-size: 0.24rem;}
.modular1 li .text,.modular1 .mores{font-size: 0.16rem;}*/

@media screen and (max-width: 768px) {
  .banner {
    height: 40vh;
  }
  .banner .text {
    bottom: 85%;
    left: -10%;
  }
  .mbx {
    left: 30px;
  }
  .banner_box .swiper_box .carousel-item {
    max-width: 50%;
    height: 1.9rem;
  }
}
