index.wxss
1.55 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
/* pages/me/index.wxss */
.header {
width: 100%;
height: 200rpx;
background-color: #0268FF;
box-sizing: border-box;
padding: 12rpx 56rpx 0;
display: flex;
align-items: center;
}
.header .avatar {
width: 128rpx;
height: 128rpx;
margin-right: 32rpx;
}
.header .name {
font-size: 32rpx;
color: #fff;
}
.header .username {
font-size: 32rpx;
line-height: 40rpx;
margin-bottom: 12rpx;
}
.header .company {
text-align: center;
box-sizing: border-box;
padding: 0 12rpx;
height: 46rpx;
line-height: 46rpx;
border-radius: 25rpx;
color: rgba(255, 255, 255, .8);
background-color: rgba(9, 109, 217, .5);
border: 2rpx solid rgba(171, 225, 255, .5);
font-size: 24rpx;
}
.logout {
width: calc(100% - 72rpx);
height: 90rpx;
background-color: #1A77FF;
border-radius: 90rpx;
text-align: center;
line-height: 90rpx;
color: #fff;
position: absolute;
left: 36rpx;
bottom: 72rpx;
}
.zong-content {
width: 100%;
height: 100%;
overflow-y: scroll;
box-sizing: border-box;
padding: 18rpx 28rpx;
}
.zong-content .item {
width: 100%;
height: 118rpx;
background-color: #fff;
border-radius: 18rpx;
display: flex;
align-items: center;
margin-bottom: 16rpx;
color: rgba(0, 0, 0, .85);
font-size: 28rpx;
box-sizing: border-box;
padding: 0 38rpx 0 32rpx;
position: relative;
}
.zong-content .item .img {
width: 57rpx;
height: 57rpx;
border-radius: 10rpx;
}
.zong-content .item .arrow {
position: absolute;
right: 38rpx;
top: 50rpx;
color: rgba(0, 0, 0, .1);
width: 24rpx;
height: 24rpx;
}