#captcha-box {
    position: fixed; /* 悬浮在页面中 */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 精准居中 */
    z-index: 99999; /* 确保在最上层 */
    /*background: white;    !* 可选：背景白 *!*/
    /*padding: 20px;        !* 可选：内边距 *!*/
    /*border-radius: 8px;   !* 可选：圆角 *!*/
    /*box-shadow: 0 2px 10px rgba(0,0,0,0.2); !* 可选：阴影 *!*/
    /*display: none;        !* 默认隐藏，验证码组件会插入内容后显示 *!*/
}


/* 假设滑动区域的容器类名为 .tac-slider-track */
.slider-move-track::before {
    content: "向右拖动滑块填充拼图";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /* 居中 */
    font-size: 14px;
    color: #2d2d2d;
    white-space: nowrap; /* 防止换行 */
    z-index: 1; /* 确保文本在滑块下方 */
}