/* 页面加载动画样式 */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f6f9fc;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.loader-content {
    text-align: center;
    color: #514A9D;
}

.loading-text {
    margin-top: 10px;
    font-size: 14px;
}

.loading-progress {
    width: 200px;
    height: 4px;
    background: rgba(36, 198, 220, 0.2);
    border-radius: 2px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #24C6DC, #514A9D);
    transition: width 0.3s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
} 