/* 禁止页面，选中 复制
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;
} */

#blogTitle{
    text-align: end;
}
/*自定义背景
body {
background: url(https://img2018.cnblogs.com/blog/1542871/201811/1542871-20181129153428452-1880246318.jpg) no-repeat fixed;
    background-size: cover;
}
*/
/*设置评论框*/
#tbCommentBody{
    width: 99%;
    height: 200px;
    style:"resize:none";
}
#ad_t2{
    display: none;
}
#cnblogs_c1{
    display: none;
}
#itnews c_ad_block{
    display: none;
}
#google_image_div{
    display: none;
}
#Header1_HeaderTitle{
txt:"11111";
}

<script type="text/javascript"> 
 /* 鼠标特效 */ 
 var a_idx = 0; 
 jQuery(document).ready(function($) { 
     $("body").click(function(e) { 
         var a = new Array("富强","民主","和谐","文明","自由","平等","公正","法治","爱国","敬业","诚信","友善"); 
         var $i = $("<span/>").text(a[a_idx]); 
         a_idx = (a_idx + 1) % a.length; 
         var x = e.pageX, 
         y = e.pageY; 
         $i.css({ 
             "z-index": 999999999999999999999999999999999999999999999999999999999999999999999, 
             "top": y - 20, 
             "left": x, 
             "position": "absolute", 
             "font-weight": "bold", 
             "color": "rgb(72,85,137)" 
         }); 
         $("body").append($i); 
         $i.animate({ 
             "top": y - 180, 
             "opacity": 0 
         }, 
         1500, 
         function() { 
             $i.remove(); 
         }); 
     }); 
 }); 
 </script>