主要更改: - 新增管理员权限系统:添加 AdminAuth 中间件和 AdminRoute 组件,限制题库管理功能仅 yanlongqi 用户可访问 - UI 全面改版为白色毛玻璃风格(macOS 风格):应用毛玻璃效果、优化圆角和阴影、统一配色方案 - 登录页优化:将注册功能改为模态框形式,简化登录界面 - 首页优化:题库管理入口仅对管理员用户显示,优化响应式布局和卡片排列 - 移除底部导航栏:简化布局,改善用户体验 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
66 lines
1.1 KiB
Plaintext
66 lines
1.1 KiB
Plaintext
.container {
|
|
min-height: 100vh;
|
|
background: #fafafa;
|
|
padding: 0;
|
|
}
|
|
|
|
.content {
|
|
padding: 20px;
|
|
padding-bottom: 40px;
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 24px;
|
|
padding: 16px 0;
|
|
}
|
|
|
|
.card {
|
|
border-radius: 20px;
|
|
background: rgba(255, 255, 255, 0.95);
|
|
backdrop-filter: blur(40px) saturate(180%);
|
|
-webkit-backdrop-filter: blur(40px) saturate(180%);
|
|
box-shadow:
|
|
0 2px 16px rgba(0, 0, 0, 0.06),
|
|
0 1px 8px rgba(0, 0, 0, 0.04),
|
|
0 0 0 1px rgba(0, 0, 0, 0.03);
|
|
border: 0.5px solid rgba(0, 0, 0, 0.04);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.homeButton {
|
|
height: 48px;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
border-radius: 12px;
|
|
margin-top: 16px;
|
|
}
|
|
|
|
// 响应式设计 - 移动端
|
|
@media (max-width: 768px) {
|
|
.content {
|
|
padding: 16px;
|
|
}
|
|
|
|
.card {
|
|
border-radius: 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.homeButton {
|
|
height: 44px;
|
|
font-size: 15px;
|
|
}
|
|
}
|
|
|
|
// 响应式设计 - PC端
|
|
@media (min-width: 769px) {
|
|
.content {
|
|
padding: 32px;
|
|
}
|
|
}
|