_1620_map.scss
3.01 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
122
123
124
125
126
127
128
129
130
131
132
133
134
/*屏幕宽度小于1190,自动适配1024设计分辨率*/
@media screen and (min-width:1190px){
.main-map{
width:1080px;
height:605px;
margin:0 auto;
position:relative;
.hot-area{
width: 138px;
height: 86px;
position: absolute;
left: 723px;
cursor:pointer;
top: 223px;
.china-area{
background:url(../assets/images/map/china.png) center no-repeat;
width:450px;
height:342px;
position:absolute;
z-index:32;
cursor:pointer;
display:none;
left:-185px;
top:-208px;
}
.background{
z-index:30;
width:1080px;
height:605px;
position:absolute;
left:-720px;
top:-200px;
background:#fff;
filter:alpha(opacity=50); /*IE滤镜,透明度50%*/
-moz-opacity:0.5; /*Firefox私有,透明度50%*/
opacity:0.5;/*其他,透明度50%*/
display:none;
}
}
.hot-area:hover{
.china-area{display:block;}
.background{display:block;}
}
img{
width:1080px;
height:605px;
}
}
.city-shop-list{
width:520px;
background:#fff;
height:100%;
@include fontstyle;
position:absolute;
left:0;
top:0;
z-index:12;
.city-list{
padding-top:20px;
overflow:auto;
width:520px;
a.link{
@include blockwh(100%,100%);
}
.shop{
cursor:default;
margin: 15px 0;
padding-left:20px;
@include fontstyle;
.title{font-size:21px;color:#000;font-weight:bold;}
.subtitle{
font-size:18px;
filter:alpha(opacity=35);
-moz-opacity:0.35;
opacity:0.35;
color:#000;
}
.detail{font-size:14px;color:#000;}
}
.shop:hover{
cursor:default;
padding-left:20px;
filter:alpha(opacity=35);
-moz-opacity:0.35;
opacity:0.35;
}
}
.city-name-list{
margin:0;
padding:30px 0 30px 0;
list-style:none;
width:520px;
overflow:hidden;
li.city{
width:172px;
height:30px;
line-height:30px;
font-size:21px;
color:#a6a6a6;
text-align:center;
float:left;
cursor:pointer;
a{color:#000;}
}
li.city-choosen{
width:172px;
height:30px;
float:left;
line-height:30px;
font-size:21px;
color:#fff;
background:url(../assets/images/map/choosen.png) center no-repeat;
text-align:center;
cursor:pointer;
a{color:#fff;}
}
}
}
.map-zoom{
position:fixed;
z-index:15;
width:72px;
height:132px;
left:521px;
top:177px;
.max{width:32px;height:32px; background:url(../assets/images/map/zoom.png) -32px top no-repeat;margin:10px;}
.min{width:32px;height:32px; background:url(../assets/images/map/zoom.png) -32px -32px no-repeat;margin:10px;}
}
}