.#{$prefix}swiper {
  min-height: 1px;

  &-group {
    position: relative;
    overflow: hidden;
    white-space: nowrap;

    &-item {
      float: left;
      box-sizing: border-box;
      overflow: hidden;
      text-align: center;
    }
  }

  &-dots {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 12px;
    transform: translateZ(1px);
    text-align: center;
    font-size: 0;

    &-dot {
      display: inline-block;
      margin: 0 4px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);

      &.active {
        width: 20px;
        border-radius: 5px;
        background: rgba(255, 255, 255, 0.8);
      }
    }
  }
}
