cursor: url(//img.58cdn.com.cn/resource/xxzl/captcha/pencil.png), default;
/*获取鼠标位置,让提示气泡框跟随鼠标*/标签:clientY,style,鼠标,自定义,px,JS,document,sgTip From: https://blog.51cto.com/u_15920212/5962842
var sgTip=document.querySelector("#sgTip")
document.addEventListener("mousemove", e => {
console.log(e.clientX, e.clientY);
sgTip.style.left = e.clientX + 20 + "px", sgTip.style.top = e.clientY + 20 + "px";
});