/* 清除浮动 */
.clearfix {
  *zoom: 1;
}

.clearfix:after {
  content: " ";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}

/* flex */
.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-col {
  flex-direction: column;
}

.j-c {
  justify-content: center;
}

.j-s {
  justify-content: space-between;
}

.a-c {
  align-items: center;
}

.a-e {
  align-items: flex-end;
}

.a-s {
  align-content: space-between;
}

/* 省略号 */
.ellipsis-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.ellipsis-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ellipsis-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/** 节点可见动画 **/
.vis-an.animate {
  opacity: 1;
  -webkit-animation: visAnimate 1s cubic-bezier(0.6, 0.2, 0.1, 1) forwards;
  -moz-animation: visAnimate 1s cubic-bezier(0.6, 0.2, 0.1, 1) forwards;
  animation: visAnimate 1s cubic-bezier(0.6, 0.2, 0.1, 1) forwards;
}

@keyframes visAnimate {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

body .custom .layui-layer-title {
  color: #fff;
  border: none;
}

body .custom .layui-layer-content {
  width: 19.2rem;
}

body .custom .layui-layer-content img {
  width: 12.8rem;
  height: 12.8rem;
}

body .custom .layui-layer-content div {
  padding: 0.6375rem 0;
  font-size: 0.9rem;
  text-align: center;
  color: rgb(102, 102, 102);
}


/* 阴影标题 -- start */
.shadow-title {
  width: 100%;
  text-align: center;
}

.shadow-title>p {
  position: relative;
}

.shadow-title .title {
  color: #323231;
  position: relative;
}

.shadow-title .title::after {
  content: " ";
  display: block;
  width: 100%;
  height: .05rem;
  background: #5D9FF6;
  border-radius: .05rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.shadow-title .shadow {
  color: rgba(102, 102, 102, 0.2);
  font-family: PingFang SC-Semibold, PingFang SC, sans-serif;
  font-weight: bold;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 821px) {
  .shadow-title {
    padding-top: 1rem;
    padding-bottom: .675rem;
  }

  .shadow-title .title {
    font-size: .375rem;
    padding-bottom: .15rem;
  }

  .shadow-title .shadow {
    font-size: .5rem;
    top: -0.375rem;
  }
}

@media (max-width: 820px) {
  .shadow-title {
    padding-top: 1.275rem;
    padding-bottom: 1.65rem;
  }

  .shadow-title .title {
    font-size: 1.025rem;
    padding-bottom: .375rem;
  }

  .shadow-title .title::after {
    width: 80%;
    height: .125rem;
  }

  .shadow-title .shadow {
    font-size: 1.15rem;
    top: -0.75rem;
  }
}

/* 加载中 */
.jc-laylist-loading,
.jc-laylist-finish,
.jc-laylist-error {
  width: 100%;
  text-align: center;
  padding: 50px 0;
}
.jc-laylist-finish{
  float: left;
  padding: 10px 0 0;
  font-size: 16px;
}

.jc-laylist-loading img {
  width: 82px;
  height: 82px;
  animation: rotate 0.8s linear infinite;
  vertical-align: middle;
  display: inline-block;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

/* 阴影标题 -- end */


/*大屏幕*/
@media screen and (min-width: 1600px) {
  .pc {
    display: block;
  }

  .mb {
    display: none;
  }
}

/*小屏幕*/
@media (max-width: 1599.904px) and (min-width: 1279px) {
  .pc {
    display: block;
  }

  .mb {
    display: none;
  }
}

/*平板*/
@media (max-width: 1279px) and (min-width: 820.9px) {
  .pc {
    display: block;
  }

  .mb {
    display: none;
  }
}

/* 移动端 */
@media (max-width: 820px) {
  .pc {
    display: none;
  }

  .mb {
    display: block;
  }
}
