
.custom-loading {
    text-align: center;
}
.loading-spin {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border: 3px solid #ddd;
    border-top-color: #1E9FFF; /* 主题色 */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.loading-text {
    margin-top: 10px;
    color: #b59797;
    font-size: 14px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
 
