demo.scss 1.0 KB
Newer Older
L
lkjh3214 已提交
1
.demo-box {
2
  position: relative;
L
lkjh3214 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
  .nut-swiper {
    height: 150px;
    img {
      width: 100%;
      height: 100%;
    }
  }
  .page {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 46px;
    height: 22px;
    background: rgba(0, 0, 0, 0.33);
    border-radius: 22px;
    text-align: center;
    color: #fff;
    font-size: 14px;
  }
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
  .nut-swiper-btns {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-15px);
    z-index: 1;
    display: flex;
    justify-content: space-between;
    height: 0px;
    span {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 30px;
      background-color: rgba(0, 0, 0, 0.2);
    }
  }
}
.vertical-center {
  .nut-swiper__pagination-vertical {
    i {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      &.active {
        height: 18px;
        border-radius: 5px;
      }
    }
  }
  .nut-swiper-item {
    height: 300px;
    img {
      width: 100%;
      height: 100%;
    }
  }
L
lkjh3214 已提交
60
}