62 lines
798 B
Plaintext
62 lines
798 B
Plaintext
|
|
.form-page {
|
||
|
|
padding: 24rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.form-card {
|
||
|
|
background: #ffffff;
|
||
|
|
border-radius: 24rpx;
|
||
|
|
padding: 24rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.form-item {
|
||
|
|
padding: 20rpx 0;
|
||
|
|
border-bottom: 1rpx solid #f0f0f0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.form-item:last-child {
|
||
|
|
border-bottom: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.label {
|
||
|
|
display: block;
|
||
|
|
margin-bottom: 12rpx;
|
||
|
|
color: #666666;
|
||
|
|
}
|
||
|
|
|
||
|
|
.input,
|
||
|
|
.picker-value,
|
||
|
|
.textarea {
|
||
|
|
width: 100%;
|
||
|
|
min-height: 80rpx;
|
||
|
|
box-sizing: border-box;
|
||
|
|
background: #f7f8fa;
|
||
|
|
border-radius: 16rpx;
|
||
|
|
padding: 20rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.textarea-item .textarea {
|
||
|
|
min-height: 200rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.action-bar {
|
||
|
|
display: flex;
|
||
|
|
gap: 20rpx;
|
||
|
|
margin-top: 24rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.action-bar button {
|
||
|
|
flex: 1;
|
||
|
|
border-radius: 999rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ghost-btn {
|
||
|
|
background: #ffffff;
|
||
|
|
color: #e8593c;
|
||
|
|
border: 1rpx solid #e8593c;
|
||
|
|
}
|
||
|
|
|
||
|
|
.primary-btn {
|
||
|
|
background: #e8593c;
|
||
|
|
color: #ffffff;
|
||
|
|
}
|