#
whycq
2023-02-13 a907a96eabbb071e373d449a430a12a99436c8bb
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
.main {
    margin: 15px 15px 0 15px;
    min-height: 80rpx;
    background-color: #FFF;
    display: grid;
    justify-items: center;
    box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.5);
    border-radius: 5px;
    .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: 15px 15px 0 15px;
    min-height: 80rpx;
    display: grid;
    background-color: #FFF;
    grid-template-columns: 550rpx 1fr;
    border-bottom: 1px solid #bbb;
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.5);
    border-radius: 5px;
    &-left {
        margin-top: 10rpx;
        display: grid;
        grid-template-columns: 1fr 3fr;
        .desc {
            text-align: right;
        }
    }
    &-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    &:first-child {
        margin-top: 25px;
    }
    &:last-child {
        border:none;
    }
    :last-child {
        margin-bottom: 10rpx;
    }
}
.buttom {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100rpx;
    background-color: #FFF;
    box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.4) ;
}