/* LoadingView 通用Loading组件样式 */
.loadingview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 全屏Loading遮罩层样式 */
.loadingview-overlay.full-screen {
    width: 100%;
    height: 100%;
}

/* 深色主题 */
[data-theme="dark"] .loadingview-overlay {
    background: rgba(17, 17, 17, 0.55);
}

.loadingview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.loadingview-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loadingview-logo {
    width: 200px;
    height: 46px;
    content: url('/images/historyUI/loading_white') !important;
}

.loadingview-text-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.loadingview-text p {
    margin: 0;
    font-size: 12px;
    color: #333;
}

[data-theme="dark"] .loadingview-text-title {
    color: #fff;
}

[data-theme="dark"] .loadingview-text p {
    color: #fff;
}

/* 深色主题下使用黑色logo */
[data-theme="dark"] .loadingview-logo {
    content: url('/images/historyUI/loding_black') !important;
}
 