求职助手配置

This commit is contained in:
2026-05-28 11:23:48 +08:00
parent f52a7c56f7
commit 3dbeddcb8f
2 changed files with 345 additions and 1 deletions
@@ -69,7 +69,7 @@
/* 区块标题 */
&__section-title {
font-size: 0.15rem;
font-size: 0.18rem;
font-weight: 600;
color: $text-dark;
}
@@ -199,4 +199,128 @@
object-fit: contain;
}
}
/* ========== 求职助手配置表单 ========== */
&__config-group {
margin-top: 0.16rem;
}
&__config-label {
font-size: 0.13rem;
font-weight: 600;
color: $text-dark;
margin-bottom: 0.08rem;
}
&__config-sub {
font-size: 0.12rem;
color: $text-middle;
margin-bottom: 0.06rem;
}
&__config-options {
display: flex;
flex-wrap: wrap;
gap: 0.08rem;
}
&__config-btn {
padding: 0.07rem 0.16rem;
background: $bg-white;
border: 1px solid $border-color;
border-radius: 0.2rem;
font-size: 0.12rem;
color: $text-dark;
cursor: pointer;
transition: border-color 0.2s, background 0.2s;
&:hover {
border-color: $accent;
}
&--active {
border-color: $accent;
background: $theme-color;
color: $accent;
}
}
&__config-selects {
display: flex;
gap: 0.1rem;
}
&__config-select {
min-width: 1.2rem;
&--full {
flex: 1;
}
}
/* 简历选择行 */
&__resume-row {
display: flex;
align-items: center;
gap: 0.08rem;
}
&__resume-icon {
width: 0.18rem;
height: 0.18rem;
color: $text-middle;
flex-shrink: 0;
}
/* 开关行 */
&__switch-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.1rem;
}
&__switch-text {
font-size: 0.12rem;
color: $text-dark;
line-height: 1.6;
}
&__switch-sub {
font-size: 0.11rem;
color: $text-light;
}
&__tip {
font-size: 0.12rem;
color: $text-light;
cursor: help;
margin-left: 0.04rem;
}
/* 提交按钮 */
&__submit-wrap {
margin-top: 0.24rem;
text-align: center;
}
&__submit-btn {
padding: 0.1rem 0.5rem;
background: $gradient-bg;
color: $bg-white;
border: none;
border-radius: 0.24rem;
font-size: 0.14rem;
cursor: pointer;
transition: opacity 0.2s;
&:hover {
opacity: 0.9;
}
&:disabled {
opacity: 0.6;
cursor: not-allowed;
}
}
}