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
| /* pages/person/person.wxss */
| /* .heard{
| width: 100%;
| height: 150px;
| background-color: #1E90FF;
| }
| .userbox{
| width: 100%;
| margin: 0 auto;
| position: relative;
| top: -150rpx;
| border-radius: 25rpx;
| }
| .user{
| width: 95%;
| margin: 0 auto;
| background-color: white;
| border-radius: 25rpx;
| }
| .userinfo{
| width: 100%;
| display: flex;
| flex-direction: column;
| align-items: center;
| position: relative;
| top: -50rpx;
| }
| .hImg{
| width: 150rpx;
| height: 150rpx;
| border-radius: 50%;
| }
| .username{
| font-size: 40rpx;
| margin-top: 10rpx;
| }
| .usertag{
| font-size: 28rpx;
| color: whitesmoke;
| background-color: #1E90FF;
| padding: 5rpx 20rpx;
| border-radius: 10rpx;
| }
| .line{
| width: 100%;
| height: 1rpx;
| background-color: gainsboro;
| }
| .list{
| display: flex;
| align-items: center;
| width: 100%;
| height: 100rpx;
| display: flex;
| justify-content: space-between;
| align-items: center;
| }
| .logout{
| width: 95%;
| height: 100rpx;
| text-align: center;
| margin: 20rpx auto;
| color: #1E90FF;
| font-size: 35rpx;
| background-color: white;
| line-height: 100rpx;
| font-weight: 600;
| border-radius: 25rpx;
| }
| .listleft{
| display: flex;
| align-items: center;
| margin-left: 25rpx;
| font-size: 30rpx;
| color: #777;
| }
| .listicoln{
| width: 45rpx;
| height: 45rpx;
| margin-right: 5rpx;
| }
| .right{
| width: 30rpx;
| height: 30rpx;
| margin-right: 25rpx;
| } */
| body{
| background-color: #f5f5f5;
| }
| .header {
| width: 100%;
| height: 100px;
| background-color: #fff;
| margin: 10px 0;
| display: flex;
| }
| .header image {
| width: 80px;
| height: 80px;
| border-radius: 50%;
| padding-top: 10px;
| margin-left: 10px;
| }
| .header view {
| margin-left: 20px;
| /* line-height: 30px; */
| padding-top: 15px;
| }
|
| .list .item{
| width: 100%;
| height: 50px;
| line-height: 50px;
| /* font-size: 18px; */
| /* margin: 10px 0 0; */
| background-color: #fff;
| display: flex;
| justify-content: space-between;
| border-bottom: 1px solid #eee;
| }
| .list .item .text{
| margin-left: 10px;
| /* font-weight: 600; */
| display: flex;
| }
| .list .item .text image{
| width: 30px;
| height: 30px;
| margin-top: 10px;
| margin-right: 15px;
| }
|
| .list .item .iconfont{
| margin-right: 10px;
| color: #AFAFAF;
| }
| .van-dialog__cancel, .van-dialog__confirm {
| border: 0!important;
| width: 100%;
| padding: 0;
| }
| .van-dialog__button {
|
| flex: 1;
| width: 50%;
| margin: 0 auto;
| }
|
|