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
68
69
70
71
72
| .list{
| display: flex;
| flex-wrap: wrap;
| padding: 40rpx;
| .item{
| width: 210rpx;
| height: 210rpx;
| border-radius: 8rpx;
| overflow: hidden;
| position: relative;
| border: 1px solid;
| .img{
| width: 100%;
| height: 100%;
| }
| .shade{
| position: absolute;
| z-index: 99;
| width: 100%;
| height: 100%;
| left: 0;
| top: 0;
| background-color: rgba(0,0,0,.5);
| font-size: 30rpx;
| color: #FFFFFF;
| display: flex;
| justify-content: center;
| align-items: center;
| }
| .check{
| width: 40rpx;
| height: 40rpx;
| position: absolute;
| top: 12rpx;
| left: 12rpx;
| }
| }
| }
| .footer {
| position: fixed;
| bottom: 0;
| left: 0;
| width: 750rpx;
| background-color: #fff;
| box-shadow: 0rpx -1rpx 0rpx 0rpx #EEEEEE;
| font-weight: 400;
| .footer_wrap{
| display: flex;
| align-items: center;
| justify-content: space-between;
| height: 100rpx;
| padding: 0 40rpx;
| }
| .check_wrap{
| display: flex;
| align-items: center;
| .check{
| width: 40rpx;
| height: 40rpx;
| margin-right: 18rpx;
| }
| }
| .down_btn{
| width: 480rpx;
| text-align: center;
| height: 72rpx;
| line-height: 70rpx;
| background: #B08771;
| border-radius: 8rpx;
| color: #fff;
| }
| }
|
|