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
118
119
120
121
122
123
124
125
126
| .banner{
| width: 100%;
| margin: 0upx auto 30upx;
| position: relative;
| }
| .swiper, .swiper image{
| width: 100%;
| height: 700upx;
| }
| .backLeft{
| position: fixed;
| width: 60upx;
| height: 60upx;
| left: 30upx;
| top: 30upx;
| z-index: 999;
| }
| /* #ifndef H5 */
| .backLeft{
| top: var(--status-bar-height);
| }
| /* #endif */
| .bannerIndex{
| display: flex;
| justify-content: center;
| align-items: center;
| position: absolute;
| right: 10upx;
| bottom: 10upx;
| z-index: 999;
| font-size: 26upx;
| background-color: black;
| color: #ffffff;
| padding: 10upx 22upx;
| border-radius: 50upx;
| opacity: .8;
| }
|
| .gTitle{
| padding: 10upx 20upx;
| position: relative;
| }
| .collect{
| position: absolute;
| right: 30upx;
| bottom: 14upx;
| width: 52upx;
| height: 52upx;
| }
| .collect image{
| width: 100%;
| height: 100%;
| }
| .gTitle view:nth-child(1){
| font-size: 30upx;
| font-weight: 700;
| margin-bottom: 20upx;
| }
| .gTitle view:nth-child(2){
| font-size: 26upx;
| display: flex;
| align-items: center;
| }
| .gTitle view text:nth-child(1), .gTitle view text:nth-child(2){
| color: #F75451;
| font-weight: 700;
| }
| .gTitle view text:nth-child(2){
| font-size: 36upx;
| margin: 0 50upx 0 10upx;
| }
| .gInfo-title{
| width: 100%;
| text-align: center;
| font-size: 30upx;
| font-weight: 700;
| margin: 50upx 0 20upx;
| }
| .gInfo{
| padding-bottom: 110upx;
| font-size: 28upx;
| }
| .gBtn{
| width: 100%;
| height: 100upx;
| position: fixed;
| left: 0;
| display: flex;
| bottom: 0;
| z-index: 99;
| background-color: #ffffff;
| border-top: 1px solid #f5e2e2;
| font-size: 24upx;
| }
| .gBtn image{
| width: 44upx;
| height: 44upx;
| margin: 0 auto;
| display: block;
| }
| .gBtn .gBtn-view{
| display: flex;
| justify-content: center;
| align-items: center;
| }
| .gBtn-view{
| width: 20%;
| }
| .gBtn-buy{
| width: 60%;
| display: flex;
| justify-content: center;
| align-items: center;
| }
| .gBtn-buy text{
| width: 88%;
| height: 78upx;
| border-radius: 50upx;
| background-color: #37AA25;
| color: #ffffff;
| display: flex;
| justify-content: center;
| align-items: center;
| font-size: 30upx;
| letter-spacing: 5upx;
| }
|
|