/* 护眼模式遮罩 */
.eye-care-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 0, 0.08); /* 黄色透明遮罩 */
    z-index: 10000;
    pointer-events: none; /* 确保不会捕获鼠标事件 */
    display: none; /* 默认隐藏 */
}