.index-wrap {
  max-width: 1536px;
  display: block;
  width: 86%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 999px) {
  .phone-hide {
    display: none !important;
  }
}
@media (min-width: 1000px) {
  .pc-hide {
    display: none !important;
  }
}

.index-banner {
  --duration: 7s;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.index-banner:hover .index-banner-arrow {
  opacity: 1;
}

.index-banner .index-banner-swiper .swiper-slide {
  position: relative;
}

.index-banner .index-banner-swiper .swiper-slide .pic img {
  display: block;
  width: 100%;
  height: auto;
  /* height: 100%; */

  /* max-height: 100vh; */
  /* object-fit: cover; */
}
.index-banner .index-banner-swiper .swiper-slide .text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  /* top: 20.42253521%; */
  top: 17.72%;
}
.index-banner .index-banner-swiper .swiper-slide .text .slide-title {
  font-weight: 600;
  /* font-size: clamp(30px, 2.5391vw, 65px); */
  font-size: clamp(30px, 2.1875vw, 56px);
  color: #3f496a;
  line-height: 1;
  margin-bottom: 18px;
  text-align: center;
}
.index-banner .index-banner-swiper .swiper-slide .text .slide-desc {
  font-weight: 400;
  /* font-size: 24px; */
  /* font-size: clamp(20px, 1.1719vw, 30px); */
  font-size: clamp(20px, 1.0156vw, 26px);
  color: #3f496a;
  text-align: center;
}

.index-banner .index-banner-swiper .swiper-slide .text .slide-desc span:not(:last-child)::after {
  content: "|";
  vertical-align: text-top;
  color: #3f496a;
  /* font-size: clamp(14px, 1.25vw, 24px); */
  font-size: clamp(14px, 0.8594vw, 22px);
  margin-left: clamp(10px, 1.5625vw, 30px);
  margin-right: clamp(10px, 1.5625vw, 30px);
}
.index-banner .index-banner-swiper .swiper-slide .text .slide-more {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  /* background: #202020; */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  user-select: none;
  cursor: pointer;
  transition: var(--index-transition);
  font-weight: 400;
  /* font-size: clamp(20px, 1.1979vw, 23px); */
  font-size: clamp(18px, 0.7813vw, 20px);
  /* color: #ffffff; */
  color: #3f496a;
  line-height: 1;
  /* margin-top: clamp(20px, 2.6042vw, 50px); */
  margin-top: clamp(20px, 1.9531vw, 50px);
}

.index-banner .index-banner-swiper .swiper-slide .text .slide-more .icon {
  width: 21px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  transition: var(--index-transition);
}

.index-banner .index-banner-swiper .swiper-slide .text .slide-more .icon img {
  display: block;
  max-width: 100%;
  height: auto;
}

.index-banner .index-banner-swiper .swiper-slide .text .slide-more:hover .icon {
  transform: translateX(5px);
}

.index-banner .index-banner-swiper .index-banner-pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-banner .index-banner-swiper .index-banner-pagination .swiper-pagination-bullet {
  margin-left: 0;
  opacity: 1;
  flex-shrink: 0;
  /* width: 150px; */
  width: clamp(45px, 7.8125vw, 150px);
  height: 3px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.index-banner .index-banner-swiper .index-banner-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.8);
}
.index-banner .index-banner-swiper .index-banner-pagination .swiper-pagination-bullet .bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  /* background-color: #fefefe; */
  background-color: var(--main);
}
.index-banner .index-banner-swiper .index-banner-pagination .swiper-pagination-bullet:not(:last-child) {
  margin-right: 5px;
}
.index-banner .index-banner-swiper .index-banner-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .bar {
  animation: bannerAnimate var(--duration) linear;
}
.index-banner .index-banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border: none;
  outline: none;
  transition: var(--index-transition);
  opacity: 0;
  width: 48px;
  height: 48px;
  background: #26262966;
  backdrop-filter: blur(16px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  cursor: pointer;
}

.index-banner .index-banner-arrow img {
  display: block;
  width: auto;
  height: auto;
  max-width: 50%;
  max-height: 50%;
  object-fit: contain;
}

@media (hover: hover) {
  .index-banner .index-banner-arrow:hover {
    background-color: #2626294d;
  }
}

.index-banner .index-banner-arrow.index-banner-prev {
  left: 40px;
}
.index-banner .index-banner-arrow.index-banner-next {
  right: 40px;
}
@keyframes bannerAnimate {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.index-section-title {
  font-size: 36px;
  font-weight: 600;
  color: #040404;
  line-height: 1;
  text-align: left;
}

.index-product-list {
  margin-top: 20px;
  /* margin-top: clamp(35px, 3.6458vw, 70px); */
}
.index-product-list .product-card-item {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 31.4583vw;
  max-height: 604px;
  position: relative;
  z-index: 10;
}

@media (hover: hover) {
  .index-product-list .product-card-item:hover .item-wrap .pic img {
    transform: scale(1.05);
  }
}

.index-product-list .product-card-item .section-bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
  width: 100vw;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #f8f8f8;
  border-radius: 0;
}

.index-product-list .product-card-item.card-item1 .section-bg {
  background-color: #ffe2d0;
}

.index-product-list .product-card-item:not(:last-child) {
  margin-bottom: 20px;
}
.index-product-list .product-card-item .item-wrap {
  display: flex;
  align-items: center;
  height: 100%;
  column-gap: clamp(30px, 3.125vw, 60px);
  overflow: hidden;
}
.index-product-list .product-card-item .item-wrap .text {
  width: 38.54166667%;
  flex-shrink: 0;
  padding-left: 10px;
  padding-right: 10px;
}
.index-product-list .product-card-item .item-wrap .text .text-title {
  font-weight: 600;
  /* font-size: clamp(24px, 2.1875vw, 42px); */
  font-size: clamp(24px, 1.8229vw, 35px);
  color: #040404;
  line-height: 1;
}
.index-product-list .product-card-item .item-wrap .text .text-desc {
  /* font-size: clamp(18px, 1.25vw, 24px); */
  font-weight: normal;
  font-size: clamp(18px, 1.0417vw, 20px);
  color: rgba(4, 4, 4, 0.8);
  line-height: 1;
  margin-top: clamp(20px, 1.5625vw, 30px);
}
.index-product-list .product-card-item .item-wrap .text .text-btn {
  width: 142px;
  height: 40px;
  background: #202020;
  /* border-radius: 17px; */
  border-radius: var(--global-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  cursor: pointer;
  font-weight: normal;
  font-size: 16px;
  color: #ffffff;
  line-height: 1;
  margin-top: clamp(30px, 5.5208vw, 106px);
  transition: var(--index-transition);
}
.index-product-list .product-card-item .item-wrap .text .text-btn:hover {
  background: rgba(32, 32, 32, 0.8);
}
.index-product-list .product-card-item .item-wrap .pic {
  width: 52.08333333%;
  flex-shrink: 0;
  margin-left: auto;
}
.index-product-list .product-card-item .item-wrap .pic img {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  transition: var(--index-transition);
}
/* 推荐信息区域 */
.index-recommend {
  padding-top: 58px;
  /* padding-bottom: 50px; */
  padding-bottom: clamp(30px, 2.6042vw, 50px);
  background-color: #fff;
}
.index-recommend .index-section-title {
  margin-bottom: 54px;
}
.index-recommend .recommend-card {
  display: block;
  border-radius: var(--global-radius);
  overflow: hidden;
  position: relative;
  background-color: #f8f8f8;
}
.index-recommend .recommend-card.card-full .pic {
  padding-bottom: 34.765625%;
}
.index-recommend .recommend-card:hover .text-btn {
  opacity: 1;
  transform: translateY(0);
}
.index-recommend .recommend-card .pic {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.index-recommend .recommend-card .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-recommend .recommend-card .text-title {
  position: absolute;
  left: 31px;
  right: 31px;
  top: clamp(20px, 2.0833vw, 40px);
  z-index: 2;
  font-weight: 400;
  font-size: clamp(18px, 1.3542vw, 26px);
  color: #ffffff;
  line-height: 1.34615385;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.index-recommend .recommend-card .text-title br {
  display: none;
}
.index-recommend .recommend-card .text-btn {
  position: absolute;
  left: 37px;
  bottom: clamp(20px, 2.0833vw, 40px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 1;
  opacity: 0;
  transform: translateY(100%);
  transition: var(--index-transition);
}
.index-recommend .recommend-card .text-btn:hover .btn-icon {
  margin-left: 10px;
}
.index-recommend .recommend-card .text-btn .btn-icon {
  transition: var(--index-transition);
}
.index-recommend .mb-20 {
  margin-bottom: 20px;
}
.index-recommend .recommend-card-list {
  display: flex;
  justify-content: space-between;
}
.index-recommend .recommend-card-list .recommend-card {
  width: 49.47916667%;
  flex-shrink: 0;
}
.index-recommend .recommend-card-list .recommend-card .text-title {
  top: clamp(20px, 1.6667vw, 32px);
}
.index-recommend .recommend-card-list .recommend-card .pic {
  padding-bottom: 55.26315789%;
}
/* 巅峰娱乐官方网站故事 */
.index-story {
  padding-top: clamp(30px, 2.6042vw, 50px);
  padding-bottom: clamp(30px, 2.6042vw, 50px);
}

.index-story .title-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
  margin-bottom: 33px;
}

.index-story .title-line .btn-list {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}

.index-story .title-line .btn-list .store-button {
  width: 47px;
  height: 47px;
  background-color: #eeeeee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transition: var(--index-transition) ease;
  outline: none;
  border: none;
}

.index-story .title-line .btn-list .store-button .iconfont {
  font-size: 18px;
  color: #808080;
  transition: var(--index-transition);
  display: block;
}

.index-story .title-line .btn-list .store-button.store-prev-btn .iconfont {
  transform: rotate(-180deg);
}

.index-story .title-line .btn-list .store-button:not(.swiper-button-disabled):hover {
  /* background-color: rgba(215, 220, 228, 0.79); */
  background-color: var(--main);

  cursor: pointer;
}

.index-story .title-line .btn-list .store-button:not(.swiper-button-disabled):hover .iconfont {
  color: #fff;
}

.index-story .index-story-swiper .swiper-slide {
  position: relative;
  border-radius: var(--global-radius);
  overflow: hidden;
  user-select: none;
  cursor: pointer;
}

.index-story .index-story-swiper .swiper-slide:hover .play {
  opacity: 1;
}

.index-story .index-story-swiper .swiper-slide .play:hover .icon {
  filter: none;
}

.index-story .index-story-swiper .swiper-slide .video {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  object-fit: cover;
}
.index-story .index-story-swiper .swiper-slide .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: block;
  width: 89px;
  user-select: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--index-transition);
}
/* .index-story .index-story-swiper .swiper-slide .play:hover .icon {
  filter: none;
} */
.index-story .index-story-swiper .swiper-slide .play .icon {
  display: block;
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  transition: var(--index-transition);
}
.index-story .index-story-pagination {
  position: initial;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.index-story .index-story-pagination .swiper-pagination-bullet {
  margin-left: 0;
  opacity: 1;
  flex-shrink: 0;
  width: 62px;
  height: 3px;
  background: #d9d9d9;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: var(--index-transition);
}
.index-story .index-story-pagination .swiper-pagination-bullet:not(:last-child) {
  margin-right: 5px;
}
.index-story .index-story-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #262629;
}
/* 探索巅峰娱乐官方网站 */
.index-quest {
  padding-top: 92px;
  /* padding-bottom: 156px; */
  /* padding-bottom: clamp(30px, 2.6042vw, 50px); */
}
.index-quest .index-section-title {
  margin-bottom: 54px;
}
.index-quest .quest-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 20px;
}
.index-quest .quest-list .item {
  display: block;
  border-radius: var(--global-radius);
  position: relative;
  overflow: hidden;
}
.index-quest .quest-list .item:hover .pic img {
  transform: scale(1.05);
}
.index-quest .quest-list .item .pic {
  display: block;
  padding-bottom: 124.30939227%;
  position: relative;
  overflow: hidden;
}
.index-quest .quest-list .item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--index-transition);
}
.index-quest .quest-list .item .text {
  position: absolute;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(30px, 2.5vw, 48px);
}
.index-quest .quest-list .item .text .text-title {
  font-weight: 400;
  font-size: clamp(20px, 1.3542vw, 26px);
  color: #ffffff;
  text-align: center;
  display: block;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  margin-bottom: 7px;
  line-height: 1.5;
}
.index-quest .quest-list .item .text .text-btn {
  font-weight: 400;
  font-size: clamp(16px, 0.9375vw, 18px);
  color: #ffffff;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.index-quest .quest-list .item .text .text-btn:hover .btn-icon {
  transform: translateX(10px);
}
.index-quest .quest-list .item .text .text-btn .btn-icon {
  transition: var(--index-transition);
}
.index-news {
  margin-top: clamp(30px, 5.2083vw, 100px);
  padding-top: clamp(30px, 3.6458vw, 70px);
  padding-bottom: clamp(30px, 4.1667vw, 80px);
  background-color: #eff2f7;
}
.index-news .title-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  margin-bottom: 50px;
}
.index-news .title-line .news-arrow {
  display: flex;
}
.index-news .title-line .news-arrow .arrow {
  width: 47px;
  height: 47px;
  background: #eeeeee;
  border-radius: 50%;
  border: 2px solid #eeeeee;
  flex-shrink: 0;
  transition: var(--index-transition);
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  cursor: pointer;
}
.index-news .title-line .news-arrow .arrow:hover {
  background-color: rgba(215, 220, 228, 0.79);
  border-color: transparent;
}
.index-news .title-line .news-arrow .arrow:hover .iconfont {
  color: #1b1b1b;
}
.index-news .title-line .news-arrow .arrow .iconfont {
  /* font-size: 18px; */
  font-size: clamp(14px, 0.9375vw, 18px);
  color: #808080;
  transition: var(--index-transition);
  display: block;
}
.index-news .title-line .news-arrow .arrow.news-prev {
  margin-right: 25px;
}
.index-news .title-line .news-arrow .arrow.news-prev .iconfont {
  transform: rotate(-180deg);
}

.index-news .index-news-swiper {
  visibility: hidden;
}

.index-news .index-news-swiper.swiper-initialized {
  visibility: visible;
}

.index-news .index-news-swiper .swiper-slide {
  height: auto;
  background-color: #fff;
  border-radius: var(--global-radius);
  user-select: none;
  cursor: pointer;
  overflow: hidden;
}
.index-news .index-news-swiper .swiper-slide:hover .pic img {
  transform: scale(1.05);
}
.index-news .index-news-swiper .swiper-slide:hover .text .text-title {
  color: var(--main);
}
.index-news .index-news-swiper .swiper-slide .pic {
  position: relative;
  padding-bottom: 57.86290323%;
  overflow: hidden;
}
.index-news .index-news-swiper .swiper-slide .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--index-transition);
}
.index-news .index-news-swiper .swiper-slide .text {
  padding-top: 22.5px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 25px;
}
.index-news .index-news-swiper .swiper-slide .text .text-title {
  font-weight: 700;
  font-size: 20px;
  color: #202020;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  height: calc((27 / 20) * 20px * 2);
  margin-bottom: 18px;
  transition: var(--index-transition);
}
.index-news .index-news-swiper .swiper-slide .text .text-desc {
  font-weight: 400;
  /* font-size: 14px; */
  font-size: 16px;
  color: #7e7e7e;
  line-height: 1.64;
  height: calc(1.64 * 16px * 2);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  margin-bottom: 22.5px;
}
.index-news .index-news-swiper .swiper-slide .text .info-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  font-weight: 400;
  /* font-size: 14px; */
  font-size: 16px;
  color: #7e7e7e;
}
.index-news .index-news-btn {
  margin: 45px auto 0;
  width: 160px;
  height: 50px;
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-color: #333;
  transition: all 0.5s ease;
}

.index-news .index-news-btn .iconfont {
  font-size: 8px;
  margin-left: 15px;
  margin-top: 0.2em;
}

.index-news .index-news-btn:hover {
  background-color: var(--main);
}
.index-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: calc(999 * 2);
  transition: var(--index-transition);
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}

.index-mask.show {
  visibility: visible;
  pointer-events: initial;
  opacity: 1;
}
.index-mask .mask-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 1536px;
  width: 90%;
}
.index-mask .mask-content .close {
  width: fit-content;
  margin-left: auto;
  margin-bottom: 20px;
  user-select: none;
  cursor: pointer;
}
.index-mask .mask-content .close .iconfont {
  font-size: 30px;
  color: #fff;
  transition: var(--index-transition);
}
.index-mask .mask-content .close .iconfont:hover {
  color: var(--main);
}
.index-mask .mask-content .mask-video {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
  max-height: 86vh;
  object-fit: contain;
}

#index_about_video {
  z-index: 51;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}
#index_about_video .in_box {
  margin: 0 auto;
  width: 66vw;
  height: auto;
  max-width: 100%; /*max-height: 80vw;*/
  position: relative;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
#index_about_video .in_box .close_btn {
  position: absolute;
  top: 0;
  right: -35px;
  z-index: 1;
  width: 25px;
  fill: #fff;
}
#index_about_video .in_box .close_btn .svg {
  font-size: 25px;
  color: #fff;
  width: 100%;
  height: 100%;
  fill: #fff;
  transition: var(--index-transition);
}

#index_about_video .in_box .close_btn:hover .svg {
  color: var(--main);
  fill: var(--main);
}
#index_about_video .in_box video {
  width: 100%;
  height: 100%;
}
#index_about_video .in_box .vmb {
  display: none;
}

@media (max-width: 1650px) {
  .index-product-list .product-card-item .item-wrap .pic img {
    max-width: 70%;
  }
}

@media (max-width: 1500px) {
  .index-banner .index-banner-swiper .swiper-slide .text .slide-title {
    font-size: clamp(30px, 2.1875vw, 42px);
    margin-bottom: 10px;
  }

  .index-banner .index-banner-swiper .swiper-slide .text .slide-more {
    margin-top: clamp(10px, 1.5625vw, 30px);
  }
}

@media (max-width: 1400px) {
  .index-section-title {
    font-size: 30px;
  }

  .index-recommend {
    padding-top: clamp(45px, 3.0208vw, 58px);
  }
}
@media (max-width: 1200px) {
  .index-banner .index-banner-swiper .swiper-slide .text .slide-title {
    font-size: 26px;
  }
  .index-banner .index-banner-swiper .swiper-slide .text .slide-desc {
    font-size: 18px;
  }
  .index-banner .index-banner-swiper .swiper-slide .text .slide-more {
    width: 125px;
    height: 35px;
    font-size: 14px;
  }

  .index-banner .index-banner-arrow {
    width: 36px;
    height: 36px;
  }

  .index-banner .index-banner-arrow.index-banner-prev {
    left: 20px;
  }

  .index-banner .index-banner-arrow.index-banner-next {
    right: 20px;
  }

  .index-news .index-news-swiper .swiper-slide .text {
    padding-left: 15px;
    padding-right: 15px;
  }
  .index-news .index-news-swiper .swiper-slide .text .text-title {
    font-size: 18px;
    height: calc((27 / 20) * 18px * 2);
  }
  .index-story .index-story-swiper .swiper-slide .play {
    width: 65px;
  }
}

@media (max-width: 992px) {
  .index-banner {
    margin-top: 66px;
  }
  #index_about_video .in_box {
    width: 87.9vw;
  }
  #index_about_video .in_box .close_btn {
    width: 20px;
    height: 20px;
    top: -35px;
    right: 0;
  }
}

/* 开始进行移动设备适配 */
@media (max-width: 999px) {
  .index-banner {
    margin-bottom: 0;
  }
  .index-wrap {
    width: calc(100% - 5.5556vw);
  }
  .index-banner .index-banner-swiper .swiper-slide .text {
    width: fit-content;
    max-width: 90%;
    white-space: nowrap;
    display: none;
  }
  .index-banner .index-banner-swiper .swiper-slide .text .slide-title {
    font-size: 8.5185vw;
    color: #fff;
    margin-bottom: 2.2222vw;
  }
  .index-banner .index-banner-swiper .swiper-slide .text .slide-desc {
    font-size: 3.9815vw;
    color: #ffffff;
    text-align: justify;
    text-align-last: justify;
  }
  .index-banner .index-banner-swiper .swiper-slide .text .slide-more {
    margin-top: 8.4259vw;
    width: 23.2407vw;
    height: 6.5741vw;
    background: #202020;
    border-radius: 3.2407vw;
    font-size: 2.5926vw;
  }

  .index-banner .index-banner-swiper .index-banner-pagination {
    bottom: 6.167%;
  }

  .index-banner .index-banner-arrow {
    top: auto;
    transform: none;
    opacity: 1;
    background-color: transparent;
    backdrop-filter: initial;
    bottom: 5.2%;
  }

  .index-banner .index-banner-arrow.index-banner-prev {
    left: 3vmin;
  }

  .index-banner .index-banner-arrow.index-banner-next {
    right: 3vmin;
  }

  .index-banner .index-banner-arrow {
    width: auto;
    height: auto;
  }

  .index-banner .index-banner-arrow img {
    max-width: none;
    max-height: none;
    width: 20px;
    height: 20px;
  }

  .index-recommend .index-section-title {
    margin-bottom: clamp(25px, 3.3854vw, 65px);
  }

  .index-product-list {
    margin-top: 3vmin;
  }

  .index-product-list .product-card-item:not(:last-child) {
    margin-bottom: 3vmin;
  }
  /* 产品区域 */
  .index-product-list .product-card-item .item-wrap {
    flex-direction: column;
    justify-content: space-between;
    column-gap: 0;
  }
  .index-product-list .product-card-item .item-wrap .text {
    width: 100%;
  }

  .index-product-list .product-card-item {
    width: 100%;
    height: 118.9815vw;
    padding-top: 7.4074vw;
    border-radius: var(--global-radius);
  }

  .index-product-list .product-card-item .item-wrap .text {
    text-align: center;
  }

  .index-product-list .product-card-item .item-wrap .text .text-title {
    font-size: 5vw;
  }

  .index-product-list .product-card-item .item-wrap .text .text-desc {
    font-size: 3.75vw;
    margin-top: 3.7037vw;
  }
  .index-product-list .product-card-item .item-wrap .text .text-btn {
    width: 23.2407vw;
    height: 6.5741vw;
    background: #202020;
    border-radius: 3.2407vw;
    font-size: 2.5926vw;
    margin-left: auto;
    margin-right: auto;
  }
  .index-product-list .product-card-item .item-wrap .pic {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    flex: 1;
    overflow: hidden;
    margin-top: 8.3333vw;
  }
  .index-product-list .product-card-item .item-wrap .pic img {
    max-width: none;
    width: 90%;
    height: 90%;
    object-fit: contain;
    object-position: center center;
  }
  .index-recommend {
    padding-top: 14.8148vw;
    padding-bottom: 6.0185vw;
  }
  .index-section-title {
    font-weight: 600;
    font-size: 5.5556vw;
    color: #000000;
    text-align: center;
  }
  .index-section-title::after {
    content: "";
    display: block;
    width: 11.5741vw;
    height: 0.2778vw;
    background-color: #00cc88;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3.4259vw;
  }
  .index-recommend .mb-20 {
    margin-bottom: 3vmin;
  }
  .index-recommend .recommend-card-list {
    flex-wrap: wrap;
    row-gap: 3vmin;
  }
  .index-recommend .recommend-card .pic {
    display: block;
    position: relative;
  }
  /* 统一宽高比 */
  .index-recommend .recommend-card.card-full .pic,
  .index-recommend .recommend-card-list .recommend-card .pic {
    padding-bottom: 52.01177625%;
  }
  .index-recommend .recommend-card .pic img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .index-recommend .recommend-card-list .recommend-card {
    width: 100%;
  }
  .index-recommend .recommend-card .text-title {
    position: static;
    background-color: #f5f5f5;
    padding-top: 6.0185vw;
    padding-bottom: 6.6667vw;
    padding-left: 3.3333vw;
    padding-right: 3.3333vw;
    font-weight: 400;
    font-size: 3.7963vw;
    color: #35383d;
    line-height: 1.2195122;
    max-width: initial;
    white-space: initial;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .index-recommend .recommend-card .text-title br {
    display: block;
  }
  .index-recommend .recommend-card .text-btn {
    display: none;
  }

  .index-story {
    padding-top: 6.0185vw;
    padding-bottom: 7.7315vw;
  }
  .index-story .title-line {
    justify-content: center;
    margin-bottom: 0;
  }

  .index-story .title-line .btn-list {
    display: none;
  }

  .index-story .index-story-swiper {
    position: static;
    transform: none;
  }

  .index-story .index-section-title {
    margin-bottom: 4.1667vw;
  }

  .index-story .index-story-swiper .swiper-slide {
    border-radius: var(--global-radius);
    overflow: hidden;
  }
  .index-story .index-story-swiper .swiper-slide img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  .index-story .index-story-swiper .swiper-slide .play {
    width: 5.9259vw;
    opacity: 1;
  }
  .index-story .index-story-pagination {
    margin-top: 3.1481vw;
  }
  .index-story .index-story-pagination .swiper-pagination-bullet {
    width: 5.2778vw;
    height: 0.7407vw;
    border-radius: 4px;
    flex-shrink: 0;
  }
  .index-quest {
    padding-top: 7.7315vw;
    /* padding-bottom: 5.2778vw; */
  }
  .index-quest .index-section-title {
    margin-bottom: clamp(30px, 4.8958vw, 94px);
  }
  .index-quest-swiper .swiper-slide .pic {
    display: block;
    padding-bottom: 124.42857143%;
    border-radius: var(--global-radius);
    overflow: hidden;
    position: relative;
  }
  .index-quest-swiper .swiper-slide .pic img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .index-quest-swiper .swiper-slide .text {
    position: absolute;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    bottom: 8.3333vw;
  }
  .index-quest-swiper .swiper-slide .text .text-title {
    font-weight: 400;
    /* font-size: 3.7037vw; */
    font-size: 5vw;
    color: #ffffff;
    margin-bottom: 1.9444vw;
    line-height: 1;
  }
  .index-quest-swiper .swiper-slide .text .text-btn {
    font-weight: 400;
    /* font-size: 2.5926vw; */
    font-size: 3vw;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .index-quest-swiper .swiper-slide .text .text-btn .btn-icon {
    margin-left: 6px;
  }
  .index-quest-arrow-line {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: max(2.5926vw, 10px);
    /* margin-top: max(2.4074vw, 10px); */
    margin-top: 6vw;
  }
  .index-quest-arrow-line .arrow {
    outline: none;
  }

  .index-quest-arrow-line .arrow img {
    display: block;
    width: 6.9444vw;
    transition: var(--index-transition);
    filter: brightness(0);
  }

  .index-news {
    padding-top: 5.2778vw;
    padding-bottom: 5.5556vw;
    background-color: #fff;
  }
  .index-news .title-line {
    justify-content: center;
    margin-bottom: 5vw;
  }
  .index-news .title-line .news-arrow {
    display: none;
  }

  .index-news .index-news-swiper .swiper-slide {
    border-radius: var(--global-radius);
    overflow: hidden;
    background-color: #f5f5f5;
  }
  .index-news .index-news-swiper .swiper-slide .text {
    padding-left: 4.8148vw;
    padding-right: 6.2963vw;
    padding-top: 4.8148vw;
    padding-bottom: 6.1111vw;
  }
  .index-news .index-news-swiper .swiper-slide .text .text-title {
    font-weight: 700;
    color: #202020;
    /* font-size: 3.7037vw; */
    /* height: calc((27 / 20) * 3.7037vw * 2); */
    font-size: 4.2969vw;
    height: calc((27 / 20) * 4.2969vw * 2);
    margin-bottom: 1.5741vw;
  }
  .index-news .index-news-swiper .swiper-slide .text .text-desc {
    font-weight: 400;
    color: #7e7e7e;
    /* font-size: 2.5vw; */
    /* height: calc((46 / 27) * 2.5vw * 2); */
    font-size: 3.3203vw;
    height: calc((46 / 27) * 3.3203vw * 2);
    margin-bottom: 5.1852vw;
  }
  .index-news .index-news-swiper .swiper-slide .text .info-line {
    font-weight: 400;
    /* font-size: 2.5vw; */
    font-size: 3.3203vw;
    color: #7e7e7e;
  }
  .index-news .news-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: max(2.5926vw, 10px);
    margin-top: max(2.7778vw, 20px);
  }
  .index-news .news-arrow .arrow {
    outline: none;
  }
  .index-news .news-arrow .arrow img {
    display: block;
    width: 6.9444vw;
    height: auto;
    transition: var(--index-transition);
    filter: brightness(0);
  }

  .index-news .index-news-btn {
    margin: 5vw auto 0;
    width: 23.2407vw;
    height: 6.5741vw;
    border-radius: 3.2407vw;
    font-size: 2.5926vw;
  }
  .index-mask .mask-content .close .iconfont {
    font-size: 5.5556vw;
  }

  #index_about_video .in_box {
    max-width: 84.9vw;
  }
}

@media (max-width: 576px) {
  .index-banner .index-banner-arrow {
    bottom: 4.75%;
  }

  #index_about_video .in_box {
    max-width: 89.9vw;
    height: 53vw;
  }

  .index-news .index-news-btn .iconfont {
    margin-left: 6px;
    font-size: 6px;
  }
}
<!--耗时1782459359.1864秒-->