/* 导航栏样式 */
        .navbar-fixed {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: white;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }
        
        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 960px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.2rem;
            text-decoration: none;
            color: #333;
        }
        
        .navbar-menu {
            display: flex;
            gap: 15px;
        }
        
        .navbar-menu a {
            text-decoration: none;
            color: #666;
            font-size: 0.9rem;
        }
        
        .navbar-menu a:hover {
            color: #0d6efd;
        }
        
        /* 为导航栏腾出空间 */
        body {
            padding-top: 60px;
        }
        
        .model-card {
            border: 1px solid #ddd;
            border-radius: 8px;
            margin-bottom: 15px;
            padding: 15px;
            background-color: #f9f9f9;
            font-size: 0.9rem;
            display: flex;
            gap: 15px;
        }
        .model-cover {
            width: 20%;
            height: auto;
            object-fit: fill;
            border-radius: 5px;
            flex-shrink: 0;
            -webkit-filter: drop-shadow(5px 1px 5px rgba(0,0,5,.5));
            filter: drop-shadow(5px 1px 5px rgba(0,0,0,.5));
        }
        .model-details {
            flex-grow: 1;
        }
        .model-details h5 {
            font-size: 1.1rem;
            margin-top: 0;
            margin-bottom: 10px;
        }
        .status-buttons {
            display: flex;
            gap: 5px;
        }
        .status-buttons button {
            white-space: nowrap;
            font-size: 0.85rem;
            padding: 0.25rem 0.5rem;
        }
        .active-status {
            background-color: #0d6efd !important;
            color: white !important;
        }
        .search-box {
            display: flex;
            gap: 5px;
        }
        .search-box input {
            width: 200px;
        }
        /* 统计信息组件样式 */
        .stats-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            padding: 20px;
            margin-bottom: 20px;
            background-color: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .stats-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 80px;
            text-align: center;
        }
        
        .stats-label {
            font-weight: bold;
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 5px;
        }
        
        .stats-value {
            font-style: italic;
            font-size: 1.2rem;
            color: #0d6efd;
            font-weight: 500;
        }
        
        .filter-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 10px;
            margin-bottom: 15px;
        }
        .model-info {
            margin-bottom: 4px;
            line-height: 1.3;
        }
        /* 状态标签样式 */
        .status-label {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 500;
            color: white;
        }
        .status-Audit {
            background-color: #FF9F43; /* 橙色 */
        }
        .status-Add {
            background-color: #FF9F43; /* 橙色 */
        }
        .status-Download {
            background-color: #AE57A4; /* 紫色 */
        }
        .status-Downloading {
            background-color: #8080C0; /* 紫色 */
        }
        .status-Compress {
            background-color: #FFA94D; /* 橙黄色 */
        }
        .status-Upload {
            background-color: #F68657; /* 橘红色 */
        }
        .status-ShareLink {
            background-color: #87CEFA; /* 浅蓝色 */
        }
        .status-ShareLinking {
            background-color: #87CEFA; /* 浅蓝色 */
        }
        .status-Release {
            background-color: #87CEFA; /* 浅蓝色 */
        }
        .status-Completed {
            background-color: #66BB6A; /* 绿色 */
        }
        .status-Error {
            background-color: #FF0000; /* 红色 */
        }
        .status-ResourceError {
            background-color: #FF0000; /* 红色 */
        }
        .status-BuzzError {
            background-color: #FF0000; /* 红色 */
        }        
        .status-Prohibited {
            background-color: #FF0000; /* 红色 */
        }        
        .loading-spinner {
            text-align: center;
            padding: 20px;
        }
        /* 其他样式保持不变... */
        .container {
            max-width: 960px;
            margin: 0 auto;
            padding: 20px;
        }
        .header {
            text-align: center;
            margin-bottom: 30px;
            border: 1px solid #dee2e6;
            border-radius: 0.375rem;
            padding: 0.5rem;
            background-color: #fff;
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
        }
        .header h1 {
            margin-bottom: 10px;
        }
        .header p {
            font-size: 10px;
            text-align: left;
            color: #C0C0C0;
        }
        .header b {
            color: #FF0000;
        }
        
        /* 弹出式提示框样式 */
        .toast-message {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1050;
            min-width: 300px;
            max-width: 90%;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
            animation: fadeIn 0.3s ease-in-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translate(-50%, -20px); }
            to { opacity: 1; transform: translate(-50%, 0); }
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .filter-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .status-buttons {
                margin-bottom: 10px;
                overflow-x: auto;
                width: 100%;
            }
            .search-box {
                width: 100%;
            }
            .search-box input {
                width: 100%;
            }
            .model-card {
                flex-direction: column;
            }
            .model-cover {
                width: 100%;
                height: auto;
                max-height: 200px;
            }
        }