@charset "UTF-8";

/* carousel.css Date:2020-01-16 15:31:04 */

.lg-carousel-wrap {
  position: relative;
  margin-bottom: 60px;
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.lg-carousel-box {
  -webkit-transform: translateZ(0);
}

.lg-carousel-list {
  -webkit-perspective: 1000;
}

.lg-carousel-img {
  max-width: 100%;
  display: block;
}

.lg-carousel-auto,
.lg-carousel-pagin {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.lg-carousel-pagin {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #666;
}

.lg-carousel-paginitem {
  display: inline-block;
  padding: 10px 0;
  margin-right: 10px;
  -webkit-transition: all .1s;
  transition: all .1s;
}

.lg-carousel-paginitem .lg-carousel-pagin-link {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.25);
}

.lg-carousel-paginitem .lg-carousel-pagin-link.active {
  width: 24px;
  background-color: rgba(0, 0, 0, 0.45);
}

.lg-carousel-auto-item {
  display: inline-block;
  vertical-align: bottom;
  *zoom: 1;
  *display: inline;
}

.lg-carousel-next,
.lg-carousel-prev {
  position: absolute;
  top: 50%;
  margin-top: -12px;
  outline: 0;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  z-index: 9;
  background-color: rgba(255, 255, 255, 0.45);
  -webkit-transition: all .1s;
  transition: all .1s;
}

.lg-carousel-next.disabled,
.lg-carousel-prev.disabled {
  display: none;
}

.lg-carousel-next:before,
.lg-carousel-prev:before {
  color: #d2d2d2;
  font-size: 12px;
  display: block;
  margin-bottom: 8px;
}

.lg-carousel-next:hover,
.lg-carousel-prev:hover {
  background-color: #2ba3ff;
}

.lg-carousel-next:hover:before,
.lg-carousel-prev:hover:before {
  color: #aaa;
}

.lg-carousel-prev {
  left: 15px;
}

.lg-carousel-next {
  right: 15px;
}

/* 媒体选择器 */

/* 清楚浮动 */

/* 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;
}