index.scss 2.02 KB
@import '@/styles/_support';

.content {
  padding-bottom: 2.25rem;

}

.top-space {
  height: 2.25rem;
}

.box {
  position: relative;
  margin-top: $marginMedium;
}

// banner 轮播
.banner-contaner {
  width: 100%;
  height: 470px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.banner {
  position: absolute;
  z-index: 1;
  left: 50%;
  margin-left: -960px;
  top: 0;
  width: 1920px;
  height: 100%;
  overflow: hidden;

  &-img {
    width: 100%;
    height: 100%;
  }
}

// 推荐产品
.recommend {
  display: flex;
  text-align: center;
  justify-content: space-between;

  &-item {

    position: relative;

    width: 24.25rem;
    height: 32.75rem;
    border-radius: $borderRadiusSmall;
    box-shadow: 0 0 1.5rem 0 rgba(255, 87, 0, 0.15);
    background-color: #fbfbfb;

    .btn {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 3rem;
      margin: 0 auto;

      @include btc2(13.5rem, 4rem, 16px);
    }

    img {
      width: 100%;
      @include border-top-radius($borderRadius);
    }

    &:first-child {
      padding-left: 0;
    }

    &:last-child {
      padding-right: 0;
    }
  }
}

// 详情
.detail {
  display: flex;
  height: 39.75rem;

  .vjs-custom-skin {
    border-radius: $borderRadius !important;
    overflow: hidden;
  }

  .txt {
    @extend .fcc;
    @extend .bb;
    padding-left: 2.166667rem;
    flex: 1;
    line-height: 2.3;
    letter-spacing: 1.4px;
  }
}


.swiper-button-prev {
  background-image: url('~@/assets/images/common/button-prev.png');
  left: 360px;

}

.swiper-button-next {
  background-image: url('~@/assets/images/common/button-next.png');
  right: 360px;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: 48px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #dcdddd;
}

.swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background-color: $cOrange;
}


@media (max-width: 950px) {
  .box {
    width: 96%;
  }
}