@charset "UTF-8";
/*!
* @name <%= name %>
* @author <%= author %>
* @date <%= date %>
*/
/**
 * @method 清除浮动 %clearfix 
 * @description 清除浮动
 * @example 调用
 * 
 * ```scss
 * div {
 *    @extend %clearfix;
 * }
 * ```
 * 
 * ```css
 * 	div {
	    *zoom: 1;
	}
	div:after {
	    display: block;
	    clear: both;

	    height: 0;

	    content: '\20';
	}
 * ```
 */
.head-search, .map-wrap, .left-list, .kf-right {
    *zoom: 1;
}

.head-search:after, .map-wrap:after, .left-list:after, .kf-right: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;
* }
* ```
*/
/*!
 * @name lp.css
 * @author xy
 * @date 2016-8-5
 */
/*!
 * @name kft
 * @author ahuing
 * @date 2016-1-15
 * @dec top toolbar popular search terms containing the search and
 */
/*
top-bar
*/
.top-bar {
    background: #f3f3f3;
    min-width: 1200px;
    padding: 15px 0 10px 0;
}

.top-bar .search-bar {
    float: left;
}

.top-bar .list {
    margin-left: 68px;
}

.top-bar .list li {
    float: left;
    margin-right: 22px;
    font-size: 14px;
    margin-top: 9px;
    margin-top: 12px;
    display: inline;
    overflow: hidden;
}

.top-bar .list li a {
    height: 20px;
    line-height: 20px;
    text-decoration: none;
    color: #686465;
    overflow: hidden;
}

.top-bar .list li a:hover {
    color: #f00;
}

.top-bar .list li a i {
    font-size: 20px;
    float: left;
    margin-right: 4px;
    margin-top: 2px;
}

/*!
 * @name sale-filter-hd.css
 * @author xying
 * @date 2016-8-24
 * @dec common filter header for sale rent
 * 出租、二手筛选分类头部样式
 */
.head-search {
    height: 56px;
    padding: 0 10px;
    border: 1px solid #ddd;
    margin-bottom: -1px;
    background: #f7f7f7;
}

.head-search .search-bar {
    margin-top: 10px;
    float: right;
}

.head-search .search-bar .search-input {
    width: 258px;
    padding: 8px 10px;
    border: 1px solid #33aa66;
}

.head-search .search-bar .search-btn {
    width: 70px;
    height: 38px;
    line-height: 38px;
    background: #33aa66;
}

.h-s-btns {
    float: left;
}

.h-s-btns .btn1 {
    float: left;
    margin-top: 10px;
    height: 36px;
    padding: 0 16px;
    border-radius: 3px;
    margin-right: 10px;
    font-size: 14px;
    text-align: center;
    line-height: 36px;
    color: #fff;
    text-decoration: none;
    position: relative;
    background: #5193d0;
}

.h-s-btns .btn1 .tri {
    position: absolute;
    bottom: -10px;
    left: 50%;
    right: 50%;
    margin-left: -5px;
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px;
    border-top-color: #5193d0;
}

.h-s-btns .btn1-1, .h-s-btns .btn1.active {
    background: #33aa66;
}

.h-s-btns .btn1-1 .tri, .h-s-btns .btn1.active .tri {
    border-top-color: #33aa66;
}

.h-s-btns .btn1-2, .h-s-btns .btn1.active {
    background: #5193d0;
}

.h-s-btns .btn1-2 .tri, .h-s-btns .btn1.active .tri {
    border-top-color: #5193d0;
}

.h-s-btns .btn1-3 {
    background: #4cb471;
}

.h-s-btns .btn1-3 .tri {
    border-top-color: #4cb471;
}

.h-s-btns .btn1-4 {
    background: #fe5200;
}

.h-s-btns .btn1-4 .tri {
    border-top-color: #fe5200;
}

.h-s-btns .btn1-5 {
    background: #2e9ee6;
}

.h-s-btns .btn1-5 .tri {
    border-top-color: #2e9ee6;
}

.h-s-btns a:hover {
    color: #fff;
    opacity: .8;
}

.h-s-btns i {
    margin-right: 3px;
    vertical-align: -1px;
}

/*!
* @name filter.css
* @author xying
* @date 2016-8-5
* @dec filter common css
*/
@font-face {
    font-family: "filter";
    font-weight: normal;
    font-style: normal;
    src: url("../fonts/filter.eot");
    src: url("../fonts/filter.eot?#iefix") format("embedded-opentype"), url("../fonts/filter.woff") format("woff");
}

[class^="font-filter-"],
[class*=" font-filter-"] {
    font-family: "filter";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: inherit;
    float: none;
    margin: 0;
    vertical-align: -0.25em;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
}

.font-filter-1:before {
    content: "\EA01";
}

.font-filter-10:before {
    content: "\EA02";
}

.font-filter-11:before {
    content: "\EA03";
}

.font-filter-2:before {
    content: "\EA04";
}

.font-filter-3:before {
    content: "\EA05";
}

.font-filter-4:before {
    content: "\EA06";
}

.font-filter-5:before {
    content: "\EA07";
}

.font-filter-6:before {
    content: "\EA08";
}

.font-filter-7:before {
    content: "\EA09";
}

.font-filter-8:before {
    content: "\EA0A";
}

.font-filter-9:before {
    content: "\EA0B";
}

/* filter-hd */
@keyframes aAnimate {
    0% {
        transform: translateY(-5px);
    }
    50% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0px);
    }
}

.filter-hd {
    border-left: 1px solid #ddd;
    height: 35px;
    line-height: 35px;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.filter-hd a {
    border: 1px solid #ddd;
    color: #666;
    float: left;
    margin-left: -1px;
    padding: 0 22px;
}

.filter-hd a i {
    font-size: 18px;
}

.filter-hd a.act {
    background-color: #fff;
    font-weight: 700;
}

.filter-hd a.act, .filter-hd a:hover {
    color: #33aa66;
    text-decoration: none;
}

.filter-hd a:hover i {
    animation: aAnimate 0.1s both;
}

.filter-hd a:first-child {
    border-radius: 3px 0 0;
}

.filter-hd a:last-child {
    border-radius: 0 3px 0 0;
}

/* filter-bd */
.filter-bd {
    border: 1px solid #ddd;
    position: relative;
    z-index: 9;
    margin-top: -1px;
}

.filter-item-list {
    padding-top: 10px;
}

.filter-item-list dl {
    line-height: 28px;
    overflow: hidden;
    padding-left: 10px;
    clear: both;
    padding-bottom: 10px;
    vertical-align: top;
}

.filter-item-list dt {
    float: left;
    text-align: right;
    width: 43px;
    white-space: nowrap;
}

.filter-item-list dd {
    margin-left: 45px;
}

.filter-item-list dd a {
    border-radius: 2px;
    color: #666;
    display: inline-block;
    line-height: 28px;
    margin-bottom: 5px;
    margin-right: 2px;
    padding: 0 5px;
}

.filter-item-list dd a:hover, .filter-item-list dd a.act {
    background: #33aa66;
    color: #fff;
    text-decoration: none;
}

.filter-item-list dd .section-input {
    padding-left: 10px;
}

.filter-item-list dd .section-input input {
    height: 26px;
    line-height: 26px;
    width: 90px;
    padding-left: 5px;
    border: 1px solid #ddd;
    color: #666;
}

.filter-item-list dd .section-input span {
    color: #666;
}

.filter-item-list dd .section-input em {
    margin-left: 10px;
    padding: 5px 7px;
    background: red;
    color: #fff;
    cursor: pointer;
}

.filter-item-list .set {
    margin-top: -7px;
    padding: 7px 5px;
    position: absolute;
}

.filter-item-list .set .txt {
    border: 1px solid #ddd;
    border-radius: 3px;
    height: 28px;
    line-height: 28px;
    text-indent: 10px;
    width: 50px;
}

.filter-item-list .set .btn {
    border: 1px solid #33aa66;
    background: #33aa66;
    border-radius: 3px;
    cursor: pointer;
    color: #fff;
    font-size: 12px;
    height: 30px;
    line-height: 28px;
    padding: 0 10px;
}

.filter-item-select {
    background: #fafafa;
    border-top: 1px solid #ddd;
    padding: 0 0 7px 10px;
}

.filter-item-select li {
    float: left;
    height: 28px;
    line-height: 28px;
    margin-top: 5px;
    position: relative;
    margin-right: 10px;
}

.filter-item-select li.open {
    z-index: 10;
}

.filter-item-select li.open .more-hd {
    border-color: #ddd;
}

.filter-item-select li.open .more-hd i {
    transform: rotate(180deg);
}

.filter-item-select li.active .more-hd {
    border-color: #33aa66;
}

.filter-item-select li .more-hd {
    background-color: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    text-indent: 10px;
    width: 102px;
    position: relative;
}

.filter-item-select li .more-hd i {
    color: #999;
    font-size: 15px;
    position: absolute;
    top: 1px;
    right: 10px;
    text-indent: 0;
    transition: transform .3s;
}

.filter-item-select li .more-bd {
    background: #fff;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: none;
    width: 103px;
}

.filter-item-select li .more-bd.last {
    right: 0 !important;
    left: auto !important;
}

.filter-item-select li .more-bd a {
    border: 1px solid #e5e5e5;
    color: #666;
    height: 29px;
    line-height: 29px;
    margin-bottom: -1px;
    margin-right: -1px;
    vertical-align: top;
    display: block;
    font-size: 12px;
    padding: 0 10px;
    vertical-align: top;
    white-space: nowrap;
}

.filter-item-select li .more-bd a:hover, .filter-item-select li .more-bd a.act {
    background: #f4f4f4;
    text-decoration: none;
}

.filter-item-select li .more-horizontal {
    width: 360px;
}

.filter-item-select li .more-horizontal a {
    float: left;
    width: 99px;
}

.filter-item-select li.more-tit {
    margin-right: 0;
}

/* filter-cur */
.filter-cur {
    background: #fff;
    border-top: 1px solid #ddd;
    line-height: 20px;
    padding: 10px;
}

.filter-cur .tip {
    float: left;
    line-height: 22px;
}

.filter-cur a {
    border: 1px solid #ddd;
    background-color: #fff;
    float: left;
    margin-right: 5px;
    padding: 1px 5px 0;
    font-size: 12px;
    text-decoration: none;
}

.filter-cur a:hover {
    text-decoration: none;
}

.filter-cur a i {
    color: #33aa66;
    vertical-align: -1px;
}

/*!
 * @name lp-aside.css
 * @author xying
 * @date 2016-8-5
 * @dec common aside for lp
 */
.lp-aside {
    width: 240px;
}

/*
aside
*/
.lp-aside h2 {
    font-size: 16px;
    font-weight: 700;
    height: 44px;
    line-height: 44px;
    text-indent: 15px;
}

.lp-tj-item {
    color: #666;
    line-height: 27px;
    height: 250px;
    overflow: hidden;
    padding: 15px;
    width: 210px;
}

.lp-tj-item .pic {
    display: block;
    height: 156px;
    width: 210px;
}

.lp-tj-item .pic img {
    height: 156px;
    width: 210px;
}

.lp-tj-item a {
    color: #666;
}

.lp-tj-item a:hover {
    color: #33aa66;
    text-decoration: none;
}

.lp-tj-item .tit {
    height: 27px;
    line-height: 27px;
    margin-top: 8px;
    overflow: hidden;
}

.lp-tj-item .tag {
    margin-top: 5px;
}

.lp-tj-item .tag a {
    border: 1px solid #ddd;
    margin-right: 8px;
    padding: 0 8px 2px;
}

.lp-tj-item .price span {
    color: #f50;
    margin-right: 2px;
}

.lp-tj-item:hover {
    background: #f1f1f1;
}

@font-face {
    font-family: "lp";
    font-weight: normal;
    font-style: normal;
    src: url("../fonts/lp.eot");
    src: url("../fonts/lp.eot?#iefix") format("embedded-opentype"), url("../fonts/lp.svg#lp") format("svg"), url("../fonts/lp.woff") format("woff");
}

[class^="font-lp-"],
[class*=" font-lp-"] {
    font-family: "lp";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: inherit;
    float: none;
    margin: 0;
    vertical-align: -0.25em;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
}

.font-lp-1:before {
    content: "\EA01";
}

.font-lp-10:before {
    content: "\EA02";
}

.font-lp-101:before {
    content: "\EA03";
}

.font-lp-102:before {
    content: "\EA04";
}

.font-lp-103:before {
    content: "\EA05";
}

.font-lp-104:before {
    content: "\EA06";
}

.font-lp-105:before {
    content: "\EA07";
}

.font-lp-106:before {
    content: "\EA08";
}

.font-lp-107:before {
    content: "\EA09";
}

.font-lp-108:before {
    content: "\EA0A";
}

.font-lp-109:before {
    content: "\EA0B";
}

.font-lp-11:before {
    content: "\EA0C";
}

.font-lp-110:before {
    content: "\EA0D";
}

.font-lp-111:before {
    content: "\EA0E";
}

.font-lp-12:before {
    content: "\EA0F";
}

.font-lp-13:before {
    content: "\EA10";
}

.font-lp-14:before {
    content: "\EA11";
}

.font-lp-15:before {
    content: "\EA12";
}

.font-lp-15p:before {
    content: "\EA13";
}

.font-lp-16:before {
    content: "\EA14";
}

.font-lp-17:before {
    content: "\EA15";
}

.font-lp-172:before {
    content: "\EA16";
}

.font-lp-18:before {
    content: "\EA17";
}

.font-lp-19:before {
    content: "\EA18";
}

.font-lp-2:before {
    content: "\EA19";
}

.font-lp-20:before {
    content: "\EA1A";
}

.font-lp-21:before {
    content: "\EA1B";
}

.font-lp-22:before {
    content: "\EA1C";
}

.font-lp-23:before {
    content: "\EA1D";
}

.font-lp-24:before {
    content: "\EA1E";
}

.font-lp-25:before {
    content: "\EA1F";
}

.font-lp-26:before {
    content: "\EA20";
}

.font-lp-27:before {
    content: "\EA21";
}

.font-lp-28:before {
    content: "\EA22";
}

.font-lp-29:before {
    content: "\EA23";
}

.font-lp-3:before {
    content: "\EA24";
}

.font-lp-30:before {
    content: "\EA25";
}

.font-lp-31:before {
    content: "\EA26";
}

.font-lp-32:before {
    content: "\EA27";
}

.font-lp-33:before {
    content: "\EA28";
}

.font-lp-34:before {
    content: "\EA29";
}

.font-lp-35:before {
    content: "\EA2A";
}

.font-lp-36:before {
    content: "\EA2B";
}

.font-lp-37:before {
    content: "\EA2C";
}

.font-lp-38:before {
    content: "\EA2D";
}

.font-lp-39:before {
    content: "\EA2E";
}

.font-lp-4:before {
    content: "\EA2F";
}

.font-lp-40:before {
    content: "\EA30";
}

.font-lp-41:before {
    content: "\EA31";
}

.font-lp-42:before {
    content: "\EA32";
}

.font-lp-43:before {
    content: "\EA33";
}

.font-lp-44:before {
    content: "\EA34";
}

.font-lp-45:before {
    content: "\EA35";
}

.font-lp-46:before {
    content: "\EA36";
}

.font-lp-47:before {
    content: "\EA37";
}

.font-lp-48:before {
    content: "\EA38";
}

.font-lp-49:before {
    content: "\EA39";
}

.font-lp-5:before {
    content: "\EA3A";
}

.font-lp-50:before {
    content: "\EA3B";
}

.font-lp-51:before {
    content: "\EA3C";
}

.font-lp-52:before {
    content: "\EA3D";
}

.font-lp-53:before {
    content: "\EA3E";
}

.font-lp-54:before {
    content: "\EA3F";
}

.font-lp-55:before {
    content: "\EA40";
}

.font-lp-56:before {
    content: "\EA41";
}

.font-lp-57:before {
    content: "\EA42";
}

.font-lp-6:before {
    content: "\EA43";
}

.font-lp-7:before {
    content: "\EA44";
}

.font-lp-8:before {
    content: "\EA45";
}

.font-lp-9:before {
    content: "\EA46";
}

.font-lp-qj:before {
    content: "\EA47";
}

@font-face {
    font-family: "number";
    font-weight: normal;
    font-style: normal;
    src: url("../fonts/number.eot");
    src: url("../fonts/number.eot?#iefix") format("embedded-opentype"), url("../fonts/number.woff") format("woff");
}

[class^="font-number-"],
[class*=" font-number-"] {
    font-family: "number";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: inherit;
    float: none;
    margin: 0;
    vertical-align: -0.25em;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
}

.font-number-1:before {
    content: "\EA01";
}

.font-number-10:before {
    content: "\EA02";
}

.font-number-2:before {
    content: "\EA03";
}

.font-number-3:before {
    content: "\EA04";
}

.font-number-4:before {
    content: "\EA05";
}

.font-number-5:before {
    content: "\EA06";
}

.font-number-6:before {
    content: "\EA07";
}

.font-number-7:before {
    content: "\EA08";
}

.font-number-8:before {
    content: "\EA09";
}

.font-number-9:before {
    content: "\EA0A";
}

/**
 * @method 清除浮动 %clearfix 
 * @description 清除浮动
 * @example 调用
 * 
 * ```scss
 * div {
 *    @extend %clearfix;
 * }
 * ```
 * 
 * ```css
 * 	div {
	    *zoom: 1;
	}
	div:after {
	    display: block;
	    clear: both;

	    height: 0;

	    content: '\20';
	}
 * ```
 */
.head-search, .map-wrap, .left-list, .kf-right {
    *zoom: 1;
}

.head-search:after, .map-wrap:after, .left-list:after, .kf-right: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;
* }
* ```
*/
.map-wrap {
    position: relative;
    z-index: 998;
}

.map-wrap .show {
    height: 400px;
}

.map-wrap * {
    box-sizing: border-box;
}

.map-wrap .lp-coltit {
    line-height: 52px;
    padding: 10px 0 0;
}

.map-wrap .more {
    font-size: 14px;
    position: absolute;
    top: 24px;
    right: 10px;
    color: #999;
}

.map-wrap .ddd {
    padding: 20px;
}

.map-wrap .assort-distance {
    position: absolute;
    z-index: 999;
    right: 20px;
    bottom: 72px;
    display: none;
    padding: 5px 10px 20px;
    border: 1px solid #dbdbdb;
    min-height: 70px;
    min-width: 200px;
    background: #fff;
}

.map-wrap .assort-distance-btn {
    border: 1px solid #dbdbdb;
    background-color: #fff;
    width: 34px;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    padding: 10px 5px;
    height: 120px;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -60px;
    z-index: 999;
}

.map-wrap .assort-distance-btn:hover {
    color: #f00;
}

.map-wrap .assort-distance-btn i {
    font-size: 18px;
    color: #f00;
}

.map-wrap .assort-distance .tu {
    margin-left: 0;
}

.map-wrap .assort-distance .close-assort {
    line-height: 18px;
    width: 40px;
    padding: 10px 0;
    cursor: pointer;
    text-align: center;
    color: #333;
}

.map-wrap .assort-distance h4 {
    font-size: 16px;
    font-weight: normal;
    padding-bottom: 10px;
    color: #666;
}

.map-wrap .assort-distance h4 .bg {
    width: 24px;
    height: 24px;
    border-radius: 24px;
    background: #06b676;
    display: inline-block;
    text-align: center;
    color: #fff;
}

.map-wrap .assort-distance h4 .bg i {
    font-size: 16px;
}

.map-wrap .assort-distance .img-lp-9 {
    position: absolute;
    top: 24px;
    right: 10px;
    z-index: 99;
    display: block;
    cursor: pointer;
    transition: all .3s ease-out;
}

.map-wrap .assort-distance .img-lp-9:hover {
    color: #f00;
}

.map-wrap .assort-distance ul {
    overflow-y: scroll;
    max-height: 230px;
}

.map-wrap .assort-distance ul .ddd {
    font-size: 16px;
    line-height: 40px;
    overflow: hidden;
    height: 48px;
}

.map-wrap .assort-distance .title {
    margin-bottom: 15px;
}

.map-wrap .assort-distance .icon-text {
    font-size: 15px;
    line-height: 52px;
    position: relative;
    z-index: 1;
    display: block;
    padding-left: 27px;
    cursor: pointer;
}

.map-wrap .assort-distance .icon-text:hover .round {
    width: 72px;
    padding-left: 3.5px;
    cursor: pointer;
    text-align: left;
}

.map-wrap .assort-distance .icon-text:hover .txt {
    color: #fff;
}

.map-wrap .assort-distance .round {
    font-size: 16px;
    line-height: 25.5px;
    position: absolute;
    z-index: -1;
    top: 15px;
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    cursor: pointer;
    text-align: center;
    color: #666;
    color: #fff;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    background: #9c3ca7;
}

.map-mkitem {
    position: absolute;
    padding: 5px;
    background-color: blue;
    color: #fff;
}

.map-label {
    position: absolute;
    z-index: 100;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    background-color: rgba(255, 255, 255, 0.85);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#D9FFFFFF, endColorstr=#D9FFFFFF);
    zoom: 1;
}

.map-label .tu {
    margin-left: 0;
}

.map-label ul .icon-text {
    cursor: pointer;
    font-size: 15px;
    line-height: 52px;
    position: relative;
    z-index: 1;
    display: block;
    height: 52px;
    padding-left: 27px;
    color: #666666;
}

.map-label ul .mLabel-li {
    position: relative;
    float: left;
    padding: 0 25px;
    background: url(../images/result-opt-vline.png) no-repeat left center;
}

.map-label ul .label-li:hover .round, .map-label ul .label-li.active .round {
    width: 72px;
    padding-left: 3.5px;
    cursor: pointer;
    text-align: left;
}

.map-label ul .label-li:hover .icon-text, .map-label ul .label-li.active .icon-text {
    color: #fff;
}

.map-label ul .round {
    font-size: 16px;
    line-height: 25.5px;
    position: absolute;
    z-index: -1;
    top: 15px;
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    cursor: pointer;
    text-align: center;
    color: #666666;
    color: #fff;
    border-radius: 25px;
    background: #06b676;
}

.map-label ul li:nth-of-type(2) span {
    background: #ff3238;
}

.map-label ul li:nth-of-type(3) span {
    background: #9c3ca7;
}

.map-label ul li:nth-of-type(4) span {
    background: #eaae2a;
}

.map-label ul li:nth-of-type(5) span {
    background: #581eef;
}

.map-label ul li:nth-of-type(6) span {
    background: #06b676;
}

.mLabel-more {
    line-height: 52px;
    width: 120px;
    padding-right: 47px !important;
}

.mLabel-more .img-lp-11,
.mLabel-more .img-lp-10 {
    float: right;
    margin-top: 16px;
}

.mLabel-more .img-lp-11 {
    display: none;
}

.mLabel-more:hover {
    color: #da5c4f;
}

.mLabel-more:hover .img-lp-11 {
    display: block;
}

.mLabel-more:hover .img-lp-10 {
    display: none;
}

.mLabel-more ul {
    position: absolute;
    z-index: 2;
    top: 52px;
    left: 0;
    display: none;
    width: 120px;
    height: auto;
    color: #666666;
    border: 1px solid #eee;
    background-color: transparent;
    background-color: rgba(255, 255, 255, 0.85);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#D9FFFFFF, endColorstr=#D9FFFFFF);
    zoom: 1;
}

.mLabel-more ul .mLabel-li {
    float: none;
    margin: 0 10px;
    padding: 0 5px;
    vertical-align: top;
    border-bottom: 1px solid #ddd;
}

.mLabel-more ul .mLabel-li .icon-text {
    font-size: 14px;
    position: relative;
    z-index: 1;
    display: block;
    padding-left: 27px;
    color: #666666;
}

.mLabel-more ul li:nth-of-type(2) span {
    background: #914f2d;
}

.mLabel-more:hover ul {
    display: block;
}

.marker-item {
    font-size: 12px;
    line-height: 18px;
    position: absolute;
    -moz-user-select: none;
    text-align: center;
    white-space: nowrap;
    color: #fff;
    border-radius: 2px;
    background-color: #33aa66;
}

.marker-item a {
    color: #fff;
}

.marker-item .name {
    display: inline-block;
    padding: 5px;
}

.marker-item .name-sub {
    display: inline-block;
    color: #444;
    padding: 5px;
    background-color: #fff;
}

.marker-item .arrow {
    position: absolute;
    bottom: -7px;
    left: 5px;
    width: 0;
    height: 0;
    border-width: 7px;
    border-style: solid;
    border-color: transparent;
    border-left-color: #33aa66;
}

.marker-item.item-hover {
    background-color: #00a966 !important;
}

.marker-item.item-hover .arrow {
    border-left-color: #00a966;
}

.map-label01 {
    display: block;
    position: static;
}

.map-label01 ul .roud {
    background: #eaae2a;
}

.map-label01 ul .mLabel-li {
    background: none;
}

.map-label01 ul .label-li:hover .round, .map-label01 ul .label-li.active .round {
    width: 94px;
}

#map-list {
    max-width: 260px;
}

#map-list > div {
    border: none !important;
}

#map-list li {
    margin-bottom: 10px;
}

#map-list ol {
    overflow: auto;
    max-height: 200px;
}

#map-list ol::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

#map-list ol::-webkit-scrollbar-thumb:hover {
    background: #f8f8f8;
}

#map-list ol::-webkit-scrollbar-thumb {
    border: 1px solid #ccc;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #fafafa;
}

#map-list ol::-webkit-scrollbar-track {
    border: 1px solid #d3d3d3;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #eee;
    -webkit-box-shadow: 0 0 3px #dfdfdf inset;
    box-shadow: 0 0 3px #dfdfdf inset;
}

#map-list .ls-item-2 > a {
    display: none;
}

#map-list .ls-item-2 span {
    color: #333 !important;
}

#map-list .ls-item-3 b,
#map-list .ls-item-4 b {
    color: #666 !important;
}

.wrap-ls-item-3 {
    display: flex;
    flex-wrap: wrap-reverse;
    padding: 10px !important;
    background: none !important;
}

.wrap-ls-item-3 > a {
    display: none;
    width: 100%;
    margin-top: 10px;
    text-align: center;
}

.wrap-ls-item-3 > div {
    width: 100%;
}

.wrap-ls-item-3 > div p {
    width: 100%;
    text-align: center !important;
}

.wrap-ls-item-3 > div p span {
    margin-right: 4px !important;
}

.wrap-ls-item-3 > div p span a {
    border: 1px solid #ddd !important;
    padding: 3px 5px 3px 5px !important;
}

.wrap-ls-item-3 a {
    color: #666 !important;
}

.vista-wrap {
    display: none;
    position: absolute;
    z-index: 99999;
    left: 0;
    bottom: 0;
    width: 100%;
}

.vista {
    height: 400px;
    left: 0;
    top: 0;
}

.bd-gray {
    position: relative;
}

/*!
 * @name lp-list.css
 * @author xying
 * @date 2016-8-5
 * @dec common lp list
 */
/*!
* @name <%= name %>
* @author <%= author %>
* @date <%= date %>
* @dec sort btn
*/
/* sort */
.sort .sort-btn {
    background: #fafafa;
    border: 1px solid #ddd;
    color: #888;
    float: left;
    height: 22px;
    line-height: 22px;
    margin-left: 10px;
    padding: 3px 8px;
}

.sort .sort-btn:hover {
    color: #888;
    text-decoration: none;
}

.sort .sort-btn i {
    position: relative;
    top: 3px;
}

.sort .sort-btn i.up {
    right: -8px;
    top: -5px;
}

.sort .sort-btn.default i {
    display: none;
}

.sort .sort-btn.act {
    background: #fff;
    border-color: #33aa66;
    color: #33aa66;
}

.sort .sort-btn.act.desc .up {
    color: #888;
}

.sort .sort-btn.act.asc .down {
    color: #888;
}

.lp-body {
    width: 930px;
}

/*
title
*/
.body-tit {
    border-bottom: 2px solid #33aa66;
}

.body-tit h2 a {
    background: #fff;
    display: block;
    float: left;
    font-size: 18px;
    padding: 9px 20px;
}

.body-tit h2 a:hover {
    text-decoration: none;
    background-color: #fafafa;
}

.body-tit h2 a.act {
    background: #33aa66;
    color: #fff;
}

.body-tit h2 a.act .ico {
    color: inherit;
}

.body-tit h2 .ico {
    margin-right: 10px;
    vertical-align: 0;
    color: #f00;
}

.body-tit .sort {
    margin-top: 8px;
}

/*
list
*/
.list-item {
    border-bottom: 1px dashed #ddd;
    padding-top: 10px;
}

.list-item a {
    color: #666;
    text-decoration: none;
}

.list-item a:hover {
    color: #f00;
}

.list-item .pic {
    margin: 13px 20px 0 20px;
    width: 180px;
    position: relative;
}

.list-item .pic img {
    height: 135px;
    width: 180px;
}

.list-item .pic i {
    border-radius: 3px;
    background: #33aa66;
    color: #fff;
    font-size: 12px;
    font-family: simsun;
    height: auto;
    line-height: 20px;
    padding: 0 5px;
    position: absolute;
    right: 0;
    top: 0;
}

.list-item .info {
    width: 550px;
}

.list-item .info h3 {
    height: 27px;
    overflow: hidden;
}

.list-item .info h3.h40 {
    line-height: 40px;
    height: 40px;
}

.list-item .info .fx {
    font-size: 14px;
}

.list-item .info p {
    line-height: 34px;
    height: 34px;
}

.list-item .info .tag {
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    margin-left: 8px;
    padding: 1px 6px;
    position: relative;
}

.list-item .info .tag:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px;
    position: absolute;
    left: -10px;
    top: 4px;
}

.list-item .info .tag.on-sale {
    background: #f60;
}

.list-item .info .tag.dis-sale {
    background: #aaa;
}

.list-item .info .tag.on-sale-114 {
    background-color: #06a897;
}

.list-item .info .tag.on-sale-114:after {
    border-color: transparent #06a897 transparent transparent;
}

.list-item .info .tag.on-sale-115 {
    background-color: #1cbaff;
}

.list-item .info .tag.on-sale-115:after {
    border-color: transparent #1cbaff transparent transparent;
}

.list-item .info .tag.on-sale-116 {
    background-color: #f60;
}

.list-item .info .tag.on-sale-116:after {
    border-color: transparent #f60 transparent transparent;
}

.list-item .info .tag.on-sale-117 {
    background-color: #ce9b86;
}

.list-item .info .tag.on-sale-117:after {
    border-color: transparent #ce9b86 transparent transparent;
}

.list-item .info .tag.on-sale-118 {
    background-color: #afafaf;
}

.list-item .info .tag.on-sale-118:after {
    border-color: transparent #afafaf transparent transparent;
}

.list-item .info .tag.on-sale-159 {
    background-color: #33aa66;
}

.list-item .info .tag.on-sale-159:after {
    border-color: transparent #33aa66 transparent transparent;
}

.list-item .tit {
    color: #666;
    font-size: 18px;
}

.list-item .tit:hover {
    color: #f00;
    text-decoration: none;
}

.list-item .ico-word {
    margin-right: 15px;
}

.list-item .ico-word i {
    color: #e4e4e4;
}

.list-item .other {
    text-align: right;
    width: 160px;
}

.list-item .other .total-price {
    color: #f50;
    font-family: georgia;
    font-size: 28px;
    line-height: 18px;
}

.list-item .other .mj {
    margin-left: 10px;
}

.list-item .other .dj {
    line-height: 36px;
}

.list-item .other .btn {
    border-radius: 3px;
    float: right;
    line-height: 30px;
    height: 30px;
    margin-top: 26px;
    width: 151px;
}

.list-item .other .btn i {
    font-size: 16px;
    margin-left: 5px;
}

.list-item .other .fill-btn {
    cursor: pointer;
    background: #33aa66;
    border: 1px solid #33aa66;
    color: #fff;
    text-align: center;
}

.list-item .other .fill-btn:hover {
    background: #33aa66;
    border-color: #33aa66;
}

.list-item .other .disable-btn {
    font-size: 12px;
    background: #aaa;
    border: 1px solid #aaa;
    color: #fff;
    text-align: center;
}

.list-item .other .disable-btn:hover {
    background: #aaa;
    border-color: #aaa;
}

.list-item:hover {
    background: #f9f9f9;
}

.list-item .tags span {
    border: 1px solid #ccc;
    color: #666;
    display: inline-block;
    height: 22px;
    line-height: 22px;
    margin-right: 5px;
    overflow: hidden;
    padding: 0 5px;
}

.line-through {
    text-decoration: line-through;
}

.photo-nav {
    margin-top: 7px;
}

.photo-nav a {
    border-radius: 3px;
    font-size: 16px;
    margin-left: 10px;
    padding: 5px 10px;
}

.photo-nav a.act, .photo-nav a:hover {
    background: #33aa66 none repeat scroll 0 0;
    color: #fff;
    text-decoration: none;
}

.left-list {
    width: 902px;
    float: left;
}

.kf-right {
    float: right;
    width: 270px;
}

.kf-right .r-title {
    font-size: 16px;
    color: #2c2c2c;
    line-height: 55px;
    text-indent: 18px;
    font-weight: 700;
}

.kf-right .flow {
    margin-left: 24px;
    margin-bottom: 16px;
    padding-right: 25px;
    border-left: 2px solid #ebebeb;
}

.kf-right .flow li {
    padding-top: 1px;
    padding-left: 16px;
    padding-bottom: 22px;
    position: relative;
}

.kf-right .flow h3 {
    font-size: 16px;
    line-height: 1;
    margin: 14px 0;
    color: #666;
}

.kf-right .flow i {
    font-size: 20px;
    margin-right: 6px;
}

.kf-right .flow p {
    font-size: 14px;
    color: #999;
    line-height: 26px;
}

.kf-right .flow .point {
    position: absolute;
    top: 22px;
    left: -6px;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: #33aa66;
}

.r-table h2 {
    font-size: 16px;
    color: #2c2c2c;
    line-height: 60px;
    font-weight: 700;
    text-indent: 12px;
}

.r-table table {
    width: 268px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.r-table table th {
    height: 50px;
    line-height: 50px;
    background: #fafafa;
}

.r-table table .red {
    color: #33aa66;
}

.r-table table td {
    height: 38px;
    border-bottom: 1px dashed #ddd;
}

.f-text {
    margin-top: 38px;
    padding: 6px 18px 10px 12px;
    font-size: 14px;
    color: #666;
}

.f-text h3 {
    line-height: 32px;
    font-weight: 700;
    text-indent: 8px;
}

.f-text p {
    line-height: 26px;
    text-indent: 14px;
}

.f-t-2 {
    margin-top: 20px;
    padding: 10px;
    font-size: 14px;
    line-height: 30px;
}

.f-t-2 span {
    color: #fe0000;
}

.t-title {
    font-size: 16px;
    line-height: 46px;
    font-weight: 700;
    color: #2c2c2c;
    text-indent: 18px;
    margin-top: 15px;
}

.list-item {
    border-bottom-width: 0;
    position: relative;
    padding: 20px 0;
}

.list-item .info p {
    overflow: hidden;
}

.list-item .list-item-circle {
    position: absolute;
    top: 20px;
    left: -6px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #33aa66;
}

.topic-group-list {
    border: 1px solid #ddd;
    border-radius: 5px;
}

.topic-group-list ul {
    border-left: 2px solid #ddd;
    margin: 20px 0 20px 24px;
}

.lp-coltit h3 {
    font-size: 16px;
    line-height: 40px;
    margin-top: 6px;
    color: #2c2c2c;
    font-weight: 700;
}

.kft-list {
    border: 1px solid  #dddddd;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 10px;
}

.kft-list .list-img {
    float: left;
}

.kft-list .list-content {
    float: left;
    margin-left: 20px;
    margin-right: 20px;
    width: 320px;
    font-size: 16px;
}

.kft-list .list-content > div {
    margin-top: 5px;
    overflow: hidden;
    height: 28px;
}

.kft-list .list-operate {
    float: right;
    text-align: right;
    width: 260px;
}

.kft-list .list-operate [class^='font-'] {
    vertical-align: -2px;
    margin-right: 5px;
    color: #33aa66;
}

.kft-list .list-operate .btn {
    font-size: 18px;
    height: 45px;
    line-height: 45px;
    width: 170px;
    text-align: center;
    cursor: pointer;
}

.kft-list .list-name {
    font-size: 18px;
}

.kft-list .list-keywords span {
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 5px;
    font-size: 12px;
    padding: 0 5px;
}

.kft-list .list-enroll {
    margin-right: 44px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.kft-list .list-time {
    height: 24px;
    margin-bottom: 28px;
}

.kft-list .list-time span {
    background: #eee;
    border-radius: 5px;
    color: #33aa66;
    display: inline-block;
    font-weight: 700;
    margin: 0 3px;
    padding: 0 7px;
    vertical-align: middle;
}

.kft-list .list-time .c-e43 {
    width: 170px;
    text-align: center;
    padding: 0 12px;
    display: inline-block;
}

.kft-list .list-route {
    position: relative;
    padding: 25px 0 30px 0;
    margin-top: 20px;
    margin-bottom: 30px;
}

.kft-list .list-route-left {
    position: absolute;
    width: 100px;
    top: -5px;
    left: 0;
    z-index: 2;
}

.kft-list .list-route-left span {
    background: #33aa66;
    color: #fff;
    border-radius: 50%;
    height: 46px;
    width: 40px;
    display: block;
    padding: 7px 10px;
    text-align: center;
}

.kft-list .list-route-right {
    float: right;
    width: 100px;
}

.kft-list .list-route-line {
    position: absolute;
    top: 24px;
    left: 0px;
    height: 2px;
    width: 100%;
    background: #ccc;
}

.kft-list .list-route-table {
    width: 680px;
    table-layout: fixed;
    text-align: center;
    margin-left: 100px;
}

.kft-list .list-route-table td {
    position: relative;
}

.kft-list .list-route-td-circle {
    display: block;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #33aa66;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -5px;
    margin-top: -5px;
    z-index: 10;
}

.kft-list .list-route-td-name {
    position: absolute;
    top: -15px;
    width: 100%;
    text-align: center;
    max-height: 55px;
    line-height: 90px;
    overflow: hidden;
}

.kft-list .list-route-houses {
    border-radius: 5px;
    position: absolute;
    background: #fff;
    border: 1px solid #33aa66;
    z-index: 3;
    width: 334px;
    display: none;
    text-align: left;
    padding: 10px;
    bottom: 16px;
    left: 50%;
}

.kft-list .list-route-houses-img {
    float: left;
}

.kft-list .list-route-houses-content {
    margin-left: 145px;
}

.kft-list .list-route-houses-content p {
    margin-top: 8px;
    max-height: 44px;
    overflow: hidden;
}

.kft-list .sanjiao {
    display: none;
    position: absolute;
    top: -16px;
    left: 50%;
    margin-left: -9px;
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 9px;
    border-top-color: #33aa66;
}

/*# sourceMappingURL=http://localhost:8888/css/kft.css.map */
