/* 鼠标图标 */

body {
  cursor: url(https://albert-notes.github.io/img/default.cur), auto;
}

/*a标签*/

a:hover {
  cursor: url(https://albert-notes.github.io/img/pointer.cur), auto;
}

span:hover {
  cursor: url(https://albert-notes.github.io/img/pointer.cur), auto;
}

/*按钮*/

button:hover {
  cursor: url(https://albert-notes.github.io/img/pointer.cur), auto;
}

.menus_item {
  cursor: url(https://albert-notes.github.io/img/pointer.cur), auto;
}

#rightside > div > button,
#rightside > div > a {
  display: block;
  margin-bottom: 2px;
  width: 30px;
  height: 30px;
  color: var(--btn-color);
  text-align: center;
  font-size: 16px;
  cursor: url(https://albert-notes.github.io/img/pointer.cur), auto;
}

/* 打赏 */

.post-reward .reward-button {
  cursor: url(https://albert-notes.github.io/img/pointer.cur), auto;
}

/* 文章标签 */

.layout_post .tag_share .post-meta__tags {
  cursor: url(https://albert-notes.github.io/img/pointer.cur), auto;
}

/* 评论区 */

.vcol * {
  cursor: url(https://albert-notes.github.io/img/pointer.cur), auto;
}

.v[data-class="v"] .vicon {
  cursor: url(https://albert-notes.github.io/img/pointer.cur), auto;
}

.v[data-class="v"] .vbtn {
  cursor: url(https://albert-notes.github.io/img/pointer.cur), auto;
}

/* 回复 */

.vat {
  cursor: url(https://albert-notes.github.io/img/pointer.cur), auto;
}

/*i标签*/

i:hover {
  cursor: url(https://albert-notes.github.io/img/pointer.cur), auto;
}

/*up酱*/

#upj:hover {
  cursor: url(https://albert-notes.github.io/img/pointer.cur), auto;
}

/*页脚a标签*/

#footer-wrap a:hover {
  text-decoration: none;
  cursor: url(https://albert-notes.github.io/img/pointer.cur), auto;
}

/*分页器*/

#pagination .page-number:hover {
  cursor: url(https://albert-notes.github.io/img/pointer.cur), auto;
}


::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #109ac4;
  background-image: -webkit-linear-gradient( 45deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
  border-radius: 2em;
}

::-webkit-scrollbar-corner {
  background-color: transparent;
}

::-moz-selection {
  color: #fff;
  background-color: #109ac4;
}