﻿/* 加载动画容器 */
.loading-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    border-radius: 8px;
}

.loading-text {
    margin-top: 15px;
    color: #4facfe;
    font-weight: 500;
}
/* 动画2: 脉冲效果 */
.pulse-loader {
    width: 50px;
    height: 50px;
    background-color: #4facfe;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}