/* 全局默认鼠标指针 */
body {
    cursor: url('/cur/Normal.cur'), default;
}

/* 链接、按钮等可点击元素使用 Normal 2.cur */
a,
a *,
button,
.button,
.menu-item,
input[type="button"],
input[type="submit"],
input[type="reset"],
i,
svg,
img {
    cursor: url('/cur/Normal%202.cur'), pointer !important;
}

/* 文本悬停时使用 Text.cur */
p,
span,
label,
h1,
h2,
h3,
h4,
h5,
h6 {
    cursor: url('/cur/Text.cur'), text;
}

/* 代码块使用 Normal.cur */
code,
pre {
    cursor: url('/cur/Normal.cur'), default;
}

/* 输入框和文本域使用 handwriting.cur (手写笔样式) */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"],
textarea {
    cursor: url('/cur/handwriting.cur'), text;
}

/* 注释掉 Precision.cur (精确选择样式)
code,
pre {
    cursor: url('/cur/Precision.cur'), crosshair;
}
*/

/* 其他可能的备用选择，使用 alternate.cur
::selection {
    cursor: url('/cur/alternate.cur'), auto;
}
*/