.main {
|
margin-top: 5rpx;
|
min-height: 80rpx;
|
width: 100%;
|
background-color: #FFF;
|
display: grid;
|
justify-items: center;
|
.item {
|
height: 80rpx;
|
width: 90%;
|
display: grid;
|
grid-template-columns: 1fr 3fr 1fr;
|
border-bottom: 1px solid #bbb;
|
align-items: center;
|
&-right {
|
display: grid;
|
grid-template-columns: 3fr 1fr;
|
align-items: center;
|
color: #007aff;
|
}
|
}
|
}
|
.list {
|
margin: 5px 15px 0 15px;
|
min-height: 80rpx;
|
display: grid;
|
grid-template-columns: 550rpx 1fr;
|
border-bottom: 1px solid #bbb;
|
&-left {
|
display: grid;
|
grid-template-columns: 1fr 3fr;
|
.desc {
|
text-align: right;
|
}
|
}
|
&-right {
|
display: grid;
|
grid-template-columns: 1fr 1fr;
|
align-items: center;
|
}
|
&:last-child {
|
border:none;
|
}
|
:last-child {
|
margin-bottom: 10rpx;
|
}
|
}
|
.buttom {
|
position: fixed;
|
bottom: 0;
|
left: 0;
|
|
display: flex;
|
align-items: center;
|
justify-content: space-between;
|
height: 100rpx;
|
// background-color: #007aff;
|
}
|