feat: 完善专家支持中心和项目库单元导航功能

- 添加真实的文旅产业Q&A数据到专家支持中心
- 实现项目库到课程直播间的单元导航
- 新增CourseList组件的expandUnitByName方法
- 优化项目详情模态框的单元显示和交互

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
KQL
2025-09-12 19:52:36 +08:00
parent 0e7f98d3fc
commit 4738a8545c
11 changed files with 938 additions and 144 deletions

View File

@@ -510,3 +510,19 @@
}
}
}
/* 可点击单元样式 */
.clickable-unit {
transition: all 0.2s ease-in-out;
}
.clickable-unit:hover {
background-color: #e8f4ff !important;
border-color: #4080ff !important;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(64, 128, 255, 0.15);
}
.clickable-unit:active {
transform: translateY(0px);
}