新会员页面

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
Binary file not shown.

After

Width:  |  Height:  |  Size: 543 B

@@ -0,0 +1,317 @@
@use '../variables' as *;
// 申请进度消息组件
.agent-apply-progress {
background: $bg-middle;
border-radius: 0.12rem;
padding: 0.2rem;
// 顶部标题栏
&__header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 0.16rem;
}
&__title {
font-size: 0.15rem;
font-weight: 600;
color: $text-dark;
// 可点击状态(暂停/恢复)
&--clickable {
cursor: pointer;
color: $accent;
&:hover {
opacity: 0.8;
}
}
}
&__cancel {
font-size: 0.13rem;
color: $text-middle;
cursor: pointer;
&:hover {
color: $text-dark;
}
}
// 岗位信息卡片
&__job-card {
display: flex;
align-items: center;
gap: 0.12rem;
background: $bg-white;
border-radius: 0.1rem;
padding: 0.14rem 0.16rem;
margin-bottom: 0.2rem;
}
&__job-icon {
width: 0.36rem;
height: 0.36rem;
border-radius: 0.08rem;
background: $bg-main;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
color: $text-middle;
svg {
width: 0.2rem;
height: 0.2rem;
}
}
&__job-info {
min-width: 0;
}
&__job-company {
font-size: 0.14rem;
font-weight: 600;
color: $text-dark;
line-height: 1.4;
}
&__job-title {
font-size: 0.12rem;
color: $text-middle;
line-height: 1.4;
}
// 步骤列表
&__steps {
display: flex;
flex-direction: column;
gap: 0.14rem;
}
&__step {
display: flex;
align-items: flex-start;
gap: 0.1rem;
flex-wrap: wrap;
}
// 勾选框
&__step-check {
width: 0.18rem;
height: 0.18rem;
border: 1.5px solid $text-light;
border-radius: 0.03rem;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-top: 0.01rem;
svg {
width: 0.12rem;
height: 0.12rem;
}
// 已完成态
&--done {
border-color: $text-dark;
background: $text-dark;
color: $bg-white;
}
}
&__step-label {
font-size: 0.14rem;
color: $text-dark;
line-height: 0.2rem;
}
// 步骤展开内容
&__step-content {
width: 100%;
margin-top: 0.08rem;
padding-left: 0.28rem;
}
// 第2步:简历确认区域
&__resume-confirm {
display: flex;
align-items: center;
justify-content: space-between;
background: $bg-white;
border-radius: 0.08rem;
padding: 0.1rem 0.14rem;
}
&__resume-file {
display: flex;
align-items: center;
gap: 0.08rem;
}
&__file-icon {
width: 0.18rem;
height: 0.18rem;
color: $text-dark;
}
&__resume-name {
font-size: 0.13rem;
color: $text-dark;
}
&__confirm-btn {
height: 0.28rem;
padding: 0 0.16rem;
background: $btn-dark;
color: $bg-white;
border: none;
border-radius: 0.14rem;
font-size: 0.12rem;
cursor: pointer;
transition: all 0.2s;
&:hover {
background: $btn-dark-hover;
}
&:disabled {
background: $text-light;
cursor: not-allowed;
}
}
// 第3步:投递操作区域
&__apply-area {
background: $bg-white;
border-radius: 0.08rem;
padding: 0.14rem 0.16rem;
}
&__apply-desc {
font-size: 0.12rem;
color: $text-middle;
line-height: 1.8;
margin: 0;
}
&__apply-actions {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 0.1rem;
margin-top: 0.14rem;
}
&__skip-btn {
font-size: 0.12rem;
color: $text-middle;
cursor: pointer;
text-decoration: underline;
&:hover {
color: $text-dark;
}
&--disabled {
color: $text-light;
cursor: not-allowed;
pointer-events: none;
}
}
&__applied-btn {
height: 0.28rem;
padding: 0 0.14rem;
background: $btn-dark;
color: $bg-white;
border: none;
border-radius: 0.14rem;
font-size: 0.12rem;
cursor: pointer;
transition: all 0.2s;
&:hover {
background: $btn-dark-hover;
}
&:disabled {
background: $text-light;
cursor: not-allowed;
}
}
&__goto-btn {
height: 0.28rem;
padding: 0 0.14rem;
background: $btn-dark;
color: $bg-white;
border: none;
border-radius: 0.14rem;
font-size: 0.12rem;
cursor: pointer;
transition: all 0.2s;
&:hover {
background: $btn-dark-hover;
}
&:disabled {
background: $text-light;
cursor: not-allowed;
}
}
}
// 右侧面板:简历生成进度
.agent-resume-generating {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
padding: 0.4rem;
// 进度条容器
&__progress-bar {
width: 100%;
max-width: 3rem;
height: 0.04rem;
background: $border-color;
border-radius: 0.02rem;
overflow: hidden;
margin-bottom: 0.2rem;
}
&__progress-fill {
height: 100%;
background: $text-dark;
border-radius: 0.02rem;
transition: width 0.3s ease;
}
&__title {
font-size: 0.18rem;
font-weight: 700;
color: $text-dark;
margin-bottom: 0.1rem;
}
&__hint {
display: flex;
align-items: center;
gap: 0.06rem;
font-size: 0.12rem;
color: $text-middle;
}
&__hint-icon {
width: 0.14rem;
height: 0.14rem;
color: $accent;
}
}
+4 -3
View File
@@ -17,10 +17,11 @@
display: flex;
align-items: center;
justify-content: space-between;
background: linear-gradient(90deg, #94EF9E , #53D9C8 );
background: #0F172B;
color: #fff;
padding: 0.1rem 0.16rem;
font-size: 0.13rem;
padding: 0.12rem 0.18rem;
font-size: 0.15rem;
font-weight: 600;
cursor: pointer;
border-radius: 0.2rem;
margin: 0.15rem;
@@ -275,7 +275,7 @@
align-items: center;
justify-content: center;
gap: 0.5rem;
margin-bottom: 0.32rem;
margin-bottom: 0.02rem;
}
&__step {
@@ -81,17 +81,11 @@
display: flex;
align-items: flex-start;
justify-content: space-between;
margin-bottom: 4px;
margin-bottom: 2px;
break-inside: avoid;
page-break-inside: avoid;
}
&__item-left {
display: flex;
flex-direction: column;
gap: 2px;
}
&__item-main {
font-size: 13px;
font-weight: 600;
@@ -121,7 +115,8 @@
&__item-desc {
font-size: 12px;
color: $text-dark;
line-height: 1.5;
line-height: 1.7;
margin-top: 2px;
}
// 描述列表
File diff suppressed because it is too large Load Diff
+113
View File
@@ -151,6 +151,119 @@
color: $text-dark;
}
// ==================== 消息通知弹窗(左右分栏) ====================
.side-nav__message-dialog {
background: $bg-white;
border-radius: 0.12rem;
width: 8rem;
height: 6rem;
max-width: 90vw;
max-height: 90vh;
box-shadow: 0 0.04rem 0.2rem rgba(0, 0, 0, 0.15);
display: flex;
flex-direction: column;
}
.side-nav__message-dialog-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.16rem 0.2rem;
border-bottom: 1px solid $border-color;
font-size: 0.16rem;
font-weight: 600;
color: $text-dark;
flex-shrink: 0;
}
.side-nav__message-dialog-content {
display: flex;
flex: 1;
overflow: hidden;
}
// 左侧消息列表
.side-nav__message-list {
width: 2rem;
border-right: 1px solid $border-color;
overflow-y: auto;
flex-shrink: 0;
}
.side-nav__message-list-item {
display: flex;
align-items: center;
padding: 0.12rem 0.14rem;
cursor: pointer;
border-bottom: 1px solid $border-color;
transition: background 0.2s;
&:hover {
background: $bg-main;
}
&--active {
background: $theme-color;
}
}
.side-nav__message-list-title {
flex: 1;
font-size: 0.13rem;
color: $text-dark;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.side-nav__message-unread-dot {
width: 0.08rem;
height: 0.08rem;
border-radius: 50%;
background: $danger;
margin-left: 0.06rem;
flex-shrink: 0;
}
.side-nav__message-list-loading,
.side-nav__message-list-empty {
padding: 0.16rem;
text-align: center;
font-size: 0.12rem;
color: $text-light;
}
// 右侧消息详情
.side-nav__message-detail {
flex: 1;
padding: 0.2rem;
overflow-y: auto;
}
.side-nav__message-detail-title {
font-size: 0.16rem;
font-weight: 600;
color: $text-dark;
margin-bottom: 0.16rem;
}
.side-nav__message-detail-content {
font-size: 0.14rem;
color: $text-dark;
line-height: 1.7;
white-space: pre-wrap;
word-break: break-word;
}
.side-nav__message-detail-empty {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
font-size: 0.14rem;
color: $text-light;
}
// 反馈弹窗
.feedback-dialog {
padding: 0.28rem 0.24rem;
+1
View File
@@ -30,6 +30,7 @@
@use './components/resume-edit-name-dialog.scss';
@use './components/agent-chat-job-list.scss';
@use './components/agent-match-job-add.scss';
@use './components/agent-apply-progress.scss';
@use './components/ai-thinking-indicator.scss';
// 全局样式(优先级最高)
+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;
+8 -4
View File
@@ -41,13 +41,17 @@ $border-color: #E8E8E8;
// 遮罩层背景
$overlay-bg: rgba(0, 0, 0, 0.5);
// 按钮色背景(确认提交等)
// $btn-dark: #1A1A2E;
// 按钮色背景(确认提交等)
$btn-dark: #4FC2C9;
// 按钮色悬停态
// $btn-dark-hover: #2E3142;
// 按钮色悬停态
$btn-dark-hover: #42A8B3;
// 次要深色按钮背景(除非特意指定使用否则不用这个按钮色)
$btn-dark: #1A1A2E;
// 次要深色按钮悬停态(除非特意指定使用否则不用这个按钮色)
$btn-dark-hover: #2E3142;
// 渐变色背景
$gradient-bg: linear-gradient(to right, #4FC2C9, #42A8B3);