* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}



h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
li {
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    -webkit-user-drag: none !important;
}

a:hover,
a:active,
a:focus,
label:hover{
    transition: all;
    cursor: url("../../images/mouse_jpg/mouse.cur"), pointer !important;
}

/* 文字z-index为2  */
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
li,
nav {
    z-index: 4 ;
}

body {
    position: relative;
    cursor: url("../../images/mouse_jpg/mouse.cur"), auto !important;
    /* cursor: url("../images/mouse_jpg/mouse.jpg"), pointer; */

}

body:active,
button:active,
button:hover,
input:hover {
    cursor: url("../../images/mouse_jpg/Diamond_Pickaxe.cur"), auto !important;
}

/* 鼠标点击后的方块特效 */
.mouse_click {
    /* 鼠标掉落的方块可以被穿透 */
    pointer-events: none;
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    /* background: url('../images/mouse_click/1.png') no-repeat; */
    /* background: url('../images/mouse_click/1.png') no-repeat; */
    z-index: 999 !important;
    background-size: 20px;
    will-change: top left, opacity;

}

/* 鼠标光晕 */
.mouse_halo {
    /* transition: none !important; */
    /* 鼠标光晕可以被穿透 */
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    box-shadow: 1px 1px 20px rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
    z-index: 3;
    opacity: 0;
    will-change: top left, opacity;
}

/* 初始化 */
.w100 {
    width: 100%;
}
.h100{
    height: 100%;
}