@charset "UTF-8";
/**
 * @method 清除浮动 %clearfix 
 * @description 清除浮动
 * @example 调用
 * 
 * ```scss
 * div {
 *    @extend %clearfix;
 * }
 * ```
 * 
 * ```css
 * 	div {
	    *zoom: 1;
	}
	div:after {
	    display: block;
	    clear: both;

	    height: 0;

	    content: '\20';
	}
 * ```
 */
.city-area {
    *zoom: 1;
}

.city-area:after {
    display: block;
    clear: both;
    height: 0;
    content: '\20';
}

/**
 * @method 去掉虚线框 %outline 
 * @description 去掉虚线框
 * @example 调用
 * 
 * ```scss
 * div {
 *    @ extend %outline;
 * }
 * ```
 * 
 * ```css
	div {
		outline: thin dotted;
		outline: 5px auto -webkit-focus-ring-color;
		outline-offset: -2px;
	}
 * ```
 */
/**
 * @method 文字不换行后面加省略号 %text-overflow 
 * @description 文字不换行后面加省略号
 * @example 调用
 * 
 * ```scss
 * div {
 *    @extend %text-overflow;
 * }
 * ```
 * 
 * ```css
	div {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
 * ```
 */
/**
 * @method 内容换行 %word-wrap 
 * @description 内容换行
 * @example 调用
 * 
 * ```scss
 * div {
 *    @extend %word-wrap;
 * }
 * ```
 * 
 * ```css
	div {
	    word-wrap: break-word;
	    white-space: pre-wrap;
	    word-break: break-all;
	}
 * ```
 */
/**
 * @method 透明层opacity 
 * @description 透明层 内容也透明
 * @param {number} $opacity - 透明度 0 ~ 1之间
 * @example 调用
 * 
 * ```scss
 * div {
 *    @include opacity(.5);
 * }
 * ```
 * 
 * ```css
 * div {
	  opacity: .5;
	  filter: alpha(opacity=50);
 * }
 * ```
 */
/**
 * @method 背景透明层transparent 
 * @description 透明层只处理背景透明
 * @param {string} $color - 背景透明层的颜色
 * @param {number} $alpha - 透明度 0 ~ 1之间
 * @example 调用
 * 
 * ```scss
 * div {
 *    @include transparent(#000, .5);
 * }
 * ```
 * 
 * ```css
 * div {
 *    	background-color: transparent;
		background-color: (0,0,0,.5);
		filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#7fffffff, endColorstr=#7fffffff,);
		zoom: 1;
 * }
 * ```
 */
/**
 * @method triangle 
 * @description 生成一个三角形图标
 * @param {string} $size - 三角的大小
 * @param {string} $color - 三角颜色
 * @param {string} $direction - 三角的方向 up, down, left, right
 * @example 调用
 * 
 * ```scss
 * i {
 *    @include triangle(5px, #bbb, up); 
 * }
 * ```
 * 
 * ```css
 * i {
 *    width: 0;
      height: 0;
      border-width: 5px;
      border-style: solid;
      border-color: transparent;
      border-bottom-color: #bbb;
 * }
 * ```
 */
/**
* @method 水平线hr nav-divider 
* @description 透明层 内容也透明
* @param {string} $color=#e5e5e5 - 线的颜色
* @param {string} $line-height-computed - 线的高度，空间
* @example 调用
* 
* ```scss
* div {
*    @include nav-divider(#e5e5e5, 24px);
* }
* ```
* 
* ```css
* div {
	  height: 1px;
	  margin: 11px 0;
	  overflow: hidden;
	  background-color: #e5e5e5;
* }
* ```
*/
.mcity {
    background: #f9f9f9;
    height: 100%;
    overflow-y: scroll;
}

.city {
    background: #f9f9f9;
}

.citycon {
    min-height: 329px;
}

.city-head {
    margin-top: 20px;
    border-bottom: 1px dashed #ccc;
}

.city-head p {
    font-size: 16px;
    color: #545454;
    line-height: 28px;
    text-align: center;
}

.city-head .city-btn {
    display: block;
    cursor: pointer;
    width: 205px;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    margin: 10px auto 20px;
    background-color: #e43;
    border-radius: 30px;
}

.city-head .city-btn:hover {
    text-decoration: none;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

#clist {
    clear: both;
    overflow: hidden;
    zoom: 1;
    margin: 0 auto;
    padding: 20px;
}

#clist .text {
    border-radius: 3px;
    width: 180px;
}

#clist dt {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 24px;
    float: left;
    clear: both;
    margin: 0;
    padding: 3px 0 3px 4px;
    color: #545454;
}

#clist dd {
    margin-left: 58px;
    padding: 3px 0;
    line-height: 24px;
    min-height: 24px;
}

#clist dd a {
    font-size: 12px;
    display: inline-block;
    margin-right: 12px;
    white-space: nowrap;
    text-decoration: none;
}

#searchspan {
    padding: 3px 14px 3px 0;
}

#popularspan {
    padding: 3px 14px 3px 34px;
}

#clist dd.popular {
    margin-bottom: 20px;
}

#clist dt.quyu {
    font-size: 16px;
    line-height: 34px;
    clear: none;
    width: 990px;
    height: 34px;
    padding-left: 2px;
    color: #dcdcdc;
}

#clist dt.quyu span {
    padding-right: 4px;
    background: #f9f9f9;
}

.city-area {
    clear: both;
    padding: 20px 0;
}

.city-area a {
    display: inline-block;
    margin-bottom: 10px;
    min-width: 80px;
    background: none;
    border: none;
    color: #666;
    text-align: center;
}

.city-area a:hover {
    color: #666;
    border-color: #ddd;
    background-color: #ddd;
}

.city-area a.btn-main {
    color: #fff;
    border-color: #3e85a9;
    background-color: #4594bb;
}

#hot {
    width: 1200px;
    line-height: 14px;
    margin: 47px auto 0;
    text-align: left;
}

#hot-title {
    float: left;
    margin-right: 18px;
    color: #ff552e;
    font-size: 14px;
    font-weight: 600;
}

a.hot-city {
    margin: 0 10px;
    color: #666;
    font-size: 14px;
}

#selector {
    width: 1200px;
    margin: 27px auto 0;
    height: 30px;
    text-align: left;
}

.selector-title {
    float: left;
    line-height: 30px;
    margin-right: 29px;
    color: #555;
    font-size: 14px;
    font-weight: 600;
}

.citys {
    margin-right: 39px !important;
}

.selector {
    float: left;
    cursor: pointer;
    position: relative;
    z-index: 10;
    width: 118px;
    height: 28px;
    margin-right: 8px;
    border: solid 1px #DDD;
    border-radius: 2px;
    color: #999;
    font-size: 14px;
    padding: 3px;
}

.selector:hover {
    border-color: #999;
}

.selector-result {
    height: 28px;
    padding-left: 15px;
    line-height: 28px;
    font-size: 12px;
}

.selector-arrow {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 11px;
    height: 7px;
    background-image: url(../images/changecity_down.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.selector-arrow-up {
    transform: rotate(180deg);
}

.selector-box {
    display: none;
    position: absolute;
    top: 28px;
    left: -1px;
    width: 118px;
    border: solid 1px #DDD;
    font-size: 12px;
    background-color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
}

.selector-list {
    width: 100%;
    height: 30px;
    line-height: 30px;
    padding-left: 15px;
    color: #999;
    box-sizing: border-box;
}

.selector-list:hover {
    color: #ff552e;
    background-color: #f8f8f8;
}

#selector-city {
    margin-right: 39px;
}

#selector-btn {
    cursor: pointer;
    float: left;
    width: 80px;
    height: 30px;
    margin-right: 39px;
    line-height: 30px;
    border-radius: 2px;
    color: #fff;
    font-size: 14px;
    background-color: #ff552e;
    text-align: center;
}

#selector-search {
    float: left;
    width: 168px;
    height: 28px;
    border: solid 1px #DDD;
    border-radius: 2px;
    overflow: hidden;
}

#selector-search-input {
    float: left;
    width: 108px;
    height: 28px;
    line-height: 28px;
    padding: 0 0 0 6px;
    border: 0;
    outline: 0;
    font-size: 14px;
    color: #999;
}

#selector-search-btn {
    cursor: pointer;
    float: left;
    width: 53px;
    height: 28px;
    line-height: 28px;
    border-left: solid 1px #DDD;
    color: #555;
    font-size: 14px;
    text-align: center;
    background-color: #f5f5f5;
}

#content {
    width: 1200px;
    margin: 33px auto 0;
    text-align: left;
}

#content-title {
    line-height: 16px;
    color: #555;
    font-size: 16px;
    font-weight: 600;
}

#content-box {
    float: left;
    width: 1198px;
    margin-top: 23px;
    margin-bottom: 30px;
    border: solid 1px #eee;
}

.content-letter {
    float: left;
    border-bottom: solid 1px #eee;
}

.content-letter-panel {
    float: left;
    width: 40px;
    height: 100%;
    color: #999;
    font-size: 18px;
    font-weight: 700;
    background-color: #f5f5f5;
    text-align: center;
}

.content-letter-panle-hover {
    color: #fff;
    background-color: #ff552e;
}

.content-province {
    float: left;
    position: relative;
    z-index: 1;
    width: 1158px;
}

.content-province-triangle {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 10px;
    margin-top: -5px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.content-province-title {
    float: left;
    width: 54px;
    height: 100%;
    line-height: 46px;
    padding-left: 16px;
    border-left-style: solid;
    border-right-style: solid;
    border-width: 1px;
    border-color: #eee;
    color: #333;
    font-size: 16px;
}

.content-cities {
    float: left;
    width: 1086px;
    padding: 12px 0;
    overflow: hidden;
}

.content-city {
    display: inline-block;
    line-height: 20px;
    color: #333;
    font-size: 12px;
    margin: 0 12px;
}

.content-letter-panle-hover {
    color: #fff;
    background-color: #ff552e;
}

.content-province-hover {
    background-color: #f5f5f5;
}

.content-province-triangle-hover {
    display: block;
}

.selectContainer {
    position: relative;
}

.selectInput {
    width: 200px;
    height: 25px;
    border-style: none;
    border: 1px solid #999;
    border-radius: 3px;
    padding: 0 3px;
}

.picture_click {
    opacity: 1;
    width: 15px;
    height: 8px;
    position: absolute;
    top: 10px;
    right: 125px;
}

.selectList {
    width: 206px;
    height: 212px;
    overflow-y: scroll;
    text-align: left;
    margin: 0 453px;
    border: 1px solid #999;
    display: none;
    position: relative;
    z-index: 999999;
    background: #fff;
    text-align: center;
}

.selectList div {
    cursor: pointer;
}

/*# sourceMappingURL=http://localhost:8888/css/city.css.map */
