/*点击删除按钮后弹出的层*/

.mask {
    display: none;
    /* 修改这里可以让遮罩层消失*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 500;
    opacity: 0.3;
    filter: alpha(opacity=30);
    overflow: hidden;
}

.pop {
    display: none;
    /* 修改这里可以让删除框消失*/
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 500;
    margin-left: -250px;
    margin-top: -143px;
    width: 500px;
    height: 286px;
    background: #F8F8F8;
    border-radius: 6px;
    opacity: 1;
    padding: 0 24px;
    box-sizing: border-box;
}

.pop-title {
    height: 41px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pop-title-text {
    font-size: 16px;
    line-height: 21px;
    color: #333333;
}

.pop-title-img {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.pop-title-img img {
    width: 100%;
    height: 100%;
}

.pop-content {
    margin: 0 auto;
    width: 452px;
    height: 172px;
    /* background: #FFFFFF; */
    opacity: 1;
    padding: 44px 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
}

.pop-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.enter-text {
    outline: 0;
    border: none;
    width: 320px;
    height: 32px;
    background: #FFFFFF;
    border: 1px solid #DCDFE6;
    opacity: 1;
    box-sizing: border-box;
    padding-left: 10px;
    border-radius: 4px;
}

.enter-text:hover {
    border: 1px solid #DCDFE6;
}

.footer {
    margin: 20px auto;
    width: 80px;
    height: 32px;
    background: #E03437;
    opacity: 1;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.sub-tip {
    width: 30px;
    margin-right: 10px;
}