#pop {
    display: none;
    position: absolute;
    z-index: 1000;
    width: 300px;

    background: white;
    border-radius: 4px;
    border: 1px solid #ebeef5;
    padding-bottom: 10px;
}


#pop .header {
    padding: 15px 15px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;

}

#pop .header .tip {
    font-size: 18px;
    line-height: 1;
    color: #303133;
}

#pop .header .close {
    color: #b1b3b7;
    font-size: 23px;
    cursor: pointer;
}

#pop .content {
    font-size: 14px;
    color: #606266;
    padding: 10px 30px;
}

#pop .footer {
    padding: 5px 15px 0;
    text-align: right;
}

#pop .btn {
    padding: 9px 15px;
    font-size: 12px;
    border-radius: 3px;
    display: inline-block;
    -webkit-appearance: none;
    text-align: center;
    box-sizing: border-box;
    outline: none;
    transition: all .1s;
    font-weight: 500;
    cursor: pointer;
    line-height: 1;
}

#pop .cancel {
    white-space: nowrap;
    background: #ffffff;
    border: 1px solid #dcdfe6;
    margin: 0;
}

#pop .confirm {
    margin-left: 10px;
    color: #ffffff;
    background-color: #409eff;
    border: 1px solid #409eff;
}

#pop .cancel:hover {
    color: #409eff;
    border-color: #c6e2ff;
    background-color: #ecf5ff;
}


#pop .confirm:hover {
    background: #66b1ff;
    border-color: #66b1ff;
    color: #fff;
}




