Files
LinHelp/miniapp/miniprogram/app.wxss
2026-07-14 16:04:51 +08:00

260 lines
3.8 KiB
Plaintext

page {
background: #f3f6f8;
color: #16212f;
font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
font-size: 28rpx;
line-height: 1.5;
}
view,
text,
input,
textarea,
button {
box-sizing: border-box;
}
.page {
min-height: 100vh;
padding: 28rpx 24rpx 48rpx;
}
.page-heading {
margin-bottom: 24rpx;
}
.heading-eyebrow {
display: inline-flex;
align-items: center;
height: 40rpx;
padding: 0 14rpx;
color: #0f766e;
background: #e6f4f1;
border-radius: 999rpx;
font-size: 22rpx;
font-weight: 600;
}
.heading-title {
margin-top: 10rpx;
color: #111827;
font-size: 40rpx;
font-weight: 800;
line-height: 1.2;
}
.heading-subtitle {
margin-top: 8rpx;
color: #64748b;
font-size: 24rpx;
}
.section {
margin-bottom: 28rpx;
}
.section-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 16rpx;
}
.section-title {
margin: 0;
color: #111827;
font-size: 34rpx;
font-weight: 800;
line-height: 1.25;
}
.card {
background: #ffffff;
border: 1rpx solid #e4eaf0;
border-radius: 16rpx;
padding: 24rpx;
margin-bottom: 16rpx;
box-shadow: 0 8rpx 24rpx rgba(20, 36, 58, 0.05);
}
.card-title {
color: #111827;
font-size: 30rpx;
font-weight: 700;
line-height: 1.35;
}
.row {
display: flex;
align-items: center;
gap: 16rpx;
}
.between {
justify-content: space-between;
}
.stack {
display: flex;
flex-direction: column;
gap: 10rpx;
}
.muted {
color: #64748b;
font-size: 24rpx;
}
.price {
color: #c2410c;
font-weight: 700;
}
.tag {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 36rpx;
padding: 4rpx 14rpx;
background: #e6f4f1;
color: #0f766e;
border-radius: 999rpx;
font-size: 22rpx;
font-weight: 700;
white-space: nowrap;
}
.pill {
display: inline-flex;
align-items: center;
height: 44rpx;
padding: 0 16rpx;
color: #33536f;
background: #edf4f8;
border-radius: 999rpx;
font-size: 22rpx;
font-weight: 600;
}
.grid {
display: flex;
flex-wrap: wrap;
gap: 16rpx;
}
.shortcut {
width: calc((100% - 32rpx) / 3);
height: 116rpx;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: #ffffff;
border: 1rpx solid #e5e9ef;
border-radius: 16rpx;
font-weight: 600;
}
.input,
.textarea,
.picker {
width: 100%;
min-height: 84rpx;
padding: 0 22rpx;
background: #ffffff;
border: 1rpx solid #d9e2ea;
border-radius: 14rpx;
margin-bottom: 20rpx;
color: #17212b;
font-size: 28rpx;
}
.picker {
display: flex;
align-items: center;
color: #334155;
}
.textarea {
min-height: 140rpx;
padding-top: 18rpx;
}
.field-label {
display: block;
margin: 6rpx 0 12rpx;
color: #334155;
font-size: 24rpx;
font-weight: 700;
}
.form-card {
background: #ffffff;
border: 1rpx solid #e4eaf0;
border-radius: 16rpx;
padding: 24rpx;
box-shadow: 0 8rpx 24rpx rgba(20, 36, 58, 0.05);
}
.button-row {
display: flex;
gap: 16rpx;
}
button {
border-radius: 14rpx;
font-size: 28rpx;
font-weight: 700;
}
button::after {
border: none;
}
.primary {
background: #0f766e;
color: #ffffff;
border: 1rpx solid #0f766e;
}
.ghost {
background: #ffffff;
color: #0f766e;
border: 1rpx solid #0f766e;
}
.action-button {
min-height: 88rpx;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
}
.empty-state {
display: flex;
min-height: 180rpx;
align-items: center;
justify-content: center;
color: #64748b;
background: #ffffff;
border: 1rpx dashed #cbd5e1;
border-radius: 16rpx;
font-size: 26rpx;
}
.media-placeholder {
display: flex;
align-items: center;
justify-content: center;
color: #0f766e;
background: #e6f4f1;
font-weight: 800;
}
.divider {
height: 1rpx;
margin: 20rpx 0;
background: #edf1f5;
}