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
.Announcement {
width: 100%;
height: 100%;
background-color: #eee;
.Announcement-item {
box-sizing: border-box;
background-color: #fff;
border-radius: 24px;
height: 314px;
padding: 20px 18px;
margin: 20px 32px 20px;
.Announcement-item-img {
display: block;
width: 100%;
height: 214px;
border-radius: 24px;
background-color: #eee;
}
.Announcement-item-Content {
display: flex;
align-items: center;
margin-top: 18px;
.Announcement-item-icon {
width: 40px;
height: 40px;
margin-right: 16px;
}
.Announcement-item-title {
flex: 1;
font-size: 32px;
}
.Announcement-item-date {
margin-top: 10px;
font-size: 22px;
color: #666;
}
}
}
.Announcement-item:first-child {
margin-top: 24px;
}
}