@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';
	}
 * ```
 */
.ask-list-item, .map-wrap, .advidser-arrow, .container {
    *zoom: 1;
}

.ask-list-item:after, .map-wrap:after, .advidser-arrow:after, .container: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 透明层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 %>
*/
/**
 * @method 清除浮动 %clearfix 
 * @description 清除浮动
 * @example 调用
 * 
 * ```scss
 * div {
 *    @extend %clearfix;
 * }
 * ```
 * 
 * ```css
 * 	div {
	    *zoom: 1;
	}
	div:after {
	    display: block;
	    clear: both;

	    height: 0;

	    content: '\20';
	}
 * ```
 */
.ask-list-item, .map-wrap, .advidser-arrow, .container {
    *zoom: 1;
}

.ask-list-item:after, .map-wrap:after, .advidser-arrow:after, .container: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 透明层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-detail.css
 * @author xying
 * @date 2016-8-5
 * @dec top toolbar popular search terms containing the search and  for lp
 */
/*!
 * @name business-detail
 * @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 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;
}

/*
bread
*/
.bread .time,
.bread .pipe {
    color: #999;
}

.bread span,
.bread a {
    color: #333;
}

.bread i,
.bread a i {
    color: #f00;
}

.bread i {
    vertical-align: middle;
}

/*
title
*/
.lp-detail-tit {
    height: 110px;
    position: relative;
}

.lp-detail-tit h1 {
    font-size: 28px;
    font-weight: 100;
    line-height: 2;
    margin-bottom: 5px;
}

.lp-detail-tit .tag span {
    border: 1px solid #ccc;
    border-color: #ccc;
    color: #999;
    margin-right: 5px;
    padding: 3px 10px;
}

.ewmurl {
    position: absolute;
    top: 0;
    right: 0;
}

.ewmurl .elist {
    float: right;
    text-align: center;
}

.ewmurl .elist li {
    display: inline;
    float: left;
    margin-left: 15px;
}

.ewmurl .elist img {
    border: 1px solid #ddd;
    height: 80px;
    width: 80px;
}

.ewmurl .elist span {
    display: block;
    font-size: 12px;
    line-height: 21px;
}

.ewmurl .qqqun {
    float: right;
    margin-right: -10px;
    margin-top: 20px;
    width: 100px;
}

.ewmurl .qqqun img {
    margin-bottom: 5px;
}

/*!
 * @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=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;
}

@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.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-6:before {
    content: "\EA34";
}

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

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

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

@font-face {
    font-family: "ico";
    font-weight: normal;
    font-style: normal;
    src: url("../fonts/ico.eot");
    src: url("../fonts/ico.eot?#iefix") format("embedded-opentype"), url("../fonts/ico.woff") format("woff");
}

[class^="font-ico-"],
[class*=" font-ico-"] {
    font-family: "ico";
    -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-ico-22:before {
    content: "\EA01";
}

.font-ico-28:before {
    content: "\EA02";
}

.font-ico-arwl:before {
    content: "\EA03";
}

.font-ico-arwr:before {
    content: "\EA04";
}

.font-ico-plus:before {
    content: "\EA05";
}

.font-ico-plus0:before {
    content: "\EA06";
}

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

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

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

.list-item a {
    color: #666;
    text-decoration: none;
}

.list-item a:hover {
    color: #f00;
}

.list-item .pic {
    margin-left: 20px;
    margin-right: 20px;
    width: 180px;
    position: relative;
}

.list-item .pic img {
    height: 135px;
    width: 180px;
}

.list-item .pic i {
    border-radius: 3px;
    background: #e43;
    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 .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;
}

.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-115 {
    background-color: #1cbaff;
}

.list-item .info .tag.on-sale-116 {
    background-color: #f60;
}

.list-item .info .tag.on-sale-117 {
    background-color: #ce9b86;
}

.list-item .info .tag.on-sale-118 {
    background-color: #afafaf;
}

.list-item .info .tag.on-sale-159 {
    background-color: #e43;
}

.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: #e43;
    border: 1px solid #e43;
    color: #fff;
    text-align: center;
}

.list-item .other .fill-btn:hover {
    background: #e43;
    border-color: #e43;
}

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

/*!
 * @name tjf-list.css
 * @author xying
 * @date 2016-9-7
 * @dec common teijiafang list
 */
.list-item .pic {
    height: 138px;
    margin-left: 0;
    width: 180px;
    margin-right: 10px;
}

.list-item .pic img {
    height: 138px;
    width: 180px;
}

.list-item .info {
    width: 570px;
}

.list-item .info h3 {
    line-height: 27px;
    margin-bottom: 10px;
}

.list-item .info p {
    color: #666;
    height: 30px;
    line-height: 30px;
}

.list-item .tit {
    color: #333;
    font-size: 24px;
}

.list-item .tj-tag span {
    border: 1px solid #ccc;
    color: #666;
    display: inline-block;
    line-height: 20px;
    height: 20px;
    margin-right: 2px;
    overflow: hidden;
    padding: 0 5px;
}

.list-item .other {
    margin-right: 10px;
    /*width: 140px;*/
}

.list-item .other .yj {
    margin-top: 21px;
    text-decoration: line-through;
}

.zd {
    border: 1px solid #e43;
    cursor: default;
    margin-top: 4px;
    margin-right: 5px;
    user-select: none;
}

.zd div {
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    text-align: center;
    width: 28px;
}

.zd div.fr {
    background: #e43;
}

.ask-list-item {
    padding-top: 0;
    height: 52px;
    width: 100%;
    line-height: 52px;
    border-bottom: 1px dashed #ccc;
    overflow: hidden;
}

.ask-list-item .icon {
    font-size: 12px;
    font-family: simsun;
    color: #fff;
    padding: 3px 5px;
    border-radius: 2px;
    margin-right: 8px;
}

.ask-list-item .icon1 {
    background: #ff7400;
}

.ask-list-item .icon2 {
    background: #f71900;
}

.ask-list-item .icon3 {
    background: #b3df27;
}

.ask-list-item .icon4 {
    background: #3ac1eb;
}

.ask-item-left {
    float: left;
    font-size: 15px;
    text-indent: 10px;
    color: #353535;
}

.ask-item-left i {
    font-size: 10px;
    color: #aaa;
}

.ask-item-text {
    width: 400px;
    overflow: hidden;
    margin-right: 30px;
}

.ask-item-right {
    float: right;
    font-size: 14px;
    color: #888;
    margin-right: 20px;
}

.ask-item-right .num {
    color: #f00;
}

/*!
 * @name newslist.css
 * @author xying
 * @date 2016-9-8
 * @dec common news list
 */
.xwzxlist {
    padding: 35px 105px 35px 0;
    border-bottom: 1px dashed #eee;
}

.xwzxlist .listl {
    float: left;
    margin-right: 30px;
    width: 180px;
    height: 120px;
}

.xwzxlist .listl img {
    transition: transform .5s ease-in;
}

.xwzxlist .listl:hover img {
    transform: scale(1.1);
}

.xwzxlist h3 {
    font-size: 24px;
    line-height: 24px;
    height: 26px;
    color: #333;
    overflow: hidden;
}

.xwzxlist p {
    line-height: 24px;
    font-size: 14px;
    color: #666;
    padding-top: 10px;
}

.xwzxlist p a {
    font-size: 12px;
    color: #e43;
}

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

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

	    height: 0;

	    content: '\20';
	}
 * ```
 */
.ask-list-item, .map-wrap, .advidser-arrow, .container {
    *zoom: 1;
}

.ask-list-item:after, .map-wrap:after, .advidser-arrow:after, .container: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 透明层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 #ddd;
    border-top: 0;
    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;
    z-index: 900;
}

.moneybtn {
    width: 182px;
    height: 205px;
    background: url(../images/hb/moneyBtn_11.png) no-repeat;
    position: fixed;
    bottom: 300px;
    right: 10px;
    z-index: 1000000;
}

.moneybtn a {
    width: 182px;
    height: 205px;
    position: absolute;
}

.getMoneybtn {
    width: 87px;
    height: 32px;
    cursor: pointer;
    margin: 3px 0 0 47px;
}

.hbp1 {
    font-size: 16px;
    color: #ff3300;
    margin-top: 101px;
    margin-left: 13px;
}

.hbp2 {
    font-size: 12px;
    color: #ff3300;
    margin-left: 30px;
}

.hbp1 span {
    font-size: 24px;
    font-weight: bold;
}

/*闈炴笭閬撳箍鍛婃ゼ鐩樻悳鎴跨孩鍖�*/
.popCont1 .pt_box {
    font-size: 30px;
    line-height: 30px;
    top: 105px;
}

.pt_box_btn {
    margin: 60px 0 0 70px !important;
}

.pt_box_text p {
    padding-top: 20px;
}

a:hover {
    text-decoration: none;
}

.by_a1 {
    text-decoration: none;
    color: #FFF;
}

.by_a1:hover {
    text-decoration: none;
    color: #FFF;
}

.by_a2 {
    text-decoration: none;
    color: #e83532;
}

.by_a2:hover {
    text-decoration: none;
    color: #e83532;
}

.fwhite .by_btn {
    margin: 60px auto 0 !important;
}

.moneybtn a:hover {
    text-decoration: none;
}

.hbbg p {
    text-align: center;
}

.detailPopClose {
    width: 30px;
    height: 30px;
    background: url(../images/hb/tc_close.png) left center no-repeat;
    position: absolute;
    top: -30px;
    right: 0;
}

.detailPopClose:hover {
    background-position: right center;
    cursor: pointer;
}

.popmask {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.8;
    filter: alpha(opacity=80);
    display: none;
    z-index: 1000001;
}

.monyePop {
    width: 1200px;
    height: 700px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -600px;
    margin-top: -350px;
    display: none;
    z-index: 1000002;
}

.popHead .moneyNum {
    font-size: 30px;
    font-weight: bold;
    margin: 0 2px;
}

.popHead .moneyNumPos {
    position: absolute;
    right: 332px;
    top: 126px;
    font-size: 18px;
    font-weight: bold;
}

.monyePop .headBanner {
    margin-left: 212px;
}

.popCloseBtn {
    width: 66px;
    height: 66px;
    background: url(../images/hb/popclose.jpg) no-repeat;
    position: absolute;
    top: 155px;
    right: 150px;
}

.popCont {
    margin: -36px auto 0;
    border-radius: 6px;
    background: #FFF;
}

.popRightPic {
    position: absolute;
    right: -70px;
    top: -46px;
}

.popCont1 {
    width: 680px;
    padding: 53px 0;
}

.popCont1 .hbbg {
    width: 453px;
    height: 230px;
    background: url(../images/hb/bigMoney.png) no-repeat;
    margin-left: 120px;
    position: relative;
}

.popCont1 .moneyNum {
    position: absolute;
    top: 116px;
    right: 307px;
    font-size: 34px;
    width: 112px;
    text-align: center;
}

.popCont1 .menNum {
    width: 85px;
    position: absolute;
    top: 155px;
    right: 317px;
    font-size: 18px;
    line-height: 22px;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.popCont1 .takebtn {
    font-size: 16px;
    width: 170px;
    height: 60px;
    line-height: 60px;
    font-size: 30px;
    background: #ffeb01;
    color: #e83532;
    text-align: center;
    border-radius: 5px;
    display: block;
    margin: 45px 0 0 70px;
}

.takebtn:hover {
    text-decoration: none;
    color: #e83532;
}

.popCont1 .hbbg .right {
    float: right;
    width: 311px;
    font-size: 28px;
    line-height: 40px;
    margin-top: 20px;
    text-align: center;
    margin-right: 0;
}

.popCont2 {
    width: 910px;
    padding: 29px 0;
    float: left;
    margin-left: 141px;
}

.popCont2 .hbbg {
    width: 340px;
    height: 173px;
    background: url(../images/hb/money.png) no-repeat;
    margin-left: 35px;
}

.popCont2 .moneyNum {
    position: absolute;
    top: 82px;
    right: 224px;
    font-size: 22px;
    width: 98px;
    text-align: center;
}

.popCont2 .menNum {
    width: 85px;
    position: absolute;
    top: 110px;
    right: 235px;
    font-size: 14px;
    line-height: 18px;
    opacity: 0.8;
    filter: alpha(opacity=80);
    text-align: center;
}

.popCont2 .takebtn {
    font-size: 16px;
    width: 126px;
    height: 44px;
    line-height: 44px;
    font-size: 22px;
    background: #ffeb01;
    color: #e83532;
    text-align: center;
    border-radius: 5px;
    display: block;
    margin: 36px 0 0 50px;
    margin-left: 0px;
}

.popCont2 .hbbg .right {
    float: right;
    width: 226px;
    font-size: 20px;
    line-height: 30px;
    margin-top: 15px;
    text-align: center;
    margin-right: 0;
}

.popCont3 {
    width: 1150px;
    height: 210px;
    padding: 30px 0 33px 50px;
    float: left;
    margin-left: 0;
}

.needScrolly {
    width: 1150px;
    height: 210px;
    overflow-y: auto;
}

.popCont3 .hbbg {
    margin: 0 30px 30px 0;
}

.popRightPic1 {
    position: absolute;
    right: 4px;
    top: -35px;
}

.popRightPic2 {
    position: absolute;
    right: -73px;
    top: 175px;
}

.hide {
    display: none;
}

.fred1 {
    color: #e83532;
}

.fred2 {
    color: #9b1b0a;
}

.fred3 {
    color: #ef412f;
}

.fwhite {
    color: #FFF;
}

.fyellow {
    color: #fff600;
}

.w1150 {
    margin: 0 auto;
    width: 1150px;
}

.moneyclose {
    width: 70px;
    height: 65px;
    background: url(../images/hogbao.png) no-repeat 0 0;
    position: fixed;
    z-index: 1000000;
    right: 10px;
    bottom: 300px;
    display: none;
}

/*!
* @name <%= name %>
* @author <%= author %>
* @date <%= date %>
*/
.advidser-line {
    height: 1px;
    width: 100%;
    border-bottom: 2px solid #eee;
}

.advidser-text {
    float: left;
    height: 65px;
    line-height: 65px;
    font-size: 16px;
    margin-right: 10px;
}

.advidser-list {
    min-height: 65px;
    width: 550px;
    float: left;
    position: relative;
}

.advidser-list li {
    float: left;
    width: 50px;
    height: 65px;
    position: relative;
    margin-top: 5px;
}

.advidser-list li.hover .advidser-more {
    display: block;
}

.advidser-next {
    height: 65px;
    width: 20px;
    position: absolute;
    right: -20px;
    top: 0;
    line-height: 65px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
}

.advidser-img {
    border: 1px solid #eee;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
}

.advidser-name {
    text-align: center;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    font-size: 12px;
}

.advidser-more {
    display: none;
    position: absolute;
    width: 210px;
    height: 110px;
    border: 4px solid #eee;
    background: #fff;
    z-index: 100;
    top: -126px;
    left: 50%;
    margin-left: -105px;
}

.advidser-more-content {
    padding: 10px 15px 0;
    height: 73px;
}

.advidser-more dt img {
    border: 1px solid #eee;
    padding: 1px;
    width: 45px;
    height: 60px;
    float: left;
    margin-right: 15px;
}

.advidser-more-footer {
    border-top: 1px solid #eee;
    text-align: center;
    height: 28px;
    line-height: 28px;
}

.advidser-more-footer i {
    vertical-align: middle;
}

.advidser-arrow {
    overflow: hidden;
}

.advidser-arrow .arrow1 {
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 8px;
    border-top-color: #fff;
    z-index: 999;
    position: absolute;
    bottom: -13px;
    left: 44%;
}

.advidser-arrow .arrow2 {
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 8px;
    border-top-color: #eee;
    z-index: 990;
    position: absolute;
    bottom: -18px;
    left: 44%;
}

.lp-bdsm {
    display: inline-block;
}

.lp-bdsm-content {
    display: none;
    background: #fff;
    border: 4px solid #eee;
    width: 300px;
    padding: 10px;
    font-size: 12px;
    line-height: 20px;
    position: relative;
}

.lp-bdsm .touch .touch1 {
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 8px;
    border-bottom-color: #fff;
    z-index: 999;
    position: absolute;
    top: -14px;
    left: 10%;
}

.lp-bdsm .touch .touch2 {
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 8px;
    border-bottom-color: #eee;
    z-index: 990;
    position: absolute;
    top: -19px;
    left: 10%;
}

.lp-detail-con {
    line-height: 2;
}

.d-body {
    width: 800px;
}

.d-aside {
    width: 380px;
}

.row33 {
    float: left;
    width: 33.33%;
}

.d-zxdt {
    width: 800px;
}

.d-lpdy {
    width: 380px;
}

.bd-gray {
    border-radius: 5px;
}

.min-he {
    min-height: 120px;
}

/*** flash
--------------------- ***/
.flash {
    position: relative;
    *zoom: 1;
}

.flash .big {
    position: relative;
    height: 340px;
    border: 1px solid #ddd;
    background: url(../../../images/common/nopic.gif) no-repeat center #f3f3f3;
}

.flash .big li {
    font-size: 1px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.flash .sml-wrap {
    position: relative;
    overflow: hidden;
    width: 455px;
    margin-top: 3px;
    *zoom: 1;
}

.flash .sml {
    width: 9999px;
}

.flash .sml li {
    float: left;
    margin-right: 3px;
    cursor: pointer;
    text-align: center;
    border: 1px solid #ddd;
    background: #fff;
}

.flash .sml li img {
    opacity: .6;
    filter: alpha(opacity=60);
}

.flash .sml i {
    font-size: 12px;
    line-height: 20px;
    position: relative;
    display: block;
    margin-top: -20px;
    color: #fff;
    background-color: transparent;
    background-color: rgba(0, 0, 0, 0.5);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#80000000, endColorstr=#80000000);
    zoom: 1;
}

.flash .sml .font-lp-15 {
    font-size: 30px;
    position: absolute;
    margin: -65px 0 0 -15px;
    color: #fff;
}

.flash .sml .act {
    border-color: #f97822;
}

.flash .sml .act img {
    opacity: 1;
    filter: alpha(opacity=100);
}

.flash .prev,
.flash .next {
    font-size: 32px;
    line-height: 40px;
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 5px;
    overflow: hidden;
    width: 40px;
    height: 40px;
    margin-top: -50px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    color: #fff;
}

.flash .next {
    right: 5px;
    left: auto;
}

.flash:hover .prev,
.flash:hover .next {
    background: rgba(0, 0, 0, 0.7);
    filter: alpha(opacity=70);
}

:root .flash i {
    filter: none\9;
}

/*** lp-info
--------------------- ***/
.lp-info {
    font-size: 16px;
    line-height: 35px;
    position: relative;
    color: #333;
}

.lp-info .btn {
    vertical-align: middle;
}

.lp-info .btn i {
    font-size: 17px;
    margin-right: 3px;
}

.lp-info dt {
    float: left;
    clear: left;
    color: #666;
}

.lp-info dd.hasdt {
    margin-left: 74px;
}

.lp-info dd {
    margin-left: 0;
    min-height: 35px;
}

.lp-info .pri {
    font-size: 30px;
    display: inline-block;
    vertical-align: middle;
}

.lp-info .btns {
    clear: left;
    margin-bottom: 15px;
}

.lp-info .tel .font-lp-13 {
    font-size: 34px;
    float: left;
    margin-right: 10px;
    padding: 8px;
    color: #e43;
    border: 2px solid #e43;
    border-radius: 5px;
}

.lp-info .tel .tel-info {
    font-family: Arial, sans-serif;
    font-size: 30px;
    margin-bottom: 3px;
    word-wrap: break-word;
}

.lp-info .tel .msg {
    font-size: 12px;
    line-height: 18px;
}

.lp-info .pop {
    position: absolute;
    top: 23px;
    left: 0;
    border: 1px solid #ddd;
    background: #fff;
}

.lp-info .act {
    position: relative;
}

.lp-info .act .pop {
    display: block;
}

/* pop */
.pop-wxgm {
    width: 400px;
}

.pop-wxgm dd {
    margin-left: 60px;
}

.dzst #zst {
    height: 250px;
}

/*** coltit content tab
--------------------- ***/
.lp-coltit {
    line-height: 28px;
    overflow: hidden;
    padding: 20px 0 10px;
    *zoom: 1;
}

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

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

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

.lp-coltit .more a:hover {
    color: #f00;
}

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

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

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

.lp-coltit .tip .ico2 {
    background: #fb841f;
}

.lp-coltit .tip .ico3 {
    background: #a9a9aa;
}

.lp-coltit .btn {
    background: #f97822;
}

.lp-coltit1 {
    height: 57px;
    margin-bottom: 10px;
    background: url(../images/lpxctab.png) repeat-x 0 0;
}

.lp-coltit1 a {
    float: left;
}

.lp-coltit1 .inner {
    line-height: 18px;
    float: left;
    width: 104px;
    height: 50px;
    padding-top: 7px;
    text-align: center;
    background: url(../images/lpxctab.png) no-repeat right -119px;
}

.lp-coltit1 .act {
    background: url(../images/lpxctab.png) no-repeat center -58px;
}

.lp-coltit1 .act .title {
    color: #e43;
}

.lp-coltit3 {
    line-height: 33px;
    height: 33px;
    border-top: 1px solid #ddd;
    background: url(../images/sline.gif) 0 16px repeat-x;
}

.lp-coltit3 h3 {
    font-size: 14px;
    font-weight: bold;
    float: left;
    padding-right: 10px;
    padding-left: 8px;
    color: #327acf;
    background: #fff;
}

.lp-coltit3 h3 a {
    color: #327acf;
}

.lp-content2 li {
    float: left;
    clear: none;
    width: 50%;
    margin-left: -1px;
}

.lp-con1 table {
    border-top: 1px solid #d8d8d8;
    border-left: 1px solid #d8d8d8;
    line-height: 2;
}

.lp-con1 tr:hover {
    background: #eee;
}

.lp-con1 td {
    padding: 5px;
    text-align: center;
    border-right: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}

.lp-con1 td i {
    font-size: 14px;
    margin-left: 3px;
    color: #666;
}

.lp-con1 .bg {
    background: #fafafa;
}

.lp-detail {
    line-height: 30px;
}

.lp-detail dt {
    float: left;
    width: 10%;
    color: #666;
}

.lp-detail dd {
    float: left;
    width: 40%;
    color: #111;
}

.lp-detail .nowrap dd {
    width: 88%;
}

.lp-lsjg-btn {
    margin-top: -1px;
    cursor: pointer;
    text-align: center;
    border: 1px solid #d8d8d8;
    background: #fafafa;
}

.lp-lsjg-btn .btn {
    color: #333;
    background: none;
    border: none;
    padding: 0 4px 0 0;
}

.lp-lsjg-btn .wrap {
    display: inline;
}

.lp-lsjg-btn:hover {
    background: #eee;
}

/* 楼盘动态 */
.d-zxdt .bd-gray {
    height: 258px;
    overflow: hidden;
    position: relative;
}

/* 楼盘订阅 */
.d-lpdy .bd-gray {
    background: #f3f3f3;
}

.d-lpdy .bd-gray .checkbox {
    min-height: auto;
    height: 30px;
}

/*** 妤肩洏鍗拌薄
--------------------- ***/
.search-group .btn {
    float: right;
    margin-left: 10px;
}

.search-group .btn i {
    vertical-align: -2px;
}

.search-group .txt-wrap {
    width: 230px;
}

.search-group .txt {
    border-radius: 5px;
    text-indent: 10px;
    width: 100%;
}

.lp-yx .items a {
    border-radius: 3px;
    display: inline-block;
    color: #fff;
    font-size: 12px;
    float: left;
    height: 28px;
    line-height: 28px;
    overflow: hidden;
    padding: 0 10px;
    width: 90px;
    margin: 0 6px 6px 0;
    text-align: center;
    border: none;
}

/* lp-dianping */
.lp-dp-star {
    padding: 20px 0;
    border-top: 1px solid #ddd;
}

.lp-dp-star ul {
    float: left;
    width: 50%;
}

.point-list li {
    overflow: hidden;
    vertical-align: top;
    *zoom: 1;
}

.point-list span {
    float: left;
    margin-right: 5px;
}

.point-list .per,
.point-list em {
    line-height: 12px;
    float: left;
    overflow: hidden;
    height: 12px;
}

.point-list .per {
    width: 130px;
    margin-top: 9px;
    background: #ddd;
}

.star-list li {
    line-height: 19px;
    clear: none;
    margin-bottom: 5px;
    vertical-align: top;
}

.star-list .star {
    position: relative;
    width: 100px;
    height: 19px;
    margin-right: 5px;
    cursor: pointer;
    background: url(../images/lp/star.png) repeat-x;
}

.star-list .star b {
    line-height: 19px;
    position: absolute;
    top: 0;
    left: 0;
    clear: both;
    height: 19px;
    cursor: pointer;
    transition: width .2s ease;
    background: url(../images/lp/star.png) repeat-x 0 -28px;
}

.star-list .star a {
    line-height: 19px;
    line-height: 100px;
    position: relative;
    float: left;
    overflow: hidden;
    width: 10px;
    height: 19px;
}

.star-list .tip {
    color: #888;
}

.star-list .tip b {
    color: #f00;
}

/*** tlist plist
--------------------- ***/
.lp-tlist {
    margin: 0 15px;
    padding: 10px 0;
    line-height: 2;
}

.lp-tlist li {
    position: relative;
    padding: 5px 0;
    border-bottom: 1px dashed #ddd;
    *zoom: 1;
}

.lp-tlist li:last-child {
    border: none;
}

.lp-tlist h4 {
    line-height: 28px;
    overflow: hidden;
    height: 28px;
    vertical-align: top;
}

.lp-tlist i.dot {
    font-size: 12px;
    position: absolute;
    left: -18px;
    color: #ddd;
}

.lp-tlist .ico08 {
    margin-right: 3px;
}

/* 妤肩洏鍔ㄦ€� */
.lp-tlist2 li {
    overflow: hidden;
    padding: 15px 0;
    border-bottom: 1px dashed #ddd;
    *zoom: 1;
}

.lp-tlist2 li h2 {
    font: bold 16px/26px Microsoft yahei;
    overflow: hidden;
    height: 26px;
    margin-bottom: 5px;
}

.lp-tlist2 li strong {
    font-weight: normal;
    line-height: 24px;
    position: relative;
    float: left;
    margin-right: 10px;
    color: #e43;
}

.lp-tlist2 li span {
    font-size: 12px;
    font-weight: normal;
    width: 140px;
}

.lp-tlist2 li i {
    font-size: 14px;
    margin-right: 3px;
}

.lp-tlist2 p {
    line-height: 22px;
    text-indent: 2em;
    color: #666;
}

.lp-tlist2 a:hover {
    text-decoration: none;
}

.lp-tlist3 {
    padding: 10px;
}

.lp-tlist3 li {
    vertical-align: top;
    *zoom: 1;
}

.lp-tlist3 i {
    font-size: 14px;
    line-height: 28px;
    float: left;
    overflow: hidden;
    height: 28px;
}

.lp-tlist3 .td1 {
    width: 50%;
}

.lp-tlist3 .td2 {
    font-family: Arial, sans-serif;
    width: 29%;
    white-space: nowrap;
}

.lp-tlist3 .td3 {
    width: 20%;
    text-align: right;
}

.lp-tlist6 li {
    font-size: 14px;
    line-height: 40px;
    overflow: hidden;
    height: 40px;
    border-bottom: 1px dashed #e6e6e6;
}

.lp-tlist6 li:last-child {
    border: none;
}

.lp-tlist6 .time {
    font-size: 12px;
    float: right;
    padding-left: 5px;
    color: #999;
}

.lp-plist li {
    float: left;
    width: 184px;
    padding: 20px 16px 20px 33px;
}

.lp-plist li .tag {
    left: 33px;
}

.lp-plist2 li {
    overflow: hidden;
    padding: 5px 0;
    *zoom: 1;
}

.lp-plist2 img {
    float: left;
    margin-right: 8px;
    padding: 1px;
    border: 1px solid #ddd;
}

.lp-plist2 em,
.lp-plist2 span {
    line-height: 24px;
    display: block;
    text-align: left;
}

.home-tools {
    text-align: center;
}

.home-tools a {
    line-height: 25px;
    display: inline-block;
    width: 118px;
    height: 25px;
    margin: 15px 2px;
}

/* tejia-list */
.list-item .info {
    width: 400px;
}

/* yh-list */
.yh-list {
    line-height: 1;
}

.yh-list li {
    position: relative;
    overflow: hidden;
    padding: 10px 5px;
    border-bottom: 1px dashed #e6e6e6;
    *zoom: 1;
}

.yh-list li:last-child {
    border: none;
}

.yh-list .bm-tag {
    font-size: 30px;
    float: left;
    margin-right: 10px;
    padding: 8px;
    color: #f60;
    border: 2px solid #f60;
    border-radius: 3px;
}

.yh-list .kft .bm-tag {
    color: #e43;
    border: 2px solid #e43;
}

.yh-list .bm-btn {
    float: right;
    margin-top: 5px;
}

.yh-list .bm-btn-tg {
    background: #f60;
}

.yh-list h3 {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 10px;
}

.yh-list .count {
    font-size: 16px;
    position: absolute;
    top: 30px;
    left: 900px;
}

/* /extend */
.modal {
    display: none;
}

/* hx-detail */
.hx-detail {
    width: 320px;
}

.hx-detail .line {
    border-bottom: 1px solid #eee;
}

.hx-detail .tel {
    color: #e43;
    font-size: 23px;
    padding-top: 20px;
    text-align: center;
}

.hx-detail-tit {
    height: 30px;
    line-height: 30px;
}

.hx-detail-tit h3 {
    font-size: 22px;
    float: left;
    margin-top: -3px;
    margin-right: 5px;
}

.hx-detail-tit span,
.hx-detail-tit a {
    color: #999;
    font-size: 12px;
}

.hx-detail-tit a {
    margin-left: 5px;
    margin-right: 5px;
}

.hx-detail-info {
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
}

.hx-detail-info .total-price {
    font-size: 28px;
}

.hx-detail-info .jsq,
.hx-detail-info .time {
    color: #999;
    font-size: 14px;
}

.hx-detail-info span {
    color: #e43;
}

.hx-detail-info .fill-btn {
    font-size: 18px;
    height: 45px;
    line-height: 45px;
    text-decoration: none;
    width: 170px;
    background: #e43;
    border: 1px solid #e43;
    color: #fff;
    text-align: center;
}

.hx-detail-info .fill-btn:hover {
    background: #e43;
    border-color: #e43;
}

.sp-color-114 {
    background: #3393F5 !important;
}

.sp-color-114 .sanjiao {
    border-color: #3393F5 transparent transparent transparent !important;
}

.sp-color-115 {
    background: #0EBF8F !important;
}

.sp-color-115 .sanjiao {
    border-color: #0EBF8F transparent transparent transparent !important;
}

.sp-color-116 {
    background: #fb841f !important;
}

.sp-color-116 .sanjiao {
    border-color: #fb841f transparent transparent transparent !important;
}

.sp-color-117 {
    background: #D00404 !important;
}

.sp-color-117 .sanjiao {
    border-color: #D00404 transparent transparent transparent !important;
}

.sp-color-118 {
    background: #a9a9aa !important;
}

.sp-color-118 .sanjiao {
    border-color: #a9a9aa transparent transparent transparent !important;
}

.sp-i {
    display: inline-block;
    vertical-align: middle;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    margin: 0 2px 0 5px;
}

.shapan-inner {
    overflow: hidden;
    background: #ddd;
    height: 380px;
    position: relative;
}

.shapan-drag {
    position: absolute;
    z-index: 999 !important;
}

.sha-dot {
    line-height: 26px;
    left: 0;
    top: 0;
    position: absolute;
    cursor: pointer;
    padding: 0 10px;
    white-space: nowrap;
    color: #fff;
    border-radius: 2px;
    outline: none;
    background: #fb841f;
}

.sha-dot:hover {
    text-decoration: none;
    color: #fff;
}

.sha-dot .sanjiao {
    position: absolute;
    top: 26px;
    left: 5px;
    overflow: hidden;
    width: 0;
    height: 0;
    border-width: 10px 10px 10px 0;
    border-style: solid dashed dashed dashed;
    border-color: #fb841f transparent transparent transparent;
}

.shapan-info-small {
    cursor: pointer;
    display: none;
    position: absolute;
    right: 10px;
    top: 10px;
    border: 1px solid #ccc;
    padding: 10px 20px;
    background: #fff;
}

.shapan-info {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 99999;
    padding: 10px;
    width: 250px;
    height: 300px;
    display: block;
    overflow-y: auto;
    border: 1px solid #ccc;
    background: #fff;
    color: #666;
}

.shapan-info h5 {
    font-size: 18px;
}

.shapan-info .shapan-close {
    float: right;
    cursor: pointer;
}

.shapan-title {
    background: #e6f0f7;
    text-indent: 10px;
    cursor: pointer;
    margin: 5px 0;
}

.shapan-box {
    text-indent: 10px;
    display: none;
}

.shapan-box i {
    font-size: 12px;
    vertical-align: top;
}

.share-box {
    padding: 0;
    display: inline-block;
}

.share-box .share-a {
    padding: 0 12px !important;
    line-height: 32px !important;
    height: 32px !important;
    margin: 0 !important;
    background: none !important;
    color: #fff !important;
    font-size: 14px !important;
}

.share-box .share-a:hover {
    text-decoration: none;
}

.yx-1 {
    background: #F27C78 !important;
}

.yx-2 {
    background: #EFBE23 !important;
}

.yx-3 {
    background: #8DCA48 !important;
}

.yx-4 {
    background: #8BD3E9 !important;
}

.yx-5 {
    background: #6BB6D6 !important;
}

.yx-0 {
    background: #BDA3E2 !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;
}

.lptit {
    position: relative;
    padding: 12px 200px 12px 0;
}

.lptit .title {
    font: 27px Microsoft yahei;
    margin-bottom: 5px;
}

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

.lptit span {
    margin-right: 5px;
    padding: 2px 10px;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 2px;
}

.lptit .ewmurl {
    position: absolute;
    top: 10px;
    right: 0;
}

.lptit .ewmurl .e {
    float: right;
}

.lptit .qqqun {
    float: right;
    width: 100px;
    margin-top: 20px;
}

.lptit .qqqun img {
    margin-bottom: 5px;
}

.d-zxdt {
    width: 480px;
}

.jbxx {
    width: 700px;
}

.bus-detail dl {
    margin-bottom: 2px;
}

.bus-detail dt {
    background: #fafafa;
    text-align: right;
    width: 100px;
}

.bus-detail dd {
    width: 235px;
}

.bus-detail .nowrap dd {
    width: 570px;
}

.jbxx1 dl {
    margin-bottom: 2px;
}

.jbxx1 dt {
    background: #fafafa;
    text-align: right;
    width: 15%;
}

.jbxx1 dd {
    text-indent: 14px;
    width: 35%;
}

.jbxx1 .nowrap dd {
    width: 83%;
}

.d-body {
    width: 900px;
}

.d-aside {
    width: 280px;
}

.lp-tlist3 {
    padding: 10px;
}

.lp-tlist3 li {
    vertical-align: top;
    *zoom: 1;
}

.lp-tlist3 i {
    font-size: 14px;
    line-height: 28px;
    float: left;
    overflow: hidden;
    height: 28px;
}

.lp-tlist3 .td1 {
    width: 50%;
}

.lp-tlist3 .td2 {
    width: 29%;
    white-space: nowrap;
}

.lp-tlist3 .td3 {
    width: 20%;
    text-align: right;
}

/*修改样式*/
.lp-detail {
    line-height: 30px;
    /* height: 234px; */
}

/*# sourceMappingURL=business-detail.css.map */
