115 lines
1.7 KiB
Plaintext
115 lines
1.7 KiB
Plaintext
/**appointment.wxss**/
|
|
page {
|
|
background-color: #f5f7fa;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.page {
|
|
padding: 24rpx 32rpx 160rpx;
|
|
}
|
|
|
|
.section {
|
|
background: #fff;
|
|
border-radius: 20rpx;
|
|
padding: 32rpx;
|
|
margin-bottom: 24rpx;
|
|
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.04);
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 30rpx;
|
|
font-weight: 600;
|
|
color: #1a1a1a;
|
|
margin-bottom: 24rpx;
|
|
padding-left: 16rpx;
|
|
border-left: 6rpx solid #1890ff;
|
|
}
|
|
|
|
.form-group {
|
|
display: flex;
|
|
align-items: center;
|
|
min-height: 88rpx;
|
|
border-bottom: 1rpx solid #f0f0f0;
|
|
}
|
|
|
|
.form-group:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.form-label {
|
|
width: 160rpx;
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.form-input {
|
|
flex: 1;
|
|
font-size: 28rpx;
|
|
color: #1a1a1a;
|
|
height: 88rpx;
|
|
}
|
|
|
|
.form-picker-wrap {
|
|
flex: 1;
|
|
}
|
|
|
|
.form-picker {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 88rpx;
|
|
}
|
|
|
|
.picker-value {
|
|
font-size: 28rpx;
|
|
color: #1a1a1a;
|
|
}
|
|
|
|
.picker-placeholder {
|
|
font-size: 28rpx;
|
|
color: #ccc;
|
|
}
|
|
|
|
.picker-arrow {
|
|
font-size: 32rpx;
|
|
color: #ccc;
|
|
}
|
|
|
|
.submit-wrap {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
padding: 20rpx 32rpx;
|
|
padding-bottom: calc(20rpx + env(safe-area-inset-bottom));
|
|
background: #fff;
|
|
box-shadow: 0 -2rpx 12rpx rgba(0, 0, 0, 0.06);
|
|
}
|
|
|
|
.submit-btn {
|
|
width: 100%;
|
|
height: 88rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: #1890ff;
|
|
color: #fff;
|
|
font-size: 32rpx;
|
|
font-weight: 600;
|
|
border-radius: 44rpx;
|
|
border: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
line-height: 1;
|
|
}
|
|
|
|
.submit-btn::after {
|
|
border: none;
|
|
}
|
|
|
|
.submit-btn[disabled] {
|
|
background: #b3d9ff;
|
|
color: #fff;
|
|
}
|