_editorial.css
2.06 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
81
82
83
84
85
86
87
88
89
90
.editorial-container {
$bigImgWidth: 390px;
$smallImgWidth: 360px;
$smallImgHeight: 240px;
$space: 10px;
@extend .resource-container;
.news-container {
height: calc($smallImgHeight*2+$space+2px);
}
.news {
display: inline-block;
box-sizing: border-box;
.box {
height: calc($smallImgHeight*2+$space+10px);
display: inline-block;
position: relative;
width: $bigImgWidth;
&.bottom-space {
margin-bottom: 20px;
}
&.right-space {
margin-right: 15px;
}
}
.editorial-title {
width: 100%;
height: 70px;
position: absolute;
bottom: -1px;
background: resolve("channel/jb-bg.png") repeat-x;
color: #fff;
font-size: 14px;
line-height: 70px;
padding: 0 $space;
border: 0 !important;
background-position-y: -1px;
div {
line-height: 1.6;
display: inline-block;
vertical-align: middle;
margin-top: 15px;
}
p {
width: 100%;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
word-break: break-all;
overflow: hidden;
}
}
img {
@extend .cursor-pointer;
display: inline-block;
}
&.left {
width: $bigImgWidth;
float: left;
height: calc($smallImgHeight*2+$space+10px);
img {
width: $bigImgWidth;
height: calc($smallImgHeight*2+$space+10px);
}
}
&.right {
width: calc($smallImgWidth*2+$space*2);
float: right;
img,
.box {
width: $smallImgWidth;
height: $smallImgHeight;
}
}
}
}