.loading-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.5); /* 半透明背景 */
display: flex;
justify-content: center;
align-items: center;
z-index: 9999; /* 确保在顶层 */
}

.loading-spinner {
border: 16px solid #f3f3f3; /* 选择加载动画的颜色 */
border-top: 16px solid #3498db; /* 选择加载动画的颜色 */
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 5s linear infinite; /* 使用 keyframes 定义的旋转动画 */
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}