﻿/*!
 * PageGuard.js v1.0.0 (https://github.com/Netrvin/PageGuard.js)
 * Licensed under the MIT license
 */

/* 定义一个类选择器 .unselectable */
.content {
	/* disable text selection */
	-webkit-user-select: none; /* Safari, Chrome, Opera */
    -moz-user-select: none;    /* Firefox */
    user-select: none;         /* Modern browsers */
    -ms-user-select: none;     /* Edge, IE */
    -khtml-user-select: none;  

	/* disable touch actions */
	touch-action: none;
    -webkit-touch-callout:none;
    -moz-touch-callout:none;   
    -ms-touch-callout:none;
    touch-callout:none;

	/* disable pointer events */
	pointer-events: none;

	/* disable dragging */
    -webkit-user-drag: none;
    user-drag: none;
	
	
}

@media print {
    * {
        display: none
    }
}

/* 如果需要让input元素可以被选择，可以单独设置 */
.content input {
     -webkit-user-select:auto;
}

.content::selection {
    background-color: transparent;
    color: transparent;
}