news-detail.scss
761 Bytes
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
@import '@/styles/_support';
.content {
// padding-bottom: 8.5rem;
padding-bottom: 2.33rem;
}
.box {
position: relative;
max-width: $articleWidth;
// max-width: 64rem;
}
.top-space {
height: 3rem;
}
.tit {
text-align: center;
font-size: $fontSizeTitle;
font-weight: bold;
letter-spacing: 1.8px;
}
.back {
text-align: right;
margin-top: .75rem;
cursor: pointer;
}
.dat {
margin-top: 2.5rem;
display: flex;
.date {
display: flex;
margin-right: 4rem;
.icon-clock {
height: 1.25rem;
margin-right: .5rem;
}
}
}
.desc {
max-width: $articleWidth;
margin-top: 2.5rem;
line-height: 2;
letter-spacing: 1.2px;
}
@media (max-width: 1200px) {
.content {
@include content-percent();
}
}