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
| .container {
| padding: 20rpx 0;
| }
|
| .itemList {
| border-bottom: 2rpx solid #E9E9E9;
| padding: 30rpx;
| display: flex;
| /* height: 120rpx; */
| align-items: center;
| justify-content: space-between !important;
| }
|
| .label {
| font-weight: bold;
| width: 180rpx;
| }
|
| .contentImg {
| height: 120rpx;
| width: 120rpx;
| flex: 1;
| text-align: right;
| margin-right: 20rpx;
| }
|
| .user-center-card__header__avatar {
| width: 120rpx;
| height: 120rpx;
| border-radius: 48rpx;
| overflow: hidden;
| }
|
| .content {
| flex: 1;
| color: #5C5C5C;
| }
|
|