/* 轮播图 */
.swiper {
  overflow: hidden;
}

.swiper_wrapper {
  height: 100%;
  transition: 600ms ease-in-out;
  display: flex;
}

.swiper_wrapper .swiper_slide {
  height: 100%;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

#swiper_banner .swiper_slide:not(:first-child,:last-child) {
  background-color: #06080a;
}
#swiper_banner .swiper_pagination {
  position: absolute;
  bottom: 4.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  column-gap: 5px;
}

#swiper_banner .swiper_pagination li {
  height: 5px;
  width: 50px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.16);
}


#swiper_banner .swiper_pagination li.active {
  background: var(--color-base);
}

/* 产品展示 */
:is(.twoD-container, .view-container, .threeD-container) {
  --offsetting: -8rem;
}

.view-box {
  position: relative;
}

.view {
  height: 61.6rem;
}

.feature {
  padding: 4rem;
}

.feature>img {
  width: 71.4rem;
}

.feature .info .btn:last-child {
  margin-left: 12px;
}

.tabs {
  flex-direction: column;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  gap: 8px;
  overflow: auto;
}

.tabs li {
  padding: 8px;
  width: 32px;
  height: 32px;
}

.tabs li:hover {
  background: #323947;
}

.tabs li.active {
  background: linear-gradient(225deg, rgba(24, 244, 222, 0.1), rgba(24, 244, 112, 0.1)) !important;
}

:is(.twoD-container, .view-container, .threeD-container)>h2 {
  width: fit-content;
  border-top: 1px solid #fff;
}

:is(.view-container, .twoD-container) .tabs {
  left: var(--offsetting);
}

.threeD-container .tabs {
  right: var(--offsetting);
}

/* 解决方案 */
.solution .content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-template-areas: 'a b c d' 'a f g h';
  gap:  2.4rem;
}

.solution .cart {
  overflow: hidden;
  padding: 3.2rem;
  position: relative;
  min-height: 28rem;
  aspect-ratio: 1/1;
}

.solution .cart .desc {
  display: none;
}

.solution .cart>img {
  height: 12.8rem;
  width: auto;
  position: absolute;
  right: 16px;
  bottom: 16px;
}

.solution .cart a span {
  display: none;
  color: var(--color-base-hover);
}

.solution .cart a:hover img {
  transform: translateX(8px);
  transition: 200ms;
}

.solution .cart.hidden {
  display: none;
}

.solution .cart.unfold {
  aspect-ratio: auto;
  border: 1px solid rgba(24, 244, 112, 0.30);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solution .unfold :is(.desc, a span) {
  display: block;
}

.solution .unfold>img {
  position: static;
  object-fit: contain;
  transform: scale(1.3);
}

.solution .unfold a {
  width: fit-content;
}

@media screen and (max-width: 1024px) {
  .view {
    margin-top: 12rem;
    height: auto;
  }

  .threeD-container .feature {
    flex-direction: column-reverse;
  }

  .tabs.pointer {
    flex-direction: row;
    top: var(--offsetting);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .solution .content {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: 'a b' 'c d' 'e f' 'g h';
  }
  .solution .cart {
    aspect-ratio: auto;
    min-height: auto;
  }
  .solution .cart>img {
    height: 10rem;
  }
}