feat: 添加AI课程集成和修复初始化错误

- 将终生学习系统课添加到公共课直播间
- 修复allCalendarEvents初始化顺序问题
- 更正AI课程导师为李奇
- 添加AI课程与日历页面同步功能
This commit is contained in:
KQL
2025-09-07 23:09:48 +08:00
parent 6337cc4812
commit 27f2339c9e
81 changed files with 41799 additions and 1654 deletions

View File

@@ -90,17 +90,30 @@
overflow: hidden;
img {
width: 150%;
height: 150%;
width: 200%;
height: 200%;
object-fit: cover;
object-position: center 30%;
position: absolute;
left: 50%;
top: 2%;
top: 0%;
transform: translateX(-50%);
}
}
/* 孙应战导师头像特殊调整 - 居中显示 */
.teacher-avatar.teacher-sunyingzhan {
img {
width: 175% !important;
height: 175% !important;
object-fit: cover !important;
object-position: center center !important;
top: -50% !important;
left: 5% !important;
transform: none !important;
}
}
/* 刘杰导师头像特殊调整 */
.teacher-avatar.teacher-liujie {
img {
@@ -111,6 +124,17 @@
}
}
/* 求职策略页面的头像特殊调整 */
.teacher-avatar.teacher-strategy {
img {
width: 150% !important;
height: 150% !important;
object-fit: cover !important;
object-position: center 40% !important;
top: 0% !important;
}
}
.avatar-wrapper {
position: relative;
width: 64px;
@@ -236,18 +260,19 @@
}
.courses-video-player-teacher-tags {
width: 100%;
height: 50px;
height: auto;
min-height: 50px;
.teacher-tags {
width: 100%;
height: 24px;
display: flex;
justify-content: flex-start;
align-items: center;
flex-wrap: nowrap;
flex-direction: row;
overflow-x: auto;
margin-top: 5px;
gap: 8px;
overflow: hidden;
> li {
box-sizing: border-box;
@@ -256,10 +281,9 @@
color: #0077ff;
font-size: 14px;
font-weight: 400;
margin-right: 10px;
border-radius: 4px;
flex-shrink: 0;
flex-wrap: nowrap;
white-space: nowrap;
}
}
}