职位列表去投递定时提醒去AI助手弹窗

This commit is contained in:
2026-06-01 15:46:30 +08:00
parent ddb67cfb6f
commit dde72be9de
5 changed files with 214 additions and 11 deletions
+93
View File
@@ -633,6 +633,31 @@
z-index: 10;
}
// 列表底部加载盒子
&__loading-box {
display: flex;
align-items: center;
justify-content: center;
gap: 0.08rem;
padding: 0.24rem 0;
font-size: 0.13rem;
color: $text-light;
}
// 加载旋转动画
&__loading-spinner {
width: 0.18rem;
height: 0.18rem;
border: 2px solid rgba(0, 0, 0, 0.1);
border-top-color: $accent;
border-radius: 50%;
animation: jobs-spin 0.6s linear infinite;
}
@keyframes jobs-spin {
to { transform: rotate(360deg); }
}
// 高匹配度特殊样式
&__job-match--high &__match-score {
color: $accent-hover;
@@ -642,6 +667,74 @@
color: $accent;
font-weight: 500;
}
// ==================== AI助手投递提醒弹窗 ====================
// 遮罩层
&__agent-remind-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: $overlay-bg;
display: flex;
align-items: center;
justify-content: center;
z-index: 2000;
}
// 弹窗主体
&__agent-remind-dialog {
background: $bg-white;
border-radius: 0.12rem;
padding: 0.32rem 0.36rem 0.24rem;
min-width: 3.2rem;
text-align: center;
}
// 提示文字
&__agent-remind-text {
font-size: 0.15rem;
color: $text-dark;
font-weight: 500;
margin-bottom: 0.28rem;
line-height: 1.5;
}
// 按钮区域
&__agent-remind-actions {
display: flex;
gap: 0.16rem;
}
// 按钮通用
&__agent-remind-btn {
flex: 1;
padding: 0.1rem 0;
border-radius: 0.08rem;
font-size: 0.14rem;
font-weight: 500;
cursor: pointer;
border: none;
transition: opacity 0.2s;
&:hover {
opacity: 0.85;
}
// 灰色按钮 — 直接投
&--secondary {
background: $bg-main;
color: $text-middle;
}
// 主题色按钮 — 去AI助手
&--primary {
background: $btn-dark;
color: $bg-white;
}
}
}
// ==================== 不感兴趣反馈弹窗 ====================