#blogTitle {
    background: url(https://images.cnblogs.com/cnblogs_com/jcsoft/1633617/o_IMG_20200114_1441460000.jpg) no-repeat center -250px;
    text-shadow: black 0px 5px 5px;
    width:100%;
    overflow:hidden;
    }

#blogTitle h1,#blogTitle h2{
   width:1200px;
    margin:0 auto;
    text-align:left;
}

/**logo扫光效果CSS**/
#lnkBlogLogo:before{  /**根据logo外div样式名称修改before前名称**/
    content:"";
    position: absolute;
    left: -665px; /**第一个数字参数控制扫光速度，数字越大越慢**/
    top: 0px;
    width: 1000px;
    height: 10px; /**光标的宽度，可根据实际调整**/
    background-color: rgba(255,255,255,.5);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: searchLights 8s ease-in 1s infinite;
    -o-animation: searchLights 8s ease-in 1s infinite;
    animation: searchLights 8.7s ease-in 1s infinite;/**第一个数字参数控制扫光速度，数字越大越慢**/
}
@-webkit-keyframes searchLights {
    0% { left: -500px; top: -50px; }
    to { left: 1200px; top: 100px; }
}
@-o-keyframes searchLights {
    0% { left: -500px; top: -50px; }
    to { left: 1200px; top: 100px; }
}
@-moz-keyframes searchLights {
    0% { left: -500px; top: -50px; }
    to { left: 1200px; top: 100px; }
}
@keyframes searchLights {
    0% { left: -500px; top: -50px; }
    to { left: 1200px; top: 100px; }
}

::selection {
    background-color:#ff5e52;
    color: white;
}
/*鼠标指针样式开始*/ 
body{cursor:url(https://chenjianhao.com/file/pic/normal.cur), default;}
a:hover{cursor:url(https://chenjianhao.com/file/pic/link.cur), pointer;}
/*鼠标指针样式结束*/