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

@@ -158,7 +158,7 @@
}
}
.my-project-library {
.my-project-library {
margin-top: 20px;
.project-library-empty {
@@ -173,5 +173,35 @@
font-size: 14px;
}
}
.my-project-item {
background-color: #f7f8fa !important;
border-color: #e5e6eb !important;
cursor: default !important;
&:hover {
border-color: #e5e6eb !important;
box-shadow: none !important;
transform: none !important;
background-color: #f7f8fa !important;
}
.project-library-item-title {
color: #86909c !important;
border-color: #c9cdd4 !important;
background-color: #f7f8fa !important;
}
> div {
> p {
color: #86909c !important;
}
.disabled-detail {
color: #c9cdd4 !important;
cursor: default !important;
}
}
}
}
}