Files
qingcheng-xiaochengxu/pages/loginModule/employeeAccountApply/employeeAccountApply.wxss

209 lines
4.2 KiB
Plaintext
Raw Normal View History

2025-08-15 11:14:42 +08:00
/* ===== 页面与顶区 ===== */
2025-07-20 18:22:59 +08:00
.page {
2025-08-15 11:14:42 +08:00
box-sizing: border-box;
min-height: 100vh;
padding: 56rpx 32rpx 40rpx;
background-image: linear-gradient(180deg, #ffe3c4 0%, #fff 38%);
display: flex;
flex-direction: column;
align-items: center;
position: relative;
2025-07-20 18:22:59 +08:00
}
2025-08-15 11:14:42 +08:00
.logo {
width: 180rpx;
height: 180rpx;
border-radius: 24rpx;
box-shadow: 0 8rpx 24rpx rgba(0,0,0,0.06);
2025-07-20 18:22:59 +08:00
}
2025-08-15 11:14:42 +08:00
.page-title {
margin-top: 12rpx;
font-size: 34rpx;
2025-07-20 18:22:59 +08:00
color: #1c2023;
2025-08-15 11:14:42 +08:00
font-weight: 700;
}
/* ===== 遮罩(上传中) ===== */
.mask {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.35);
backdrop-filter: blur(2rpx);
z-index: 99;
display: flex;
align-items: center;
justify-content: center;
2025-07-20 18:22:59 +08:00
}
2025-08-15 11:14:42 +08:00
.loading-text {
padding: 20rpx 28rpx;
background: #000000cc;
color: #fff;
border-radius: 16rpx;
font-size: 28rpx;
2025-07-20 18:22:59 +08:00
}
2025-08-15 11:14:42 +08:00
/* ===== 主卡片 ===== */
.card {
width: 100%;
margin-top: 24rpx;
background: #fff;
border-radius: 24rpx;
box-shadow: 0 12rpx 36rpx rgba(0,0,0,0.08);
padding: 24rpx 24rpx 16rpx;
2025-07-20 18:22:59 +08:00
}
2025-08-15 11:14:42 +08:00
.card-head {
display: flex;
align-items: center;
justify-content: space-between;
padding-bottom: 12rpx;
border-bottom: 1rpx solid #f1f1f1;
2025-07-20 18:22:59 +08:00
}
2025-08-15 11:14:42 +08:00
.card-title {
font-size: 30rpx;
font-weight: 700;
2025-07-20 18:22:59 +08:00
color: #1c2023;
}
2025-08-15 11:14:42 +08:00
/* 须知入口 */
.head-link {
display: flex;
align-items: center;
gap: 8rpx;
2025-07-20 18:22:59 +08:00
}
2025-08-15 11:14:42 +08:00
.head-link-icon {
width: 28rpx;
height: 28rpx;
2025-07-20 18:22:59 +08:00
}
2025-08-15 11:14:42 +08:00
.head-link-text {
font-size: 26rpx;
2025-07-20 18:22:59 +08:00
color: #ff8d1a;
}
2025-08-15 11:14:42 +08:00
/* ===== 表单 ===== */
.form { padding-top: 16rpx; }
.field {
background: #fff;
border: 1rpx solid #e9e9ec;
border-radius: 16rpx;
padding: 18rpx 22rpx;
box-shadow: 0 6rpx 16rpx rgba(0,0,0,0.04);
margin-top: 18rpx;
}
.field:focus-within {
border-color: #ff8d1a;
box-shadow: 0 10rpx 24rpx rgba(255,141,26,0.14);
}
.field-input {
width: 100%;
2025-07-20 18:22:59 +08:00
font-size: 30rpx;
2025-08-15 11:14:42 +08:00
color: #1c2023;
line-height: 44rpx;
2025-07-20 18:22:59 +08:00
}
2025-08-15 11:14:42 +08:00
.ph { color: #9aa0a6; }
/* 验证码行 */
.field-row {
display: flex;
align-items: center;
gap: 16rpx;
padding-right: 16rpx;
2025-07-20 18:22:59 +08:00
}
2025-08-15 11:14:42 +08:00
.flex-1 { flex: 1; }
.code-btn {
height: 44rpx;
padding: 0 22rpx;
background: #ff8d1a;
border-radius: 12rpx;
display: flex;
align-items: center;
justify-content: center;
white-space: nowrap;
box-shadow: 0 8rpx 18rpx rgba(255,141,26,0.25);
transition: transform .08s ease-in-out, opacity .2s;
2025-07-20 18:22:59 +08:00
}
2025-08-15 11:14:42 +08:00
.code-btn:active { transform: scale(0.98); }
.code-btn-text {
color: #fff;
font-size: 24rpx;
font-weight: 600;
2025-07-20 18:22:59 +08:00
}
2025-08-15 11:14:42 +08:00
/* ===== 上传简历 ===== */
.upload-box {
margin-top: 18rpx;
border: 1rpx dashed #ffb66a;
background: #fffaf4;
border-radius: 16rpx;
padding: 28rpx 22rpx;
display: flex;
align-items: center;
gap: 16rpx;
transition: transform .06s ease-in-out, background .2s;
2025-07-20 18:22:59 +08:00
}
2025-08-15 11:14:42 +08:00
.upload-box:active { transform: scale(0.992); }
.upload-icon {
width: 56rpx;
height: 56rpx;
2025-07-20 18:22:59 +08:00
}
2025-08-15 11:14:42 +08:00
.upload-tip {
font-size: 26rpx;
color: #666a73;
2025-07-20 18:22:59 +08:00
}
2025-08-15 11:14:42 +08:00
.upload-success-text {
font-size: 26rpx;
color: #13b26b;
font-weight: 600;
2025-07-20 18:22:59 +08:00
}
2025-08-15 11:14:42 +08:00
/* ===== 提交按钮 ===== */
.btn-primary {
margin-top: 22rpx;
height: 96rpx;
border-radius: 48rpx; /* 胶囊 */
background: linear-gradient(180deg, #ff9a2d 0%, #ff8d1a 100%);
2025-07-20 18:22:59 +08:00
display: flex;
align-items: center;
2025-08-15 11:14:42 +08:00
justify-content: center;
box-shadow: 0 14rpx 28rpx rgba(255,141,26,0.28);
transition: transform .06s ease-in-out;
2025-07-20 18:22:59 +08:00
}
2025-08-15 11:14:42 +08:00
.btn-primary:active { transform: scale(0.985); }
.btn-primary-text {
2025-07-20 18:22:59 +08:00
color: #ffffff;
2025-08-15 11:14:42 +08:00
font-size: 32rpx;
font-weight: 700;
2025-07-20 18:22:59 +08:00
}
2025-08-15 11:14:42 +08:00
/* ===== 记录入口 ===== */
.record {
margin-top: 12rpx;
padding: 16rpx 8rpx 4rpx;
display: flex;
align-items: center;
gap: 10rpx;
justify-content: center;
2025-07-20 18:22:59 +08:00
}
2025-08-15 11:14:42 +08:00
.record-icon { width: 28rpx; height: 28rpx; }
.record-text { font-size: 26rpx; color: #1c2023; }
/* ===== 复用的工具类(与原项目兼容) ===== */
.flex-col { display: flex; flex-direction: column; }
.flex-row { display: flex; flex-direction: row; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.self-center { align-self: center; }
.self-stretch { align-self: stretch; }
.relative { position: relative; }
.shrink-0 { flex-shrink: 0; }
.mt-15 { margin-top: 30rpx; }
.mt-21 { margin-top: 42rpx; }
.mt-28 { margin-top: 56rpx; }
.ml-16 { margin-left: 32rpx; }