/* 遮罩层 */
.popupMask{
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,0.5);
    position:fixed;
    top:0;
    left:0;
    z-index: 3;
    overflow: auto;
}
/* 弹出层主体 */
.popupMain {
    width:800px;
    min-height:10px;
    padding:30px;
    position:absolute;
    top:10%;
    left:50%;
    margin-left:-350px;
    z-index:5;
    background: #fff;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 50px;
}
/* 弹出框标题 */
.popupMain>.popupTitle{
    display: flex;
    justify-content: space-between;
    border-bottom:1px solid #F4F4F4;
    padding-bottom:10px;
}
.popupMain>.popupTitle>div{
    border-left:5px solid #3BC877;
    padding-left:10px;
    font-size:20px;
    color: #3BC877;
}
/* 关闭按钮 */
.popupBtnClose {
    cursor: pointer;
}
.popupBtnClose:active {
    opacity: 0.5;
}
/* 内容区域 */
.popupBody{
    margin: 20px 10px 20px 10px;
    text-align: left;
}
/* 按钮 */
.popupBtn{
    min-width:100px;
    padding:5px 15px;
    background-color:#3BC877;
    color:#fff;
    border:none;
    border-radius:20px;
    cursor: pointer;
    display: inline-block;
    text-overflow:ellipsis;
    white-space:nowrap;
    overflow:hidden;
    text-align: center;
    font-size: 14px;
    margin: 0px 0px 10px 0px;
}

.popupBtn:active {
    opacity: 0.5;
}
