@import 'normalize.css';
.may-toast {
  position: fixed;
  width: 100px;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: rgba(65, 72, 93, 0.77);
  color: #fff;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  border-radius: 3px;
}
.may-toast .may-toast-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.may-toast-top {
  top: 30px;
}
.may-toast-middle {
  top: 45%;
}
.may-toast-bottom {
  bottom: 30px;
}
.may-toast-normal {
  background-color: rgba(65, 72, 93, 0.77);
}
.may-toast-primary {
  background-color: #2f86f6;
}
.may-toast-danger {
  background-color: #ff5257;
}
