/* 自定义鼠标样式 */
body {
  cursor: url(arrow.cur), default; /* 页面默认使用箭头光标 */
}

/* 链接样式 */
a, a:link, a:visited {
  cursor: url(link.cur), pointer; /* 链接使用手型光标 */
}

/* 输入框样式 */
input, textarea, select, button {
  cursor: url(input.cur), text; /* 输入元素使用文本光标 */
}

/* 可编辑元素和手写样式 */
[contenteditable="true"], .handwriting {
  cursor: url(handwriting.cur), crosshair; /* 可编辑区域使用十字光标 */
}

/* 帮助样式 */
.help {
  cursor: url(help.cur), help; /* 帮助元素使用帮助光标 */
}
