/* 鼠标样式 */
#cursor {
    position: fixed;
    width: 16px;
    height: 16px;
    /* 这里改变跟随的底色 */
    background: rgb(255, 0, 0);
    border-radius: 8px;
    opacity: 0.25;
    z-index: 10086;
    pointer-events: none;
    transition: 0.2s ease-in-out;
    transition-property: background, opacity, transform;
}

#cursor.hidden {
    opacity: 0;
}

#cursor.hover {
    opacity: 0.1;
    transform: scale(2.5);
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
}

#cursor.active {
    opacity: 0.5;
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
}

/* 白天网站背景/颜色 */
#web_bg {
    background: url("https://vip.123pan.cn/1820964959/cdn/blog/upload/%E6%9C%AA%E5%88%86%E7%BB%84/1.webp") no-repeat center center;
}

/* 夜间网站背景/颜色 */
[data-theme=dark] #web_bg {
    background: url("https: //vip.123pan.cn/1820964959/cdn/blog/upload/%E6%9C%AA%E5%88%86%E7%BB%84/5.webp") no-repeat center center;
}