darenList.less
2.11 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
.daren-list {
.box {
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 auto;
width: 690px;
.left-box {
display: flex;
justify-content: flex-start;
align-items: center;
width: 570px;
height: auto;
.avatar-box {
width: 80px;
height: 80px;
border-radius: 50%;
overflow: hidden;
.avatar-img {
display: block;
width: 80px;
height: 80px;
}
}
.user-info {
margin-left: 30px;
width: 460px;
.name {
color: #4A4A4A;
font-size: 28px;
font-weight: 400;
width: 100%;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
/deep/ .k {
color: #FC1541;
}
}
.desc {
margin-top: 10px;
color: #B4B4B4;
font-size: 22px;
font-weight:400;
width: 100%;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
}
}
.right-box {
.arrow-box {
width: 25px;
height: 25px;
.arrow-right{
display: block;
width: 25px;
height: 25px;
}
}
.btn {
display: flex;
justify-content: center;
align-items: center;
background: #FFF2F5;
color: #FC1541;
width: 120px;
height: 48px;
border-radius: 10px;
font-size: 26px;
}
}
}
}