/**
 * 绿仓回收 - 防克隆保护样式
 */

/* 禁用选择 */
* {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
}

/* 图片保护 */
img {
    pointer-events: none !important;
    -webkit-user-drag: none !important;
}

/* 隐藏真实内容样式 */
.hidden-content {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
}
