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

@@ -1,111 +1,177 @@
.project-library-page {
width: 100%;
height: 100%;
box-sizing: border-box;
padding: 20px;
position: relative;
.project-library-wrapper {
width: 100%;
height: 790px;
background-color: #fff;
border-radius: 8px;
box-sizing: border-box;
padding: 20px;
overflow: hidden;
display: flex;
flex-direction: column;
.project-library-search-area {
width: 100%;
height: 36px;
.ser-portfolio-searc {
width: 100%;
height: 36px;
border: 1px solid #2c7aff;
span {
background-color: #fff;
}
input {
background-color: #fff;
}
}
}
.project-library-list {
overflow-y: auto;
box-sizing: border-box;
display: flex;
justify-content: flex-start;
align-items: flex-start;
flex-wrap: wrap;
padding: 20px 0;
.project-library-item:nth-child(3n) {
margin-right: 0;
}
.project-library-item {
flex-shrink: 0;
width: 340px;
height: 82px;
box-sizing: border-box;
padding: 15px 20px;
border-radius: 8px;
background-color: #f7f8fa;
border: 1px solid #e5e6eb;
margin-right: 20px;
margin-bottom: 20px;
overflow: hidden;
display: flex;
justify-content: flex-start;
align-items: flex-start;
flex-direction: column;
.project-library-item-title {
width: fit-content;
max-width: 100%;
border: 1px solid #2c7aff;
background-color: #e8f3ff;
height: 20px;
border-radius: 2px;
padding: 0 8px;
box-sizing: border-box;
color: #2c7aff;
font-size: 12px;
font-weight: 600;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
> div {
width: 100%;
height: 24px;
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 5px;
> p {
width: 80%;
height: 100%;
font-size: 16px;
font-weight: 600;
color: #1d2129;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
> span {
cursor: pointer;
font-size: 12px;
font-weight: 400;
color: #2c7aff;
}
}
}
}
}
}
.project-library-page {
width: 100%;
height: 100%;
box-sizing: border-box;
padding: 20px;
position: relative;
.project-library-wrapper {
width: 1120px;
/* height: 790px; */
background-color: #fff;
border-radius: 8px;
box-sizing: border-box;
padding: 20px;
overflow: hidden;
.project-library-title {
width: 100%;
height: 42px;
font-size: 20px;
font-weight: 600;
line-height: 30px;
margin-bottom: 20px;
color: #1d2129;
flex-shrink: 0;
position: relative;
border-bottom: 1px solid #e5e6eb;
padding-bottom: 10px;
&::after {
content: "";
position: absolute;
left: 20px;
bottom: 10px;
width: 32px;
height: 6px;
background-image: url("@/assets/images/Common/title_icon.png");
background-size: contain;
background-repeat: no-repeat;
}
}
.project-library-search-area {
width: 100%;
height: 36px;
.ser-portfolio-searc {
width: 100%;
height: 36px;
border: 1px solid #2c7aff;
span {
background-color: #fff;
}
input {
background-color: #fff;
}
}
}
.project-library-list {
width: 100%;
overflow-y: auto;
box-sizing: border-box;
display: flex;
justify-content: flex-start;
align-items: flex-start;
flex-wrap: wrap;
padding: 20px 0;
.project-library-item:nth-child(3n) {
margin-right: 0;
}
.project-library-item {
flex-shrink: 0;
width: 340px;
height: 100px;
box-sizing: border-box;
padding: 15px 20px;
border-radius: 8px;
background-color: #e5f1ff;
background-image: url("@/assets/images/CompanyJobsPage/jobs_page_left_list_item_bg.png");
background-size: 100% 100%;
background-repeat: no-repeat;
border: 1px solid #e5e6eb;
margin-right: 20px;
margin-bottom: 20px;
position: relative;
overflow: hidden;
transition: all 0.3s ease;
cursor: pointer;
&:hover {
border-color: #4080ff;
box-shadow: 0 4px 12px rgba(44, 127, 255, 0.2);
transform: translateY(-2px);
background-color: #f0f7ff;
}
display: flex;
justify-content: flex-start;
align-items: flex-start;
flex-direction: column;
.project-library-item-title {
display: inline-block;
border: 1px solid #4080ff;
background-color: #ffffff;
min-height: 22px;
height: 22px;
border-radius: 3px;
padding: 0 10px;
box-sizing: border-box;
color: #4080ff;
font-size: 12px;
font-weight: 500;
line-height: 22px;
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin: 0 0 4px 0;
width: fit-content;
}
> div {
width: 100%;
height: 48px;
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 5px;
> p {
width: 80%;
font-size: 16px;
font-weight: 600;
color: #1d2129;
line-height: 1.5;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
> span {
cursor: pointer;
font-size: 12px;
font-weight: 400;
color: #2c7aff;
flex-shrink: 0;
margin-left: 10px;
align-self: center;
}
}
}
}
}
.my-project-library {
margin-top: 20px;
.project-library-empty {
width: 100%;
height: 200px;
display: flex;
justify-content: center;
align-items: center;
p {
color: #86909c;
font-size: 14px;
}
}
}
}