feat: 更新简历详情页面教育经历为苏州信息职业技术学院
- 统一所有岗位简历的教育经历显示为苏州信息职业技术学院 - 更新简历详情页面组件,确保教育经历信息一致性 - 优化简历信息展示格式和样式 - 添加新的面试题库和项目库数据 - 完善文旅产业相关简历模板
This commit is contained in:
@@ -403,4 +403,90 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* 项目图片展示样式 */
|
||||
.project-cases-modal-images {
|
||||
display: grid;
|
||||
gap: 20px;
|
||||
margin-top: 20px;
|
||||
padding: 20px;
|
||||
background-color: #f7f8fa;
|
||||
border-radius: 8px;
|
||||
|
||||
/* 默认两列布局 */
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
|
||||
/* 单张图片时全宽显示 */
|
||||
&:has(.project-cases-modal-image-wrapper:only-child) {
|
||||
grid-template-columns: 1fr;
|
||||
|
||||
.project-cases-modal-image-wrapper {
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
|
||||
/* 三张图片时三列布局 */
|
||||
&:has(.project-cases-modal-image-wrapper:nth-child(3)):not(:has(.project-cases-modal-image-wrapper:nth-child(4))) {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
|
||||
/* 四张及以上图片时两列布局 */
|
||||
&:has(.project-cases-modal-image-wrapper:nth-child(4)) {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
|
||||
.project-cases-modal-image-wrapper {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
.project-cases-modal-image-title {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
|
||||
color: #ffffff;
|
||||
padding: 20px 12px 12px;
|
||||
font-size: 13px;
|
||||
font-weight: 500;
|
||||
letter-spacing: 0.5px;
|
||||
transition: all 0.3s ease;
|
||||
z-index: 1;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
&:hover .project-cases-modal-image-title {
|
||||
background: linear-gradient(to top, rgba(64, 128, 255, 0.9), transparent);
|
||||
padding-bottom: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.project-cases-modal-image {
|
||||
width: 100%;
|
||||
height: 280px;
|
||||
object-fit: cover;
|
||||
object-position: center;
|
||||
border-radius: 8px;
|
||||
border: 1px solid #e5e6eb;
|
||||
background-color: #ffffff;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
|
||||
transition: all 0.3s ease;
|
||||
cursor: pointer;
|
||||
overflow: hidden;
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-4px);
|
||||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
|
||||
border-color: #4080ff;
|
||||
}
|
||||
|
||||
/* 对于PNG图片保持contain以避免裁剪 */
|
||||
&[src$=".png"] {
|
||||
object-fit: contain;
|
||||
padding: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user