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
.circleNotice{
margin-top: 10px;
margin-bottom: 50px;
width: 96%;
display: flex;
flex-direction:column;
justify-content : space-between;
align-items:center;
font-size: 14px;
}
.noticeItem{
margin-top: 10px;
width: 90%;
display: flex;
flex-direction:column;
justify-content : space-between;
align-items:center;
font-size: 15px;
border-bottom: 1rpx solid #FCFCFC;
}
.noticeItem>image{
width:100%;
}
.noticeItem .title{
bottom: 3px;
left: 0;
width:100%;
height:35px;
line-height: 35px;
text-align: left;
font-size: 15px;
font-weight: bold;
}
.noticeItem .time{
bottom: 3px;
left: 0;
width:100%;
height:25px;
line-height: 25px;
text-align: right;
color: #878787;
}
.noticeItem .comment{
bottom: 3px;
left: 0;
width:100%;
line-height: 25px;
text-align: left;
font-size: 15px;
margin-bottom: 10px;
}