.show-toast {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    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 {
    max-height: 50%;
    /* margin-top: 20%; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: .3rem;
    width: 70%;
    max-height: 70%;
    background-color: transparent;
}
/* 弹窗 */
.toast-img {
    width: 100%;
    height: 30vw;
    background: linear-gradient(rgba(0,0,0,0) 50%,#fff 50%);
}

.toast-content {
    width: 100%;
    border-bottom: .01rem solid #CCC;
    overflow-y: auto;
    padding: 5vw 4vw;
    color: #666;
    background-color: #fff;
}

.toast-content p {
    white-space: pre-line;
    font-size: 4vw;
    text-align: justify !important;
}

.toast-confirm {
    height: 12vw;
    width: 100%;
    line-height: 12vw;
    font-family: "FZDHTJW";
    font-size: 5vw;
    text-align: center;
    border-radius: 0rem 0rem 0.2rem 0.2rem;
    color: #fff;
    background-color: #5994f4;
}


