index.scss
1.42 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
.user-center-page {
width: 750px;
padding: 0 40px;
box-sizing: border-box;
.header {
margin-bottom: 42px;
display: flex;
align-items: center;
.avatar-img {
width: 96px;
height: 96px;
margin-right: 12px;
border-radius: 50%;
}
.user-name {
width: 550px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
font-family: PingFang-SC-Semibold;
font-size: 68px;
color: #000;
display: inline-block;
background: transparent;
line-height: 96px;
text-align: left;
padding: 0;
&:after {
border: none;
}
}
}
.entry-item {
width: 670px;
height: 120px;
border-bottom: 1px solid #eee;
display: flex;
justify-content: space-between;
align-items: center;
.label {
font-family: PingFang-SC-Regular;
font-size: 32px;
color: #000;
}
.num {
display: flex;
align-items: center;
.num-text {
font-size: 32rpx;
}
}
.arrow-right-icon {
width: 40px;
height: 40px;
}
&.mt {
margin-top: 60px;
}
}
}