.toast {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(50, 50, 50, .6);
    z-index: 999;
}
.toast>div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    max-width: 300px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .06), 0 2px 32px rgba(0, 0, 0, .16);
    overflow: hidden;
}
.toast>div>span {
    display: block;
    padding: 20px 20px 6px 20px;
    line-height: 20px;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
}
.toast>div>div {
    text-align: center;
}
.toast>div>div>span {
    display: inline-block;
    padding: 0 20px 20px 20px;
    font-size: 16px;
    color: #333;
    text-align: justify;
}
.toast>div>div>div:not(:nth-child(1)) {
    border-left: 1px solid #ccc;
}
.toast>div>div>a,
.toast>div>div>div>a {
    display: inline-block;
    width: 100%;
    padding: 12px;
    font-size: 14px;
    color: #157AFB;
    border-top: 1px solid #ccc;
}
