左侧菜单,邀请,设置,和会员相关

This commit is contained in:
2026-07-07 23:40:20 +08:00
parent b740e0cd39
commit 851310a901
18 changed files with 2090 additions and 2169 deletions
+11 -10
View File
@@ -15,8 +15,6 @@
overflow: hidden;
background: $bg-main;
font-size: 0.14rem;
display: flex;
flex-direction: column;
}
// 页面标题
@@ -156,9 +154,6 @@
font-size: 0.12rem;
line-height: 0.16rem;
color: $accent;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: text-top;
margin-left: 0.03rem;
}
@@ -278,11 +273,11 @@
}
}
// 职位列表
// 职位列表(用 calc 减去上方头部+筛选栏大致高度,保证列表独立滚动)
&__list {
gap: 0;
flex: 1;
overflow-y: auto;
height: calc(var(--app-height, 100vh) - 1.8rem);
padding-bottom: 0.2rem;
margin: 0 0.24rem;
@@ -307,7 +302,7 @@
&:hover {
box-shadow: 0 0.04rem 0.16rem rgba(0, 0, 0, 0.06);
background: #fbfbfb;
//background: #fbfbfb;
}
&--selected {
@@ -581,7 +576,7 @@
}
}
// 不再显示
// 不再显示(默认隐藏,hover 卡片时显示)
&__hide-btn {
display: block;
margin-top: auto;
@@ -589,15 +584,21 @@
font-weight: 330;
color: #8C8C8C;
cursor: pointer;
transition: color 0.2s;
transition: color 0.2s, opacity 0.2s;
line-height: 0.19rem;
white-space: nowrap;
opacity: 0;
&:hover {
color: $text-dark;
}
}
// hover 卡片时显示"不再显示"按钮
&__job-card:hover &__hide-btn {
opacity: 1;
}
// 弹出菜单
&__job-popup {
position: absolute;