重构前端:临床仪表盘主题 + AI日报编辑版式

- 全面采用临床数据仪表盘风格:IBM Plex Mono/Sans、teal 主色、无阴影设计
- theme.css 完整重写设计 token,支持亮色/暗色/跟随系统三挡切换
- ThemeControls 简化为图标三键切换组件
- NewsCard 临床风格重排:ALL CAPS 分类标签、INSIGHT 观点块
- NewsReader 精选栏:时间轴布局,蓝点 + 垂直轨道线
- AI日报全新排版:左侧 ARCHIVE 侧边栏 + 主区编辑版式
  - 报头:中文数字日期、星期、PHARMA INTEL tagline
  - 分节:52px teal 编号 + 22px 中文分类 + 英文副标题
  - 内容卡片:圆角12px,teal 标题,chips 行(来源/时间/评分)
  - 页脚统计:STORIES / PROCESSED / SOURCES
- 全响应式:≤900px 平板、≤640px 移动端自适应

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-26 22:18:36 +08:00
parent 264f00c138
commit 1b7210de4f
9 changed files with 1191 additions and 319 deletions

19
.claude/launch.json Normal file
View File

@@ -0,0 +1,19 @@
{
"version": "0.0.1",
"configurations": [
{
"name": "Frontend (Vite)",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"cwd": "frontend",
"port": 5173
},
{
"name": "Backend (FastAPI/uvicorn)",
"runtimeExecutable": "python",
"runtimeArgs": ["-m", "uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000", "--reload"],
"cwd": "backend",
"port": 8000
}
]
}