fix: 修复面试评价页面UI和功能优化

- 重新设计面试评价三板块(专业能力、现场表现力、综合评价)的布局
- 移除专业能力和现场表现力图标的彩色背景框
- 删除综合评价板块的图标
- 修复评价内容字符串解析错误
- 优化三个评价板块的视觉样式和内容提取逻辑

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
KQL
2025-09-08 04:29:40 +08:00
parent d1f6f2ee0d
commit ec7b14e3e8
11 changed files with 5374 additions and 98 deletions

View File

@@ -101,19 +101,27 @@
.live-summary-item-content-item {
flex-shrink: 0;
width: 100%;
height: 46px;
min-height: 32px;
height: auto;
box-sizing: border-box;
background-color: #f7f8fa;
border-radius: 8px;
padding: 0 10px;
line-height: 46px;
font-size: 14px;
padding: 8px 10px;
line-height: 1.5;
font-size: 13px;
font-weight: 400;
color: #1d2129;
text-align: left;
margin-bottom: 10px;
margin-bottom: 8px;
cursor: pointer;
flex-shrink: 0;
display: flex;
align-items: center;
transition: all 0.2s ease;
&:hover {
background-color: #e8f3ff;
transform: translateX(2px);
}
}
}
}