- 重新设计面试评价三板块(专业能力、现场表现力、综合评价)的布局 - 移除专业能力和现场表现力图标的彩色背景框 - 删除综合评价板块的图标 - 修复评价内容字符串解析错误 - 优化三个评价板块的视觉样式和内容提取逻辑 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
143 lines
3.1 KiB
CSS
143 lines
3.1 KiB
CSS
.live-summary-wrapper {
|
|
width: 304px;
|
|
height: 798px;
|
|
border-radius: 8px;
|
|
background-color: #fff;
|
|
box-sizing: border-box;
|
|
padding: 20px 16px;
|
|
|
|
.not-living {
|
|
&::after {
|
|
display: none;
|
|
}
|
|
}
|
|
.live-summary-title {
|
|
width: 100%;
|
|
height: 30px;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
line-height: 20px;
|
|
color: #1d2129;
|
|
padding-bottom: 10px;
|
|
border-bottom: 1px solid #e5e6eb;
|
|
margin-bottom: 20px;
|
|
|
|
&::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 20px;
|
|
bottom: 5px;
|
|
width: 31px;
|
|
height: 3px;
|
|
background-image: url("@/assets/images/Common/title_icon.png");
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
|
|
}
|
|
.live-summary-list {
|
|
width: 100%;
|
|
max-height: 530px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
overflow-y: auto;
|
|
|
|
.live-summary-item:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.live-summary-item {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
overflow-y: auto;
|
|
margin-bottom: 20px;
|
|
flex-shrink: 0;
|
|
|
|
.live-summary-item-title {
|
|
width: 100%;
|
|
height: 22px;
|
|
text-align: left;
|
|
box-sizing: border-box;
|
|
padding-left: 25px;
|
|
position: relative;
|
|
line-height: 22px;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: #2c7aff;
|
|
/* margin-bottom: 10px; */
|
|
|
|
&::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 20px;
|
|
height: 20px;
|
|
background-image: url("@/assets/images/Common/title_dot_icon.png");
|
|
background-size: 100% 100%;
|
|
}
|
|
}
|
|
|
|
.live-summary-item-content-list:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.live-summary-item-content-list {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
margin-top: 10px;
|
|
|
|
.live-summary-item-content-item {
|
|
flex-shrink: 0;
|
|
width: 100%;
|
|
min-height: 32px;
|
|
height: auto;
|
|
box-sizing: border-box;
|
|
background-color: #f7f8fa;
|
|
border-radius: 8px;
|
|
padding: 8px 10px;
|
|
line-height: 1.5;
|
|
font-size: 13px;
|
|
font-weight: 400;
|
|
color: #1d2129;
|
|
text-align: left;
|
|
margin-bottom: 8px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
transition: all 0.2s ease;
|
|
|
|
&:hover {
|
|
background-color: #e8f3ff;
|
|
transform: translateX(2px);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.job-search-strategy-btn {
|
|
width: 100%;
|
|
height: 36px;
|
|
border-radius: 2px;
|
|
background-color: #2c7aff;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: #fff;
|
|
line-height: 36px;
|
|
text-align: center;
|
|
margin-top: 30px;
|
|
cursor: pointer;
|
|
}
|
|
}
|