blob: 1acf8ce9c0ac2a0d9fce25a2c70627df19fe4a98 (
plain)
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
|
.popup_box {
background: #000;
width: 250px;
overflow: hidden;
position: fixed;
bottom: 0;
left: 0;
z-index:9;
}
.popup_box .header .min_btn {
background: url(../images/arrow.png) no-repeat 0px -9px;
float: right;
width: 15px;
height: 15px;
cursor: pointer;
}
.popup_box .header .max_btn {
background: url(../images/arrow.png) no-repeat 0px 3px;
float: right;
width: 15px;
height: 15px;
cursor: pointer;
}
.popup_box .header .min_max .min_btn {
background: url(../images/arrow.png) no-repeat 0px -9px;
float: right;
width: 15px;
height: 15px;
cursor: pointer;
}
.popup_box .header .closee_btn {
background: url(../images/close_btn.png) no-repeat 0px 0px;
float: right;
width: 15px;
height: 15px;
cursor: pointer;
}
.popup_box .header .closee_btn:hover {
background: url(../images/close_btn.png) no-repeat 0px -16px;
cursor: pointer;
}
.popup_box .header{
padding: 5px 3px 5px 5px;
font: 11px 'lucida grande', tahoma, verdana, arial, sans-serif;
font-weight: bold;
color:#fff;
border-bottom:none;
}
.popup_box .header:hover{
background-color: #000;
}
.popup_box .message_box {
background: #3071A9;
height: 32px;
overflow:hidden;
text-align: center;
font: 12px 'lucida grande', tahoma, verdana, arial, sans-serif;
font-weight: bold;
color:#fff;
padding-top: 10px;
cursor: default;
}
#cookie_box
{
position: fixed;
display: none;
bottom: 0px;
z-index: 2000;
cursor: default;
}
|