#toastbox {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: -168px;
    z-index: 90;
    text-align: center;
    box-sizing: border-box;
    -webkit-transform: translate3d(0, 0, 0) rotateZ(0deg);
    transform: translate3d(0, 0, 0) rotateZ(0deg);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.move2mid {
    -webkit-transform: translate3d(0, -268px, 0) rotateZ(0deg) !important;
    transform: translate3d(0, -268px, 0) rotateZ(0deg) !important;
}
#toast {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 2px;
    font-size: 14px;
    cursor: default;
    height: auto;
    max-height: 168px;
    max-width: 100%;
    overflow: hidden;
    opacity: 1;
    background-color: #000;
    color: #fff;
}