/**
 * B2 图片水印 —— 前台防护样式
 * 防止图片被拖拽、选中
 */

/* 禁止图片拖拽 */
img {
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;
    user-drag: none;
}

/* 禁止图片选中 */
img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* 禁止移动端长按菜单 */
img {
    -webkit-touch-callout: none;
    pointer-events: auto;
}

/* 保留图片的可点击性，但禁止选中背景色 */
img::selection {
    background: transparent;
}
img::-moz-selection {
    background: transparent;
}
