35 lines
475 B
Plaintext
35 lines
475 B
Plaintext
/* packageH/reserveFunds/getlist/getlist.wxss */
|
|
page {
|
|
min-height: 100vh;
|
|
background: #fff;
|
|
}
|
|
|
|
.list-box {
|
|
padding: 20rpx 0;
|
|
font-size: 16px;
|
|
background: #fff;
|
|
}
|
|
|
|
.item-box:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.item-box {
|
|
display: flex;
|
|
width: 100%;
|
|
padding: 30rpx 30rpx;
|
|
box-sizing: border-box;
|
|
border-bottom: 1rpx solid #ebebeb;
|
|
}
|
|
|
|
.item-left {
|
|
flex: 0 0 300rpx;
|
|
text-align: left;
|
|
}
|
|
|
|
.item-right {
|
|
flex: 1;
|
|
text-align: right;
|
|
color: red;
|
|
}
|