91 lines
1.2 KiB
Plaintext
91 lines
1.2 KiB
Plaintext
.form-page {
|
|
padding: 24rpx;
|
|
}
|
|
|
|
.form-card {
|
|
background: #ffffff;
|
|
border-radius: 24rpx;
|
|
padding: 24rpx;
|
|
}
|
|
|
|
.avatar-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 16rpx 0 32rpx;
|
|
}
|
|
|
|
.avatar-image {
|
|
width: 160rpx;
|
|
height: 160rpx;
|
|
border-radius: 50%;
|
|
background: #f2f3f5;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #999999;
|
|
font-size: 24rpx;
|
|
}
|
|
|
|
.avatar-placeholder {
|
|
border: 2rpx dashed #d9d9d9;
|
|
}
|
|
|
|
.avatar-hint {
|
|
margin-top: 16rpx;
|
|
color: #999999;
|
|
font-size: 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;
|
|
}
|