.global-pop {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 21;
}

/* https://blog.csdn.net/AK852369/article/details/103436117  全屏弹窗动画*/

.global-pop-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.global-pop-container-fadein {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadein .2s;
}

@keyframes fadein {
    0% {
        transform: translate(100%, 0);
    }
    100% {
        transform: none;
    }
}

.global-pop-container-fadeout {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeout .2s;
}

@keyframes fadeout {
    100% {
        transform: translate(-100%, 0);
    }
    0% {
        transform: none;
    }
}

.m-toast-pop {
    position: fixed;
    width: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
    text-align: center;
}

.m-toast-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    text-align: center;
}

.m-toast-inner-text {
    display: inline-block;
    margin: 0 0.22rem;
    padding: 0.19rem 0.21rem;
    font-size: 0.30rem;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 0.30rem;
    background: rgba(0, 0, 0, 0.72);
    border-radius: 0.10rem;
}
