     .vwrap {
    z-index: 1040000;
    position: fixed;
    background: #fff;
    width: 400px;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    box-shadow: 0px 0px 40px rgb(0 0 0 / 80%);
    box-sizing: border-box;
    border-radius: 20px;
    max-height: 400px;
    padding: 20px;
    } 
    
    #mask_box{
    height: 100%;
    overflow-y: auto;
    max-height: 300px;
    padding: 12px;
    margin: 15px 0;
}
    
    
    .vwrap .content{
    overflow-y: auto;
    overflow-x: hidden;}
    
    .vwrap .title{
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    /* margin: 10px 0; */
    }

    .vwrap .content p{
       line-height: 1.5;
       font-size: 14px;
       margin: 5px 0;
    }

    .vwrap .close {
    z-index: 999;
    cursor: pointer;
    position: absolute;
    top: 12px;
    right: 12px;
    text-align: center;
    font-size: 36px;
    line-height: 1;
    } 
    
  #mask_box::-webkit-scrollbar {
        width: 6px;
        height: 9px;
    }

    #mask_box::-webkit-scrollbar-track {
        width: 4px;
        background: #fff;
        -webkit-border-radius: 2em;
        -moz-border-radius: 2em;
        border-radius: 2em;
    }

    #mask_box::-webkit-scrollbar-thumb {
        background-color: #999;
        background: #999;
        background-clip: padding-box;
        min-height: 28px;
        -webkit-border-radius: 2em;
        -moz-border-radius: 2em;
        border-radius: 2em;
    }

    ::-webkit-scrollbar-thumb:hover {
        background-color: #ef9e12
    }
    
    @media (max-width: 1024px) {

    
  .vwrap {
    width: 80%;
    padding: 19px;
} 

#mask_box{
    padding: 15px;
}
    
    }   