liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
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
.floatingAd .ad{
    z-index: 100;
    background: none;
    position: absolute;
    display: none;
    overflow: hidden;
}
.floatingAd a{
    color:#aaaaaa; 
    display: inline-block;
    text-decoration: none;
}
.floatingAd a img{
    border:1px solid #eee;
}
.floatingAd .close{
    display: none;
}
.floatingAd .opacity{
    position: absolute; 
    top: 0; 
    width: 100%; 
    height: 25px; 
    background-color: #000000; 
    opacity: 0.20; 
    filter: alpha(opacity = 20);
}
.opacity1{
    opacity: 0.90; 
    filter: alpha(opacity = 90);
}
.floatingAd .text{
    position: absolute; 
    top: 0; 
    width: 100%; 
    height: 25px; 
    color: #aaaaaa; 
    line-height: 25px; 
}
.floatingAd .text .button{
    position: relative;
    float: right;
    top: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    background: url("../images/close.gif") no-repeat;
    cursor: pointer;
}
.floatingAd .text .title{
    position: relative;
    float: left;
    font-size: 12px;
    margin-left: 5px;
}