feat: 实现公共课单元背景图片切换和项目库功能

- 为公共课直播间添加单元背景图片切换功能
- 支持终生学习系统、企业高管公开课、营销能力课的背景图片
- 点击不同单元课程时左侧直播间背景自动切换
- 添加我的项目库功能,展示25个完成项目
- 项目库采用灰色禁用样式,hover显示权限提示
- 优化李奇导师头像显示效果和容器背景色匹配
- 修复展会课程跳转链接

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
KQL
2025-09-08 09:32:40 +08:00
parent 7132a9f190
commit 9a14678a12
6 changed files with 221 additions and 16 deletions

View File

@@ -124,18 +124,19 @@
}
}
/* 李奇导师头像特殊调整 - 居中显示 */
/* 李奇导师头像特殊调整 - 放大并居中显示 */
.teacher-avatar.teacher-liqi {
overflow: hidden !important;
background-color: rgb(190, 196, 202) !important;
img {
width: 140% !important;
height: 140% !important;
width: 260% !important;
height: 260% !important;
object-fit: cover !important;
object-position: center 35% !important;
object-position: center 30% !important;
position: absolute !important;
top: 55% !important;
left: 50% !important;
transform: translate(-50%, -50%) !important;
top: -25% !important;
left: -20% !important;
transform: none !important;
}
}