myteam.wxss
735 Bytes
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
page {
background-color: #f4f4f4;
}
.main > view {
background-color: white;
}
.active {
color: #FF6768;
font-weight: bold;
position: relative;
}
.active::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 50%;
height: 4rpx;
background-color: #FF6768;
}
.avatar {
width: 120rpx;
height: 120rpx;
border-radius: 50%;
background-color: #eee;
}
.c-a {
color: #aaa;
}
.noMore {
padding: 20rpx;
color: #bbb;
text-align: center;
font-size: 26rpx;
background-color: transparent !important;
}
.tab-head {
position: fixed;
width: 100%;
top: 0;
}
.tab-content {
box-sizing: border-box;
padding-top: 76rpx;
}
.money::before {
content: '¥';
font-size: 22rpx;
}