| 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
 | | /**index.wxss**/ |  | page { |  |   height: 100vh; |  |   display: flex; |  |   flex-direction: column; |  | } |  | .scrollarea { |  |   flex: 1; |  |   overflow-y: hidden; |  | } |  |   |  | .userinfo { |  |   display: flex; |  |   flex-direction: column; |  |   align-items: center; |  |   color: #aaa; |  |   width: 80%; |  | } |  |   |  | .userinfo-avatar { |  |   overflow: hidden; |  |   width: 128rpx; |  |   height: 128rpx; |  |   margin: 20rpx; |  |   border-radius: 50%; |  | } |  |   |  | .usermotto { |  |   margin-top: 200px; |  | } |  |   |  | .avatar-wrapper { |  |   padding: 0; |  |   width: 56px !important; |  |   border-radius: 8px; |  |   margin-top: 40px; |  |   margin-bottom: 40px; |  | } |  |   |  | .avatar { |  |   display: block; |  |   width: 56px; |  |   height: 56px; |  | } |  |   |  | .nickname-wrapper { |  |   display: flex; |  |   width: 100%; |  |   padding: 16px; |  |   box-sizing: border-box; |  |   border-top: .5px solid rgba(0, 0, 0, 0.1); |  |   border-bottom: .5px solid rgba(0, 0, 0, 0.1); |  |   color: black; |  | } |  |   |  | .nickname-label { |  |   width: 105px; |  | } |  |   |  | .nickname-input { |  |   flex: 1; |  | } | 
 |