personal.wxss
1.6 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
/* pages/personal/personal.wxss */
.z_container{
height: 100vh;
background-color: #EFEFF4;
}
.person_info{
height: 170rpx;
width: 100%;
display: flex;
align-items: center;
padding-left: 30rpx;
background: #FFF;
}
.image_box{
width: 106rpx;
height: 106rpx;
border-radius: 50%;
overflow: hidden;
margin-right: 34rpx;
}
.image_box image{
width: 100%;
height: 100%;
}
.name{
font-size: 30rpx;
}
.userInfo{
height: 120rpx;
background: #FFF;
display: flex;
padding-left: 30rpx;
margin-top: 30rpx;
margin-bottom: 30rpx;
align-items: center;
justify-content: center;
}
.left{
display: flex;
flex-direction: column;
justify-content: center;
font-size: 34rpx;
}
.right{
flex: 1;
height: 100%;
display: flex;
align-items: center;
justify-content: flex-end;
}
.right image{
width: 30rpx;
height: 30rpx;
margin-right: 30rpx;
}
.userInfo_note_tips{
font-size: 26rpx;
color: #999;
}
.baseInfo{
margin-top: 30rpx;
background-color: #FFF;
}
.baseInfo_item{
padding: 0 30rpx;
height: 88rpx;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 34rpx;
color: #666;
border-bottom: 1rpx solid #D8D8D8;
}
.baseInfo_item:last-child{
border: none;
}
.baseInfo_item_top{
height: 98rpx;
}
.action{
color: #FFF;
width: 84rpx;
height: 50rpx;
background: #51DBA2;
border-radius: 100px;
justify-content: center;
align-items: center;
font-size: 30rpx;
display: flex;
}
.bottom_menu{
display: flex;
align-items: center;
justify-content: space-around;
height: 98rpx;
background: #F7F7FA;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
border-top: 1rpx solid rgba(247,247,250,.1);
}