body{cursor:url('https://fq.wc.lt//up/1499563659.cur'),auto;}
A{cursor:url('https://fq.wc.lt//up/1499563659.cur'),auto;}

body {
    color: #000;
    background: url(https://s2.ax1x.com/2019/03/07/kxyMJf.jpg) fixed;
    background-size: cover;
    background-repeat: repeat;
    font-family: "Helvetica Neue",Helvetica,Verdana,Arial,sans-serif;
    font-size: 12px;
    min-height: 101%;
}
#blogTitle h1 {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.5em;
    margin-top: 20px;
}
#blogTitle h2 {
    font-weight: normal;
    font-size: 0.928571429rem;
    line-height: 1.846153846;
    color: #757575;
    float: left;
}
#home {
    opacity: 0.80;
    margin: 0 auto;
    width: 65%;
    min-width: 950px;
    background-color: #fff;
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 50px;
    box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
}
#blogTitle h1 a, #blogTitle h2 {
    color: #000000;
    font-family: "Blackletter";
    text-shadow: 3px 3px 3px #003d44;
}
/*快速评论*/
#div_digg {
  position: fixed;
  bottom: 10px;
  right: 15px;
  border: 2px solid #ECD7B1;
  padding: 10px;
  width: 140px;
  background-color: #fff;
  border-radius: 5px 5px 5px 5px !important;
  box-shadow: 0 0 0 1px #5F5A4B, 1px 1px 6px 1px rgba(10, 10, 0, 0.5);
}
<script type="text/javascript">
        /**
          不知道为什么页面加载完成时还读不到div_digg。可能也是动态生成的。
          所以这里只能用定时器 不断的读取，当读取到了再给它动态添加快捷按钮
        **/

        //自定义 定时器[当元素加载完成是执行回调函数]
        function customTimer(inpId, fn) {
            if ($(inpId).length) {
                fn();
            }
            else {
                var intervalId = setInterval(function () {
                    if ($(inpId).length) {  //如果存在了
                        clearInterval(intervalId);  // 则关闭定时器
                        customTimer(inpId, fn);              //执行自身
                    }
                }, 100);
            }
        }

        //页面加载完成是执行
        $(function () {
            customTimer("#div_digg", function () {
                var div_html = "<div class=''>\
                        <a href='javascript:void(0);' onclick='c_follow();'>关注</a>\
                         &nbsp;|&nbsp;\
                        <a href='#top'>顶部</a>\
                         &nbsp;|&nbsp;\
                        <a href='javascript:void(0);' onclick=\" $('#tbCommentBody').focus();\">评论</a>\
                   </div>";
                $("#div_digg").append(div_html);
                //tbCommentBody    
            });
        });
 </script>
.cnblogs-markdown .hljs {
  font-family:"Courier New"!important;
  font-size:17px!important;
}

.cnblogs-markdown .hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  background: #1E1E1E !important;
  color: #DCDCDC !important;
}

.cnblogs-markdown .hljs-keyword,
.cnblogs-markdown .hljs-literal,
.cnblogs-markdown .hljs-symbol,
.cnblogs-markdown .hljs-name {
  color: #569CD6  !important;
}
.cnblogs-markdown .hljs-link {
  color: #569CD6 !important;
  text-decoration: underline;
}

.cnblogs-markdown .hljs-built_in,
.cnblogs-markdown .hljs-type {
  color: #4EC9B0 !important;
}

.cnblogs-markdown .hljs-number,
.cnblogs-markdown .hljs-class {
  color: #B8D7A3 !important;
}

.cnblogs-markdown .hljs-string,
.cnblogs-markdown .hljs-meta-string {
  color: #D69D85 !important;
}

.cnblogs-markdown .hljs-regexp,
.cnblogs-markdown .hljs-template-tag {
  color: #9A5334 !important;
}

.cnblogs-markdown .hljs-subst,
.cnblogs-markdown .hljs-function,
.cnblogs-markdown .hljs-title,
.cnblogs-markdown .hljs-params,
.cnblogs-markdown .hljs-formula {
  color: #DCDCDC !important;
}

.cnblogs-markdown .hljs-comment,
.cnblogs-markdown .hljs-quote {
  color: #57A64A !important;
  font-style: italic !important;
}

.cnblogs-markdown .hljs-doctag {
  color: #608B4E !important;
}

.cnblogs-markdown .hljs-meta,
.cnblogs-markdown .hljs-meta-keyword,
.cnblogs-markdown .hljs-tag {
  color: #9B9B9B !important;
}

.cnblogs-markdown .hljs-variable,
.cnblogs-markdown .hljs-template-variable {
  color: #BD63C5 !important;
}

.cnblogs-markdown .hljs-attr,
.cnblogs-markdown .hljs-attribute,
.cnblogs-markdown .hljs-builtin-name {
  color: #9CDCFE !important;
}

.cnblogs-markdown .hljs-section {
  color: gold !important;
}

.cnblogs-markdown .hljs-emphasis {
  font-style: italic !important;
}

.cnblogs-markdown .hljs-strong {
  font-weight: bold !important;
}

/*.hljs-code {
  font-family:'Monospace';
}*/

.cnblogs-markdown .hljs-bullet,
.cnblogs-markdown .hljs-selector-tag,
.cnblogs-markdown .hljs-selector-id,
.cnblogs-markdown .hljs-selector-class,
.cnblogs-markdown .hljs-selector-attr,
.cnblogs-markdown .hljs-selector-pseudo {
  color: #D7BA7D !important;
}

.cnblogs-markdown .hljs-addition {
  background-color: #144212 !important;
  display: inline-block;
  width: 100%;
}

.cnblogs-markdown .hljs-deletion {
  background-color: #600 !important;
  display: inline-block;
  width: 100%;
}
#div_digg {
  position: fixed;
  bottom: 10px;
  right: 15px;
  border: 2px solid #ECD7B1;
  padding: 10px;
  width: 140px;
  background-color: #fff;
  border-radius: 5px 5px 5px 5px !important;
  box-shadow: 0 0 0 1px #5F5A4B, 1px 1px 6px 1px rgba(10, 10, 0, 0.5);
}
<style type="text/css">
    #cnblogs_post_body
    {
        color: black;
        font: 0.875em/1.5em "微软雅黑" , "PTSans" , "Arial" ,sans-serif;
        font-size: 16px;
    }
    #cnblogs_post_body h2    {
        background: #2B6695;
        border-radius: 6px 6px 6px 6px;
        box-shadow: 0 0 0 1px #5F5A4B, 1px 1px 6px 1px rgba(10, 10, 0, 0.5);
        color: #FFFFFF;
        font-family: "微软雅黑" , "宋体" , "黑体" ,Arial;
        font-size: 17px;
        font-weight: bold;
        height: 25px;
        line-height: 25px;
        margin: 18px 0 !important;
        padding: 8px 0 5px 5px;
        text-shadow: 2px 2px 3px #222222;
    }
 #cnblogs_post_body h3{
        background: #2B6600;
        border-radius: 6px 6px 6px 6px;
        box-shadow: 0 0 0 1px #5F5A4B, 1px 1px 6px 1px rgba(10, 10, 0, 0.5);
        color: #FFFFFF;
        font-family: "微软雅黑" , "宋体" , "黑体" ,Arial;
        font-size: 13px;
        font-weight: bold;
        height: 24px;
        line-height: 23px;
        margin: 12px 0 !important;
        padding: 5px 0 5px 50px;
        text-shadow: 2px 2px 3px #222222;
    }
 #cnblogs_post_body a {
        color: #21759b;
    transition-delay: 0s;
    transition-duration: 0.4s;
    transition-property: all;
    transition-timing-function: linear;
    }
#cnblogs_post_body a:hover{
    margin-left: 20px
}

#navCategory  a{
    display: block;
    transition:all 1s;
}
#navCategory a:hover{
    margin-left: 20px
}

#blog-sidecolumn  a{
    display: block;
    transition:all 1s;
}
#blog-sidecolumn a:hover{
    margin-left: 20px
}

#sidebar_toptags li a{
float:left;
}
#TopViewPostsBlock li a{
margin-left: 5px;
}
#cnblogs_post_body a{
    display: block;
    transition:all 1s;
}
</style>