 /* 禁止页面选中、复制 */
 html,body{
 moz-user-select: -moz-none;
 -moz-user-select: none;
 -o-user-select:none;
 -khtml-user-select:none;
 -webkit-user-select:none;
 -ms-user-select:none;
 user-select:none;
 }