     .vwrap {
    z-index: 1040000;
    position: fixed;
    background: #fff;
    width:50%;
    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: 600px;
    padding: 30px;} 
    
    #mask_box{
    height: 100%;
    overflow-y: auto;
    max-height: 500px;
    padding: 20px;
    margin: 15px 0;
}
    
    
    .vwrap .content{
    overflow-y: auto;
    overflow-x: hidden;}
    
    .vwrap .title{
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    /* margin: 10px 0; */
    }

    .vwrap .content p{
       line-height: 1.5;
    font-size: 16px;
    margin: 8px 0;
    }

    .vwrap .close {
    z-index: 999;
    cursor: pointer;
    position: absolute;
    top: 11px;
    right: 20px;
    text-align: center;
    font-size: 36px;} 
    
  #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: 25px;
} 

#mask_box{
    padding: 15px;
}
    
    }   