
/** 清除内外边距 **/
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
th, td /* table elements 表格元素 */ {
    margin: 0;
    padding: 0;
}



/** 重置列表元素 **/
ul, ol { list-style: none; }

/** 重置文本格式元素 **/
a { text-decoration: none; }
a:hover { text-decoration: none; }

:link,
:visited {
  	text-decoration: none;
}

a:focus {
  	outline: thin dotted;
}

a:active,
a:hover {
  	outline: 0;
}


#city {
	position: relative;
	width: 60px;
	font-size: 12px;
	margin-left: 0px;
	cursor: pointer;
}
#city .city-wrap {
	position: relative;
	height: 45px;
}
#city .city-wrap a {
	position: absolute;
	top: 50%;
	left: 0;
	width: 50px;
	height: 34px;
	line-height: 34px;
	margin-top: -17px;
	color: #ffffff;
	text-align: center;
}
#city .icon-arrow {
	position: absolute;
	left: 50px;
	top: 50%;
	margin-top: -2px;
	border: 5px solid transparent;
	border-top: 5px solid #999;
}
#city .city-wrap.active a {
	color: #eb6120;
}
#city .city-wrap.active .icon-arrow {
	margin-top: -8px;
	border: 5px solid transparent;
	border-bottom: 5px solid #eb6120;
}
.pull-left {
  	float: left !important;
}

.city-menu {
	display: none;
	position: absolute;
	top: 30px;
	left: 100px;     /* 调整菜单位置 */
	width: 180px;
	background: #fff;
	border-radius: 4px;
	border: solid 1px #e8e8e8;
	z-index: 110000;
}
.city-menu li {
	float: left;
	width: 48px;
	height: 22px;
	padding: 6px 12px;
}
.city-menu li a {
	display: inline-block;
	width: 46px;
	height: 22px;
	line-height: 22px;
	font-size: 12px;
	text-align: center;
	color: #666;
}
.city-menu li a.active {
	border-radius: 3px;
	background: #f2f2f2;
	color: #eb6120;
}

/* 清除浮动 */
.clearFix:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
}
.clearFix {
    *zoom: 1;
}