/* CSS Document */
.switch-city {
    padding: 15px 0;
}
.current-city-box {
    width: 92%;
    height: 92px;
    margin: 0 auto;
    background: #0579F2;
    padding: 0px 12px;
    box-sizing: border-box;
    border-radius: 4px;
    position: relative;
}
.current-city {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
    padding-top: 18px;
}
.switch-city-info {
    color: #fff;
    font-size: 12px;
}
.city-list-box {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    margin-top: 36px;
    border-radius: 4px;
}
.city-list-box .list-title {
    width: 92%;
    margin: 0 auto 6px;
    font-size: 14px;
    color: #666;
	font-weight: normal;
}
.city-list {
    width: 95%;
    margin: 0 auto;
}
.city-list .city-items {
    width: 25%;
    box-sizing: border-box;
    padding: 6px 7px;
    float: left;
}
.city-list .city-items-box {
    display: block;
    background: #fff;
    box-shadow: 0 2px 2px #e6e6e6;
    border-radius: 4px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #484848;
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 0 6px;
}
.city-list .city-item-active:before {
    display: inline-block;
    margin-right: 2px;
    content: "";
    width: 10px;
    height: 14px;
    background: url('../images/location-icon_ce68449.png') no-repeat left;
    background-size: 10px auto;
}