.fl{
    float:left;
}
.fr{
    float:right;
}
.clear{
    clear: both;
}
.mask{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    background: rgba(0, 0, 0, .6);
    z-index: 1;
    /* transition: .3s; */
}
.pop{
    width:300px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius: 4px;
    background: #fff;
    z-index: 2;
    padding: 0;
    /* transition: .3s; */
}
.header{
    padding: 10px;
    border-bottom:1px solid #ccc;
    background: #92C8FF;
}
.header span{
    font-size: 18px;
    color: #fff;
}
.closeBtn{
    display: inline-block;
    padding:2px;
    cursor: pointer;
}
.ctn{
    padding: 15px;
}
.ctnTxt{
    color:rgba(0, 0, 0, .6);
}
.ctn .tanhao{
    font-weight: bold;
    background: #E6A23C;
    display: inline-block;
    width:20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    margin-right: 5px;
}
.ctlWrap{
    padding: 0px 20px 20px 0;
}

.ctlWrap span{
    padding: 3px 12px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.ctlWrap .confirm{
    /*border: 1px solid #409EFF;*/
    background: #92C8FF;

}
.window .window-header .panel-title{
    color: #fff!important;
}
.ctlWrap .cancle{
    transition: .3s;
}
.ctlWrap .cancle:hover{
    color:#409EFF;
    border: 1px solid #409EFF;
}
.poplert,.closelert{
    background: #409EFF;
    padding: 10px 20px;
    width: auto;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}