@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';
	}
 * ```
 */
.tag-middle, .tag-middle .t-m-l, .tag-middle .t-m-r, .tag-middle .t-m-r .sort, .tag-box-t, .head-search, .s-new li p, .sale-list-item, .tag-head, .t-h-r, .map-wrap, .vil-head, .vil-box, .v-b-r {
    *zoom: 1;
}

.tag-middle:after, .tag-middle .t-m-l:after, .tag-middle .t-m-r:after, .tag-middle .t-m-r .sort:after, .tag-box-t:after, .head-search:after, .s-new li p:after, .sale-list-item:after, .tag-head:after, .t-h-r:after, .map-wrap:after, .vil-head:after, .vil-box:after, .v-b-r: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;
	}
 * ```
 */
.sale-item-text h3 {
    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 <%= name %>
 * @author <%= author %>
 * @date <%= date %>
 */
.main {
    float: left;
    width: 930px;
}

.tag-middle {
    height: 38px;
    line-height: 38px;
    padding-left: 15px;
    background: #f8f8f8;
    border-bottom: 1px solid #ddd;
}

.tag-middle .t-m-l {
    float: left;
}

.tag-middle .t-m-l p {
    float: left;
    margin-right: 30px;
}

.tag-middle .t-m-l a:hover {
    text-decoration: none;
}

.tag-middle .t-m-l .act {
    color: #e43;
}

.tag-middle .t-m-l i {
    vertical-align: -1px;
}

.tag-middle .t-m-r {
    float: right;
    font-size: 14px;
    color: #333333;
    position: relative;
}

.tag-middle .t-m-r i {
    margin-left: 3px;
    font-size: 12px;
}

.tag-middle .t-m-r .font-esf-1 {
    vertical-align: top;
}

.tag-middle .t-m-r ul {
    position: absolute;
    width: 100px;
    border: 1px solid #ddd;
    top: 48px;
    left: -12px;
    display: none;
}

.tag-middle .t-m-r ul li {
    font-size: 13px;
    line-height: 24px;
    color: #333;
}

.tag-middle .t-m-r ul .checked {
    color: #e43;
    line-height: 38px;
}

.tag-middle .t-m-r i {
    margin-left: 1px;
}

.tag-middle .t-m-r .sort-btn {
    line-height: 32px;
    border: none;
    background: #f8f8f8;
}

.tag-middle .t-m-r .sort-btn.act {
    background: transparent;
}

.sale-list-ex .sale-item-r .buy {
    margin-top: 15px;
}

.rent-list-ex .sale-item-r .buy {
    margin-top: 15px;
}

.tag-contr {
    width: 100%;
}

.tag-box-t:hover {
    background: #f9f9f9;
}

.tag-box-t {
    border-bottom: 1px solid #eaeaea;
    background: #fff;
    padding-top: 30px;
}

.t-b-t-l {
    float: left;
    margin-left: 18px;
    width: 500px;
    margin-bottom: 18px;
}

.t-b-t-l h3 {
    line-height: 24px;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 700;
}

.t-b-t-l span {
    font-size: 14px;
    color: #ccc;
}

.t-b-t-l p {
    font-size: 14px;
    color: #2c2c2c;
    line-height: 26px;
}

.t-b-t-l .place {
    color: #2c2c2c;
}

.t-b-t-m {
    float: left;
    width: 120px;
}

.t-b-t-m p {
    text-align: center;
    font-size: 14px;
    color: #2c2c2c;
    line-height: 26px;
}

.t-b-t-r {
    float: right;
    width: 150px;
}

.t-b-t-r p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.t-b-t-r span {
    color: #f60;
    font-size: 14px;
}

.t-b-t-r .big {
    font-size: 20px;
}

/*!
 * @name xiaoqu
 * @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 #e43;
}

.head-search .search-bar .search-btn {
    width: 70px;
    height: 38px;
    line-height: 38px;
    background: #e43;
}

.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: #e43;
}

.h-s-btns .btn1-1 .tri, .h-s-btns .btn1.active .tri {
    border-top-color: #e43;
}

.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: #e43;
    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: #e43;
    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 #e43;
    background: #e43;
    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: #e43;
}

.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: #e43;
    vertical-align: -1px;
}

/*!
 * @name sale-aside.css
 * @author xying
 * @date 2016-8-11
 * @dec common aside for sale rent
 */
/*
左侧栏
*/
.side {
    float: right;
    width: 250px;
}

.s-info a {
    display: block;
    width: 248px;
    height: 30px;
    border: 1px solid #e43;
    color: #e43;
    text-align: center;
    line-height: 32px;
    font-size: 16px;
    text-decoration: none;
}

.s-info a:hover {
    background: #e43;
    color: #fff;
}

.s-title {
    height: 36px;
    border: 1px solid #ccc;
    background: #f6f6f6;
    margin-top: 20px;
    margin-bottom: -1px;
    line-height: 38px;
    text-indent: 18px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.s-look {
    padding: 10px;
    width: 228px;
    border: 1px solid #ccc;
}

.s-look li {
    line-height: 28px;
}

.s-look li i {
    display: inline-block;
}

.s-look li b {
    font-weight: 500;
}

.s-look li span {
    display: inline-block;
}

.s-look li a:hover {
    color: #e43;
}

.s-look li .left {
    vertical-align: middle;
    font-size: 16px;
    width: 100px;
    overflow: hidden;
    display: inline-block;
    color: #333;
    height: 28px;
    margin-right: 5px;
    text-align: left;
}

.s-look li .middle {
    font-size: 14px;
    color: #666;
    width: 50px;
    margin-right: 10px;
    text-align: right;
}

.s-look li .right {
    color: #f60;
    font-size: 14px;
    width: 50px;
    text-align: right;
}

.s-agent {
    padding: 10px;
    width: 228px;
    border: 1px solid #ccc;
}

.s-agent li {
    padding: 8px 0;
    border-bottom: 1px dashed #ccc;
}

.s-agent img {
    float: left;
    width: 80px;
    height: 100px;
}

.s-agent .no-border {
    border-bottom: none;
}

.s-a-info {
    margin-left: 95px;
}

.s-a-info h3 {
    line-height: 30px;
    color: #333;
    font-size: 14px;
}

.s-a-info i {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    font-size: 12px;
    color: #fff;
    line-height: 15px;
    text-align: center;
    margin-left: 0;
}

.s-a-info p {
    line-height: 23px;
}

.s-a-info .shou {
    background: #f06d07;
}

.s-a-info .zu {
    margin-left: 28px;
    background: #2d99d6;
}

.s-a-info span {
    font-size: 14px;
    color: #333;
}

.s-new {
    padding: 20px 20px 0 20px;
    width: 208px;
    border: 1px solid #ccc;
}

.s-new li {
    margin-bottom: 14px;
}

.s-new li img {
    display: block;
}

.s-new li p {
    line-height: 30px;
    font-size: 14px;
}

.s-new li a:hover {
    color: #e43;
}

.s-new li .name {
    float: left;
    width: 150px;
}

.s-new li .money {
    float: right;
    color: #e43;
}

.s-new li .left {
    float: left;
}

.s-new li .right {
    float: right;
}

@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-11:before {
    content: "\EA03";
}

.font-lp-12:before {
    content: "\EA04";
}

.font-lp-13:before {
    content: "\EA05";
}

.font-lp-14:before {
    content: "\EA06";
}

.font-lp-15:before {
    content: "\EA07";
}

.font-lp-16:before {
    content: "\EA08";
}

.font-lp-17:before {
    content: "\EA09";
}

.font-lp-18:before {
    content: "\EA0A";
}

.font-lp-19:before {
    content: "\EA0B";
}

.font-lp-2:before {
    content: "\EA0C";
}

.font-lp-20:before {
    content: "\EA0D";
}

.font-lp-21:before {
    content: "\EA0E";
}

.font-lp-22:before {
    content: "\EA0F";
}

.font-lp-23:before {
    content: "\EA10";
}

.font-lp-24:before {
    content: "\EA11";
}

.font-lp-25:before {
    content: "\EA12";
}

.font-lp-26:before {
    content: "\EA13";
}

.font-lp-27:before {
    content: "\EA14";
}

.font-lp-28:before {
    content: "\EA15";
}

.font-lp-29:before {
    content: "\EA16";
}

.font-lp-3:before {
    content: "\EA17";
}

.font-lp-30:before {
    content: "\EA18";
}

.font-lp-31:before {
    content: "\EA19";
}

.font-lp-32:before {
    content: "\EA1A";
}

.font-lp-33:before {
    content: "\EA1B";
}

.font-lp-34:before {
    content: "\EA1C";
}

.font-lp-35:before {
    content: "\EA1D";
}

.font-lp-36:before {
    content: "\EA1E";
}

.font-lp-37:before {
    content: "\EA1F";
}

.font-lp-38:before {
    content: "\EA20";
}

.font-lp-39:before {
    content: "\EA21";
}

.font-lp-4:before {
    content: "\EA22";
}

.font-lp-40:before {
    content: "\EA23";
}

.font-lp-41:before {
    content: "\EA24";
}

.font-lp-42:before {
    content: "\EA25";
}

.font-lp-43:before {
    content: "\EA26";
}

.font-lp-44:before {
    content: "\EA27";
}

.font-lp-45:before {
    content: "\EA28";
}

.font-lp-46:before {
    content: "\EA29";
}

.font-lp-47:before {
    content: "\EA2A";
}

.font-lp-48:before {
    content: "\EA2B";
}

.font-lp-49:before {
    content: "\EA2C";
}

.font-lp-5:before {
    content: "\EA2D";
}

.font-lp-50:before {
    content: "\EA2E";
}

.font-lp-51:before {
    content: "\EA2F";
}

.font-lp-52:before {
    content: "\EA30";
}

.font-lp-53:before {
    content: "\EA31";
}

.font-lp-54:before {
    content: "\EA32";
}

.font-lp-55:before {
    content: "\EA33";
}

.font-lp-56:before {
    content: "\EA34";
}

.font-lp-57:before {
    content: "\EA35";
}

.font-lp-6:before {
    content: "\EA36";
}

.font-lp-7:before {
    content: "\EA37";
}

.font-lp-8:before {
    content: "\EA38";
}

.font-lp-9:before {
    content: "\EA39";
}

.sale-list {
    width: 100%;
}

.sale-list-item {
    border-bottom: 1px solid #eaeaea;
    background: #fff;
    padding: 30px 0;
}

.sale-list-item p {
    color: #666;
}

.tu {
    display: inline-block;
    padding: 0 6px;
    height: 24px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    line-height: 24px;
    color: #fff !important;
    vertical-align: middle;
    border-radius: 2px;
    margin-left: 5px;
}

.tu.tu-1 {
    background: #62ab00;
}

.tu.tu-2 {
    background: #e43;
}

.tu.tu-3 {
    background: #9509bb;
}

.tu.tu-4 {
    background: #f60;
}

.sale-list-item:hover {
    background: #f9f9f9;
}

.sale-item-l {
    float: left;
}

.sale-item-img {
    position: relative;
    float: left;
    height: 135px;
    width: 180px;
}

.sale-item-img span {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0 6px;
    font-size: 13px;
    color: #fff;
    background-color: transparent;
    background-color: rgba(0, 0, 0, 0.6);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
    zoom: 1;
}

.shou, .zu {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 2px;
    font-size: 13px;
    color: #fff;
}

.shou {
    background: #f06d07;
}

.zu {
    margin-left: 30px;
    background: #2d99d6;
}

.sale-item-text {
    margin-left: 200px;
    width: 460px;
}

.sale-item-text h3 {
    font-size: 16px;
    line-height: 34px;
    height: 34px;
    color: #c2c2c2;
    font-weight: 700;
}

.sale-item-text p {
    height: auto;
    line-height: 34px;
    max-height: 34px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sale-item-text .fang {
    color: #ccc;
}

.sale-item-text span {
    color: #666;
}

.sale-item-text .new {
    color: #ccc;
}

.sale-item-text .new2 {
    color: #333;
}

.sale-item-text .ps-ico {
    color: #f50;
}

.sale-item-text .ps {
    color: #666;
}

.sale-item-r {
    float: right;
    width: 170px;
    margin-top: -8px;
}

.sale-item-r p {
    margin-bottom: 5px;
}

.sale-item-r .buy {
    color: #666;
    margin-left: -10px;
}

.sale-item-r .buy a, .sale-item-r .buy label {
    cursor: pointer;
    height: 22px;
    padding: 0 5px;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #b3b3b3;
    border-radius: 2px;
    margin-left: 10px;
    background: #efefef linear-gradient(#fdfdfd, #eaeaea);
}

.sale-item-r .buy input {
    position: absolute;
    left: -9999px;
}

.sale-item-r .buy a:hover {
    text-decoration: none;
    background: #fafafa;
    color: #333;
}

.sale-item-r .buy label:hover {
    background: #fafafa;
}

.sale-item-r .buy i {
    margin-right: 3px;
    vertical-align: -1px;
    color: #f60;
}

.sale-item-r span {
    color: #fd6300;
    font-size: 14px;
}

.sale-item-r .big {
    font-size: 30px;
    font-weight: bold;
}

/*!
 * @name list-hd.css
 * @author xying
 * @date 2016-8-24
 * @dec list header
 * @ 列表头部
 */
.tag-head {
    width: 100%;
    border-bottom: 2px solid #e43;
}

.t-h-l {
    float: left;
    border: 1px solid #ddd;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
    padding-right: -1px;
}

.t-h-l a {
    float: left;
    height: 35px;
    padding: 0 25px;
    border-left: 1px solid #ddd;
    font-size: 14px;
    color: #2c2c2c;
    line-height: 36px;
    cursor: pointer;
    margin-left: -1px;
}

.t-h-l .act {
    background: #e43;
    border-color: #e43;
    color: #fff;
}

.t-h-r {
    float: right;
    height: 30px;
}

.t-h-r p {
    float: left;
    line-height: 30px;
    font-size: 14px;
    color: #333333;
    cursor: pointer;
}

.t-h-r i {
    font-size: 12px;
    line-height: 20px;
    text-align: center;
}

.t-h-r a {
    background: #f4f4f4;
    border-radius: 3px;
    color: #888;
    display: inline-block;
    height: 20px;
    width: 18px;
    border: 1px solid #ddd;
    vertical-align: middle;
    text-align: center;
    margin: 0 5px;
}

.t-h-r a:hover {
    text-decoration: none;
}

.t-h-r .num {
    color: #e43;
    margin: 0 5px;
    font-weight: 700;
}

/*!
* @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: #e43;
    color: #e43;
}

.sort .sort-btn.act.desc .up {
    color: #888;
}

.sort .sort-btn.act.asc .down {
    color: #888;
}

/*!
 * @name lp-compare.css
 * @author xying
 * @date 2016-8-10
 * @dec lp compare
 */
/*
 对比
*/
#comp_box {
    background: #fff none repeat scroll 0 0;
    border: 2px solid #e43;
    font-size: 12px;
    width: 170px;
    display: none;
}

#comp_top .close, #comp_items .icon {
    color: #fff;
    cursor: pointer;
    float: right;
    line-height: 1;
    margin-top: 9px;
    overflow: hidden;
    position: relative;
}

#comp_top {
    background: #e43 none repeat scroll 0 0;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 30px;
    padding: 0 5px;
}

#comp_items {
    background: #fff none repeat scroll 0 0;
    padding: 5px;
}

#comp_items .icon {
    background-position: right -349px;
    color: #e43;
}

#comp_items li {
    border-bottom: 1px solid #e6e6e6;
    border-top: 1px solid #fff;
    height: 28px;
    line-height: 28px;
    overflow: hidden;
}

#comp_boot {
    line-height: 22px;
    overflow: hidden;
    padding-bottom: 5px;
}

#comp_boot .prosubmit {
    background: #e43 none repeat scroll 0 0;
    border: medium none;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    float: left;
    height: 22px;
    margin: 0 10px 0 15px;
    padding: 0 8px;
}

#comp_boot .clear {
    float: left;
}

#comp_boot .clear .ico08 {
    color: #e43;
    margin-right: 5px;
}

.btnshow {
    font-size: 50px;
    line-height: 52px;
    text-align: center;
    position: fixed;
    bottom: 103px;
    right: 30px;
    width: 52px;
    height: 52px;
    display: none;
    background: #b8babe;
    cursor: pointer;
    color: #fff;
}

.btnshow:hover {
    background: #e43;
    color: #fff;
    text-decoration: none;
}

/*!
 * @name detail-common.css
 * @author xying
 * @date 2016-8-10
 * @dec common for houses detail nav , sale detail nav
 */
/*
lp-nav
*/
.lp-nav {
    background: #e43;
    border-radius: 3px;
}

.lp-nav li {
    float: left;
}

.lp-nav li a {
    color: #fff;
    float: left;
    font-size: 16px;
    line-height: 40px;
    padding: 0 20px;
    text-decoration: none;
}

.lp-nav li a:hover, .lp-nav li a.act {
    background: #ca4437;
}

.lp-nav li a:first-child, .lp-nav li a:last-child {
    border-radius: 3px 0 0 3px;
}

/*
lp-hx-nav
*/
.lp-hx-nav {
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #ccc;
}

.lp-hx-nav li {
    float: left;
}

.lp-hx-nav li a {
    line-height: 35px;
    padding: 0 20px;
    text-decoration: none;
}

.lp-hx-nav li a.act {
    color: #f00;
}

/*
lp-hx-menu
*/
.lp-hx-menu {
    position: relative;
}

.lp-hx-menu ul {
    height: 60px;
    overflow: hidden;
}

.lp-hx-menu li {
    float: left;
    font-size: 12px;
    height: 50px;
    margin-right: 10px;
    padding-bottom: 10px;
    text-align: center;
    width: 110px;
}

.lp-hx-menu li a {
    border: 1px solid #ccc;
    display: block;
    line-height: 20px;
    height: 40px;
    padding: 4px 0;
    text-decoration: none;
    position: relative;
}

.lp-hx-menu li a.act, .lp-hx-menu li a:hover {
    border-color: #e43;
    color: #fff;
    background: #e43;
}

.lp-hx-menu li a.act i {
    display: block;
}

.lp-hx-menu li a i {
    display: none;
    height: 0;
    width: 0;
    border-top: 10px solid #e43;
    border-right: 10px solid transparent;
    position: absolute;
    top: 48px;
    left: -1px;
}

.lp-hx-menu:hover .hx-menu-btn {
    display: block;
}

.lp-hx-menu .hx-menu-btn {
    background-color: transparent;
    background-color: rgba(0, 0, 0, 0.5);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#80000000, endColorstr=#80000000);
    zoom: 1;
    color: #fff;
    display: none;
    height: 50px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    width: 20px;
    position: absolute;
    top: 0;
}

.lp-hx-menu .hx-left {
    left: 0;
}

.lp-hx-menu .hx-right {
    right: 0;
}

/*!
 * @name lp-tk.css
 * @author xying
 * @date 2016-8-5
 * @dec common lp detail tk
 */
/*! lightgallery - v1.2.22 - 2016-07-20
* http://sachinchoolur.github.io/lightGallery/
* Copyright (c) 2016 Sachin N; Licensed Apache 2.0 */
@font-face {
    font-family: 'lg';
    src: url("../fontsgallery/lg.eot?n1z373");
    src: url("../fonts/lg.eot?#iefixn1z373") format("embedded-opentype"), url("../fonts/lg.woff?n1z373") format("woff"), url("../fonts/lg.ttf?n1z373") format("truetype"), url("../fonts/lg.svg?n1z373#lg") format("svg");
    font-weight: normal;
    font-style: normal;
}

.lg-icon {
    font-family: 'lg';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.lg-actions .lg-next, .lg-actions .lg-prev {
    background-color: rgba(0, 0, 0, 0.45);
    border-radius: 2px;
    color: #999;
    cursor: pointer;
    display: block;
    font-size: 22px;
    margin-top: -10px;
    padding: 8px 10px 9px;
    position: absolute;
    top: 50%;
    z-index: 1080;
}

.lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
    color: #FFF;
}

.lg-actions .lg-next {
    right: 20px;
}

.lg-actions .lg-next:before {
    content: "\e095";
}

.lg-actions .lg-prev {
    left: 20px;
}

.lg-actions .lg-prev:after {
    content: "\e094";
}

@-webkit-keyframes lg-right-end {
    0% {
        left: 0;
    }
    50% {
        left: -30px;
    }
    100% {
        left: 0;
    }
}

@-moz-keyframes lg-right-end {
    0% {
        left: 0;
    }
    50% {
        left: -30px;
    }
    100% {
        left: 0;
    }
}

@-ms-keyframes lg-right-end {
    0% {
        left: 0;
    }
    50% {
        left: -30px;
    }
    100% {
        left: 0;
    }
}

@keyframes lg-right-end {
    0% {
        left: 0;
    }
    50% {
        left: -30px;
    }
    100% {
        left: 0;
    }
}

@-webkit-keyframes lg-left-end {
    0% {
        left: 0;
    }
    50% {
        left: 30px;
    }
    100% {
        left: 0;
    }
}

@-moz-keyframes lg-left-end {
    0% {
        left: 0;
    }
    50% {
        left: 30px;
    }
    100% {
        left: 0;
    }
}

@-ms-keyframes lg-left-end {
    0% {
        left: 0;
    }
    50% {
        left: 30px;
    }
    100% {
        left: 0;
    }
}

@keyframes lg-left-end {
    0% {
        left: 0;
    }
    50% {
        left: 30px;
    }
    100% {
        left: 0;
    }
}

.lg-outer.lg-right-end .lg-object {
    -webkit-animation: lg-right-end 0.3s;
    -o-animation: lg-right-end 0.3s;
    animation: lg-right-end 0.3s;
    position: relative;
}

.lg-outer.lg-left-end .lg-object {
    -webkit-animation: lg-left-end 0.3s;
    -o-animation: lg-left-end 0.3s;
    animation: lg-left-end 0.3s;
    position: relative;
}

.lg-toolbar {
    z-index: 1082;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.45);
}

.lg-toolbar .lg-icon {
    color: #999;
    cursor: pointer;
    float: right;
    font-size: 24px;
    height: 47px;
    line-height: 27px;
    padding: 10px 0;
    text-align: center;
    width: 50px;
    text-decoration: none !important;
    outline: medium none;
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

.lg-toolbar .lg-icon:hover {
    color: #FFF;
}

.lg-toolbar .lg-close:after {
    content: "\e070";
}

.lg-toolbar .lg-download:after {
    content: "\e0f2";
}

.lg-sub-html {
    background-color: rgba(0, 0, 0, 0.45);
    bottom: 0;
    color: #EEE;
    font-size: 16px;
    left: 0;
    padding: 10px 40px;
    position: fixed;
    right: 0;
    text-align: center;
    z-index: 1080;
}

.lg-sub-html h4 {
    margin: 0;
    font-size: 13px;
    font-weight: bold;
}

.lg-sub-html p {
    font-size: 12px;
    margin: 5px 0 0;
}

#lg-counter {
    color: #999;
    display: inline-block;
    font-size: 16px;
    padding-left: 20px;
    padding-top: 12px;
    vertical-align: middle;
}

.lg-toolbar, .lg-prev, .lg-next {
    opacity: 1;
    -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
    -moz-transition: -moz-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
    -o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
    transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
}

.lg-hide-items .lg-prev {
    opacity: 0;
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
}

.lg-hide-items .lg-next {
    opacity: 0;
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
}

.lg-hide-items .lg-toolbar {
    opacity: 0;
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
    opacity: 0;
    -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
    -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
    -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
    transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1;
}

.lg-outer .lg-thumb-outer {
    background-color: #0D0A0A;
    bottom: 0;
    position: absolute;
    width: 100%;
    z-index: 1080;
    max-height: 350px;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
    -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
    -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
    transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}

.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing;
}

.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
    -webkit-transition-duration: 0s !important;
    transition-duration: 0s !important;
}

.lg-outer.lg-thumb-open .lg-thumb-outer {
    -webkit-transform: translate3d(0, 0%, 0);
    transform: translate3d(0, 0%, 0);
}

.lg-outer .lg-thumb {
    padding: 10px 0;
    height: 100%;
    margin-bottom: -5px;
}

.lg-outer .lg-thumb-item {
    border-radius: 5px;
    cursor: pointer;
    float: left;
    overflow: hidden;
    height: 100%;
    border: 2px solid #FFF;
    border-radius: 4px;
    margin-bottom: 5px;
}

@media (min-width: 1025px) {
    .lg-outer .lg-thumb-item {
        -webkit-transition: border-color 0.25s ease;
        -o-transition: border-color 0.25s ease;
        transition: border-color 0.25s ease;
    }
}

.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: #a90707;
}

.lg-outer .lg-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lg-outer.lg-has-thumb .lg-item {
    padding-bottom: 120px;
}

.lg-outer.lg-can-toggle .lg-item {
    padding-bottom: 0;
}

.lg-outer.lg-pull-caption-up .lg-sub-html {
    -webkit-transition: bottom 0.25s ease;
    -o-transition: bottom 0.25s ease;
    transition: bottom 0.25s ease;
}

.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
    bottom: 100px;
}

.lg-outer .lg-toogle-thumb {
    background-color: #0D0A0A;
    border-radius: 2px 2px 0 0;
    color: #999;
    cursor: pointer;
    font-size: 24px;
    height: 39px;
    line-height: 27px;
    padding: 5px 0;
    position: absolute;
    right: 20px;
    text-align: center;
    top: -39px;
    width: 50px;
}

.lg-outer .lg-toogle-thumb:after {
    content: "\e1ff";
}

.lg-outer .lg-toogle-thumb:hover {
    color: #FFF;
}

.lg-outer .lg-video-cont {
    display: inline-block;
    vertical-align: middle;
    max-width: 1140px;
    max-height: 100%;
    width: 100%;
    padding: 0 5px;
}

.lg-outer .lg-video {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    position: relative;
}

.lg-outer .lg-video .lg-object {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.lg-outer .lg-video .lg-video-play {
    width: 84px;
    height: 59px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -42px;
    margin-top: -30px;
    z-index: 1080;
    cursor: pointer;
}

.lg-outer .lg-has-vimeo .lg-video-play {
    background: url("../img/vimeo-play.png") no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-vimeo:hover .lg-video-play {
    background: url("../img/vimeo-play.png") no-repeat scroll 0 -58px transparent;
}

.lg-outer .lg-has-html5 .lg-video-play {
    background: transparent url("../img/video-play.png") no-repeat scroll 0 0;
    height: 64px;
    margin-left: -32px;
    margin-top: -32px;
    width: 64px;
    opacity: 0.8;
}

.lg-outer .lg-has-html5:hover .lg-video-play {
    opacity: 1;
}

.lg-outer .lg-has-youtube .lg-video-play {
    background: url("../img/youtube-play.png") no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-youtube:hover .lg-video-play {
    background: url("../img/youtube-play.png") no-repeat scroll 0 -60px transparent;
}

.lg-outer .lg-video-object {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
}

.lg-outer .lg-has-video .lg-video-object {
    visibility: hidden;
}

.lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
    display: none;
}

.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
    visibility: visible;
}

.lg-progress-bar {
    background-color: #333;
    height: 5px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1083;
    opacity: 0;
    -webkit-transition: opacity 0.08s ease 0s;
    -moz-transition: opacity 0.08s ease 0s;
    -o-transition: opacity 0.08s ease 0s;
    transition: opacity 0.08s ease 0s;
}

.lg-progress-bar .lg-progress {
    background-color: #a90707;
    height: 5px;
    width: 0;
}

.lg-progress-bar.lg-start .lg-progress {
    width: 100%;
}

.lg-show-autoplay .lg-progress-bar {
    opacity: 1;
}

.lg-autoplay-button:after {
    content: "\e01d";
}

.lg-show-autoplay .lg-autoplay-button:after {
    content: "\e01a";
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap, .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
    -webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
    -moz-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
    -o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
    transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
    -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
    -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
    transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

#lg-zoom-in:after {
    content: "\e311";
}

#lg-actual-size {
    font-size: 20px;
}

#lg-actual-size:after {
    content: "\e033";
}

#lg-zoom-out {
    opacity: 0.5;
    pointer-events: none;
}

#lg-zoom-out:after {
    content: "\e312";
}

.lg-zoomed #lg-zoom-out {
    opacity: 1;
    pointer-events: auto;
}

.lg-outer .lg-pager-outer {
    bottom: 60px;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    z-index: 1080;
    height: 10px;
}

.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
    overflow: visible;
}

.lg-outer .lg-pager-cont {
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    position: relative;
    vertical-align: top;
    margin: 0 5px;
}

.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
    box-shadow: 0 0 0 2px white inset;
}

.lg-outer .lg-pager-thumb-cont {
    background-color: #fff;
    color: #FFF;
    bottom: 100%;
    height: 83px;
    left: 0;
    margin-bottom: 20px;
    margin-left: -60px;
    opacity: 0;
    padding: 5px;
    position: absolute;
    width: 120px;
    border-radius: 3px;
    -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
    -moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
    -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
    transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
}

.lg-outer .lg-pager-thumb-cont img {
    width: 100%;
    height: 100%;
}

.lg-outer .lg-pager {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
    display: block;
    height: 12px;
    -webkit-transition: box-shadow 0.3s ease 0s;
    -o-transition: box-shadow 0.3s ease 0s;
    transition: box-shadow 0.3s ease 0s;
    width: 12px;
}

.lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
    box-shadow: 0 0 0 8px white inset;
}

.lg-outer .lg-caret {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px dashed;
    bottom: -10px;
    display: inline-block;
    height: 0;
    left: 50%;
    margin-left: -5px;
    position: absolute;
    vertical-align: middle;
    width: 0;
}

.lg-fullscreen:after {
    content: "\e20c";
}

.lg-fullscreen-on .lg-fullscreen:after {
    content: "\e20d";
}

.group {
    *zoom: 1;
}

.group:before, .group:after {
    display: table;
    content: "";
    line-height: 0;
}

.group:after {
    clear: both;
}

.lg-outer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    opacity: 0;
    -webkit-transition: opacity 0.15s ease 0s;
    -o-transition: opacity 0.15s ease 0s;
    transition: opacity 0.15s ease 0s;
}

.lg-outer * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.lg-outer.lg-visible {
    opacity: 1;
}

.lg-outer.lg-css3 .lg-item.lg-prev-slide, .lg-outer.lg-css3 .lg-item.lg-next-slide, .lg-outer.lg-css3 .lg-item.lg-current {
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
    -webkit-transition-duration: 0s !important;
    transition-duration: 0s !important;
    opacity: 1;
}

.lg-outer.lg-grab img.lg-object {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing;
}

.lg-outer .lg {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    max-height: 100%;
}

.lg-outer .lg-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
}

.lg-outer .lg-item {
    background: url("../img/loading.gif") no-repeat scroll center center transparent;
    display: none !important;
}

.lg-outer.lg-css3 .lg-prev-slide, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide {
    display: inline-block !important;
}

.lg-outer.lg-css .lg-current {
    display: inline-block !important;
}

.lg-outer .lg-item, .lg-outer .lg-img-wrap {
    display: inline-block;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
}

.lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
    content: "";
    display: inline-block;
    height: 50%;
    width: 1px;
    margin-right: -1px;
}

.lg-outer .lg-img-wrap {
    position: absolute;
    padding: 0 5px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.lg-outer .lg-item.lg-complete {
    background-image: none;
}

.lg-outer .lg-item.lg-current {
    z-index: 1060;
}

.lg-outer .lg-image {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    height: auto !important;
}

.lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
    opacity: 0;
    -webkit-transition: opacity 0.15s ease 0s;
    -o-transition: opacity 0.15s ease 0s;
    transition: opacity 0.15s ease 0s;
}

.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object, .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
    opacity: 1;
}

.lg-outer .lg-empty-html {
    display: none;
}

.lg-outer.lg-hide-download #lg-download {
    display: none;
}

.lg-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    background-color: #000;
    opacity: 0;
    -webkit-transition: opacity 0.15s ease 0s;
    -o-transition: opacity 0.15s ease 0s;
    transition: opacity 0.15s ease 0s;
}

.lg-backdrop.in {
    opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
    -webkit-transition: none 0s ease 0s !important;
    -moz-transition: none 0s ease 0s !important;
    -o-transition: none 0s ease 0s !important;
    transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.lg-css3.lg-use-left .lg-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
    opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
    opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
    -webkit-transition: opacity 0.1s ease 0s;
    -moz-transition: opacity 0.1s ease 0s;
    -o-transition: opacity 0.1s ease 0s;
    transition: opacity 0.1s ease 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
    opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-slide.lg-use-left .lg-item {
    opacity: 0;
    position: absolute;
    left: 0;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
    left: -100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
    left: 100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
    left: 0;
    opacity: 1;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
    -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    -moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

/*# sourceMappingURL=http://localhost:8888/css/lightgallery.css.map */
.lp-plist1 {
    position: relative;
    margin-right: -50px;
    *zoom: 1;
    min-height: 186px;
}

.lp-plist1 li {
    float: left;
    width: 184px;
    padding: 20px 20px 0 0;
}

.plist-mod .item-img {
    height: 134px;
    width: 184px;
    border: 1px solid #ddd;
    margin-bottom: 6px;
}

.plist-mod .item-img img {
    display: block;
    margin: 0 auto;
}

.plist-mod em {
    font-size: 14px;
    line-height: 24px;
    display: block;
    overflow: hidden;
    height: 24px;
    text-align: center;
    word-wrap: break-word;
}

.plist-mod li a {
    display: block;
}

.plist-mod li a:hover {
    color: #f00;
}

.plist-mod li a:hover em.fcg {
    color: #f00;
}

.lp-plist-more {
    background: #e43;
    border-radius: 3px;
    border: none;
    color: #fff;
    height: 34px;
    line-height: 34px;
    padding: 0 12px;
}

.lp-plist-more:hover {
    color: #fff;
}

.img-lp-1, .img-lp-2, .img-lp-3, .img-lp-4, .img-lp-5, .img-lp-6, .img-lp-7, .img-lp-8, .img-lp-9, .img-lp-10, .img-lp-11 {
    display: inline-block;
    *zoom: 1;
    *display: inline;
    vertical-align: middle;
    line-height: 300px;
    overflow: hidden;
    background-image: url(../images/lp.png);
}

.img-lp-1 {
    width: 48px;
    height: 48px;
    background-position: -58px 0;
}

.img-lp-2 {
    width: 48px;
    height: 48px;
    background-position: -58px -58px;
}

.img-lp-3 {
    width: 48px;
    height: 48px;
    background-position: -116px 0;
}

.img-lp-4 {
    width: 48px;
    height: 48px;
    background-position: 0 0;
}

.img-lp-5 {
    width: 48px;
    height: 48px;
    background-position: -116px -58px;
}

.img-lp-6 {
    width: 48px;
    height: 48px;
    background-position: 0 -58px;
}

.img-lp-7 {
    width: 20px;
    height: 19px;
    background-position: -90px -116px;
}

.img-lp-8 {
    width: 20px;
    height: 19px;
    background-position: -120px -116px;
}

.img-lp-9 {
    width: 20px;
    height: 20px;
    background-position: -60px -116px;
}

.img-lp-10 {
    width: 20px;
    height: 20px;
    background-position: 0 -116px;
}

.img-lp-11 {
    width: 20px;
    height: 20px;
    background-position: -30px -116px;
}

/*!
 * @name lp-hxt.css
 * @author xying
 * @date 2016-8-10
 * @dec common lp detail hxt
 */
/*!
* @name <%= name %>
* @author <%= author %>
* @date <%= date %>
*/
/* 宽度调节
.piccontext {
}
//总宽度
.source {
}
//标题信息的宽度
.picshow {
}
//大图显示的宽度
#pic1 {
}
//图片最大的宽度
.picshowtxt {
}
//图片解说文字区域
.picshowlist_mid {
}
//小图区域宽度
.picmidmid {
}
//小图显示宽度
.picmidmid ul {
}
//小图显示宽度
.piclistshow {
}
//列表形式 */
.piccontext {
    margin: 0 auto;
}

.source {
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    font-family: "宋体";
}

.source_left {
    float: left;
    height: 20px;
    color: #666666;
}

.source_left a {
    color: #666666;
}

.source_left a:hover {
    color: #ff5d11;
    text-decoration: underline;
}

.source_left span {
    color: #ababab;
    padding-left: 15px;
    font-family: arial, helvetica, sans-serif;
}

.source_right {
    float: right;
    height: 20px;
    color: #666666;
}

.source_right a {
    color: #666666;
}

.source_right span {
    padding: 0px 10px;
}

.support {
    float: left;
    height: 20px;
    overflow: hidden;
}

.support img {
    padding: 0px 5px;
}

/* 大图展示 */
.picshow {
    overflow: hidden;
    margin: 20px auto 0;
}

.picshowtop {
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 0 auto;
}

#pic1 {
    height: auto;
    max-height: 100%;
    max-width: 100%;
    width: auto !important;
}

#pic1 img {
    max-height: 100%;
    max-width: 100%;
}

.pic1-middle {
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

#preArrow {
    left: 0px;
}

#nextArrow {
    right: 0px;
}

.contextDiv {
    cursor: pointer;
    height: 100%;
    width: 50%;
    position: absolute;
    top: 0px;
    z-index: 5;
}

.contextDiv span {
    position: absolute;
    top: 50%;
    margin-top: -10%;
    width: 46px;
    height: 80px;
}

#preArrow_A {
    left: 0px;
    background: url("../images/images/left.png") 0px 0px no-repeat;
    display: none;
}

#nextArrow_A {
    right: 0px;
    background: url("../images/images/right.png") 0px 0px no-repeat;
    display: none;
}

.picshowtxt {
    width: 100%;
    min-height: 40px;
    _height: 40px;
    margin-top: 20px;
    max-width: 1200px;
}

.picshowtxt_left {
    float: left;
    width: 70px;
    height: 50px;
    line-height: 30px;
    font-family: georgia, "times new roman", times, serif;
}

.picshowtxt_left span {
    color: #e55656;
    font-size: 30px;
}

.picshowtxt_left i {
    color: #666666;
    font-size: 20px;
}

.picshowtxt_right {
    float: left;
    margin-left: 10px;
    display: inline;
    line-height: 23px;
    color: #666666;
    font-size: 14px;
    width: 880px;
    font-family: "宋体";
}

.picshowlist {
    margin-top: 20px;
    overflow: hidden;
}

.picshowlist_left {
    float: left;
    width: 120px;
    overflow: hidden;
    overflow: hidden;
}

.picleftimg {
    width: 120px;
    height: 80px;
    background: url("../images/images/photo.jpg") no-repeat;
    padding-top: 9px;
    padding-left: 5px;
    overflow: hidden;
}

.picleftimg img {
    width: 106px;
    height: 66px;
}

.piclefttxt {
    width: 120px;
    line-height: 20px;
    font-family: "宋体";
}

.piclefttxt a {
    color: #444444;
}

.piclefttxt a:hover {
    color: #ff5d11;
    text-decoration: underline;
}

/* 小图 */
.picshowlist_mid {
    float: left;
    display: inline;
    overflow: hidden;
    height: 76px;
}

.picmidleft {
    float: left;
    width: 24px;
    height: 76px;
    overflow: hidden;
}

.picmidleft a {
    display: block;
    width: 24px;
    height: 76px;
}

.picmidmid {
    float: left;
    overflow: hidden;
    height: 76px;
    position: relative;
}

.picmidmid ul {
    overflow: hidden;
    position: absolute;
    height: 76px;
    left: 0;
    top: 15px;
}

.picmidmid ul li {
    float: left;
    margin-left: 8px;
    display: inline;
    width: 116px;
    text-align: center;
    position: relative;
    height: 66px;
    padding: 5px 0;
}

.selectpic {
    background: #aaa;
}

.picmidmid ul li img {
    max-width: 106px;
    height: 66px;
}

.picmidright {
    float: left;
    width: 24px;
    height: 76px;
    overflow: hidden;
}

.picmidright a {
    display: block;
    width: 24px;
    height: 76px;
}

.picshowlist_right {
    float: left;
    width: 120px;
    float: right;
    overflow: hidden;
}

/* 弹出层 */
.bodymodal {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
    z-index: 1100;
    position: fixed;
    top: 0px;
    left: 0px;
    display: none;
}

.closebtn {
    color: #fff;
    width: 15px;
    height: 15px;
    display: block;
}

.replay {
    height: 24px;
    margin-top: 20px;
    overflow: hidden;
}

.replay h2 {
    float: left;
    font-size: 16px;
}

.replay p {
    float: left;
    margin-left: 15px;
    display: inline;
    line-height: 24px;
    padding-right: 25px;
    background: url("../images/images/replay.png") right no-repeat;
}

.replay p a {
    color: white;
    font-size: 14px;
}

.replay p a:hover {
    color: #e43;
    text-decoration: underline;
}

.pictwo {
    width: 270px;
    height: 88px;
    overflow: hidden;
    margin-top: 20px;
}

.pictwo ul li {
    width: 120px;
    height: 88px;
    float: left;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
}

.pictwo ul li img {
    width: 120px;
    height: 88px;
}

.imgdivtext {
    position: absolute;
    bottom: 0px;
    height: 25px;
    width: 120px;
    background: rgba(0, 0, 0, 0.6);
    line-height: 25px;
    text-align: center;
    left: 0px;
    z-index: 4;
    *background: #000;
    *filter: alpha(opacity=50);
}

.imgdivtext a {
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.imgdivtext a:hover {
    color: #e43;
    text-decoration: underline;
}

.returnbtn {
    margin-top: 35px;
    margin-left: 50px;
}

.returnbtn a {
    width: 115px;
    height: 22px;
    border: 1px solid #ccc;
    padding: 5px 15px;
    line-height: 22px;
    text-align: center;
    color: white;
    font-size: 16px;
    display: block;
}

.returnbtn a:hover {
    color: #e43;
    border: 1px solid #e43;
}

.endtop {
    width: 600px;
    padding: 20px;
    background: #1c1c1c;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1200;
    color: white;
    display: none;
    margin-left: -300px;
    margin-top: -145px;
}

/*
图集
*/
.focus {
    background: #222;
    position: relative;
}

.view-pic {
    border-radius: 3px;
    color: #fff;
    font-weight: bold;
    opacity: 0.5;
    padding: 0 10px;
    position: absolute;
    right: 10px;
    top: 20px;
    z-index: 900;
}

.view-pic:hover {
    color: #fff;
}

.picshowlist_mid {
    height: 90px;
}

.picmidleft,
.picmidright {
    background: #444;
    cursor: pointer;
    color: #fff;
    font-size: 30px;
    line-height: 90px;
    height: 90px;
    text-align: center;
    width: 30px;
}

.picmidleft {
    border-radius: 3px 0 0 3px;
}

.picmidright {
    border-radius: 0 3px 3px 0;
}

.picmidmid {
    height: 90px;
}

.picmidmid ul {
    height: 83px;
    top: 0;
    padding-top: 7px;
}

.picmidmid ul li {
    border: 1px solid #ddd;
    background: #fff;
    position: relative;
}

.picmidmid ul li.selectpic {
    background: #fff;
    border-color: #c00;
}

.selectpic .arrow {
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 6px;
    border-bottom-color: #c00;
    left: 50%;
    margin-left: -6px;
    overflow: hidden;
    position: absolute;
    top: -12px;
    width: 0;
}

.picmidmid .index {
    background: #000;
    color: #fff;
    font-family: arial, "helvetica neue", helvetica, sans-serif;
    line-height: 16px;
    opacity: 0.6;
    padding: 0 5px;
    z-index: 20;
    position: absolute;
    bottom: 0;
    right: 0;
}

.img-sale-detail-1, .img-sale-detail-2, .img-sale-detail-3, .img-sale-detail-4, .img-sale-detail-5, .img-sale-detail-7, .img-sale-detail-8, .img-sale-detail-9, .img-sale-detail-10, .img-sale-detail-11, .img-sale-detail-12, .img-sale-detail-13, .img-sale-detail-14, .img-sale-detail-15, .img-sale-detail-16, .img-sale-detail-17, .img-sale-detail-18, .img-sale-detail-19, .img-sale-detail-20, .img-sale-detail-21, .img-sale-detail-22, .img-sale-detail-23, .img-sale-detail-24 {
    display: inline-block;
    *zoom: 1;
    *display: inline;
    vertical-align: middle;
    line-height: 300px;
    overflow: hidden;
    background-image: url(../images/sale-detail.png);
}

.img-sale-detail-1 {
    width: 14px;
    height: 14px;
    background-position: -248px -194px;
}

.img-sale-detail-2 {
    width: 14px;
    height: 14px;
    background-position: -205px -140px;
}

.img-sale-detail-3 {
    width: 12px;
    height: 18px;
    background-position: -204px -194px;
}

.img-sale-detail-4 {
    width: 12px;
    height: 18px;
    background-position: -226px -194px;
}

.img-sale-detail-5 {
    width: 22px;
    height: 12px;
    background-position: -154px -165px;
}

.img-sale-detail-7 {
    width: 40px;
    height: 20px;
    background-position: -233px -153px;
}

.img-sale-detail-8 {
    width: 39px;
    height: 20px;
    background-position: -73px -80px;
}

.img-sale-detail-9 {
    width: 70px;
    height: 70px;
    background-position: 0 -114px;
}

.img-sale-detail-10 {
    width: 70px;
    height: 70px;
    background-position: -73px 0;
}

.img-sale-detail-11 {
    width: 70px;
    height: 70px;
    background-position: -153px 0;
}

.img-sale-detail-12 {
    width: 41px;
    height: 41px;
    background-position: -233px -102px;
}

.img-sale-detail-13 {
    width: 41px;
    height: 41px;
    background-position: -102px -194px;
}

.img-sale-detail-14 {
    width: 41px;
    height: 41px;
    background-position: -51px -194px;
}

.img-sale-detail-15 {
    width: 41px;
    height: 41px;
    background-position: -154px -114px;
}

.img-sale-detail-16 {
    width: 41px;
    height: 41px;
    background-position: -233px 0;
}

.img-sale-detail-17 {
    width: 41px;
    height: 41px;
    background-position: -233px -51px;
}

.img-sale-detail-18 {
    width: 41px;
    height: 41px;
    background-position: -153px -194px;
}

.img-sale-detail-19 {
    width: 41px;
    height: 41px;
    background-position: 0 -194px;
}

.img-sale-detail-20 {
    width: 16px;
    height: 16px;
    background-position: -122px -80px;
}

.img-sale-detail-21 {
    width: 16px;
    height: 16px;
    background-position: -205px -114px;
}

.img-sale-detail-22 {
    width: 63px;
    height: 104px;
    background-position: 0 0;
}

.img-sale-detail-23 {
    width: 52px;
    height: 18px;
    background-position: -153px -80px;
}

.img-sale-detail-24 {
    width: 64px;
    height: 64px;
    background-position: -80px -114px;
}

/**
 * @method 清除浮动 %clearfix 
 * @description 清除浮动
 * @example 调用
 * 
 * ```scss
 * div {
 *    @extend %clearfix;
 * }
 * ```
 * 
 * ```css
 * 	div {
	    *zoom: 1;
	}
	div:after {
	    display: block;
	    clear: both;

	    height: 0;

	    content: '\20';
	}
 * ```
 */
.tag-middle, .tag-middle .t-m-l, .tag-middle .t-m-r, .tag-middle .t-m-r .sort, .tag-box-t, .head-search, .s-new li p, .sale-list-item, .tag-head, .t-h-r, .map-wrap, .vil-head, .vil-box, .v-b-r {
    *zoom: 1;
}

.tag-middle:after, .tag-middle .t-m-l:after, .tag-middle .t-m-r:after, .tag-middle .t-m-r .sort:after, .tag-box-t:after, .head-search:after, .s-new li p:after, .sale-list-item:after, .tag-head:after, .t-h-r:after, .map-wrap:after, .vil-head:after, .vil-box:after, .v-b-r: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;
	}
 * ```
 */
.sale-item-text h3 {
    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: #e43;
}

.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: #e43;
}

.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;
}

/* tit */
.main {
    float: left;
    width: 930px;
}

.vil-head {
    border-bottom: 2px solid #e43;
}

.vil-head h2 {
    float: left;
    padding: 0 20px;
    height: 44px;
    line-height: 46px;
    color: #fff;
    background: #e43;
}

.vil-head .sort {
    margin-top: 8px;
}

.vil-box {
    padding: 26px 0 30px 0;
    border-bottom: 1px solid #ccc;
}

.vil-box:hover {
    background: #fafafa;
}

.v-b-l {
    float: left;
}

.v-b-l img {
    float: left;
    width: 160px;
    height: 110px;
    margin-top: 4px;
}

.v-b-l .text {
    margin-left: 190px;
    font-size: 14px;
    color: #333;
}

.v-b-l .text h3 {
    line-height: 32px;
    font-weight: 700;
}

.v-b-l .text p {
    line-height: 28px;
}

.v-b-l .text .num {
    color: #f50;
}

.v-b-l .text i {
    vertical-align: -2px;
}

.v-b-r {
    float: right;
}

.v-b-r-l {
    float: left;
    line-height: 34px;
    font-size: 14px;
    color: #333;
}

.v-b-r-l span {
    font-size: 16px;
    font-family: georgia;
}

.v-b-r-l i {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 2px;
    font-size: 13px;
    color: #fff;
}

.v-b-r-l .shou {
    background: #f06d07;
}

.v-b-r-l .zu {
    background: #2d99d6;
}

.margin {
    margin: 0 28px 0 46px;
}

#zst {
    height: 200px;
}

.lptit-wrap {
    border-radius: 5px;
}

.lptit h1 {
    font: 27px/40px Microsoft yahei;
    height: 40px;
}

.lptit .logo {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #ddd;
    float: left;
    margin-right: 10px;
    padding: 2px;
}

.lptit i {
    color: #e43;
}

.xqcollect:hover {
    text-decoration: none;
    color: #e43;
}

/* nav */
.lp-gz {
    height: 40px;
    line-height: 40px;
}

.lp-gz a {
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
}

.lp-gz i {
    margin-right: 3px;
    vertical-align: -3px;
}

/* 图集 */
.focus {
    padding-bottom: 30px;
    width: 1200px;
}

.picshowtxt-h3 {
    border-bottom: 2px solid #e6e6e6;
    color: #fff;
    display: block;
    font-size: 26px;
    line-height: 2;
    margin-bottom: 10px;
    margin-left: 0;
    padding-top: 20px;
    text-align: center;
    width: 1200px;
}

/* 详情 */
.bdrs {
    border-radius: 5px;
}

.xq-thumb {
    /*background: transparent url("../images/sale/bg_1.gif") no-repeat scroll 0 0;*/
    height: 439px;
    padding: 6px 0 0 8px;
    width: 480px;
}

.xq-zs .item1 {
    background: transparent url("../images/sale/Broker_Area_25.gif") no-repeat scroll 0 3px;
    padding: 0 0 0 20px;
}

.xq-zs .item2 {
    background: transparent url("../images/sale/zgdj.gif") no-repeat scroll 0 3px;
    padding: 0 0 0 20px;
}

.xq-zs .item3 {
    background: transparent url("../images/sale/zddj.gif") no-repeat scroll 0 3px;
    padding: 0 0 0 20px;
}

.xq-d-body {
    width: 930px;
}

.lp-coltit {
    line-height: 28px;
    overflow: hidden;
    padding: 20px 0 10px;
}

.lp-coltit h3 {
    float: left;
    font-size: 22px;
    padding: 0 5px;
}

.lp-coltit .more {
    color: #999;
    float: right;
    font-size: 14px;
}

.lp-coltit .more a {
    color: #999;
    margin: 0 5px;
}

.lp-coltit span {
    cursor: pointer;
}

.lp-coltit span.act {
    color: #327acf;
    padding-left: 10px;
}

.lp-coltit .tip {
    color: #797979;
    float: right;
}

.lp-coltit .tip span {
    float: left;
    margin-right: 5px;
}

.lp-coltit .tip i {
    background: #3393f5 none repeat scroll 0 0;
    border-radius: 50%;
    float: left;
    height: 12px;
    margin: 5px 5px 0 0;
    overflow: hidden;
    vertical-align: top;
    width: 12px;
}

.lp-coltit .tip .ico2 {
    background: #fb841f none repeat scroll 0 0;
}

.lp-coltit .tip .ico3 {
    background: #a9a9aa none repeat scroll 0 0;
}

.lp-coltit .btn1 {
    background: #f97822 none repeat scroll 0 0;
    border-radius: 2px;
    color: #fff;
    padding: 0 15px;
}

.lp-coltit .btn1:hover {
    opacity: 0.9;
    text-decoration: none;
}

.xqxq {
    padding: 0 30px;
}

.lp-jbcs {
    width: 870px;
    position: relative;
}

.jgqk {
    background: #fff;
    width: 190px;
    position: absolute;
    right: 0;
    top: 0;
}

.jgqk div {
    height: 70px;
    margin-bottom: 10px;
}

.jgqk p {
    padding-top: 12px;
}

.jgqk i {
    margin-right: 10px;
    float: left;
}

.lp-jbcs li {
    border-top: 1px solid #fff;
    float: left;
    font-size: 14px;
    line-height: 2;
    width: 50%;
}

.lp-jbcs li.wb {
    width: 100%;
}

.lp-jbcs span {
    background: #fafafa none repeat scroll 0 0;
    color: #666;
    display: inline-block;
    margin-right: 10px;
    padding: 4px 10px 4px 0;
    text-align: right;
    width: 90px;
}

.lp-jbcs i {
    color: #f60;
    font-size: 20px;
}

.esfylist {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #ddd #fff #fff;
    border-image: none;
    border-style: solid;
    border-width: 1px;
    margin-top: -1px;
    overflow: hidden;
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

.esffirst {
    border-top: 0 none;
}

.esfylist:hover {
    background: #eef6fd;
}

.esfylist .chk {
    float: left;
    width: 35px;
}

.esfylist .chk label {
    background: #eef6fd none repeat scroll 0 0;
    display: block;
    height: 74px;
    line-height: 18px;
    margin-left: 5px;
    padding: 23px 2px 0;
    text-align: center;
    width: 20px;
}

.esfylist .chk input {
    height: 13px;
    margin-bottom: 5px;
    width: 13px;
}

.esfylist .pic {
    float: left;
    width: 135px;
}

.esfylist .pic img {
    border: 1px solid #ccc;
    padding: 2px;
}

.esfylist .info {
    float: left;
    width: 350px;
}

.esfylist .info em,
.esfylist .info strong {
    display: block;
    height: 24px;
    line-height: 24px;
    overflow: hidden;
}

.esfylist .info strong {
    font-size: 14px;
}

.esfylist .info strong a {
    float: left;
}

.esfylist .info span a {
    color: #0053df;
}

.esfylist .info img {
    vertical-align: middle;
}

.esfylist .info .icons {
    margin-top: 3px;
    position: absolute;
    width: 80px;
}

.esfylist .info .icon,
.esfylist .info .icon2 {
    background: #c00 none repeat scroll 0 0;
    float: left;
    font-size: 12px;
    height: 16px;
    margin-left: 5px;
    width: 32px;
}

.esfylist .info .icon i,
.esfylist .info .icon2 i {
    background: #c00 none repeat scroll 0 0;
    color: #fff;
    display: block;
    height: 14px;
    line-height: 14px;
    margin: 1px -1px;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 34px;
}

.esfylist .info .icon2,
.esfylist .info .icon2 i {
    background: #95b722 none repeat scroll 0 0;
}

.esfylist span {
    color: #666;
}

.esfylist .info2 {
    float: left;
    line-height: 90px;
    text-align: center;
    width: 78px;
}

.esfylist .info3 {
    display: inline;
    float: right;
    margin-right: 10px;
    padding-top: 22px;
    text-align: center;
    width: 120px;
}

.esfylist .info3 i,
.esfylist .info3 em {
    display: block;
    height: 24px;
    line-height: 24px;
    overflow: hidden;
    width: 120px;
}

.esfylist .info3 em {
    color: #c00;
}

.esfylist .info3 em {
    font-family: arial;
    font-size: 18px;
    font-weight: bold;
}

.esfylist .fy {
    padding-left: 10px;
}

.noinfo {
    color: #ccc;
    font: 20px/200px "Microsoft YaHei";
    height: 200px;
    text-align: center;
}

.noinfo span,
.noinfo a {
    color: #c00;
}

.xiaoqu-share {
    float: none !important;
    padding-left: 20px !important;
    color: #999 !important;
    font-family: '微软雅黑' !important;
    font-size: 14px !important;
    background-position: 3px 3px !important;
}

.door-sale .tag {
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    padding: 1px 6px;
    position: absolute;
    left: 0;
    top: 20px;
}

.door-sale .tag.on-sale {
    background: #f60;
}

.door-sale .tag.dis-sale {
    background: #aaa;
}

.door-sale .tag.on-sale-114 {
    background-color: #06a897;
}

.door-sale .tag.on-sale-115 {
    background-color: #1cbaff;
}

.door-sale .tag.on-sale-116 {
    background-color: #f60;
}

.door-sale .tag.on-sale-117 {
    background-color: #ce9b86;
}

.door-sale .tag.on-sale-118 {
    background-color: #afafaf;
}

.door-sale .tag.on-sale-159 {
    background-color: #e43;
}

.layboxA {
    float: none;
    width: 100%;
}

.layboxA .s-new {
    height: 215px;
    width: 1178px;
    padding: 20px 0 12px 20px;
}

.layboxA .s-new li {
    float: left;
    width: 235px;
    overflow: hidden;
}

.layboxA .s-new li .name {
    float: none;
    width: 100%;
}

.layboxA .s-new li p {
    width: 200px;
    overflow: hidden;
}

.layboxA .s-new .s-title {
    margin-top: 10px;
}

.saledealcon .dealtit {
    height: 65px;
    font-size: 18px;
    font-weight: bold;
    line-height: 65px;
}

.saledealcon .dealtabnav {
    height: 50px;
    border-top: 1px solid #eeeeee;
    background: #fafafa;
}

.saledealcon .dealtabnav a {
    color: #333;
    padding: 10px 25px;
    float: left;
}

.saledealcon .dealtabnav a.act {
    font-weight: bold;
    border-bottom: 3px solid #de3438;
}

.saledealcon .dealcon i {
    display: block;
    float: left;
}

.saledealcon .dealcon dt {
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    border-bottom: 1px dashed #e2e2e2;
    text-align: center;
}

.saledealcon .dealcon dd {
    border-bottom: 1px dashed #e2e2e2;
    height: 105px;
}

.saledealcon .dealcon dd .tab2, .saledealcon .dealcon dd .tab3, .saledealcon .dealcon dd .tab4, .saledealcon .dealcon dd .tab5, .saledealcon .dealcon dd .tab6 {
    line-height: 105px;
    text-align: center;
}

.saledealcon .dealcon .tucon {
    padding-top: 15px;
}

.saledealcon .dealcon .tucon .tu {
    width: 100px;
    overflow: hidden;
}

.saledealcon .dealcon .tucon .fanginfo {
    margin-left: 8px;
}

.saledealcon .dealcon .tucon .fanginfo p {
    line-height: 22px;
    font-size: 13px;
}

.saledealcon .dealcon .tucon .fanginfo p a {
    font-weight: bold;
}

.saledealcon .dealcon .tab1 {
    width: 225px;
}

.saledealcon .dealcon .tab2 {
    width: 196px;
}

.saledealcon .dealcon .tab3 {
    width: 196px;
}

.saledealcon .dealcon .tab4 {
    width: 194px;
}

.saledealcon .dealcon .tab5 {
    width: 196px;
}

.saledealcon .dealcon .tab6 {
    width: 193px;
}


/*小区头部改动*/
.lpm-s6 {
    float: left;
    width: 500px;
    margin-left: 30px;
}

.lpm-s6-1 {
    width: 499px;
    height: 40px;
    position: relative;
    margin: 0;
    overflow: hidden;
}

.lpm-s6-2 {
    float: left;
    height: 40px;
    line-height: 40px;
}

.lpm-s6-3 {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    font-size: 24px;
    color: #FF6263;
    margin: 0 6px 8px 0;
    font-weight: normal;
    max-width: 310px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}

.lpm-s6-4, .lpm-s6-5 {
    width: 12px;
    height: 12px;
    display: block;
    margin: 15px 0 0 10px;
    float: left;
    padding: 5px;
}

.lpm-s6-4 {
    background-position: 5px -233px;
}

.lpm-s6-5 {
    background-position: 5px -262px;
}

.lpm-s6-btn {
    padding: 1px 6px 1px 24px;
    color: #869099;
    font-size: 12px;
    display: inline-block;
    height: 20px;
    line-height: 20px;
}

.lpm-s6-6 {
    background-position: 4px -287px;
    float: left;
    margin: 10px 0 0 8px;
}

.lpm-s6-6:hover {
    background-position: 3px -288px;
}

.lpm-s6-6-1 {
    background-position: 4px -285px;
    float: left;
    margin: 0 5px 0 0;
}

.lpm-s6-6-1:hover {
    background-position: 3px -286px;
}

.lpm-s6-btn:hover {
    background-color: #f4f4f4;
    color: #869099;
    border: 1px solid #eee;
    padding: 0 5px 0 23px;
}

.lpm-s6-7, .mxlpm {
    background-position: 4px -312px;
    color: #4da635;
    float: right;
    margin: 12px 0 0;
}

.lpm-s6-7:hover, .mxlpm:hover {
    background-color: #edf6ea;
    color: #4da635;
    border: #4da635 1px solid;
    background-position: 3px -313px;
}

.ztkjtxt, .ztkftxt {
    line-height: 70px;
    overflow: hidden;
    color: #FF6263;
    background-position: 10px -130px;
    padding: 0 0 0 60px;
    font-size: 16px;
}

.zchuibutton {
    position: absolute;
    top: 19px;
    right: 15px;
    display: block;
    background: #FF6263;
    color: #fff;
    width: 80px;
    height: 30px;
    line-height: 30px;
    border-radius: 2px;
    font-size: 14px;
    text-align: center;
}

.zchuibutton:hover {
    color: #fff;
}

.ztkftxt {
    background-position: 10px 22px;
}

.newtuan {
    display: block;
    width: 455px;
    height: 70px;
    background-position: 10px -52px;
    padding: 0 0 0 45px;
}

.zctgcont {
    position: relative;
}

.lpm-s7{
    width: 500px;
    height: 70px;
    background: #FEEFEF;
    margin-top: 13px;
    position: relative;
}

.lpm-s7-1{
    font-size: 16px;
    padding: 15px 0 0 15px;
    line-height: 20px;
    height: 20px;
}

.lpm-s7-1 span.fl{
    width: 248px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.orange{
    color: #FF6263;
}

.zctgcont .lpm-s7 {
    height: 48px;
    margin-top: 5px;
}

.zctgcont .ztkjtxt, .zctgcont .ztkftxt {
    line-height: 48px;
}

.zctgcont .zchuibutton {
    top: 8px;
}

.zctgcont div.detail_content {
    margin: 0 110px 0 0;
    line-height: 20px;
}

.zctgcont span.deatil_s01 {
    line-height: 20px;
}

.zctgcont .ztkftxt {
    background-position: 10px 12px;
}

.zctgcont .newtuan {
    background-position: 10px -62px;
    height: 48px;
}

.zctgcont .marone {
    margin-top: 1px;
    position: relative
}

.zctgcont .white_border {
    top: 17px;
}

.zctgcont .detail_content_text {
    top: 19px;
}

.liua, .liuc, .liud{
    color: #11a43c;
    background-position: 4px -286px;
    border: #11a43c 1px solid;
    padding: 0 5px 0 22px;
    border-radius: 2px;
    margin-top: 6px;
}
.icons{
    background-image: url(../images/all.png);
    background-repeat: no-repeat;
}

.zchui{
    background: url(../images/zchui_icon.png) no-repeat;
}
.mini-program{
    border-radius: 2px;
    height: 80px;
    background: #F7F7F7;
    position: relative;
    padding-top: 24px;
    padding-left: 15px;
}
.mini-program .lab{
    font-size: 14px;
    color: #3b4144;
}
.mini-program .tel{
    color: #FF6263;
    font-size: 28px;
    margin-top: 1px;
    font-weight: 600;
}
.mini-program .tel span{
    font-size: 16px;
    margin-left: 6px;
    margin-right: 6px;
    vertical-align: middle;
    font-weight: normal;
}
.mini-program .img{
    position: absolute;
    top:-2px;
    right: 20px;
    font-size: 0;
}
.mini-program .img img{
    width: 110px;
}
.mini-program .img span{
    font-size: 14px;
    color:#3b4144;
    display: inline-block;
    *display: inline;
    *zoom:1;
    width: 14px;
    margin-left: 10px;
    font-weight: 600;
    padding-top: 12px;
}
.send-mess .mt15{margin-top: 20px;}
.check-sale-telphone{
    cursor: pointer;
}
/*# sourceMappingURL=xiaoqu.css.map */
