.show-toast {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 7.5rem;
    height: 100%;
    font-size: .35rem;
    background-color: rgba(0, 0, 0, .3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-item {
    margin: 0 .65rem;
    max-height: 50%;
    /* margin-top: 20%; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: .3rem;
    width: 100%;
}

.toast-content {
    width: 100%;
    padding: .49rem .44rem;
    font-size: .3rem;
    border-bottom: .01rem solid #CCC;
    overflow-y: auto;
}

.toast-content a {
    display: inline-block;
    margin-top: .2rem;
    color: #3887D9;
}

.toast-content p {
    white-space: pre-line;
}

.toast-confirm {
    height: .98rem;
    width: 100%;
    line-height: .98rem;
    color: #3887D9;
    text-align: center;
}