@charset "utf-8";
<style>
  *{
     -moz-user-select:none; /* Firefox */
     -webkit-user-select:none; /* WebKit内核 */
     -ms-user-select:none; /* IE10及以后 */
     -khtml-user-select:none; /* 早期浏览器 */
     -o-user-select:none; /* Opera */
     user-select:none; /* CSS3属性 */
  }
</style>
————————————————


