/* ===== 容器 ===== */
.ibp-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

/* ===== 图片 ===== */
.ibp-wrapper img {
    width: 100%;
    height: auto;
    display: block;

    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

/* ===== 模糊 ===== */
.ibp-blur-vertical {
    filter: blur(16px);
}

.ibp-blur-horizontal {
    filter: blur(10px);
}

/* ===== 防保存遮罩 ===== */
.ibp-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 10;
    background: transparent;
}
