@keyframes rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.cts-scroll {
  overflow: hidden;
  backface-visibility: hidden; // 隐藏旋转div元素的背面
  transform: translate3d(0, 0, 0);

  .scroll-bottom {
    .scroll-item {
      display: flex;
      height: 80px;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: #949494;

      .iconfont {
        animation: rotate 1s linear 0s infinite;
      }

      .scroll-loading {
        margin-left: 10px;
      }

      image {
        width: 200px;
      }

      .scroll-complete {
        margin: 0 20px;
      }
    }
  }

  // ScrollView回到顶部样式
  .scroll-to-top {
    position: fixed;
    right: $interval-horizontal;
    bottom: 100px;
    width: 84px;
    height: 84px;
    border-radius: 50%;
  }
}