.load_page_close{
    display:none;
    position:fixed;
    top:0px;
    left:0px;
    height:100%;
    width:100%;
    z-index:99998;
    background-color:rgba(0, 0, 0, 0.8);
}

.load_page{
    display:none;
    position:fixed;
    top:-10000px;
    left:0px;
    height:100%;
    width:100%;
    z-index:99999;
    background-color:rgba(255, 255, 255,0.3);
    border-radius:10px;
}
.load_page .title_bar{
    position:fixed;
    z-index:2;
    width:100%;
    max-width:450px;
    font-size:20px;
    /*border-bottom:1px solid #ccc;*/
    border-top-left-radius:10px;
    border-top-right-radius:10px;
    padding-left:10px;
    font-weight:bold;
    background-color:white;
}
.load_page .title_bar .title{
    float:left;
}

.load_page .title_bar .load_page_close_btn{
    float:right;
    padding-right:10px;
    cursor:pointer;
}

.load_page .content{
    border-radius:10px;
    width:100%;
    
    max-width:450px;
    min-height:300px;
    margin:auto auto;
    background-color:white;
    overflow-y:auto;
    overflow-x:hidden;
}
.load_page .content .data{
    margin-top:30px;
    padding:10px;
}