/**
 * 摄状元®数字创影 - 防复制保护CSS
 * 冯工开发部 | 2026-08-28
 */

/* 禁止文本选择（防Ctrl+C） */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* 允许表单内正常输入 */
input, textarea, [contenteditable="true"], [contenteditable=""] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* 图片防拖拽 */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none; /* 防拖拽保存（但允许父元素接收点击） */
}

/* 允许带链接的图片可点击 */
a img {
    pointer-events: auto;
}

/* 视频防拖拽 */
video {
    -webkit-user-drag: none;
    user-drag: none;
}

/* 打印时隐藏主要内容（防Ctrl+P打印） */
@media print {
    body::after {
        content: '摄状元®数字创影 | shezhuangyuan.com | 本内容受版权保护，禁止打印';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #333;
        z-index: 999999;
    }
    body * {
        visibility: hidden !important;
    }
}
