33 lines
406 B
Plaintext
33 lines
406 B
Plaintext
.editor{
|
|
font-size: 30rpx;
|
|
}
|
|
.editor .item{
|
|
display: flex;
|
|
align-items: center;
|
|
border-bottom: 1rpx solid rgba(153, 153, 153, 0.2);
|
|
}
|
|
.editor .item:last-child{
|
|
border:none;
|
|
}
|
|
|
|
.editor .item .key{
|
|
}
|
|
.editor .item .key::before{
|
|
content: '*';
|
|
color: #EB0000;
|
|
}
|
|
.editor .item .value{
|
|
flex:1;
|
|
margin-left: 30rpx;
|
|
padding: 50rpx 0;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.weui-form{padding:0;}
|
|
|
|
.weui-label{
|
|
width: auto;
|
|
} |