新会员页面

This commit is contained in:
2026-05-15 19:02:11 +08:00
parent f341408254
commit 14c7660770
31 changed files with 3496 additions and 396 deletions
+164
View File
@@ -836,6 +836,30 @@
height: calc(100vh - 0.6rem);
margin-left: 0.2rem;
max-width: 8rem;
overflow-y: auto;
}
// 右侧简历预览容器
&__right-resume {
background: $bg-white;
border-radius: 0.12rem;
padding: 0.24rem;
height: 100%;
overflow-y: auto;
// 自定义滚动条
&::-webkit-scrollbar {
width: 4px;
}
&::-webkit-scrollbar-thumb {
background: $border-color;
border-radius: 2px;
}
&::-webkit-scrollbar-track {
background: transparent;
}
}
// ==================== 顶部固定设置栏 ====================
@@ -909,6 +933,12 @@
&:hover {
opacity: 0.85;
}
&:disabled {
background: $text-light;
cursor: not-allowed;
opacity: 0.7;
}
}
// 右侧工具按钮区
@@ -917,6 +947,140 @@
align-items: center;
gap: 0.06rem;
flex-shrink: 0;
position: relative;
}
// 待投递列表下拉弹窗
&__task-dropdown {
position: absolute;
top: 0.36rem;
right: 0;
width: 5.1rem;
background: $bg-white;
border-radius: 0.12rem;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
z-index: 100;
padding: 0.16rem;
}
// Tab 切换
&__task-tabs {
display: flex;
gap: 0.2rem;
margin-bottom: 0.14rem;
border-bottom: 1px solid $border-color;
padding-bottom: 0.1rem;
}
&__task-tab {
font-size: 0.14rem;
color: $text-middle;
cursor: pointer;
font-weight: 500;
&--active {
color: $text-dark;
font-weight: 700;
}
}
// 列表区域
&__task-list {
max-height: 2.5rem;
overflow-y: auto;
}
&__task-empty {
font-size: 0.12rem;
color: $text-light;
text-align: center;
padding: 0.2rem 0;
}
// 单个岗位项
&__task-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.1rem 0;
border-bottom: 1px solid $border-color;
&:last-child {
border-bottom: none;
}
}
&__task-item-left {
display: flex;
align-items: center;
gap: 0.08rem;
min-width: 0;
flex: 1;
}
&__task-item-name {
font-size: 0.13rem;
font-weight: 600;
color: $text-dark;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
&__task-item-tag {
font-size: 0.11rem;
color: $bg-white;
background: $text-middle;
padding: 0.02rem 0.08rem;
border-radius: 0.03rem;
white-space: nowrap;
flex-shrink: 0;
}
&__task-item-right {
display: flex;
align-items: center;
gap: 0.08rem;
flex-shrink: 0;
margin-left: 0.1rem;
}
&__task-item-status {
font-size: 0.12rem;
color: $text-middle;
&--done {
color: $accent;
}
}
&__task-item-remove {
font-size: 0.16rem;
color: $text-light;
cursor: pointer;
line-height: 1;
&:hover {
color: $text-dark;
}
}
// 查看全部按钮
&__task-view-all {
text-align: center;
font-size: 0.13rem;
color: $text-middle;
padding: 0.1rem 0 0;
margin-top: 0.1rem;
border-top: 1px solid $border-color;
cursor: pointer;
background: $bg-main;
border-radius: 0.06rem;
padding: 0.08rem;
&:hover {
color: $text-dark;
}
}
// 工具按钮
+9
View File
@@ -170,6 +170,15 @@
flex-shrink: 0;
}
// 视频播放器 — 16:9 比例,圆角,无控件
&__video {
width: 6.5rem;
aspect-ratio: 16 / 9;
border-radius: 0.24rem;
object-fit: cover;
display: block;
}
// 模拟匹配卡片容器
&__card {
width: 6.5rem;