.ant-toast {
  color: var(--toast-default-color, #ffffff);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 999;
  padding: 24rpx 32rpx;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--toast-default-bg, rgba(0, 0, 0, 0.75));
  border-radius: 24rpx;
}
.ant-toast-icon,
.ant-toast-image,
.ant-toast-normal {
  margin-bottom: 24rpx;
}
.ant-toast-normal {
  height: 80rpx;
}
.ant-toast-text-long {
  border-radius: 24rpx;
}
.ant-toast-text-short {
  border-radius: 50vh;
}
.ant-toast-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100rpx;
}
.ant-toast-icon.ant-icon {
  color: var(--toast-default-color, #ffffff);
}
.ant-toast-image,
.ant-toast-icon {
  width: 80rpx;
  height: 80rpx;
  background-size: contain;
  background-repeat: no-repeat;
}
.ant-toast-text-body {
  display: flex;
  max-width: 380rpx;
  max-height: 84rpx;
  justify-content: center;
}
.ant-toast-text-box {
  min-width: 0;
  max-height: 84rpx;
}
.ant-toast-text-content {
  font-size: 28rpx;
  line-height: 40rpx;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ant-toast-icon-wrapper {
  width: 240rpx;
  height: 240rpx;
  border-radius: 32rpx;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.ant-toast-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.6);
  width: 300vw;
  height: 300vh;
  transform: translate3d(-100vw, -100vh, 0);
  animation-fill-mode: forwards;
  animation-duration: 300ms;
  animation-timing-function: cubic-bezier(0.35, 0, 0.65, 1);
  animation-name: ant-popup-mask-appear;
}
.ant-toast-mask-closing {
  animation-delay: 100ms;
  animation-fill-mode: forwards;
  animation-duration: 300ms;
  animation-timing-function: cubic-bezier(0.35, 0, 0.65, 1);
  animation-name: ant-popup-mask-close;
}
.ant-toast-opening {
  transform: translate3d(-50%, -50%, 0) scale(0.6);
  opacity: 0;
  animation-name: ant-toast-scale, ant-toast-opacity;
  animation-duration: 200ms, 100ms;
  animation-timing-function: cubic-bezier(0.57, -0.22, 0, 1.2), cubic-bezier(0.35, 0, 0.65, 1);
  animation-fill-mode: forwards;
}
.ant-toast-closing {
  transform: translate3d(-50%, -50%, 0) scale(1);
  opacity: 1;
  animation-name: ant-toast-scale-close, ant-toast-opacity-close;
  animation-duration: 200ms, 200ms;
  animation-timing-function: cubic-bezier(0.6, 0, 1, 0.6), cubic-bezier(0.6, 0, 1, 0.6);
  animation-fill-mode: forwards;
}
@keyframes ant-toast-scale {
  0% {
    transform: translate3d(-50%, -50%, 0) scale(0.6);
  }
  100% {
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
}
@keyframes ant-toast-opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ant-toast-scale-close {
  0% {
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  100% {
    transform: translate3d(-50%, -50%, 0) scale(0.6);
  }
}
@keyframes ant-toast-opacity-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ant-toast-mask-appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.6;
  }
}
@keyframes ant-toast-mask-close {
  0% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
  }
}
