/* 全站防复制：禁止选中与拖拽，编辑区输入框除外 */

html.copy-protected body {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

html.copy-protected .copy-allowed,
html.copy-protected textarea,
html.copy-protected input,
html.copy-protected select,
html.copy-protected [contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

html.copy-protected img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}
