_show.scss
1.33 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
.show-title {
color: #0099bb;
}
.show-wrap {
.layout-item {
.image-box {
height: 320rem / $remNum;
img {
width: 100%;
height: 100%;
}
.pic-tip {
display: none;
position: absolute;
background: rgba(255, 255, 255, 0.9);
color: #009abe;
text-decoration: none;
height: 12rem / $remNum;
line-height: 12rem / $remNum;
padding: 0 (5rem / $remNum);
border-radius: 11px;
font-family: 'Helvetica';
font-weight: bold;
box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
}
.pic-tip:after {
position: absolute;
content: "";
background-image: url("../images/yohood/vedio-btn.png");
background-repeat: no-repeat;
background-position: 0 -55px;
background-size: 30px 310px;
width: 7px;
height: 5px;
top: 8rem / $remNum;
left: -2rem / $remNum;
z-index: 10;
}
}
.image-box:hover {
.pic-tip {
display: block;
}
}
}
}