feat: update ui

This commit is contained in:
2025-08-06 11:12:16 +08:00
parent e034a2e54e
commit c4ad0c1dc9
12 changed files with 4983 additions and 226 deletions

476
web/static/css/app.css Normal file
View File

@@ -0,0 +1,476 @@
/* 基础样式重置和CSS变量定义 */
:root {
/* 主色调 - 中性专业 */
--primary-50: #f8fafc;
--primary-100: #f1f5f9;
--primary-200: #e2e8f0;
--primary-300: #cbd5e1;
--primary-400: #94a3b8;
--primary-500: #64748b;
--primary-600: #475569;
--primary-700: #334155;
--primary-800: #1e293b;
--primary-900: #0f172a;
/* 强调色 - 蓝色系 */
--accent-50: #eff6ff;
--accent-100: #dbeafe;
--accent-200: #bfdbfe;
--accent-300: #93c5fd;
--accent-400: #60a5fa;
--accent-500: #3b82f6;
--accent-600: #2563eb;
--accent-700: #1d4ed8;
--accent-800: #1e40af;
--accent-900: #1e3a8a;
/* 状态色 */
--success: #10b981;
--warning: #f59e0b;
--error: #ef4444;
--info: #06b6d4;
/* 背景色 */
--bg-primary: #ffffff;
--bg-secondary: #f8fafc;
--bg-tertiary: #f1f5f9;
/* 文字色 */
--text-primary: #0f172a;
--text-secondary: #475569;
--text-tertiary: #64748b;
--text-muted: #94a3b8;
/* 边框色 */
--border-light: #e2e8f0;
--border-medium: #cbd5e1;
--border-dark: #94a3b8;
/* 间距 */
--spacing-xs: 4px;
--spacing-sm: 8px;
--spacing-md: 16px;
--spacing-lg: 24px;
--spacing-xl: 32px;
/* 圆角 */
--radius-sm: 4px;
--radius-md: 6px;
--radius-lg: 8px;
--radius-xl: 12px;
/* 阴影 */
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
/* 暗色主题支持 */
[data-theme="dark"] {
--bg-primary: #0f172a;
--bg-secondary: #1e293b;
--bg-tertiary: #334155;
--text-primary: #f8fafc;
--text-secondary: #e2e8f0;
--text-tertiary: #cbd5e1;
--border-light: #334155;
--border-medium: #475569;
--border-dark: #64748b;
}
/* 重置样式 */
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
font-size: 14px;
line-height: 1.5;
color: var(--text-primary);
background-color: var(--bg-secondary);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* 主容器布局 */
.app-container {
display: grid;
grid-template-columns: 260px 1fr;
height: 100vh;
overflow: hidden;
}
/* 响应式布局 */
@media (max-width: 1024px) {
.app-container {
grid-template-columns: 240px 1fr;
}
}
@media (max-width: 768px) {
.app-container {
grid-template-columns: 1fr;
}
}
/* 通用工具类 */
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
/* 焦点样式 */
:focus-visible {
outline: 2px solid var(--accent-600);
outline-offset: 2px;
}
/* 减少动画偏好 */
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
/* 滚动条样式 */
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: var(--border-medium);
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--border-dark);
}
/* 加载动画 */
@keyframes shimmer {
0% {
background-position: -200px 0;
}
100% {
background-position: calc(200px + 100%) 0;
}
}
.loading-shimmer {
background: linear-gradient(
90deg,
var(--bg-tertiary) 0%,
var(--bg-secondary) 50%,
var(--bg-tertiary) 100%
);
background-size: 200px 100%;
animation: shimmer 1.5s infinite linear;
}
/* 通用按钮样式 */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 8px 16px;
border: 1px solid var(--border-medium);
border-radius: var(--radius-md);
background: var(--bg-primary);
color: var(--text-primary);
font-size: 14px;
font-weight: 500;
text-decoration: none;
cursor: pointer;
transition: all 0.2s ease;
gap: 8px;
}
.btn:hover {
background: var(--bg-tertiary);
border-color: var(--border-dark);
}
.btn:focus-visible {
outline: 2px solid var(--accent-600);
outline-offset: 2px;
}
.btn-primary {
background: var(--accent-600);
color: white;
border-color: var(--accent-600);
}
.btn-primary:hover {
background: var(--accent-700);
border-color: var(--accent-700);
}
.btn-secondary {
background: var(--bg-secondary);
color: var(--text-secondary);
border-color: var(--border-light);
}
.btn-secondary:hover {
background: var(--bg-tertiary);
color: var(--text-primary);
}
/* 表单元素样式 */
input, select, textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
display: none;
}
/* 表格样式 */
.table-container {
background: var(--bg-primary);
border: 1px solid var(--border-light);
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-sm);
}
.table {
width: 100%;
border-collapse: collapse;
}
.table th,
.table td {
padding: 12px 16px;
text-align: left;
border-bottom: 1px solid var(--border-light);
}
.table th {
background: var(--bg-secondary);
font-weight: 600;
color: var(--text-secondary);
font-size: 13px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.table tbody tr:hover {
background: var(--bg-secondary);
}
.table tbody tr:last-child td {
border-bottom: none;
}
/* 空状态样式 */
.empty-state {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 48px 24px;
text-align: center;
color: var(--text-secondary);
}
.empty-state-icon {
width: 48px;
height: 48px;
margin-bottom: 16px;
color: var(--text-muted);
}
.empty-state-title {
font-size: 16px;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 8px;
}
.empty-state-description {
font-size: 14px;
color: var(--text-secondary);
max-width: 300px;
}
/* 分页样式 */
.pagination {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 24px;
background: var(--bg-primary);
border-top: 1px solid var(--border-light);
}
.pagination-info {
font-size: 14px;
color: var(--text-secondary);
}
.pagination-controls {
display: flex;
align-items: center;
gap: 8px;
}
.pagination-button {
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
border: 1px solid var(--border-medium);
border-radius: var(--radius-sm);
background: var(--bg-primary);
color: var(--text-secondary);
font-size: 14px;
text-decoration: none;
transition: all 0.2s ease;
}
.pagination-button:hover {
background: var(--bg-secondary);
border-color: var(--border-dark);
color: var(--text-primary);
}
.pagination-button.active {
background: var(--accent-600);
color: white;
border-color: var(--accent-600);
}
.pagination-button:disabled {
opacity: 0.5;
cursor: not-allowed;
}
/* 模态框样式 */
.modal {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
padding: 16px;
}
.modal.hidden {
display: none;
}
.modal-content {
background: var(--bg-primary);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg);
max-width: 600px;
width: 100%;
max-height: 80vh;
overflow-y: auto;
}
.modal-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 24px;
border-bottom: 1px solid var(--border-light);
}
.modal-title {
font-size: 18px;
font-weight: 600;
color: var(--text-primary);
margin: 0;
}
.modal-close {
background: none;
border: none;
padding: 8px;
color: var(--text-secondary);
cursor: pointer;
border-radius: var(--radius-sm);
transition: all 0.2s ease;
}
.modal-close:hover {
background: var(--bg-secondary);
color: var(--text-primary);
}
.modal-body {
padding: 24px;
}
/* 通知样式 */
.notification {
position: fixed;
top: 16px;
right: 16px;
padding: 12px 16px;
border-radius: var(--radius-md);
color: white;
font-size: 14px;
z-index: 1001;
box-shadow: var(--shadow-lg);
animation: slideIn 0.3s ease;
}
@keyframes slideIn {
from {
transform: translateX(100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
.notification-success {
background: var(--success);
}
.notification-error {
background: var(--error);
}
.notification-warning {
background: var(--warning);
}
.notification-info {
background: var(--info);
}

View File

@@ -0,0 +1,617 @@
/* 主内容区域样式 */
.main-content {
overflow-y: auto;
background: var(--bg-secondary);
position: relative;
display: flex;
flex-direction: column;
height: 100vh;
}
/* 内容头部 */
.content-header {
background: var(--bg-primary);
border-bottom: 1px solid var(--border-light);
padding: 0;
position: sticky;
top: 0;
z-index: 100;
}
.header-toolbar {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 16px 24px;
flex-wrap: wrap;
}
/* 移动端菜单按钮 */
.mobile-menu-toggle {
display: none;
background: none;
border: none;
padding: 8px;
border-radius: var(--radius-md);
color: var(--text-secondary);
cursor: pointer;
transition: all 0.2s ease;
}
.mobile-menu-toggle:hover {
background: var(--bg-tertiary);
color: var(--text-primary);
}
.mobile-menu-toggle:focus-visible {
outline: 2px solid var(--accent-600);
outline-offset: 2px;
}
/* 面包屑导航 */
.breadcrumb {
flex: 1;
min-width: 200px;
}
.breadcrumb-list {
display: flex;
align-items: center;
list-style: none;
padding: 0;
margin: 0;
gap: 8px;
flex-wrap: wrap;
}
.breadcrumb-item:not(:last-child)::after {
content: '/';
color: var(--text-muted);
margin-left: 8px;
}
.breadcrumb-link {
color: var(--text-secondary);
text-decoration: none;
font-size: 14px;
transition: color 0.2s ease;
}
.breadcrumb-link:hover {
color: var(--accent-600);
}
.breadcrumb-current {
color: var(--text-primary);
font-weight: 500;
font-size: 14px;
}
/* 工具栏 */
.header-tools {
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
}
/* 搜索容器 */
.search-container {
display: flex;
align-items: center;
gap: 8px;
}
.search-box {
position: relative;
display: flex;
align-items: center;
}
.search-icon {
position: absolute;
left: 12px;
color: var(--text-muted);
pointer-events: none;
z-index: 1;
}
.search-input {
width: 300px;
max-width: 100%;
padding: 8px 12px 8px 36px;
border: 1px solid var(--border-medium);
border-radius: var(--radius-md);
font-size: 14px;
background: var(--bg-secondary);
color: var(--text-primary);
transition: all 0.2s ease;
}
.search-input:focus {
outline: none;
border-color: var(--accent-500);
box-shadow: 0 0 0 3px var(--accent-100);
}
.search-input::placeholder {
color: var(--text-muted);
}
.search-clear {
position: absolute;
right: 8px;
background: none;
border: none;
padding: 4px;
color: var(--text-muted);
cursor: pointer;
border-radius: var(--radius-sm);
transition: all 0.2s ease;
}
.search-clear:hover {
background: var(--bg-tertiary);
color: var(--text-primary);
}
.search-button {
padding: 8px 12px;
background: var(--accent-600);
color: white;
border: none;
border-radius: var(--radius-md);
font-size: 14px;
cursor: pointer;
transition: all 0.2s ease;
display: flex;
align-items: center;
gap: 4px;
}
.search-button:hover {
background: var(--accent-700);
}
.search-button:focus-visible {
outline: 2px solid var(--accent-600);
outline-offset: 2px;
}
/* 视图控制 */
.view-controls {
display: flex;
align-items: center;
background: var(--bg-secondary);
border: 1px solid var(--border-medium);
border-radius: var(--radius-md);
overflow: hidden;
}
.view-button {
padding: 8px;
background: none;
border: none;
color: var(--text-secondary);
cursor: pointer;
transition: all 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
}
.view-button:hover {
background: var(--bg-tertiary);
color: var(--text-primary);
}
.view-button.active {
background: var(--accent-100);
color: var(--accent-700);
}
.view-button:focus-visible {
outline: 2px solid var(--accent-600);
outline-offset: 2px;
}
/* 导出下拉菜单 */
.export-dropdown {
position: relative;
}
.export-button {
padding: 8px 12px;
background: var(--bg-secondary);
border: 1px solid var(--border-medium);
border-radius: var(--radius-md);
color: var(--text-secondary);
cursor: pointer;
transition: all 0.2s ease;
display: flex;
align-items: center;
gap: 4px;
}
.export-button:hover {
background: var(--bg-tertiary);
color: var(--text-primary);
border-color: var(--border-dark);
}
.export-button:focus-visible {
outline: 2px solid var(--accent-600);
outline-offset: 2px;
}
.export-menu {
position: absolute;
top: 100%;
right: 0;
margin-top: 4px;
background: var(--bg-primary);
border: 1px solid var(--border-light);
border-radius: var(--radius-md);
box-shadow: var(--shadow-lg);
min-width: 120px;
z-index: 1000;
display: none;
}
.export-menu.show {
display: block;
animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-4px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.export-option {
width: 100%;
padding: 8px 12px;
background: none;
border: none;
text-align: left;
font-size: 14px;
color: var(--text-secondary);
cursor: pointer;
transition: all 0.2s ease;
}
.export-option:hover {
background: var(--bg-secondary);
color: var(--text-primary);
}
.export-option:focus-visible {
outline: 2px solid var(--accent-600);
outline-offset: -2px;
}
.export-option:first-child {
border-top-left-radius: var(--radius-md);
border-top-right-radius: var(--radius-md);
}
.export-option:last-child {
border-bottom-left-radius: var(--radius-md);
border-bottom-right-radius: var(--radius-md);
}
/* 分页信息 */
.pagination-info {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 12px 24px;
background: var(--bg-tertiary);
border-top: 1px solid var(--border-light);
font-size: 14px;
}
.pagination-text {
color: var(--text-secondary);
}
.per-page-select {
padding: 4px 8px;
border: 1px solid var(--border-medium);
border-radius: var(--radius-sm);
font-size: 14px;
background: var(--bg-primary);
color: var(--text-primary);
cursor: pointer;
transition: all 0.2s ease;
}
.per-page-select:focus {
outline: none;
border-color: var(--accent-500);
box-shadow: 0 0 0 2px var(--accent-100);
}
/* 主内容区域 */
.content-main {
flex: 1;
overflow-y: auto;
padding: 24px;
}
.content-container {
max-width: none;
margin: 0;
}
/* 数据展示区域 */
.data-display {
background: var(--bg-primary);
border: 1px solid var(--border-light);
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-sm);
}
.data-table {
width: 100%;
border-collapse: collapse;
}
.data-table th,
.data-table td {
padding: 12px 16px;
text-align: left;
border-bottom: 1px solid var(--border-light);
font-size: 14px;
}
.data-table th {
background: var(--bg-secondary);
font-weight: 600;
color: var(--text-secondary);
font-size: 13px;
text-transform: uppercase;
letter-spacing: 0.5px;
position: sticky;
top: 0;
z-index: 10;
}
.data-table tbody tr {
transition: background-color 0.2s ease;
}
.data-table tbody tr:hover {
background: var(--bg-secondary);
}
.data-table tbody tr:last-child td {
border-bottom: none;
}
.data-table td {
color: var(--text-primary);
vertical-align: top;
}
/* 操作按钮 */
.action-button {
padding: 4px 8px;
background: none;
border: 1px solid var(--border-medium);
border-radius: var(--radius-sm);
color: var(--accent-600);
font-size: 12px;
cursor: pointer;
transition: all 0.2s ease;
text-decoration: none;
display: inline-block;
}
.action-button:hover {
background: var(--accent-50);
border-color: var(--accent-300);
}
.action-button:focus-visible {
outline: 2px solid var(--accent-600);
outline-offset: 2px;
}
/* 卡片视图 */
.data-cards {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 16px;
padding: 16px;
}
.data-card {
background: var(--bg-primary);
border: 1px solid var(--border-light);
border-radius: var(--radius-md);
padding: 16px;
box-shadow: var(--shadow-sm);
transition: all 0.2s ease;
}
.data-card:hover {
box-shadow: var(--shadow-md);
border-color: var(--border-medium);
}
.data-card-title {
font-size: 16px;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 12px;
}
.data-card-item {
display: flex;
justify-content: space-between;
align-items: flex-start;
padding: 4px 0;
border-bottom: 1px solid var(--border-light);
}
.data-card-item:last-child {
border-bottom: none;
}
.data-card-label {
font-size: 12px;
color: var(--text-secondary);
font-weight: 500;
flex-shrink: 0;
margin-right: 8px;
}
.data-card-value {
font-size: 13px;
color: var(--text-primary);
word-break: break-word;
text-align: right;
}
/* 响应式设计 */
@media (max-width: 768px) {
.mobile-menu-toggle {
display: block;
}
.header-toolbar {
flex-direction: column;
align-items: stretch;
gap: 12px;
padding: 12px 16px;
}
.breadcrumb {
order: -1;
}
.search-input {
width: 100%;
}
.header-tools {
justify-content: center;
}
.pagination-info {
flex-direction: column;
align-items: stretch;
gap: 8px;
padding: 12px 16px;
}
.content-main {
padding: 16px;
}
.data-cards {
grid-template-columns: 1fr;
padding: 12px;
}
.data-table th,
.data-table td {
padding: 8px 12px;
font-size: 13px;
}
}
@media (max-width: 480px) {
.header-tools {
flex-direction: column;
align-items: stretch;
gap: 8px;
}
.view-controls,
.export-dropdown {
width: 100%;
}
.export-button {
width: 100%;
justify-content: center;
}
}
/* 加载状态 */
.loading-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--bg-primary);
display: flex;
align-items: center;
justify-content: center;
z-index: 100;
}
.loading-spinner {
width: 24px;
height: 24px;
border: 2px solid var(--border-light);
border-top: 2px solid var(--accent-600);
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* 无障碍支持 */
@media (prefers-reduced-motion: reduce) {
.loading-spinner {
animation: none;
}
.data-table tbody tr {
transition: none;
}
.data-card {
transition: none;
}
}
/* 高对比度模式 */
@media (prefers-contrast: high) {
.data-table th,
.data-table td {
border-color: var(--border-dark);
}
.data-card {
border-color: var(--border-dark);
}
}
/* 打印样式 */
@media print {
.content-header {
display: none;
}
.data-table th {
background: var(--bg-primary);
color: var(--text-primary);
}
}

View File

@@ -0,0 +1,384 @@
/* 侧边栏样式 */
.sidebar {
background: var(--bg-primary);
border-right: 1px solid var(--border-light);
overflow-y: auto;
position: relative;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
display: flex;
flex-direction: column;
height: 100vh;
}
/* 侧边栏头部 */
.sidebar-header {
padding: 16px 20px;
border-bottom: 1px solid var(--border-light);
background: var(--bg-primary);
position: relative;
}
.brand {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 16px;
}
.brand-icon {
color: var(--accent-600);
flex-shrink: 0;
transition: color 0.2s ease;
}
.brand-text {
flex: 1;
min-width: 0;
}
.brand-title {
font-size: 16px;
font-weight: 700;
color: var(--text-primary);
margin: 0;
line-height: 1.2;
}
.brand-subtitle {
font-size: 13px;
color: var(--text-secondary);
margin: 0;
line-height: 1.3;
}
/* 主题切换按钮 */
.theme-toggle {
position: absolute;
top: 16px;
right: 16px;
background: none;
border: none;
padding: 8px;
border-radius: var(--radius-md);
color: var(--text-secondary);
cursor: pointer;
transition: all 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
}
.theme-toggle:hover {
background: var(--bg-tertiary);
color: var(--text-primary);
}
.theme-toggle:focus-visible {
outline: 2px solid var(--accent-600);
outline-offset: 2px;
}
.theme-toggle .moon-icon {
display: none;
}
[data-theme="dark"] .theme-toggle .sun-icon {
display: none;
}
[data-theme="dark"] .theme-toggle .moon-icon {
display: block;
}
/* 搜索框 */
.sidebar-search {
padding: 12px 16px;
border-bottom: 1px solid var(--border-light);
}
.search-container {
position: relative;
display: flex;
align-items: center;
}
.search-icon {
position: absolute;
left: 12px;
color: var(--text-muted);
pointer-events: none;
z-index: 1;
}
.sidebar-search-input {
width: 100%;
padding: 8px 12px 8px 36px;
border: 1px solid var(--border-medium);
border-radius: var(--radius-md);
font-size: 14px;
background: var(--bg-secondary);
color: var(--text-primary);
transition: all 0.2s ease;
}
.sidebar-search-input:focus {
outline: none;
border-color: var(--accent-500);
box-shadow: 0 0 0 3px var(--accent-100);
}
.sidebar-search-input::placeholder {
color: var(--text-muted);
}
/* 导航区域 */
.sidebar-nav {
padding: 8px 0;
flex: 1;
overflow-y: auto;
}
.nav-section-title {
padding: 12px 20px 8px;
font-size: 11px;
font-weight: 600;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 0.5px;
margin: 0;
}
.nav-list {
list-style: none;
padding: 0;
margin: 0;
}
.nav-item {
margin: 2px 8px;
}
.nav-link {
display: block;
padding: 8px 12px;
color: var(--text-secondary);
text-decoration: none;
border-radius: var(--radius-md);
transition: all 0.2s ease;
position: relative;
}
.nav-link:hover {
background: var(--bg-tertiary);
color: var(--text-primary);
}
.nav-link:focus-visible {
outline: 2px solid var(--accent-600);
outline-offset: 2px;
}
.nav-link.active {
background: var(--accent-50);
color: var(--accent-700);
font-weight: 500;
}
.nav-link.active .nav-icon {
color: var(--accent-600);
}
.nav-link-content {
display: flex;
align-items: center;
gap: 12px;
position: relative;
}
.nav-icon {
color: var(--text-muted);
flex-shrink: 0;
transition: color 0.2s ease;
}
.nav-text-content {
flex: 1;
min-width: 0;
overflow: hidden;
}
.nav-title {
display: block;
font-size: 14px;
line-height: 1.3;
font-weight: 500;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.nav-description {
display: block;
font-size: 12px;
color: var(--text-muted);
margin-top: 1px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.nav-indicator {
position: absolute;
right: -12px;
top: 50%;
transform: translateY(-50%);
width: 3px;
height: 20px;
background: var(--accent-600);
border-radius: 2px;
}
/* 系统信息 */
.sidebar-footer {
padding: 16px 20px;
border-top: 1px solid var(--border-light);
background: var(--bg-tertiary);
margin-top: auto;
}
.system-info {
margin-bottom: 12px;
}
.info-item {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 12px;
color: var(--text-secondary);
margin-bottom: 4px;
}
.info-label {
font-weight: 500;
}
.info-value {
color: var(--text-primary);
font-weight: 600;
}
.settings-button {
width: 100%;
padding: 8px 12px;
background: none;
border: 1px solid var(--border-medium);
border-radius: var(--radius-md);
color: var(--text-secondary);
font-size: 13px;
cursor: pointer;
transition: all 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
}
.settings-button:hover {
background: var(--bg-primary);
color: var(--text-primary);
border-color: var(--border-dark);
}
.settings-button:focus-visible {
outline: 2px solid var(--accent-600);
outline-offset: 2px;
}
/* 移动端侧边栏 */
.sidebar-backdrop {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 999;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
display: none;
}
@media (max-width: 768px) {
.sidebar {
position: fixed;
top: 0;
left: -260px;
height: 100vh;
z-index: 1000;
transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
}
.sidebar.open {
left: 0;
}
.sidebar-backdrop {
display: block;
}
.sidebar.open + .sidebar-backdrop {
opacity: 1;
visibility: visible;
}
}
/* 滚动条优化 */
.sidebar::-webkit-scrollbar {
width: 4px;
}
.sidebar::-webkit-scrollbar-track {
background: transparent;
}
.sidebar::-webkit-scrollbar-thumb {
background: var(--border-medium);
border-radius: 2px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
background: var(--border-dark);
}
/* 动画效果 */
.nav-link,
.settings-button {
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
/* 无障碍支持 */
@media (prefers-reduced-motion: reduce) {
.sidebar,
.nav-link,
.settings-button {
transition: none;
}
}
/* 高对比度模式 */
@media (prefers-contrast: high) {
.nav-link {
border: 1px solid transparent;
}
.nav-link.active {
border-color: var(--accent-600);
}
.nav-indicator {
width: 4px;
}
}

View File

@@ -0,0 +1,429 @@
/* 响应式样式 - 断点系统 */
/* 桌面端 (>1440px) - 大屏优化 */
@media (min-width: 1440px) {
.app-container {
grid-template-columns: 280px 1fr;
}
.sidebar {
width: 280px;
}
.search-input {
width: 400px;
}
.data-cards {
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
}
/* 桌面端 (1025px-1440px) - 标准布局 */
@media (min-width: 1025px) and (max-width: 1439px) {
.app-container {
grid-template-columns: 260px 1fr;
}
}
/* 平板端 (768px-1024px) - 缩小侧边栏 */
@media (min-width: 768px) and (max-width: 1024px) {
.app-container {
grid-template-columns: 240px 1fr;
}
.sidebar {
width: 240px;
}
.sidebar-header {
padding: 12px 16px;
}
.sidebar-search,
.sidebar-nav,
.sidebar-footer {
padding-left: 16px;
padding-right: 16px;
}
.search-input {
width: 250px;
}
.data-cards {
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.content-main {
padding: 20px;
}
}
/* 移动端 (<768px) - 侧边栏隐藏 */
@media (max-width: 767px) {
.app-container {
grid-template-columns: 1fr;
}
/* 侧边栏移动端样式 */
.sidebar {
position: fixed;
top: 0;
left: -260px;
height: 100vh;
width: 260px;
z-index: 1000;
transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
}
.sidebar.open {
left: 0;
}
.sidebar-backdrop {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 999;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
display: block;
}
.sidebar.open + .sidebar-backdrop {
opacity: 1;
visibility: visible;
}
/* 移动端菜单按钮 */
.mobile-menu-toggle {
display: flex;
align-items: center;
justify-content: center;
}
/* 移动端头部布局 */
.header-toolbar {
flex-direction: column;
align-items: stretch;
gap: 12px;
padding: 12px 16px;
}
.breadcrumb {
order: -1;
text-align: center;
}
.header-tools {
justify-content: center;
flex-wrap: wrap;
}
/* 搜索框响应式 */
.search-input {
width: 100%;
min-width: 200px;
}
.search-container {
width: 100%;
justify-content: center;
}
.search-box {
flex: 1;
max-width: 300px;
}
/* 分页信息响应式 */
.pagination-info {
flex-direction: column;
align-items: stretch;
gap: 8px;
padding: 12px 16px;
text-align: center;
}
.per-page-select {
width: 100%;
max-width: 200px;
}
/* 内容区域响应式 */
.content-main {
padding: 16px;
}
/* 数据卡片响应式 */
.data-cards {
grid-template-columns: 1fr;
gap: 12px;
padding: 12px;
}
.data-card {
padding: 12px;
}
/* 数据表格响应式 */
.data-table {
font-size: 13px;
}
.data-table th,
.data-table td {
padding: 8px 12px;
}
/* 隐藏非关键列 */
@media (max-width: 480px) {
.data-table th:nth-child(n+4),
.data-table td:nth-child(n+4) {
display: none;
}
.data-table th:last-child,
.data-table td:last-child {
display: table-cell;
}
}
}
/* 小屏手机 (<480px) - 极简模式 */
@media (max-width: 479px) {
.header-toolbar {
padding: 8px 12px;
gap: 8px;
}
.header-tools {
flex-direction: column;
align-items: stretch;
gap: 8px;
}
.view-controls,
.export-dropdown {
width: 100%;
}
.view-controls {
justify-content: center;
}
.export-button {
width: 100%;
justify-content: center;
}
.search-container {
flex-direction: column;
align-items: stretch;
}
.search-button {
width: 100%;
justify-content: center;
}
.content-main {
padding: 12px;
}
.data-cards {
gap: 8px;
padding: 8px;
}
.data-card {
padding: 8px;
}
.pagination-info {
padding: 8px 12px;
}
/* 单列布局 */
.data-cards {
grid-template-columns: 1fr;
}
}
/* 横向模式 */
@media (max-height: 600px) and (orientation: landscape) {
.sidebar {
max-height: 100vh;
}
.sidebar-header {
padding: 8px 16px;
}
.sidebar-nav {
padding: 4px 0;
}
.nav-link {
padding: 6px 12px;
}
.nav-title {
font-size: 13px;
}
.nav-description {
font-size: 11px;
}
.content-main {
padding: 12px 16px;
}
}
/* 触控设备优化 */
@media (hover: none) and (pointer: coarse) {
.nav-link:hover,
.view-button:hover,
.export-button:hover,
.settings-button:hover {
background: none;
}
.nav-link:active,
.view-button:active,
.export-button:active,
.settings-button:active {
background: var(--bg-tertiary);
transform: scale(0.98);
}
}
/* 高DPI屏幕优化 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
.sidebar {
box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}
.export-menu {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
}
/* 暗色主题响应式 */
@media (max-width: 768px) and (prefers-color-scheme: dark) {
.sidebar {
box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
}
}
/* 无障碍支持 */
@media (prefers-reduced-motion: reduce) {
.sidebar,
.sidebar-backdrop,
.export-menu {
transition: none;
}
}
/* 强制横向滚动 */
@media (max-width: 768px) {
.data-table-container {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.data-table {
min-width: 600px;
}
}
/* 打印响应式 */
@media print {
.sidebar,
.mobile-menu-toggle,
.header-tools,
.pagination-info {
display: none !important;
}
.app-container {
grid-template-columns: 1fr;
}
.main-content {
overflow: visible;
height: auto;
}
.content-header {
position: static;
border: none;
padding: 0;
}
.data-table th,
.data-table td {
border: 1px solid var(--border-dark);
}
}
/* 键盘导航响应式 */
@media (max-width: 768px) {
.sidebar:focus-within {
left: 0;
}
.sidebar-backdrop:focus-within {
opacity: 1;
visibility: visible;
}
}
/* 系统主题检测 */
@media (prefers-color-scheme: dark) {
:root:not([data-theme]) {
--bg-primary: #0f172a;
--bg-secondary: #1e293b;
--bg-tertiary: #334155;
--text-primary: #f8fafc;
--text-secondary: #e2e8f0;
--text-tertiary: #cbd5e1;
--border-light: #334155;
--border-medium: #475569;
--border-dark: #64748b;
}
}
/* 高对比度模式响应式 */
@media (prefers-contrast: high) {
.sidebar {
border-right: 2px solid var(--border-dark);
}
.nav-link.active {
border: 2px solid var(--accent-600);
}
.search-input:focus {
border-width: 2px;
}
}
/* 自定义滚动条响应式 */
@media (max-width: 768px) {
.sidebar::-webkit-scrollbar {
width: 8px;
}
.sidebar::-webkit-scrollbar-thumb {
background: var(--border-dark);
border-radius: 4px;
}
}