#SuperPanelIndexInfo{
	display:none;
	overflow:hidden;
}
#loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* 确保在其他元素之上显示 */
}

.loading-icon {
    width: 50px;
    height: 50px;
    border: 5px solid #FFF; 
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}