#rm-toast-container{
    position: fixed;
    width: 0;
    height: 0;
    left: calc(50%);
    top: 0;
    box-sizing: border-box;
    padding-top: 32px;
}
.rm-toast{
    position: relative;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 1px 4px 2px rgba(0, 0, 0, 0.1);
    padding: 8px 12px;
    box-sizing: border-box;
    border-radius: 4px;
    display: flex;
    opacity: 0;
    font-size: 14px;
    transition: all 0.2s ease;
    transform: translateY(10px);
    margin-bottom: 12px;
    max-height: 160px;
    overflow: hidden;
}
.rm-toast.long{
  white-space: normal;
}
.rm-toast img{
    width: 18px;
    height: 18px;
    margin-right: 4px;
}
.rm-toast img[data-type='loading']{
    animation: loading 0.5s linear infinite;
}
@keyframes loading {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
.rm-toast.show{
    opacity: 1;
    transform: translateY(0px);
}
.rm-toast.hide{
    opacity: 0;
    padding-top: 4px;
    padding-bottom: 4px;
    transform: translateY(-10px);
}