coin-intro.scss
1.51 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
.coin-intro-box {
position: fixed;
z-index: 100;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.6);
}
.coin-intro {
position: absolute;
height: 600px;
background-color: #fff;
padding: 30px;
bottom: 0;
left: 0;
right: 0;
.coin-li {
line-height: 120px;
border-bottom: 1px solid #ccc;
height: 120px;
.vip-img {
width: 53px;
height: 32px;
margin-right: 40px;
display: inline-block;
padding-left: 8px;
padding-top: 5px;
vertical-align: middle;
line-height: 88px;
}
&:nth-child(1) {
.vip-img {
background: url("img/product/silver.png") no-repeat;
background-size: contain;
}
}
&:nth-child(2) {
.vip-img {
background: url("img/product/golden.png") no-repeat;
background-size: contain;
}
}
&:nth-child(3) {
.vip-img {
background: url("img/product/platinum.png") no-repeat;
background-size: contain;
}
}
.return-coin-num {
color: #d0021b;
margin: auto 10px;
}
}
.tip {
position: absolute;
bottom: 30px;
text-align: center;
margin-right: 30px;
font-size: 22px;
color: #ccc;
}
}
.hide {
display: none;
}