#
whycq
2023-02-13 db7b5dca7aa8fa63c4624b30f91fde9b895b9b17
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
.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-top: 5rpx;
    width: 100%;
    min-height: 80rpx;
    // background-color: #bbb;
    display: grid;
    grid-template-columns: 550rpx 1fr;
    &-left {
        // background-color: #007aff;
        display: grid;
        grid-template-columns: 1fr 3fr;
        .desc {
            text-align: right;
        }
    }
    &-right {
        
    }
}