/* ====================== 自定义鼠标样式全集 ====================== */
/* 1. 全局默认鼠标样式（保留原有） */
body { 
  cursor: url(http://tx.ihuahui.win/images/aug.png), default; 
}

/* 2. 链接悬浮样式（保留原有） */
a:hover { 
  cursor: url(http://tx.ihuahui.win/images/help.png), pointer;
}

/* 3. 【文本输入状态】输入框/文本域/下拉框 鼠标样式 */
input, textarea, select {
  cursor: url(http://tx.ihuahui.win/images/text.png), text;
}

/* 4. 【纯文本区域】段落/标题/普通文本 鼠标样式 */
p, h1, h2, h3, h4, h5, h6, span, div {
  cursor: url(http://tx.ihuahui.win/images/aug.png), text;
}
/* 5. 【按钮点击状态】所有按钮/可点击元素 鼠标样式 */
button, 
input[type="button"], 
input[type="submit"], 
.btn, 
.clickable {
  cursor: url(http://tx.ihuahui.win/images/person.png), pointer;
}
[disabled], .disabled, button:disabled, a.disabled {
  cursor: url(http://tx.ihuahui.win/images/unavailable.png), not-allowed;
}