/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* 点击效果样式 */
.click-effect {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transform: scale(0);
    animation: clickEffect 1s ease-out;
    pointer-events: none;
    z-index: 9999;
}

@keyframes clickEffect {
    to {
        transform: scale(8);
        opacity: 0;
    }
}

/* 选中文本样式 */
::selection {
    background: #ffb6c1 !important;
    color: white !important;
}

/* 确保选中文本在所有元素上都生效 */
*::selection {
    background: #ffb6c1 !important;
    color: white !important;
}