.circle {
    z-index: 10000;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    pointer-events: none;
    animation: colors 5s infinite;
    position: fixed;
}
.color-picker-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;  /* 确保弹窗位于页面最上层 */
}

.circle::before {
    content: "";
    position: fixed;
    width: 50px;
    height: 50px;
    opacity: 0.2;
    border-radius: 50%;
}
