* {
    cursor: none !important;
}

/* 鼠标指针 */
.mouse {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ff9068;
    position: fixed;
    left: -5%;
    top: -5%;
    pointer-events: none;
    z-index: 999;
    transition: background 0.3s, width 0.3s, height 0.3s;
}

.mouse-back {
    position: absolute;
    content: '';
    width: 2em;
    height: 2em;
    background: url(/assets/cursor.svg) no-repeat center center;
    background-size: contain;
    left: -5%;
    top: -5%;
    margin: -0.42em 0 0 -0.42em;
    animation: mouse 3s linear infinite both;
    pointer-events: none;
    z-index: 999;
    transition: 100ms;
}

.mouse.lighter {
    background-color: #b6ff94;
    width: 10px;
    height: 10px;
}

.mouse-back.lighter {
    background-image: url(/assets/cursor-orange.svg);
    width: 2.5em;
    height: 2.5em;
    margin: -0.75em 0 0 -0.75em;
    transition: 100ms;
}

@keyframes mouse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}