UI优化更新:面试模拟、简历面试、项目库、求职策略等多个页面改进

主要更新:
- 面试模拟页:移除上滑查看评价,添加渐进式评分(72→81→89)
- 简历面试页:添加岗位头像、标签背景、面试题加粗等视觉优化
- 项目库页:添加"我完成的项目库"板块,增加hover效果
- 求职策略详情页:优化圆柱体和矩形对齐,添加CSV岗位数据,调整批次文字位置
- 企业岗位列表页:添加返回按钮功能
- 全局:统一岗位级别术语(普通岗/技术骨干岗/储备干部岗)

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
KQL
2025-09-05 20:46:03 +08:00
parent 1703894e74
commit 4e0e96e6b8
64 changed files with 7806 additions and 2112 deletions

View File

@@ -69,31 +69,71 @@
box-sizing: border-box;
}
/* 自定义时间轴元素 */
/* 自定义时间轴元素 - 统一使用CSS样式 */
.time-line-dot-icon {
width: 20px;
height: 20px;
background-image: url("@/assets/images/Common/time_line_dot_icon.png");
background-size: 100% 100%;
width: 12px;
height: 12px;
background-color: #10b981;
border-radius: 50%;
position: relative;
&::before {
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 6px;
height: 6px;
background-color: #fff;
border-radius: 50%;
}
}
.time-line-clock-icon {
width: 12px;
height: 12px;
background-image: url("@/assets/images/Common/time_line_clock_icon.png");
background-size: 100% 100%;
background-color: #3b82f6;
border-radius: 50%;
position: relative;
&::before {
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 6px;
height: 6px;
background-color: #fff;
border-radius: 50%;
}
}
.time-line-lock-icon {
width: 12px;
height: 12px;
background-image: url("@/assets/images/Common/time_line_lock_icon.png");
background-size: 100% 100%;
opacity: 0.5;
background-color: #c9cdd4;
border-radius: 50%;
position: relative;
opacity: 0.6;
&::before {
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 6px;
height: 6px;
background-color: #fff;
border-radius: 50%;
}
}
.time-line-item {
width: 248px;
height: 74px;
min-height: 74px !important;
height: auto !important;
background-color: #f2f3f5;
border-radius: 8px;
position: relative;
@@ -101,25 +141,39 @@
padding: 10px;
> p {
width: 100%;
height: 22px;
width: calc(100% - 70px) !important;
min-height: 22px !important;
height: auto !important;
font-size: 14px;
font-weight: 600;
line-height: 22px;
color: #1d2129;
word-wrap: break-word !important;
word-break: break-word !important;
white-space: normal !important;
overflow-wrap: break-word !important;
display: block !important;
text-overflow: unset !important;
overflow: visible !important;
max-width: none !important;
-webkit-line-clamp: unset !important;
-webkit-box-orient: unset !important;
text-rendering: auto !important;
}
> .time-line-item-info {
margin-top: 10px;
width: 100%;
height: 20px;
min-height: 20px;
font-size: 12px;
font-weight: 400;
line-height: 20px;
color: #4e5969;
display: flex;
justify-content: space-between;
align-items: center;
align-items: flex-start;
flex-wrap: wrap;
gap: 5px;
}
}
@@ -225,3 +279,24 @@
}
}
}
/* 强制覆盖Arco Timeline文本省略 */
.course-list .arco-timeline-item-content p {
text-overflow: unset !important;
overflow: visible !important;
white-space: normal !important;
display: block !important;
-webkit-line-clamp: unset !important;
-webkit-box-orient: unset !important;
word-break: break-word !important;
max-width: calc(100% - 70px) !important;
}
.course-list .time-line-item p {
text-overflow: unset !important;
overflow: visible !important;
white-space: normal !important;
display: block !important;
-webkit-line-clamp: unset !important;
-webkit-box-orient: unset !important;
}