featuretip.css
2.32 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
.featuretip {
&.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;
border-top: 40px solid #000;
text-align: center;
line-height: 1.25;
z-index: 10;
}
.tip .title {
margin: 25px auto 30px;
font-size: 20px;
font-weight: 700;
text-align: center;
}
.tip .highlight {
font-size: 18px;
}
.tip .content {
font-size: 14px;
color: #444;
text-align: center;
line-height: 20px;
}
.tip .button {
display: block;
margin: 20px auto;
width: 150px;
height: 30px;
font-size: 14px;
line-height: 30px;
text-align: center;
color: #fff;
background: #000;
text-decoration: none;
}
.tip.coupon-tip {
border-top: 0;
background: url('//img11.static.yhbimg.com/sns/2018/10/16/19/0172232208d89e64d308dae5c4f5d5ac79.png') no-repeat;
background-size: 100%;
width: 200px;
margin-left: -100px;
padding-top: 100px;
&:after {
content: '';
position: absolute;
left: 0;
right: 0;
top: 50%;
bottom: 0;
z-index: -1;
background-color: #ce1230;
}
.title {
font-size: 20px;
color: #fff;
}
.content {
font-size: 12px;
color: #fff;
}
.button {
background: none;
color: #fff;
border: 1px solid #fff;
}
}
}
.feature-toast {
width: 100%;
position: fixed;
bottom: 10%;
z-index: 9999;
display: none;
text-align: center;
.feature-toast-content {
max-width: 50%;
font-size: 12px;
background-color: #333;
padding: 6px 10px;
border-radius: 3px;
color: #fff;
opacity: 0.8;
-webkit-opacity: 0.8;
word-break: break-all;
text-align: center;
display: inline-block;
}
}