.fe-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  display: flex;
  color: #fff;
  z-index: 5001;
  font-size: 15px;
  line-height: 1.2;
  border-radius: 2px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-sizing: content-box;
  transform: translate3d(-50%, -50%, 0);
  background-color: rgba(51, 51, 51, 0.9);
  width: fit-content;
  white-space: pre-wrap;
  word-break: break-all;
  user-select: none;
}
.fe-toast-unclickable * {
  pointer-events: none;
}
.fe-toast-wrapper {
  transition: opacity 0.2s;
}
.fe-toast.fe-toast-text {
  padding: 12px;
  max-width: 201px;
  min-width: 97px;
}
.fe-toast-default {
  width: 120px;
  min-height: 120px;
  max-width: 128px;
}
.fe-toast-default .fe-toast-icon {
  font-size: 38px;
  color: #fff;
  white-space: normal;
}
.fe-toast-default .fe-loading {
  margin: 10px 0 5px;
}
.fe-toast-default .fe-toast-img {
  font-size: 38px;
}
.fe-toast-default .fe-toast-text {
  font-size: 14px;
  padding: 10px 8px 0;
  line-height: 20px;
  text-align: center;
}
.fe-toast-top {
  top: 50px;
}
.fe-toast-bottom {
  top: auto;
  bottom: 50px;
}
.fe-toast-fade-enter,
.fe-toast-fade-leave-to {
  opacity: 0;
}
