topic.wxss
903 字节
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
/* pages/topic/topic.wxss */
.item_list {
padding: 30rpx;
box-sizing: border-box;
border-bottom: 1rpx solid #ebebeb;
}
.item_list image {
width: 100%;
height: 520rpx;
margin-bottom: 40rpx;
}
.label_box{
display: flex;
align-items: center;
}
.list_label {
width: 80rpx;
height: 36rpx;
background: #8b4e93;
color: #fff;
font-size: 30rpx;
border-radius: 5rpx;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 30rpx;
margin-right: 10rpx;
}
.list_title {
font-size: 36rpx;
font-weight: bold;
color: #000;
margin-bottom: 30rpx;
}
.list_content {
font-size: 28rpx;
color: #282829;
text-indent: 2rem;
margin-bottom: 30rpx;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
text-overflow: ellipsis;
}
.list_time {
font-size: 24rpx;
color: #999;
text-align: right;
}