/*鼠标指针*/


body {
    cursor: url("/cursor/PaperPlane_Cursors/01.png") 0 0, auto;
}

/*a:hover {*/
/*    cursor: url("/cursor/PaperPlane_Cursors/02.png") 0 0, pointer;*/
/*}*/

a,
a:hover,
button,
button:hover,
[role="button"],
[role="button"]:hover,
input[type="button"],
input[type="button"]:hover,
input[type="submit"],
input[type="submit"]:hover,
.menu-item a,
.menu-item a:hover,
.navbar a,
.navbar a:hover,
#nav a,
#nav a:hover,
.site-data a,
.site-data a:hover,
.card-recent-post a,
.card-recent-post a:hover,
.post-title a,
.post-title a:hover,
.neko,
.neko:hover {
    cursor: url("/cursor/PaperPlane_Cursors/02.png") 0 0, pointer !important;
}

input:not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="image"]),
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"],
input[type="week"],
textarea,
[contenteditable="true"],
.editable,
.CodeMirror,
.CodeMirror-code,
.CodeMirror-line,
.CodeMirror-gutter {
    cursor: url("/cursor/PaperPlane_Cursors/15.png") 0 0, text !important;
}

.article-container,
.article-container p,
.article-container span,
.article-container div,
.post-content,
.post-content p,
.post-content span,
.post-content div,
#post,
#post p,
#post span,
#post div,
#page,
#page p,
#page span,
#page div,
.article-content,
.article-content p,
.article-content span,
.article-content div,
.post-body,
.post-body p,
.post-body span,
.post-body div,
.card-announcement,
.card-announcement p,
.card-announcement span,
.card-author,
.card-author p,
.card-author span,
.card-author .description {
    cursor: url("/cursor/PaperPlane_Cursors/15.png") 0 0, text;
}




#cursor {
    position: fixed;
    width: 16px;
    height: 16px;
    background: #000;
    border-radius: 8px;
    opacity: 0.25;
    z-index: 10086;
    pointer-events: none;
    transition: 0.2s ease-in-out;
    transition-property: background, opacity, transform;
}

#cursor.hidden {
    opacity: 0;
}

#cursor.hover {
    opacity: 0.1;
    transform: scale(2.5);
}

#cursor.active {
    opacity: 0.5;
    transform: scale(0.5);
}
