@charset "UTF-8";

/* 媒体选择器 */

/* 清楚浮动 */

/* flexbox */

/* 栅格化 */

/* 栅格空隙  */

/* 阴影 */

/* 圆角 */

/* // 强制不换行 */

/* 以下是否有必要 */

/* 块级元素/容器 水平居中 */

/* 垂直居中 */

/* 是否可以选择文本 */

/* 可循环背景图 */

/*通过透明度得出新的颜色hex */

/* @function hexa($color, $alpha){
    @if (unitless($alpha)){
        $alpha : percentage($alpha)
    }
    $al : 100% - $alpha;
    @return lighten($color, $al)
} */

/* 滚动条 */

/* 栅格化 */

/* 栅格空隙  */

.lg-carousel-container {
  position: relative;
  width: 600px;
  height: 341px;
  margin: 0 auto;
  overflow: hidden;
}

.lg-carousel-container .lg-carousel-wrap {
  position: relative;
  height: auto;
  overflow: hidden;
  left: 0;
  top: 0;
}

.lg-carousel-container .lg-carousel-item {
  float: left;
  width: 600px;
  height: 300px;
  position: relative;
  transition-property: transform;
}

.lg-carousel-container .lg-carousel-item > img {
  display: block;
  width: 100%;
  height: auto;
}

.lg-carousel-pagin-link {
  font-size: 0;
}

.carouse-mixin {
  width: 600px;
  height: 191px;
}

.carouse-mixin .lg-carousel-item {
  width: 300px;
}

.carouse-mixin .lg-carousel-item > img {
  width: 300px;
  display: inline-block;
}

.carouse-mixin .lg-carousel-dots-wrap .lg-carousel-dot {
  display: none;
}

.carouse-mixin .lg-carousel-dot:nth-child(4n + 1) {
  display: inline-block;
}

.custom-dot-carousel .lg-carousel-dots-wrap .lg-carousel-dot {
  width: auto;
  height: auto;
  border: none;
  margin-right: 10px;
  padding: 0 10px;
  border-radius: 0;
}

.custom-dot-carousel
.lg-carousel-dots-wrap
.lg-carousel-dot:hover {
  border: none;
}

.carouse-percent {
  width: calc(100vw - 200px);
}

.carouse-percent .lg-carousel-item {
  width: calc(100vw - 200px);
  height: 300px;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}