.css-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* 使得内容垂直排列 */
    z-index: 10000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* 或你喜欢的字体 */
    color: #333;
    /* 文本颜色 */
}

.css-loader::before {
    content: '';
    border: 2px solid #f3f3f3;
    /* 更细的边框 */
    border-top: 2px solid #3498db;
    /* 蓝色 */
    border-radius: 50%;
    width: 30px;
    /* 更小的宽度 */
    height: 30px;
    /* 更小的高度 */
    animation: spin 1s linear infinite;
}

.loading-text {
    margin-top: 20px;
    /* 文本与加载圈的距离 */
    font-size: 16px;
    /* 文本大小 */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}