/* ===== 内容保护：禁止选中复制（后台 .admin-body 不受影响） ===== */
body:not(.admin-body) {
    -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
    -webkit-touch-callout: none;
}
/* 输入类元素必须保留可选中，否则表单没法用 */
body:not(.admin-body) input,
body:not(.admin-body) textarea,
body:not(.admin-body) select,
body:not(.admin-body) [contenteditable]:not([contenteditable="false"]),
body:not(.admin-body) .allow-select,
body:not(.admin-body) .allow-select * {
    -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text; user-select: text;
}
/* 链接：恢复长按菜单（iOS/微信「在新页面打开 / 拷贝链接」）。
   只放开长按菜单，不放开选中（user-select 仍为 none），故长按后无法复制正文。 */
body:not(.admin-body) a[href] {
    -webkit-touch-callout: default;
}
