message.wxss
870 字节
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
page {
background: #f9f9f9;
}
.messagelist {
width: 686rpx;
border-radius: 20rpx;
background: #fff;
margin: 20rpx auto 0;
}
.mssageitem {
padding: 32rpx 32rpx;
box-sizing: border-box;
border-radius: 10rpx;
border-bottom: 1rpx solid #f5f5f5;
}
.messtopleft {
color: rgba(19, 26, 46, 1);
font-size: 28rpx;
}
.activeleft {
position: relative;
}
.messtopleft:before {
display: block;
content: '';
position: absolute;
left:-15rpx;
top:50%;
width:10rpx;
height:10rpx;
border-radius: 50%;
background: #FF0000;
transform: translateY(-50%)
}
.messtopright, .messagename {
color: #939a9e;
font-size: 28rpx;
}
.messagename {
margin-top: 10rpx;
word-break:break-all
}
.no_login{
font-size: 36rpx;
font-family: PingFang SC;
font-weight: 400;
color: #666;
margin-top: 400rpx;
text-align: center;
}