@charset "utf-8";
.dlgmarker{
position:fixed;
left:0;
top:0;
z-index:100;
width:100%;
height:100%;
background-color:rgba(0,0,0,.3);
visibility:hidden;
}
.dlgmarker_active{
background-color:rgba(0,0,0,.55);
visibility:visible;
}

.dlg{
z-index:101;
border-radius:3px;
background-color:#fff;
padding:4px;
position:fixed;
left:50%;
top:50%;
margin-left:-44%;
margin-top:-140px;
width:88%;
min-height:170px;
-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
        box-sizing: border-box;
box-shadow:0 0 10px rgba(0,0,0,.4);
opacity:0;
filter:alpha(opacity=0);
visibility:hidden;
}

.dlg_active{
opacity:1;
filter:alpha(opacity=100);
visibility:visible;
}

.dlgmarker,.dlgmarker_active{
-webkit-transition: all 400ms;
   -moz-transition: all 400ms;
    -ms-transition: all 400ms;
     -o-transition: all 400ms;
        transition: all 400ms;
}
.dlg .dlgcont{
padding:8px 5px;
font-size:14px;
line-height:150%;
min-height:100px;
}
.dlg .dlgcont:after{
display:block;
content:"";
clear:both;
}
.dlg .dlgfooter{
padding:5px 15px 5px 0;
text-align:right;
}
.dlg .dlgfooter:after{
display:block;
content:"";
clear:both;
}
button.btn_close_dlg{
color:#686868;
background-color:#fff;
border:0;
border-radius:5px;
display:inline-block;
padding:0 15px;
font-family:"微软雅黑",verdana,tahoma,arial;
line-height:30px;
font-size:16px;
}
