featuretip-coin.css
1.55 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
.feature-coin {
&.tip-wrap {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1000;
background: rgba(0, 0, 0, .5);
}
.tip {
position: fixed;
left: 50%;
top: 50%;
margin-left: -140px;
margin-top: -140px;
width: 280px;
background: #fff;
text-align: center;
line-height: 1.25;
background-repeat: no-repeat;
}
.tip .tip-close{
position: absolute;
right: 0;
top: 0;
width: 25px;
height: 25px;
line-height: 25px;
text-align: center;
font-size: 16px;
color: #fff;
background: #000;
cursor: pointer;
}
.tip .title {
margin: 21px auto;
font-size: 22px;
font-weight: 700;
text-align: center;
}
.tip .highlight {
font-size: 18px;
}
.tip .content {
padding: 4px;
font-size: 16px;
color: #444;
text-align: center;
height: 48px;
overflow: hidden;
}
.bottom-button {
text-align: center;
}
.tip .button, .tip .coin {
display: inline-block;
margin: 20px auto;
width: 116px;
height: 26px;
font-size: 14px;
line-height: 26px;
text-align: center;
color: #fff;
background: #000;
text-decoration: none;
border: 2px solid #000;
}
.tip .coin {
color: #000;
background: #fff;
}
}