/*confirm & alert*/
.dialog_overlay{
    display:none;
    position:fixed;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.1);
    z-index:1041;
    top:0;
    left:0;
}
.dialog_dialog{
    border: 1px #ccc solid;
    background-color: #fff;
    min-height: 220px;
    position:fixed;
    width:550px;
    left:0;
    right: 0;
    top: 40px;
    margin:0 auto;
    display:none;
    z-index:10000;
    box-shadow: 0 2px 26px rgba(0, 0, 0, .3), 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.dialog_header{
    border-bottom: 1px solid #ccc;
    padding:5px;
}
.dialog_body{
    height:60%;
    padding: 10px 5px;
}
.dialog_content{
    height:100%;
    width:100%;
    border-bottom: 1px solid #ccc;
    text-align: center;
    min-height: 110px;
}

.dialog_footer{
    padding-right: 5px;
    text-align: right;
}

.dialog_title{
    line-height: 25px;
}
.dialog_btn{
    font-weight: bold;
    width:80px;
    padding:2px 0px;
    margin-left: 5px;
    cursor:pointer;
    border-radius: 2px;
}
.alert_dialog{
    border: 1px #ccc solid;
    background-color: #fff;
    /*height: 120px;*/
    position:fixed;
    width:250px;
    left:0;
    right: 0;
    top: 40px;
    margin:0 auto;
    display:none;
    z-index:10000;
    box-shadow: 0 2px 26px rgba(0, 0, 0, .3), 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.alert_body{
    height:60%;
    padding: 10px 5px;
}
.alert_content{
    height:100%;
    width:100%;
    text-align: center;
        word-wrap: break-word
    /*word-break: break-all;*/
}
.alert_footer{
    padding-right: 5px;
    text-align: center;
}

.block_dialog{
    border: 1px #ccc solid;
    background-color: #fff;
    position:fixed;
    width: 750px;
    left:0;
    right: 0;
    top: 40px;
    margin:0 auto;
    display:none;
    z-index:9999;
    box-shadow: 0 2px 26px rgba(0, 0, 0, .3), 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.block_body{
    height:60%;
    padding: 10px 5px;
}
.block_content{
    height:100%;
    min-height: 200px;
    width:100%;
    text-align: center;
    word-break: break-all;
}
.block_footer{
    padding-right: 5px;
    text-align: center;
}

.tbw{
    background-color: #fff;
    border:1px solid #ccc;
    color:#4e5665;
}
.btg{
    background-color: #0092C7;
    border:1px solid #ccc;
    color:#fff;
}