.virtualList {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.virtualList.vertical {
  overflow-y: scroll;
}
.virtualList.horizontal {
  overflow-x: scroll;
}
.virtualList .listItem {
  overflow: hidden;
  width: 100%;
  will-change: transform;
}
.virtualList .content {
  will-change: transform;
}
.virtualList::-webkit-scrollbar {
  display: none;
}
