42 lines
675 B
Plaintext
42 lines
675 B
Plaintext
.page-container.editor{
|
|
padding-top:0;
|
|
font-size: 30rpx;
|
|
}
|
|
.editor .item{
|
|
display: flex;
|
|
align-items: center;
|
|
border-bottom: 1rpx solid rgba(153, 153, 153, 0.2);
|
|
min-height: 130rpx;
|
|
}
|
|
.editor .item.no-border{
|
|
border:none;
|
|
}
|
|
|
|
.editor .item .key{
|
|
}
|
|
.editor .item .key::before{
|
|
content: '*';
|
|
color: #EB0000;
|
|
}
|
|
.editor .item label.value{
|
|
line-height: 1.5;
|
|
height: auto;
|
|
align-self: center;
|
|
}
|
|
.editor .item .value{
|
|
flex:1;
|
|
margin-left: 30rpx;
|
|
height: 100%;
|
|
padding:15rpx 0;
|
|
box-sizing: border-box;
|
|
}
|
|
.editor .item .right-icon{
|
|
width:34rpx;height:34rpx;
|
|
}
|
|
|
|
.editor .radio-group{
|
|
font-size: 24rpx;
|
|
}
|
|
.editor button+button{
|
|
margin-top:30rpx;
|
|
} |