/* 鼠标跟随光点 */
.siwei-mouse-follow-dot {
	position: fixed;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	pointer-events: none;
	z-index: 99998;
	margin: -7px 0 0 -7px;
	background: radial-gradient(circle, rgba(44, 99, 255, 0.85) 0%, rgba(44, 99, 255, 0) 70%);
	transition: transform 0.12s ease-out;
	mix-blend-mode: multiply;
}
.dark-open .siwei-mouse-follow-dot {
	mix-blend-mode: screen;
	background: radial-gradient(circle, rgba(120, 180, 255, 0.9) 0%, rgba(120, 180, 255, 0) 70%);
}
