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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
| .list{
| display: flex;
| flex-wrap: wrap;
| padding: 40rpx 40rpx 200rpx;
| .item{
| width: 210rpx;
| height: 210rpx;
| border-radius: 8rpx;
| overflow: hidden;
| position: relative;
| margin-right: 20rpx;
| margin-bottom: 20rpx;
| &:nth-of-type(3n){
| margin-right: 0;
| }
| .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;
| z-index: 99;
| 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;
| }
| }
| .param_modal{
| padding: 30rpx 40rpx 12rpx;
| .title{
| text-align: center;
| font-size: 30rpx;
| }
| .line{
| height: 150rpx;
| display: flex;
| justify-content: space-between;
| align-items: center;
| border-bottom: 1rpx solid #E5E5E5;
| .check{
| width: 40rpx;
| height: 40rpx;
| }
| .name{
| font-size: 30rpx;
| color: #111111;
| }
| .desc{
| font-size: 26rpx;
| color: #777777;
| margin-top: 20rpx;
| }
| }
| .submit{
| margin-top: 100rpx;
| width: 100%;
| height: 88rpx;
| background: #B08771;
| border-radius: 8rpx;
| display: flex;
| justify-content: center;
| align-items: center;
| font-weight: 500;
| font-size: 32rpx;
| color: #FFFFFF;
| }
| }
|
|