message.wxss
1.3 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
76
77
78
79
80
/* pages/message/message.wxss */
page{
background: #EBEBEB;
padding:130rpx 0 20rpx 0;
}
.message_top{
height: 100rpx;
width:100%;
position: fixed;
top:0;
left:0;
background: #fff;
display: flex;
align-items: center;
justify-content: center;
margin: 0 0 30rpx 0;
z-index:2;
}
.message_top view{
position: relative;
color:#999;
font-size:30rpx;
margin: 0 30rpx;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.message_top view.no{
color:#5CC348;
}
.message_top view.no::before{
content: '';
position: absolute;
bottom:10rpx;
left:50%;
transform: translateX(-50%);
width:40rpx;
height: 6rpx;
background: #5CC348;
z-index:10;
}
.messagebox{
margin: 16rpx 32rpx 0 32rpx;
background: #fff;
padding:0 43rpx 40rpx 43rpx;
border-radius: 16rpx;
}
.messaage_title{
display: flex;
justify-content: space-between;
color:#292525;
font-size:28rpx;
padding:35rpx 0;
border-bottom:1rpx solid #EBEBEB;
}
.message_time{
display: flex;
align-items: center;
color:#999999;
font-size:26rpx;
}
.message_time .dot{
width: 12rpx;
height: 12rpx;
border-radius: 50%;
background: #FF0000;
z-index: 100;
margin: 0 0 0 8rpx;
}
.message_mian{
display: flex;
align-items: center;
margin: 18rpx 0 0 0;
background: #FAFAFA;
border-radius: 16rpx;
color:#333333;
font-size:26rpx;
padding:29rpx 20rpx;
}