.zbox {
    display: none;
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: 0.2s ease-in-out;
    width: 100%;
    z-index: 2147483647;
}

.zbox .main_slot {
    align-items: center;
    background: #FFF;
    border-radius: 15px;
    border: 6px solid #003663;
    display: flex;
    justify-content: center;
    min-width: 873px;
    max-width: 95svw;
    padding: 40px 30px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2147483647;

    -webkit-backface-visibility: hidden;
}
    .zbox .main_slot .body {
        max-height: 80vh;
        overflow: hidden;
    }
    .zbox .main_slot .zbox_prev,
    .zbox .main_slot .zbox_next,
    .zbox .main_slot .zbox_close {
        background: #FFF;
        color: #000;
        display: block;
        cursor: pointer;
        height: 31px;
        line-height: 31px;
        position: absolute;
        text-align: center;
        width: 31px;
    }
    .zbox .main_slot .zbox_prev,
    .zbox .main_slot .zbox_next {
        top: 50%;
        line-height: 28px;
        transform: translate(-50%, -50%);
    }
    .zbox .main_slot .zbox_prev {
        left: 0;
    }
    .zbox .main_slot .zbox_next {
        right: -31px;
    }
    .zbox .main_slot .zbox_close {
        background: #000;
        border: 1px solid transparent;
        border-radius: 100px;
        box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        color: #FFF;
        display: block;
        font-family: sans-serif;
        font-size: 30px;
        font-weight: 700;
        height: 47px;
        line-height: 47px;
        right: 13px;
        text-decoration: none !important;
        top: 13px;
        width: 47px;
    }
    .zbox .main_slot * {
        max-width: 100%;
    }
.zbox .overlay {
    background: #000;
    display: block;
    opacity: 0.8;
    height: 100%;
    width: 100%;
    z-index: 2147483646;
}

.zbox_html {
    display: none;
}
