@charset "UTF-8";

/* 媒体选择器 */

/* 清楚浮动 */

/* flexbox */

/* 栅格化 */

/* 栅格空隙  */

/* 阴影 */

/* 圆角 */

/* // 强制不换行 */

/* 以下是否有必要 */

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

/* 垂直居中 */

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

/* 可循环背景图 */

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

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

/* 滚动条 */

/* 栅格化 */

/* 栅格空隙  */

.lg-marquee {
  position: relative;
  overflow: hidden;
  width: 620px;
}

.lg-marquee .marquee-item {
  width: 135px;
  height: 135px;
  background: steelblue;
  color: #fff;
  font-size: 20px;
  line-height: 135px;
  text-align: center;
}

.lg-marquee .lg-marquee-arrow-prev,
.lg-marquee .lg-marquee-arrow-next {
  position: absolute;
  z-index: 1;
  margin-top: -20px;
  width: 24px;
  height: 40px;
  background-color: #aeb5ad;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  color: rgba(255, 255, 255, 0.4);
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}

.lg-marquee .lg-marquee-arrow-prev {
  left: 0;
  top: 50%;
}

.lg-marquee .lg-marquee-arrow-next {
  right: 0;
  top: 50%;
}

.lg-v-marquee {
  width: 200px;
  height: 310px;
  overflow: hidden;
}

.lg-v-marquee .marquee-item {
  float: left;
  clear: both;
}

.lg-v-marquee .lg-marquee-arrow-prev {
  left: unset;
  right: 0;
  top: 0;
}

.lg-v-marquee .lg-marquee-arrow-next {
  right: 0;
  bottom: 0;
}