.aui-carousel {
  background-color: #f5f6fb;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  user-select: none;
  padding: 24px;
}
.aui-carousel .content {
  margin: 0px 16px;
  width: calc(100% - 152px);
  display: -webkit-box;
  flex-direction: row;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: smooth;
}
.aui-carousel .content .card {
  width: 250px;
  height: 240px;
  border-radius: 16px;
  margin-right: 21px;
  box-shadow: 0 0 16px 0 rgba(225, 229, 245, 0.8);
  background-color: #ffffff;
}
.aui-carousel i {
  width: 36px;
  height: 36px;
  border-radius: 36px;
  background-color: #e0e5ff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.aui-carousel i svg {
  width: 20px;
  height: 20px;
  font-size: 18px;
  color: #4750ff;
}
.aui-carousel .carousel-disabled {
  cursor: not-allowed !important;
  pointer-events: none;
  opacity: 0.3;
  border-radius: 36px;
  background-color: #e0e5ff;
}
