/* 清除默认样式 */
*{
margin: 0;
padding: 0;
}
/* 顶层topbar块容器 */
.topbar{
min-width: 1190px;
height: 30px;
background-color: gray;
border-bottom: 1px solid #ddd;
}
/* 清除项目符号 */
ul{
list-style: none;
}
/* 定宽 */
.w{
width: 1190px;
margin: 0 auto: ;;
}
/* 内部的容器 */
.topbar .inner{
height: 30px;
line-height: 30px;
}
/* 设置菜单*/
.city{
float: left;
position: relative;
}
.city:hover .down{
display: block;
}
.city:hover .up{
background-color: greenyellow;
height: 29px;
padding-bottom: 2px;
background-color: white;
border: 1px rgb(204,204,204) solid;
border-bottom: none;
position: relative;
top: 30px;
}
.city:hover .up a{
}
.city .down{
width: 200px;
height: 300px;
background-color: yellow;
display: none;
position: absolute;
border: 1px solid #ddd;
box-shadow: 0 0 10px rgba(0,0,0,.5);
}
.shortcut{
float: right;
}
/* 设置菜单浮动 */
.shortcut li{
float: left;
}
/* 设置链接文字的样式 */
.top-bar a{
font: 12px/1.5 'microsoft Yahei','Heiti SC',sans-serif;
color: #999;
text-decoration: none;
}
/* 设置线条 */
.line{
height: 10px;
width: 1px;
background-color: red;
float: left;
margin: 12px 10px 0px;
}