82 lines
1.3 KiB
Plaintext
Raw Normal View History

2024-03-08 15:56:06 +08:00
.containerView.public {
height: auto;
}
.headView {
padding: 30rpx 20rpx;
background: #f6f6f6;
}
.contentView {}
.contentView .rowView {
2024-02-27 08:47:32 +08:00
display: flex;
2024-03-08 15:56:06 +08:00
justify-content: space-between;
2024-02-27 08:47:32 +08:00
align-items: center;
2024-03-08 15:56:06 +08:00
padding: 2rpx 0 2rpx 30rpx;
border-bottom: 1px solid rgb(126, 126, 126, 0.2);
}
.contentView .rowView:last-of-type {
border-bottom: none;
}
.contentView .rowView .label {
position: relative;
font-size: 30rpx;
color: #000000;
}
.contentView .rowView .label.must::after {
content: '*';
display: block;
position: absolute;
left: 100%;
top: 6rpx;
margin-left: 10rpx;
color: red;
}
.input {
font-size: 30rpx;
}
.uploadImgView {
padding: 0 40rpx;
background-color: #ffffff;
font-size: 28rpx;
color: #646566;
}
.uploadImgView .tipsView {
text-align: center;
}
.submitBtnView {
width: 600rpx;
padding: 20rpx;
background: #4e96f8;
color: white;
font-size: 30rpx;
text-align: center;
border-radius: 10rpx;
margin: 60rpx auto;
}
.submitBtn {
box-sizing: border-box;
position: fixed;
z-index: 10;
width: 600rpx;
left: 50%;
transform: translateX(-50%);
bottom: 120rpx;
border-radius: 10rpx;
padding: 20rpx;
background: #4e96f8;
color: white;
font-size: 30rpx;
text-align: center;
2024-02-27 08:47:32 +08:00
}