.toast-layout {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 999;
}

.toast .content {
    margin: auto;
    max-width: 2.5rem;
    width: max-content;
    padding: 0.1rem;
    text-align: center;
    color: #fff;
    background-color: #777575;
    border-radius: 0.1rem;
    font-size: 0.14rem;
}

.hide-toast {
    animation: remove .5s ease-out;
}

@keyframes remove {
    from {

        opacity: 1;
    }

    to {

        opacity: 0;
    }
}