/*蒙版*/
.visitor-maskLayer {
    position: fixed; /* 使用fixed定位，确保蒙版覆盖整个屏幕 */
    top: 0;
    left: 0;
    width: 100%; /* 宽度设置为100%，覆盖整个屏幕 */
    height: 100%; /* 高度同样设置为100% */
    z-index: 998; /* 设置较高的堆叠顺序以确保蒙版在其他内容之上 */
    display: block; /* 默认显示蒙版，可以通过JavaScript控制显示 */
    /* 毛玻璃特效 */
    background: rgba(255, 255, 255, 0.7); /* 半透明背景 */
    -webkit-backdrop-filter: blur(10px); /* Safari */
    backdrop-filter: blur(10px); /* 标准的写法 */
    transform: translateZ(0);
}

/* 新增加载动画样式 */
.loading-spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 1002;
    display: none;
}

.loading-spinner::after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border-color: #007aff transparent #007aff transparent;
    animation: loading-spinner 1.2s linear infinite;
}

@keyframes loading-spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    position: fixed;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    z-index: 1002;
    display: none;
}