.vui-spin {
  display: inline-block;
}
.vui-spin-with-tip {
  text-align: center;
}
.vui-spin-icon {
  color: rgb(var(--primary-6));
  font-size: 20px;
}
.vui-spin-tip {
  margin-top: 6px;
  color: rgb(var(--primary-6));
  font-weight: 500;
  font-size: 14px;
}
.vui-spin-mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 11;
  text-align: center;
  background-color: var(--color-spin-layer-bg);
  transition: opacity 0.1s cubic-bezier(0, 0, 1, 1);
  user-select: none;
}
.vui-spin-loading {
  position: relative;
  user-select: none;
}
.vui-spin-loading .vui-spin-mask-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 12;
  transform: translate(-50%, -50%);
}
.vui-spin-loading .vui-spin-children::after {
  opacity: 1;
  pointer-events: auto;
}
