.popviewbtn {
    height: 46px;
    flex-shrink: 0;
    background: #fff;
    display: flex;
    align-items: center;
    .pop-btn-left {
        width: 90px;
        color: #636C75;
        box-sizing: border-box;
        display: inline-block;
        height: 100%;
        padding: 12px;
        text-align: center;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        line-height: 22px;
        &:after {
            border-right: 1px solid #E1E6EB;
        }
        .pop-check {
            margin-right: 6px;
            display: inline-block;
            line-height: 22px;
            vertical-align: bottom;
            &.m-sys-checkbox:before {
                color: #C0C9D1;
            }
        }
    }
    .pop-btn-right {
        width: calc(100% - 90px);
        height: 46px;
        display: inline-block;
        .pop-cancel,.pop-save {
            position: relative;
            padding: 12px 12px;
            display: inline-block;
            color: #252c33;
            width: 50%;
            text-align: center;
            line-height: 22px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            box-sizing: border-box;
        }
        .pop-save {
            color: #fff;
            background: #BDDEFF;
            &.save-able {
                background: #3296FA;
            }
        }
    }
    &.no-left {
        .pop-btn-right {
            width: 100%;
        }
    }
    .pop-btn-left,.pop-cancel {
        position: relative;
        &:after {
            border-top: 1px solid #E1E6EB;
        }
    }
    
}