dresserList.less
1.28 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
.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;
-webkit-line-clamp: 1;
/*! autoprefixer: off */
-webkit-box-orient: vertical;
/*! autoprefixer: on */
text-overflow: ellipsis;
overflow: hidden;
}
.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;
}
.btn{
width:120px;
height:48px;
background:rgba(255,236,239,1);
border-radius:26px;
color: #FC1541;
font-size: 26px;
text-align: center;
line-height: 48px;
}
}