/* =======================================*/
/* 系统版本：蚂蚁导航系统 V1.2.0          */
/* 更新时间：2026年07月04日03:25          */
/* 作者署名：迷路的蚂蚁（蚂蚁客）         */
/* 联系QQ：3026243861 | 2579605315        */
/* 官网地址：https://www.oaot.cn/         */
/* 联系邮箱：mayike404@qq.com             */
/* =======================================*/

/* 定义光标变量，方便维护 */
:root {
  --cursor-default: url("/img/sbmr.png"), auto;
  --cursor-click: url("/img/sbdj.png"), pointer;
}

/* 全局应用默认光标 */
html, body, div, span, p, h1, h2, h3, h4, h5, h6,
ul, ol, li, dl, dt, dd, table, tr, td, th,
form, fieldset, legend, input, textarea, button {
  cursor: var(--cursor-default);
}

/* 点击状态 - 提高优先级 */
html:active, body:active, *:active {
  cursor: var(--cursor-click) !important;
}

/* 可点击元素的悬停状态 */
a, button, input[type="button"], input[type="submit"],
[role="button"], .clickable {
  cursor: var(--cursor-default);
}

/* 禁用状态的特殊光标 */
*[disabled] {
  cursor: not-allowed;
}