dresserList.less
867 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
.item_box{
margin: 30px;
padding-bottom: 30px;
border-bottom: solid 1px #F2F2F2;
display: flex;
align-items: center;
.head_portrait{
width: 100px;
height: 100px;
border-radius: 100px;
}
.user_info{
margin-left: 30px;
text-align: left;
flex: 1;
.name{
height:40px;
font-size:28px;
font-weight:500;
color:rgba(51,51,51,1);
line-height:40px;
}
.desc{
height:33px;
font-size:24px;
font-weight:400;
color:rgba(102,102,102,1);
line-height:33px;
margin-top: 10px;
}
}
.arrow_right{
width: 25px;
height: 25px;
display: flex;
justify-content: flex-end;
align-items: flex-end;
}
}