

/* 遮幕 */
.mask{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    z-index: 999;
    text-align: center;
}


/* 浮动 */
.fl{
    float: left;
}
.fr{
    float: right;
}

/* 弹窗基本框架 */
.dialog{
    display: inline-block;
    width: auto;
    background-color: #ffffff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.13);
    position: relative;
    color: #262626;
    margin-top: 100px;
    text-align: left;
}
.dialog-title{
    height: 54px;
    line-height: 54px;
    text-indent: 24px;
}
.dialog-close{
    float: right;
    outline: none;
    background-color: #ffffff;
    border: none !important;
    display: block;
    height: 100%;
    width: 54px;
    background: url('about/dialog_close.png') center no-repeat;
    cursor: pointer;
}
.dialog-close:hover{
    background: url('about/dialog_close_hover.png') center no-repeat !important;
}
.dialog-close.active{
    background: url('about/dialog_close_active.png') center no-repeat;
}
.dialog-operate{
    height: 65px;
    width: 100%;
    text-align: right;
    box-sizing: border-box;
    padding-right: 24px;
    border-top: 1px solid #ebebeb;
    padding-top: 14px;
}
.dialog-operate button{
    margin-right: 16px;
}
.dialog-operate button:last-of-type{
    margin-right: 0;
}

/* 信息确认弹窗样式 */
.dialog-confirm{
    padding: 13px 24px;
    width: 360px;
    box-sizing: border-box;
}
.dialog-confirm-warn{
    vertical-align: middle;
    position: relative;
    top: -1px;
}

/* 单列弹窗示例样式 */

.dialog-single-row{
    padding: 13px 24px;
}
.dialog-single-row li{
    margin-bottom: 13px;
}
.dialog-single-row li span{
    padding-right: 10px;
}
.dialog-single-row li:last-of-type{
    margin-bottom: 0;
}

/* 弹窗 多列示例样式 */
.dialog-multiple-columns{
    padding: 13px 24px;
}
.multiple-columns-item{
    margin-bottom: 15px;
    width: 100%;
}
.multiple-columns-item:last-of-type{
    margin-bottom: 0;
}
.dialog-multiple-columns .input-select{
    width: 304px;
}
.multiple-columns-item .w100{
    width: 100%;
}

/* 弹窗 选择接收者弹窗示例样式 */
.select-receiver{
    box-sizing: border-box;
    padding: 13px 24px;
    width: 780px;
}
.select-receiver-search{
    position: relative;
    font-size: 14px;
    color: #262626;
    margin-bottom: 15px;
}
.select-receiver-search input{
    width: 460px;
    padding-left: 47px;
}
.select-receiver-search img{
    position: absolute;
    left: 14px;
    top: 50%;
    margin-top: -8px;
}
.select-receiver-organization{
    width: 256px;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid #e6e6e6;
    float: left;
    margin-right: 25px;
    overflow-y: auto;
}
.organe-item{
    height: 30px;
    line-height: 30px;
    color: #262626;
    font-size: 14px;
    overflow: hidden;
    cursor: pointer;
    box-sizing: border-box;
}
.organe-item.active,.organe-item:hover{
    background-color: #eff5fc;
}
.organe-item img{
    vertical-align: middle;
    position: relative;
    top: -1px;
}
.organe-item span{
    display: inline-block;
    height: 100%;
}
.organe-control{
    margin-left: 8px;
    margin-right: 2px;
    cursor: pointer;
}
.organe-two-item{
    padding-left: 20px;
}
.organe-three-item{
    padding-left: 42px;
}
.select-receiver-content{
    height: 250px;
    width: 100%;
    margin-bottom: 10px;
}
.select-receiver-radio span{
    position: relative;
    top: 2px;
    margin-right: 30px;
    color: #8c8c8c;
}
.select-receiver-list{
    width: 180px;
    height: 100%;
    border: 1px solid #e6e6e6;
    float: left;
}
.select-receiver-list li{
    height: 30px;
    width: 100%;
    line-height: 30px;
    cursor: pointer;
    font-size: 14px;
    color: #262626;
}
.button.active,.button:hover{
    color: #ffffff !important;
    background: #2170d9 !important;
    border: 1px solid #2170d9;
}
.select-receiver-list li:hover,.select-receiver-list li.active{
    background-color: #eff5fc;
}
.select-receiver-list li img{
    margin-left: 8px;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
.select-receiver-oprate{
    float: left;
    width: 87px;
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
    padding-top: 42px;
}
.select-receiver-oprate button{
    display: inline-block;
    width: 60px;
    height: 36px;
    margin-bottom: 7px;
    outline: none;
    cursor: pointer;
    border: none;
    border: solid 1px #d9d9d9;
    background-color: #fafbfc;
    text-align: center;
}
.select-receiver-oprate button:last-of-type{
    margin-bottom: 0;
}
.select-receiver-oprate button img{
    width: 100%;
    height: 100%;
}

