index.scss
1.79 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
.side-index {
position: fixed;
top: 88px;
bottom: 0;
right: 0;
width: 40px;
background-color: rgba(255, 255, 255, 0.7);
}
.side-idx {
position: fixed;
width: 40px;
margin: 0;
padding: 6px 0;
right: 0;
z-index: 10;
top: 50% !important;
transform: translateY(-50%);
.bg {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
opacity: 0.7;
background-color: #fff;
}
.zoom-in {
width: 120px;
height: 100px;
color: #fff;
text-align: center;
padding-right: 20px;
line-height: 100px;
background: url(http://cdn.yoho.cn/yohoblk-wap/2.0.50/img/product/zoom-in-bg.png) no-repeat;
background-size: contain;
box-sizing: border-box;
transition: opacity 0.4s ease;
opacity: 0;
font-size: 68px;
font-family: "PingFang-SC-Medium";
position: absolute;
left: -120px;
top: -35px;
&.zoom-show {
opacity: 1;
}
&.zoom-hide {
opacity: 0;
}
}
.letter {
position: relative;
list-style: none;
text-align: center;
width: 100%;
height: 32px;
.idx-item {
color: #000;
font-size: 24px;
display: block;
width: 24px;
height: 28px;
line-height: 28px;
margin: 1px auto;
font-family: "PingFang-SC-Medium";
&.zoom {
background-color: #000;
border-radius: 50%;
color: #fff;
width: 28px;
height: 28px;
line-height: 28px;
text-align: center;
}
}
}
}