myMessage.wxss
1.1 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
/* pages/myMessage/myMessage.wxss */
page{
}
.container{
display: flex;
flex-flow: column;
}
.item{
display: flex;
align-items: center;
padding: 24rpx 28rpx;
justify-content: space-between;
border-bottom: 1px solid #EBEBEB;
}
.item_left{
display: flex;
}
.item_left_pic{
width:74rpx;
height:74rpx;
display: flex;
position: relative;
}
.item_left_pic image{
width: 100%;
height: 100%;
}
.item_left_text{
display: flex;
flex-flow: column;
margin-left: 30rpx;
}
.item_left_text_top{
font-size:30rpx;
font-family:PingFang-SC-Bold;
font-weight:bold;
color:rgba(51,51,51,1);
}
.item_left_text_bottom{
width: 550rpx;
font-size:26rpx;
font-family:PingFang-SC-Medium;
font-weight:500;
color:rgba(153,153,153,1);
box-sizing: border-box;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
overflow: hidden;
}
.item_right{
width:12rpx;
height:20rpx;
display: flex;
}
.item_right image{
width: 100%;
height: 100%;
}
.icon_dot{
width:10rpx;
height:10rpx;
background:rgba(255,102,0,1);
border-radius:50%;
position: absolute;
right: -5rpx;
}