feat: 作业页面单元分类导航和样式优化

- 为复合能力课和垂直能力课添加单元分组结构
- 实现单元导航栏和课程筛选功能
- 优化导航栏样式,采用胶囊式设计
- 调整页面布局和间距,提升视觉体验
- 修复营销能力课日历事件显示问题
- 修复1v1规划时间为14:00-16:00
- 修复作业页面iframe返回后滚动失效问题

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
KQL
2025-09-08 03:53:49 +08:00
parent 27f2339c9e
commit d1f6f2ee0d
29 changed files with 16359 additions and 187 deletions

View File

@@ -117,10 +117,25 @@
/* 刘杰导师头像特殊调整 */
.teacher-avatar.teacher-liujie {
img {
width: 400%; /* 大幅放大 */
height: 400%;
width: 200%; /* 大幅放大 */
height: 200%;
object-position: center 30%; /* 调整位置 */
top: -100%; /* 继续大幅上移 */
top: -50%; /* 继续大幅上移 */
}
}
/* 李奇导师头像特殊调整 - 居中显示 */
.teacher-avatar.teacher-liqi {
overflow: hidden !important;
img {
width: 140% !important;
height: 140% !important;
object-fit: cover !important;
object-position: center 35% !important;
position: absolute !important;
top: 55% !important;
left: 50% !important;
transform: translate(-50%, -50%) !important;
}
}