/*默认主体样式*/
.popup-wrap{z-index:2011;}
.popup{
    position:absolute; 
    z-index:2011; 
    font-size:14px; 
    line-height:1.8;
}

.popup .popup-main{
    position:relative;
    border-radius:5px;
    background-color: #f6f6f6;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    outline: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
    color:#333;
}

.popup .popup-close{ position:absolute; right:10px; top:5px; width:22px; height:30px; overflow:hidden;}
.popup .popup-close-button{ display:block; outline:none; text-align:center; font-size:22px; color:#aaa; font-weight:bold; font-family:Arial; cursor:pointer; overflow:hidden}
.popup .popup-close-button:hover{ color:#333; text-decoration:none}
.popup .popup-title{ 
    padding: 10px 15px; 
    border-bottom: 1px solid #ddd; 
    background-color: #eee;
    border-radius: 5px 5px 0 0;
    font-size: 16px;
}
.popup .popup-content{padding:20px; position: relative;}

/*按钮部分*/
.popup .popup-button{
    padding:15px 20px 20px; 
    display:none; 
    border-top:1px solid #eee; 
    border-radius: 0 0 5px 5px;
}
.popup-button-box {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.popup-button-item {
    width: 49%;
    font-weight: bold
}

/*加载*/
.popup-loading{ display:block; padding-left:18px; height:16px; background:url(images/loading.gif) 0 0 no-repeat}
.popup .popup-close-button{ _text-indent:-9999px; _background:url(images/close.png) center center no-repeat;}