weavertour.css
3.03 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
117
118
119
120
121
*{
font-family: "微软雅黑";
}
.weavertour_dialog{
min-width: 200px;
max-width: 300px;
position: absolute;
background-color: #394E63;
border-radius: 8px;
display: none;
}
.weavertour_dialog .weavertour_content{
width: 100%;
}
.weavertour_dialog .weavertour_title{
height: 30px;
line-height: 30px;
color: #fff;
border-bottom: 1px solid #F1ECCE;
margin: 0 auto;
font-size: 14px;
padding-left: 10px;
}
.weavertour_dialog .weavertour_info{
line-height: 45px;
font-size: 12px;
margin: 0 auto;
padding-left: 10px;
color: #fff;
}
.weavertour_dialog .weavertour_arrow_left{
position: absolute;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-left: 10px solid #394E63;
top: 50%;
left: 100%;
margin-top: -10px;
margin-left: -1px;
}
.weavertour_dialog .weavertour_arrow_right{
position: absolute;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-right: 10px solid #394E63;
top: 50%;
right: 100%;
margin-top: -10px;
margin-right: -1px;
}
.weavertour_dialog .weavertour_arrow_bottom{
position: absolute;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 10px solid #394E63;
bottom: 100%;
left: 50%;
margin-left: -10px;
margin-bottom: -1px;
}
.weavertour_dialog .weavertour_arrow_top{
position: absolute;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid #394E63;
top: 100%;
left: 50%;
margin-left: -10px;
margin-top: -1px;
}
.weavertour_btn{
position: relative;
overflow: visible;
display: inline-block;
padding: 0.3em 0.8em;
border: 1px solid #d4d4d4;
margin: 0;
text-decoration: none;
text-shadow: 1px 1px 0 #fff;
font: 11px/normal "微软雅黑";
color: #333;
white-space: nowrap;
cursor: pointer;
outline: none;
background-color: #ececec;
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f4f4f4), to(#ececec));
background-image: -moz-linear-gradient(#f4f4f4, #ececec);
background-image: -o-linear-gradient(#f4f4f4, #ececec);
background-image: linear-gradient(#f4f4f4, #ececec);
-webkit-background-clip: padding;
-moz-background-clip: padding;
-o-background-clip: padding-box;
/* background-clip: padding-box; */
-webkit-border-radius: 0.2em;
-moz-border-radius: 0.2em;
border-radius: 0.2em;
zoom: 1;
margin-top: 10px;
margin-right: 10px;
margin-bottom: 10px;
float: right;
}
.weavertour_btn:hover{
color:#007aff;
}
.weavertour_overlay{
background-color: #f4f4f4;
opacity: .5;
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
position: absolute;
z-index: 10000000;
box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
-webkit-box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
-ms-box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
-moz-box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
}