my.wxss
2.8 KB
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/* pages/my/my.wxss */
.my_top{
background: #8DE063;
display: flex;
align-items: center;
justify-content: space-between;
height: 240rpx;
}
.my_rigth{
position: relative;
width:220rpx;
height: 86rpx;
border-radius:40rpx 0rpx 0rpx 40rpx;
background: #B6EB9B;
}
.my_left{
display: flex;
align-items: center;
}
.my_rigth_in{
border-radius:33rpx 0rpx 0rpx 33rpx;
position: absolute;
top:10rpx;
right: 0;
width:210rpx;
height: 66rpx;
line-height: 66rpx;
text-align: center;
background: #fff;
color:#66C933;
font-size:24rpx;
}
.in_icon{
position: absolute;
top:50%;
right: 30rpx;
transform: translateY(-50%);
width:14rpx;
height: 24rpx;
overflow: hidden;
}
.in_icon image{
display: block;
width:100%;
height: 100%;
}
.my_img{
margin: 0 42rpx 0 32rpx;
width:140rpx;
height: 140rpx;
border-radius: 50%;
border:6rpx solid #B6EB9B;
}
.my_img image{
display: block;
width:100%;
height: 100%;
border-radius: 100%;
}
.name{
font-size:32rpx;
font-weight: bold;
color:#fff;
}
.my_icon{
margin: 0 17rpx 0 0;
width:32rpx;
height: 30rpx;
overflow: hidden;
}
.my_icon image{
width:100%;
height: 100%;
}
.num{
display: flex;
align-items: center;
color:#fff;
font-size:32rpx;
font-weight: bold;
}
.choosebox{
display: flex;
align-items: center;
justify-content: space-between;
padding:0 32rpx 0 38rpx;
height: 97rpx;
background: #fff;
border-bottom:1rpx solid #EBEBEB;
}
.choose_letf{
display: flex;
color:#333333;
font-size:30rpx;
}
.chosse_img{
width:35rpx;
height: 37rpx;
margin: 0 20rpx 0 0;
}
.chosse_img image{
width:100%;
height: 100%;
}
.choose_rigth{
display: flex;
align-items: center;
color:#333;
font-size:26rpx;
}
.choose_rigth .iconfont{
font-size:24rpx;
color:#000;
}
.cell_box{
background: #fff;
padding: 0 32rpx;
}
.cell_itembox{
display: flex;
justify-content: space-around;
align-items: center;
border-bottom:1rpx solid #EBEBEB;
}
.cell_itembox:last-child{
border-bottom:none;
}
.cell{
width: 33.3333%;
display: flex;
flex-direction: column;
text-align: center;
align-items: center;
justify-content: center;
color:#1A1A1A;
font-size:28rpx;
margin:50rpx 0 68rpx 0;
border-right: 1rpx solid #EBEBEB;
}
.cell:last-child{
border:none;
}
.top_cellbox .cell{
margin:50rpx 0 68rpx 0;
}
.cell_imgbox{
width: 54rpx;
height: 57rpx;
margin: 0 0 20rpx 0;
}
.cell_imgbox image{
width:100%;
height: 100%;
}
.my_box{
background-color: #fff;
padding:0 40rpx 0 37rpx;
}
.my_item{
display: flex;
align-items: center;
}
.my_itemimg{
margin: 0 40rpx 0 0;
width:38rpx;
height: 38rpx;
}
.my_itemimg image{
width:100%;
height: 100%;
}
.my_itemrigth{
width:600rpx;
padding:40rpx 0;
border-bottom: 1rpx solid #EBEBEB;
display: flex;
justify-content: space-between;
align-items: center;
}
.my_itemtxt{
font-size:30rpx;
}
.empty{
background: #F5F6FA;
height: 16rpx;
}