@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 内容换行 %word-wrap 
 * @description 内容换行
 * @example 调用
 * 
 * ```scss
 * div {
 *    @extend %word-wrap;
 * }
 * ```
 * 
 * ```css
	div {
	    word-wrap: break-word;
	    white-space: pre-wrap;
	    word-break: break-all;
	}
 * ```
 */
/**
 * @method 透明层opacity 
 * @description 透明层 内容也透明
 * @param {number} $opacity - 透明度 0 ~ 1之间
 * @example 调用
 * 
 * ```scss
 * div {
 *    @include opacity(.5);
 * }
 * ```
 * 
 * ```css
 * div {
	  opacity: .5;
	  filter: alpha(opacity=50);
 * }
 * ```
 */
/**
 * @method 背景透明层transparent 
 * @description 透明层只处理背景透明
 * @param {string} $color - 背景透明层的颜色
 * @param {number} $alpha - 透明度 0 ~ 1之间
 * @example 调用
 * 
 * ```scss
 * div {
 *    @include transparent(#000, .5);
 * }
 * ```
 * 
 * ```css
 * div {
 *    	background-color: transparent;
		background-color: (0,0,0,.5);
		filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#7fffffff, endColorstr=#7fffffff,);
		zoom: 1;
 * }
 * ```
 */
/**
 * @method triangle 
 * @description 生成一个三角形图标
 * @param {string} $size - 三角的大小
 * @param {string} $color - 三角颜色
 * @param {string} $direction - 三角的方向 up, down, left, right
 * @example 调用
 * 
 * ```scss
 * i {
 *    @include triangle(5px, #bbb, up); 
 * }
 * ```
 * 
 * ```css
 * i {
 *    width: 0;
      height: 0;
      border-width: 5px;
      border-style: solid;
      border-color: transparent;
      border-bottom-color: #bbb;
 * }
 * ```
 */
/**
* @method 水平线hr nav-divider 
* @description 透明层 内容也透明
* @param {string} $color=#e5e5e5 - 线的颜色
* @param {string} $line-height-computed - 线的高度，空间
* @example 调用
* 
* ```scss
* div {
*    @include nav-divider(#e5e5e5, 24px);
* }
* ```
* 
* ```css
* div {
	  height: 1px;
	  margin: 11px 0;
	  overflow: hidden;
	  background-color: #e5e5e5;
* }
* ```
*/
/*!
 * @name lp-detail.css
 * @author xying
 * @date 2016-8-5
 * @dec top toolbar popular search terms containing the search and  for lp
 */
/*!
 * @name lp-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: #33aa66;
    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: #36ca61;
}

.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: #33aa66;
    color: #fff;
    background: #33aa66;
}

.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 #33aa66;
    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.hascode {
    position: relative;
    padding-left: 110px;
}

.lp-detail-tit.hascode .qrcode-xcx-img {
    position: absolute;
    left: 0;
    top: 0;
}

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

.lp-detail-tit h1 .h1_label, .lp-detail-tit h2 .h1_label {
    color: #666;
    font-size: 14px;
    margin-left: 10px;
}

.lp-detail-tit .head-info {
    font-weight: bold;
    color: #6f6f6f;
}

.lp-detail-tit .head-info span {
    padding: 0  15px 0 5px;
    color: #333;
    font-weight: normal;
}

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

.lp-detail-tit .tag .sp-co-114 {
    color: #fff;
    border-color: #3393F5;
    background: #3393F5 !important;
}

.lp-detail-tit .tag .sp-co-115 {
    color: #fff;
    border-color: #0EBF8F;
    background: #0EBF8F !important;
}

.lp-detail-tit .tag .sp-co-116 {
    color: #fff;
    border-color: #fb841f;
    background: #fb841f !important;
}

.lp-detail-tit .tag .sp-co-117 {
    color: #fff;
    border-color: #D00404;
    background: #D00404 !important;
}

.lp-detail-tit .tag .sp-co-118 {
    color: #fff;
    border-color: #a9a9aa;
    background: #a9a9aa !important;
}

.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 li .wxhouseimg {
    width: 76px;
    height: 76px;
    border: none;
}

.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=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: 185px;
    padding: 20px 18px 0 0;
}

.plist-mod .item-img {
    height: 124px;
    width: 185px;
    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: #33aa66;
    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.svg#lp") format("svg"), url("../fonts/lp.woff") format("woff");
}

[class^="font-lp-"],
[class*=" font-lp-"] {
    font-family: "lp";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: inherit;
    float: none;
    margin: 0;
    vertical-align: -0.25em;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
}

.font-lp-1:before {
    content: "\EA01";
}

.font-lp-10:before {
    content: "\EA02";
}

.font-lp-101:before {
    content: "\EA03";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.font-lp-qj:before {
    content: "\EA47";
}

@font-face {
    font-family: "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: #33aa66;
    color: #33aa66;
}

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

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

.lp-body {
    width: 930px;
}

/*
title
*/
.body-tit {
    border-bottom: 2px solid #33aa66;
}

.body-tit h2 a {
    background: #fff;
    display: block;
    float: left;
    font-size: 18px;
    padding: 9px 20px;
}

.body-tit h2 a:hover {
    text-decoration: none;
    background-color: #fafafa;
}

.body-tit h2 a.act {
    background: #33aa66;
    color: #fff;
}

.body-tit h2 a.act .ico {
    color: inherit;
}

.body-tit h2 .ico {
    margin-right: 10px;
    vertical-align: 0;
    color: #f00;
}

.body-tit .sort {
    margin-top: 8px;
}

/*
list
*/
.list-item {
    border-bottom: 1px dashed #ddd;
    padding-top: 10px;
}

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

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

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

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

.list-item .pic i {
    border-radius: 3px;
    background: #33aa66;
    color: #fff;
    font-size: 12px;
    font-family: simsun;
    height: auto;
    line-height: 20px;
    padding: 0 5px;
    position: absolute;
    right: 0;
    top: 0;
}

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

.list-item .info h3 {
    height: 27px;
    overflow: hidden;
}

.list-item .info h3.h40 {
    line-height: 40px;
    height: 40px;
}

.list-item .info .fx {
    font-size: 14px;
}

.list-item .info p {
    line-height: 34px;
    height: 34px;
}

.list-item .info .tag {
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    margin-left: 8px;
    padding: 1px 6px;
    position: relative;
}

.list-item .info .tag:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px;
    position: absolute;
    left: -10px;
    top: 4px;
}

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

.list-item .info .tag.dis-sale {
    background: #aaa;
}

.list-item .info .tag.on-sale-114 {
    background-color: #06a897;
}

.list-item .info .tag.on-sale-114:after {
    border-color: transparent #06a897 transparent transparent;
}

.list-item .info .tag.on-sale-115 {
    background-color: #1cbaff;
}

.list-item .info .tag.on-sale-115:after {
    border-color: transparent #1cbaff transparent transparent;
}

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

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

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

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

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

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

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

.list-item .info .tag.on-sale-159:after {
    border-color: transparent #33aa66 transparent transparent;
}

.list-item .tit {
    color: #666;
    font-size: 18px;
}

.list-item .tit:hover {
    color: #f00;
    text-decoration: none;
}

.list-item .ico-word {
    margin-right: 15px;
}

.list-item .ico-word i {
    color: #e4e4e4;
}

.list-item .other {
    text-align: right;
    width: 160px;
}

.list-item .other .total-price {
    color: #f50;
    font-family: georgia;
    font-size: 28px;
    line-height: 18px;
}

.list-item .other .mj {
    margin-left: 10px;
}

.list-item .other .dj {
    line-height: 36px;
}

.list-item .other .btn {
    border-radius: 3px;
    float: right;
    line-height: 30px;
    height: 30px;
    margin-top: 26px;
    width: 151px;
}

.list-item .other .btn i {
    font-size: 16px;
    margin-left: 5px;
}

.list-item .other .fill-btn {
    cursor: pointer;
    background: #33aa66;
    border: 1px solid #33aa66;
    color: #fff;
    text-align: center;
}

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

.list-item .other .disable-btn {
    font-size: 12px;
    background: #aaa;
    border: 1px solid #aaa;
    color: #fff;
    text-align: center;
}

.list-item .other .disable-btn:hover {
    background: #aaa;
    border-color: #aaa;
}

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

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

.line-through {
    text-decoration: line-through;
}

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

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

.list-item .info {
    width: 550px;
    margin-top: 12px;
}

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

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

.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;
    margin-top: 12px;
    width: 140px;
}

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

.zd {
    border: 1px solid #33aa66;
    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: #33aa66;
}

.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: 20px 15px 20px 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;
    border: 1px solid  #eee;
}

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

.xwzxlist .ico-word {
    color: #999;
}

.xwzxlist h3 {
    font-size: 22px;
    line-height: 25px;
    height: 25px;
    color: #333;
    margin-bottom: 15px;
    overflow: hidden;
}

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

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

.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 内容换行 %word-wrap 
 * @description 内容换行
 * @example 调用
 * 
 * ```scss
 * div {
 *    @extend %word-wrap;
 * }
 * ```
 * 
 * ```css
	div {
	    word-wrap: break-word;
	    white-space: pre-wrap;
	    word-break: break-all;
	}
 * ```
 */
/**
 * @method 透明层opacity 
 * @description 透明层 内容也透明
 * @param {number} $opacity - 透明度 0 ~ 1之间
 * @example 调用
 * 
 * ```scss
 * div {
 *    @include opacity(.5);
 * }
 * ```
 * 
 * ```css
 * div {
	  opacity: .5;
	  filter: alpha(opacity=50);
 * }
 * ```
 */
/**
 * @method 背景透明层transparent 
 * @description 透明层只处理背景透明
 * @param {string} $color - 背景透明层的颜色
 * @param {number} $alpha - 透明度 0 ~ 1之间
 * @example 调用
 * 
 * ```scss
 * div {
 *    @include transparent(#000, .5);
 * }
 * ```
 * 
 * ```css
 * div {
 *    	background-color: transparent;
		background-color: (0,0,0,.5);
		filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#7fffffff, endColorstr=#7fffffff,);
		zoom: 1;
 * }
 * ```
 */
/**
 * @method triangle 
 * @description 生成一个三角形图标
 * @param {string} $size - 三角的大小
 * @param {string} $color - 三角颜色
 * @param {string} $direction - 三角的方向 up, down, left, right
 * @example 调用
 * 
 * ```scss
 * i {
 *    @include triangle(5px, #bbb, up); 
 * }
 * ```
 * 
 * ```css
 * i {
 *    width: 0;
      height: 0;
      border-width: 5px;
      border-style: solid;
      border-color: transparent;
      border-bottom-color: #bbb;
 * }
 * ```
 */
/**
* @method 水平线hr nav-divider 
* @description 透明层 内容也透明
* @param {string} $color=#e5e5e5 - 线的颜色
* @param {string} $line-height-computed - 线的高度，空间
* @example 调用
* 
* ```scss
* div {
*    @include nav-divider(#e5e5e5, 24px);
* }
* ```
* 
* ```css
* div {
	  height: 1px;
	  margin: 11px 0;
	  overflow: hidden;
	  background-color: #e5e5e5;
* }
* ```
*/
.map-wrap {
    position: relative;
    z-index: 998;
}

.map-wrap .show {
    height: 400px;
}

.map-wrap * {
    box-sizing: border-box;
}

.map-wrap .lp-coltit {
    line-height: 52px;
    padding: 10px 0 0;
}

.map-wrap .more {
    font-size: 14px;
    position: absolute;
    top: 24px;
    right: 10px;
    color: #999;
}

.map-wrap .ddd {
    padding: 20px;
}

.map-wrap .assort-distance {
    position: absolute;
    z-index: 999;
    right: 20px;
    bottom: 72px;
    display: none;
    padding: 5px 10px 20px;
    border: 1px solid #dbdbdb;
    min-height: 70px;
    min-width: 200px;
    background: #fff;
}

.map-wrap .assort-distance-btn {
    border: 1px solid #dbdbdb;
    background-color: #fff;
    width: 34px;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    padding: 10px 5px;
    height: 120px;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -60px;
    z-index: 999;
}

.map-wrap .assort-distance-btn:hover {
    color: #f00;
}

.map-wrap .assort-distance-btn i {
    font-size: 18px;
    color: #f00;
}

.map-wrap .assort-distance .tu {
    margin-left: 0;
}

.map-wrap .assort-distance .close-assort {
    line-height: 18px;
    width: 40px;
    padding: 10px 0;
    cursor: pointer;
    text-align: center;
    color: #333;
}

.map-wrap .assort-distance h4 {
    font-size: 16px;
    font-weight: normal;
    padding-bottom: 10px;
    color: #666;
}

.map-wrap .assort-distance h4 .bg {
    width: 24px;
    height: 24px;
    border-radius: 24px;
    background: #06b676;
    display: inline-block;
    text-align: center;
    color: #fff;
}

.map-wrap .assort-distance h4 .bg i {
    font-size: 16px;
}

.map-wrap .assort-distance .img-lp-9 {
    position: absolute;
    top: 24px;
    right: 10px;
    z-index: 99;
    display: block;
    cursor: pointer;
    transition: all .3s ease-out;
}

.map-wrap .assort-distance .img-lp-9:hover {
    color: #f00;
}

.map-wrap .assort-distance ul {
    overflow-y: scroll;
    max-height: 230px;
}

.map-wrap .assort-distance ul .ddd {
    font-size: 16px;
    line-height: 40px;
    overflow: hidden;
    height: 48px;
}

.map-wrap .assort-distance .title {
    margin-bottom: 15px;
}

.map-wrap .assort-distance .icon-text {
    font-size: 15px;
    line-height: 52px;
    position: relative;
    z-index: 1;
    display: block;
    padding-left: 27px;
    cursor: pointer;
}

.map-wrap .assort-distance .icon-text:hover .round {
    width: 72px;
    padding-left: 3.5px;
    cursor: pointer;
    text-align: left;
}

.map-wrap .assort-distance .icon-text:hover .txt {
    color: #fff;
}

.map-wrap .assort-distance .round {
    font-size: 16px;
    line-height: 25.5px;
    position: absolute;
    z-index: -1;
    top: 15px;
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    cursor: pointer;
    text-align: center;
    color: #666;
    color: #fff;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    background: #9c3ca7;
}

.map-mkitem {
    position: absolute;
    padding: 5px;
    background-color: blue;
    color: #fff;
}

.map-label {
    position: absolute;
    z-index: 100;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    background-color: rgba(255, 255, 255, 0.85);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#D9FFFFFF, endColorstr=#D9FFFFFF);
    zoom: 1;
}

.map-label .tu {
    margin-left: 0;
}

.map-label ul .icon-text {
    cursor: pointer;
    font-size: 15px;
    line-height: 52px;
    position: relative;
    z-index: 1;
    display: block;
    height: 52px;
    padding-left: 27px;
    color: #666666;
}

.map-label ul .mLabel-li {
    position: relative;
    float: left;
    padding: 0 25px;
    background: url(../images/result-opt-vline.png) no-repeat left center;
}

.map-label ul .label-li:hover .round, .map-label ul .label-li.active .round {
    width: 72px;
    padding-left: 3.5px;
    cursor: pointer;
    text-align: left;
}

.map-label ul .label-li:hover .icon-text, .map-label ul .label-li.active .icon-text {
    color: #fff;
}

.map-label ul .round {
    font-size: 16px;
    line-height: 25.5px;
    position: absolute;
    z-index: -1;
    top: 15px;
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    cursor: pointer;
    text-align: center;
    color: #666666;
    color: #fff;
    border-radius: 25px;
    background: #06b676;
}

.map-label ul li:nth-of-type(2) span {
    background: #ff3238;
}

.map-label ul li:nth-of-type(3) span {
    background: #9c3ca7;
}

.map-label ul li:nth-of-type(4) span {
    background: #eaae2a;
}

.map-label ul li:nth-of-type(5) span {
    background: #581eef;
}

.map-label ul li:nth-of-type(6) span {
    background: #06b676;
}

.mLabel-more {
    line-height: 52px;
    width: 120px;
    padding-right: 47px !important;
}

.mLabel-more .img-lp-11,
.mLabel-more .img-lp-10 {
    float: right;
    margin-top: 16px;
}

.mLabel-more .img-lp-11 {
    display: none;
}

.mLabel-more:hover {
    color: #da5c4f;
}

.mLabel-more:hover .img-lp-11 {
    display: block;
}

.mLabel-more:hover .img-lp-10 {
    display: none;
}

.mLabel-more ul {
    position: absolute;
    z-index: 2;
    top: 52px;
    left: 0;
    display: none;
    width: 120px;
    height: auto;
    color: #666666;
    border: 1px solid #eee;
    background-color: transparent;
    background-color: rgba(255, 255, 255, 0.85);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#D9FFFFFF, endColorstr=#D9FFFFFF);
    zoom: 1;
}

.mLabel-more ul .mLabel-li {
    float: none;
    margin: 0 10px;
    padding: 0 5px;
    vertical-align: top;
    border-bottom: 1px solid #ddd;
}

.mLabel-more ul .mLabel-li .icon-text {
    font-size: 14px;
    position: relative;
    z-index: 1;
    display: block;
    padding-left: 27px;
    color: #666666;
}

.mLabel-more ul li:nth-of-type(2) span {
    background: #914f2d;
}

.mLabel-more:hover ul {
    display: block;
}

.marker-item {
    font-size: 12px;
    line-height: 18px;
    position: absolute;
    -moz-user-select: none;
    text-align: center;
    white-space: nowrap;
    color: #fff;
    border-radius: 2px;
    background-color: #33aa66;
}

.marker-item a {
    color: #fff;
}

.marker-item .name {
    display: inline-block;
    padding: 5px;
}

.marker-item .name-sub {
    display: inline-block;
    color: #444;
    padding: 5px;
    background-color: #fff;
}

.marker-item .arrow {
    position: absolute;
    bottom: -7px;
    left: 5px;
    width: 0;
    height: 0;
    border-width: 7px;
    border-style: solid;
    border-color: transparent;
    border-left-color: #33aa66;
}

.marker-item.item-hover {
    background-color: #00a966 !important;
}

.marker-item.item-hover .arrow {
    border-left-color: #00a966;
}

.map-label01 {
    display: block;
    position: static;
}

.map-label01 ul .roud {
    background: #eaae2a;
}

.map-label01 ul .mLabel-li {
    background: none;
}

.map-label01 ul .label-li:hover .round, .map-label01 ul .label-li.active .round {
    width: 94px;
}

#map-list {
    max-width: 260px;
}

#map-list > div {
    border: none !important;
}

#map-list li {
    margin-bottom: 10px;
}

#map-list ol {
    overflow: auto;
    max-height: 200px;
}

#map-list ol::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

#map-list ol::-webkit-scrollbar-thumb:hover {
    background: #f8f8f8;
}

#map-list ol::-webkit-scrollbar-thumb {
    border: 1px solid #ccc;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #fafafa;
}

#map-list ol::-webkit-scrollbar-track {
    border: 1px solid #d3d3d3;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #eee;
    -webkit-box-shadow: 0 0 3px #dfdfdf inset;
    box-shadow: 0 0 3px #dfdfdf inset;
}

#map-list .ls-item-2 > a {
    display: none;
}

#map-list .ls-item-2 span {
    color: #333 !important;
}

#map-list .ls-item-3 b,
#map-list .ls-item-4 b {
    color: #666 !important;
}

.wrap-ls-item-3 {
    display: flex;
    flex-wrap: wrap-reverse;
    padding: 10px !important;
    background: none !important;
}

.wrap-ls-item-3 > a {
    display: none;
    width: 100%;
    margin-top: 10px;
    text-align: center;
}

.wrap-ls-item-3 > div {
    width: 100%;
}

.wrap-ls-item-3 > div p {
    width: 100%;
    text-align: center !important;
}

.wrap-ls-item-3 > div p span {
    margin-right: 4px !important;
}

.wrap-ls-item-3 > div p span a {
    border: 1px solid #ddd !important;
    padding: 3px 5px 3px 5px !important;
}

.wrap-ls-item-3 a {
    color: #666 !important;
}

.vista-wrap {
    display: none;
    position: absolute;
    z-index: 99999;
    left: 0;
    bottom: 0;
    width: 100%;
}

.vista {
    height: 400px;
    left: 0;
    top: 0;
}

.bd-gray {
    position: relative;
}

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

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

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

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

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

.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 {
    position: absolute;
    top: -30px;
    right: 0;
    width: 30px;
    height: 30px;
    background: url(../images/hb/tc_close.png) left center no-repeat;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hide {
    display: none;
}

.fred1 {
    color: #e83532;
}

.fred2 {
    color: #9b1b0a;
}

.fred3 {
    color: #ef412f;
}

.fwhite {
    color: #fff;
}

.fyellow {
    color: #fff600;
}

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

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

.datas {
    font-size: 14px;
    position: absolute;
    bottom: 60px;
    width: 100%;
}

.tiale {
    padding: 0 20px;
    line-height: 34px;
    font-size: 28px;
}

/*!
* @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: 500px;
    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%;
}

/*!
 * @name lp-news.css
 * @author xying
 * @date 2016-8-5
 * @dec common lp detail news
 */
.news-content {
    margin-top: 25px;
}

.news-content h5.ts {
    font-size: 14px;
    color: #999999;
}

.news-content .atc-tit {
    padding: 8px 0 18px 0;
    color: #333333;
    height: 26px;
    line-height: 26px;
    font-size: 26px;
    text-align: center;
}

.news-content .atc-source {
    padding-bottom: 10px;
    height: 12px;
    line-height: 12px;
    font-size: 12px;
    text-align: center;
    font-size: 12px;
    color: #999999;
}

.news-content .atc-source em {
    color: #333;
}

.news-content .leftboxcom {
    padding: 14px 20px;
    overflow: hidden;
}

.news-content .leftboxcom p {
    line-height: 30px;
    font-size: 16px;
}

.news-content .fy-wrapper {
    height: 34px;
    line-height: 34px;
    padding: 20px 0;
}

.news-content .fy-wrapper span {
    display: block;
    background: #f3f3f3;
    border: 1px solid #e6e6e6;
    width: 134px;
    text-align: center;
    font-size: 14px;
    color: #333333;
    height: 32px;
    float: left;
    color: #999;
}

.news-content .fy-wrapper span.nonext {
    margin: 0 10px 0 220px;
}

.news-content .fy-wrapper a {
    background: #f3f3f3;
    border: 1px solid #e6e6e6;
    width: 134px;
    font-size: 14px;
    color: #333333;
    height: 32px;
    float: left;
}

.news-content .fy-wrapper a.syp i, .news-content .fy-wrapper a.xyp i {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 16px;
}

.news-content .fy-wrapper a.syp {
    margin: 0 10px 0 220px;
}

.news-content .fy-wrapper a.syp i {
    margin: 7px 5px 8px 25px;
    float: left;
}

.news-content .fy-wrapper a.syp em {
    line-height: 31px;
    float: left;
}

.news-content .fy-wrapper a.xyp i {
    margin: 7px 20px 8px 10.4px;
    float: right;
}

.news-content .fy-wrapper a.xyp em {
    line-height: 31px;
    float: right;
}

.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: 400px !important;
    border: 1px solid #ddd;
    background: url(../../../images/common/nopic.gif) no-repeat center #f3f3f3;
}

.flash .big .play {
    background: url(../images/playbg.png) no-repeat;
    width: 92px;
    height: 92px;
    position: absolute;
    top: 43%;
    left: 50%;
    margin-top: -46px;
    margin-left: -46px;
    cursor: pointer;
}

.flash .big .videobox {
    position: absolute;
    width: 100%;
    height: 400px;
    display: none;
    left: 0;
    top: 0;
    background: #000;
    z-index: 10;
}

.flash .big .videobox iframe {
    width: 100%;
    height: 100%;
}

.flash .big .swiper-live {
    position: absolute;
    width: 100%;
    height: 400px;
    background: #efeff4;
    z-index: 100;
    top: 0px;
    display: none;
    overflow: hidden;
}

.flash .big .swiper-live a {
    display: block;
    position: relative;
    height: 100%;
}

.flash .big .swiper-live .live-text {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    font-size: 14px;
    border: 1px solid #33aa66;
    padding: 4px 15px;
    border-radius: 8px;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    color: #33aa66;
}

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

.flash .big li.vido {
    width: 100%;
    height: 100%;
}

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

.flash .sml {
    width: 9999px;
}

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

.flash .sml li.last {
    margin-right: 0;
}

.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;
    z-index: 9;
}

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

.info7 .ime {
    position: absolute;
    top: 266px;
    right: 0px;
    background: #33aa66 none repeat scroll 0 0;
    border: 1px solid #33aa66;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    font-family: microsoft yahei;
    font-size: 14px;
    height: 32px;
    line-height: 30px;
    padding: 0 12px;
}

.info7 .ime i {
    font-size: 17px;
    margin-right: 3px;
}

/*** 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;
    margin-right: 20px;
}

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

.lp-info dd.hasdt .mr20 {
    margin-right: 20px;
}

.lp-info dd.hasdt a:hover {
    color: #333;
}

.lp-info dd.hasdt .form-bdrs:hover {
    color: #f7f7f7;
}

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

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

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

.lp-info .tel {
    margin: 15px 0;
}

.lp-info .tel .font-lp-13 {
    font-size: 24px;
    float: left;
    margin-right: 10px;
    padding: 1px 1px 0px 1px;
    color: #33aa66;
    border: 2px solid #33aa66;
    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;
}

.info7 p {
    position: absolute;
    top: 380px;
    right: 0px;
    background: #33aa66 none repeat scroll 0 0;
    border: 1px solid #33aa66;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    font-family: microsoft yahei;
    font-size: 14px;
    height: 32px;
    line-height: 30px;
    padding: 0 12px;
}

.info7 p i {
    font-size: 17px;
    margin-right: 3px;
}

/* 新消息通知 */
.newsbox {
    height: 38px;
    line-height: 38px;
    padding-left: 15px;
    padding-right: 10px;
    font-size: 13px;
    color: #ff3333;
    background: #f7f7f7;
}

.newsbox i {
    margin-right: 3px;
    vertical-align: initial;
}

.newsbox .rbtn {
    float: right;
    width: 70px;
    height: 24px;
    line-height: 24px;
    color: #f33;
    font-size: 13px;
    text-align: center;
    display: block;
    border: 1px solid #f33;
    border-radius: 2px;
    margin-top: 6px;
}

.newsbox span {
    display: inline-block;
    margin-left: 18px;
    color: #333;
    padding-left: 20px;
}

/* 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 .pd {
    padding: 10px 0px;
}

.lp-coltit .pano {
    position: relative;
    height: 450px;
}

.lp-news a {
    float: left;
    margin-right: 8px;
    display: block;
    padding: 0 10px;
    font-weight: normal;
    font-size: 14px;
    height: 25px;
    line-height: 25px;
    cursor: pointer;
    border-radius: 5px;
}

.lp-news a:hover, .lp-news a.act {
    background-color: #ff3334;
    color: #fff;
}

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

.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: 13%;
    color: #666;
}

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

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

.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 {
    min-height: 258px;
    overflow: hidden;
    position: relative;
}

.record ul {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 15px 25px 0;
}

.record ul li {
    padding: 0 0 15px 23px;
    margin-bottom: 10px;
    border-left: 3px solid #eee;
}

.record ul li .time {
    position: relative;
    height: 14px;
    line-height: 14px;
    padding-bottom: 10px;
    color: #888;
    font-size: 14px;
}

.record ul li .time .bor1 {
    padding: 0 3px;
    color: #0179af;
    border: 1px solid #0179af;
    border-radius: 3px;
    margin-left: 3px;
}

.record ul li .time .bor2 {
    padding: 0 3px;
    color: #ffa200;
    border: 1px solid #ffa200;
    border-radius: 3px;
    margin-left: 3px;
}

.record ul li .time .bor3 {
    padding: 0 3px;
    color: #58a657;
    border: 1px solid #58a657;
    border-radius: 3px;
    margin-left: 3px;
}

.record ul li .time .sldot {
    position: absolute;
    left: -32px;
    top: -2px;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 10px;
    border: 3px solid #fff;
}

.record ul li a {
    width: 304px;
    line-height: 32px;
    color: #333;
    font-size: 14px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.d-lpdy .bd-gray {
    background: #f3f3f3;
}

.d-lpdy .bd-gray .choice {
    min-height: auto;
    height: 34px;
}

/*** other
--------------------- ***/
.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: #33aa66;
}

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

.inform {
    height: 22px;
    border: solid 1px #eee;
    font-size: 12px;
    line-height: 22px;
    color: #999;
    margin-top: 6px;
    padding: 0px 6px 0 4px;
    overflow: hidden;
}

.inform i {
    font-size: 14px;
    padding-right: 2px;
}

.inform:hover {
    font-size: 12px;
    color: #e00 !important;
    border: 1px solid #e00;
}

.jiaof {
    position: relative;
    font-size: 13px;
    color: #999;
}

.jiaof i {
    font-size: 19px;
}

.jiaof .hover {
    display: block;
}

.lpnametc {
    position: absolute;
    top: 30px;
    right: 2px;
    background: #ddd;
    display: none;
    z-index: 999;
}

.lpnametc .tf {
    width: 500px;
    cellspacing: 1;
    cellpadding: 0;
    font-size: 12px;
}

.lpnametc .tf td {
    border: 1px solid #ccc;
    padding-left: 10px;
    backfground: #fff;
}

.lpnametc .tf .tstr {
    height: 33px;
    background: #f7f7f7;
}

.lpnametc .tf .tstr td {
    font-size: 16px;
    color: #333;
    colspan: 2;
}

.lpnametc .tf .putr {
    background: #fff;
    height: 27px;
}

.lpnametc .tf .putr .tstd1 {
    width: 128px;
}

.lpnametc .tf .putr .tstd2 {
    width: 310px;
}

.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: #33aa66;
    border: 2px solid #33aa66;
}

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

.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;
    margin: 20px 0;
}

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

.hx-detail .tlet {
    margin: 10px 0;
}

.hx-detail .tlet em {
    padding-right: 20px;
    color: #999;
}

.hx-detail .tlet p {
    display: inline-block;
    font-size: 14px;
    max-height: 258px;
    float: right;
    width: 235px;
    line-height: 26px;
    overflow: hidden;
}

.hx-detail .tlet a {
    padding: 2px 4px;
    color: #FFF;
    font-size: 12px;
    margin-right: 2px;
}

.hx-detail .tlet a i {
    position: relative;
    top: -2px;
    left: -1px;
}

.hx-detail .tlet .redff3 {
    color: #ff3333;
}

.hx-detail .tlet .hong {
    background-color: #ff3333;
}

.hx-detail .tlet .cheng {
    background-color: #e0a0a0;
}

.hx-detail .tlet .huang {
    background-color: #d9b88d;
}

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

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

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

/* 电子沙盘 */
.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: 350px;
    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;
}

/* 电子沙盘 */
.houses-shapan {
    padding: 20px 30px 30px 30px;
    overflow: hidden;
}

.houses-shapan-status-114 {
    background: #3393F5;
}

.houses-shapan-status-115 {
    background: #0EBF8F;
}

.houses-shapan-status-116 {
    background: #fb841f;
}

.houses-shapan-status-117 {
    background: #D00404;
}

.houses-shapan-status-118 {
    background: #a9a9aa;
}

.houses-shapan-left {
    width: 650px;
    float: left;
}

.houses-shapan-left-header {
    height: 30px;
}

.houses-shapan-left-number {
    float: left;
}

.houses-shapan-left-number li {
    display: inline-block;
    cursor: pointer;
    width: 90px;
    height: 30px;
    background: #f3f3f3;
    font-size: 16px;
    color: #666;
    line-height: 30px;
    text-align: center;
    margin-right: 3px;
}

.houses-shapan-left-number li.act {
    background: #e00;
    color: #fff;
}

.houses-shapan-left-status {
    float: right;
}

.houses-shapan-left-status label {
    margin-left: 10px;
    border-radius: 2px;
    text-align: center;
    line-height: 26px;
    font-size: 14px;
    list-style: none;
    width: 60px;
    height: 26px;
    color: #fff;
    position: relative;
    cursor: pointer;
    float: left;
}

.houses-shapan-left-status label input {
    vertical-align: -2px;
    margin-right: 3px;
}

.houses-shapan-left-blank {
    height: 12px;
}

.houses-shapan-left-img {
    width: 650px;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.houses-shapan-left-img-container {
    position: absolute;
}

.houses-shapan-right {
    width: 470px;
    float: right;
}

.houses-shapan-build {
    width: 470px;
    position: relative;
}

.houses-shapan-build-item {
    height: 40px;
    border-bottom: 2px solid #e00;
    line-height: 40px;
    width: 470px;
    background-color: #f2f2f2;
    overflow: hidden;
}

.houses-shapan-build-name {
    width: 94px;
    cursor: pointer;
    float: left;
    font-size: 14px;
    text-align: center;
}

.houses-shapan-build-name.act {
    background: #e00;
    color: #fff;
}

.houses-shapan-build-btn {
    position: absolute;
    top: 0;
    height: 42px;
    width: 20px;
    text-align: center;
    line-height: 42px;
    z-index: 10;
    background: #ccc;
    opacity: 0.7;
}

.houses-shapan-build .prevbtn {
    left: 0;
}

.houses-shapan-build .nextbtn {
    right: 0;
}

.houses-shapan-build-detail {
    display: none;
}

.houses-shapan-build-detail > ul {
    padding: 10px 0;
    overflow: hidden;
}

.houses-shapan-build-detail > ul li {
    float: left;
    width: 50%;
    font-size: 14px;
    color: #666666;
    text-indent: 20px;
    line-height: 36px;
}

.houses-shapan-build-title {
    height: 30px;
    line-height: 30px;
    background-color: #f3f3f3;
    font-size: 14px;
    color: #666666;
    text-indent: 14px;
    border-left: 5px solid #e9e9e9;
}

.houses-shapan-build-huxing ul {
    padding-top: 10px;
    overflow: hidden;
    height: 200px;
    overflow-y: auto;
}

.houses-shapan-build-huxing ul li {
    line-height: 32px;
    padding-left: 20px;
    height: 32px;
}

.houses-shapan-build-huxing ul li a > span:nth-child(1) {
    width: 30%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}

.houses-shapan-build-huxing ul li a span:nth-child(2) {
    width: 30%;
    display: inline-block;
}

.houses-shapan-build-huxing ul li a span:nth-child(3) {
    width: 20%;
    display: inline-block;
}

.houses-shapan-build-huxing ul li a span:nth-child(4) {
    width: 15%;
    display: inline-block;
}

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

.door li {
    border-bottom: 1px dotted #ccc;
    height: 25px;
    line-height: 25px;
}

.door li span {
    margin-left: 10px;
}

.door li .zl {
    background: #DD9900;
    color: #fff;
    text-indent: 0px;
}

/*印象背景色*/
.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: #33aa66;
}

.font-icons-vr {
    height: 50px;
    width: 50px;
    color: #fff;
    font-size: 25px;
    position: relative;
    padding-right: 20px;
}

.font-icons-vr::before {
    position: absolute;
    left: -10px;
    animation: shadow .5s linear infinite;
}

.font-icons-vr::after {
    border-radius: 5px;
    background: #fff;
    animation: rotate .5s linear infinite;
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
}

@keyframes shadow {
    0%,
    100% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(1.2);
    }
}

@keyframes rotate {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(10px);
    }
    50% {
        transform: translateY(20px) scale(1.1, 0.9);
    }
    75% {
        ransform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* 机构视频 */
.video-list {
    width: 100%;
}

.video-list li {
    float: left;
    position: relative;
    width: 240px;
    padding-top: 180px;
    margin: 10px 25px 10px 0px;
}

.video-list li a:hover {
    text-decoration: none;
}

.video-list li img {
    height: 180px;
    width: 240px;
    position: absolute;
    top: 0;
    left: 0;
}

.video-list li .list-tag {
    background: #f90;
    color: #fff;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    width: 42px;
    position: absolute;
    top: 0;
    left: 158px;
}

.video-list li .list-title {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    padding-right: 15px;
    text-indent: 15px;
    position: absolute;
    top: 100px;
    left: 5px;
}

.video-list li .list-desc {
    height: 23px;
    margin-top: 6px;
    overflow: hidden;
}

.video-list li .list-time {
    color: #999;
}

.jsqcon {
    position: relative;
}

.jsqcon .jsqleft {
    float: left;
    width: 474px;
    border-right: 1px solid #ddd;
    padding: 30px 0 20px 0;
    padding-left: 100px;
}

.jsqcon .jsqleft .jsqico {
    font-size: 34px;
    color: #ffb92e;
    float: left;
    margin-right: 10px;
}

.jsqcon .jsqleft .jsqtit span {
    display: block;
    font-size: 16px;
    height: 24px;
}

.jsqcon .jsqleft p {
    font-size: 12px;
    color: #999;
}

.jsqcon .jsqleft label {
    float: left;
    font-size: 14px;
    padding-right: 10px;
    width: 66px;
}

.jsqcon .jsqleft dd {
    line-height: 36px;
    min-height: 36px;
    margin-bottom: 14px;
    position: relative;
}

.jsqcon .jsqleft dd[data-dktype="3"] {
    display: none;
}

.jsqcon .jsqleft dd.radlist {
    padding-left: 60px;
}

.jsqcon .jsqleft dd.radlist input {
    margin-left: 5px;
    font-size: 14px;
    vertical-align: -2px;
}

.jsqcon .jsqleft dd.radlist .hkfs-label {
    width: 100px;
}

.jsqcon .jsqright {
    float: left;
    width: 452px;
    border-right: 0px;
    padding: 30px 0 20px 120px;
}

.jsqcon .jsqright .zdtit {
    font-size: 16px;
    height: 24px;
}

.jsqcon .jsqright .jsjgs {
    margin-top: 70px;
}

.jsqcon .jsqright .jsjgs .btu {
    width: 165px;
    height: 165px;
    margin-right: 20px;
}

.jsqcon .jsqright .jsjgs .btu #bingtu {
    margin-left: -40px;
}

.jsqcon .jsqright .jsjgs .jgcon {
    position: relative;
}

.jsqcon .jsqright .jsjgs .jgcon .jgtit {
    font-size: 18px;
    height: 30px;
    line-height: 30px;
    margin-bottom: 10px;
}

.jsqcon .jsqright .jsjgs .jgcon p {
    height: 24px;
    line-height: 24px;
    font-size: 14px;
    color: #666;
}

.jsqcon .jsqright .jsjgs .jgcon p i {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ffb92e;
    border-radius: 50%;
    margin-right: 5px;
}

.jsqcon .jsqright .jsjgs .jgcon p i.co2 {
    background: #99cc33;
}

.jsqcon .jsqright .jsjgs .jgcon p i.co3 {
    background: #ff6633;
}

.jsqcon .jsqright .jsjgs .jgcon p i.co4 {
    background: #FFF;
}

.jsqcon .jsqright .moredk {
    margin-top: 28px;
    padding-left: 10px;
}

.jsqcon .jsqright .moredk a {
    color: #39f;
}

.jsqcon .jsqbtn {
    position: absolute;
    left: 516px;
    top: 174px;
    background: #FFF;
    padding: 8px 0;
}

.jsqcon .jsqbtn a {
    display: inline-block;
    width: 118px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    background: #ff3333;
    border-radius: 5px;
}

.input-model {
    background-color: #ffffff;
    background-image: url("img/slt.jpg");
    background-position: right center;
    background-repeat: no-repeat;
    border: 1px solid #ddd;
    border-radius: 2px;
    cursor: pointer;
    display: inline;
    float: left;
    font-size: 12px;
    height: 36px;
    line-height: 36px;
    position: relative;
    text-align: left;
    width: 252px;
}

.input-model .zjinp {
    border: none;
    font-size: 14px;
    padding-left: 8px;
    height: 36px;
    width: 216px;
}

.input-model i {
    color: #999;
    font-size: 16px;
    position: absolute;
    top: 0;
    right: 10px;
}

.input-model span {
    display: block;
    padding: 0 30px 0 8px;
    position: relative;
    white-space: nowrap;
    z-index: 1;
    font-size: 14px;
}

.input-model ol {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #ddd;
    border-radius: 0 0 2px 2px;
    box-shadow: 0 3px 3px #ddd;
    display: none;
    left: -1px;
    position: absolute;
    top: 36px;
    z-index: 9999;
    width: 252px;
    height: 150px;
    overflow: auto;
    font-size: 14px;
}

.input-model ol li {
    border: 0 none;
    height: 26px;
    left: 0;
    line-height: 26px;
    margin: 0;
    padding: 0;
    position: relative;
    text-indent: 8px;
    top: 0;
    white-space: nowrap;
    width: 100%;
}

.input-model ol li.on {
    background: #3399ff none repeat scroll 0 0;
    color: #fff;
}

.input-model .dis {
    color: #ccc;
}

.hxts span {
    border: 1px solid #ccc;
    border-color: #ccc;
    color: #999;
    margin: 0 5px 8px 0;
    padding: 3px 10px;
    display: inline-block;
}

.house-slide {
    width: 600px;
}

.house-info2 {
    width: 552px;
}

.house-info2 .h1-box .title {
    height: 50px;
}

.house-info2 .h1-box .title h1 {
    height: 42px;
    line-height: 42px;
    float: left;
    font-size: 30px;
    font-weight: bold;
    font-family: "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei" !important;
}

.house-info2 .h1-box .title span.tag {
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    margin: 12px 0 0 8px;
    padding: 1px 6px;
    position: relative;
}

.house-info2 .h1-box .title span.tag:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px;
    position: absolute;
    left: -10px;
    top: 4px;
}

.house-info2 .h1-box .title span.tag.on-sale {
    background: #f60;
}

.house-info2 .h1-box .title span.tag.dis-sale {
    background: #aaa;
}

.house-info2 .h1-box .title span.tag.on-sale-114 {
    background-color: #06a897;
}

.house-info2 .h1-box .title span.tag.on-sale-114:after {
    border-color: transparent #06a897 transparent transparent;
}

.house-info2 .h1-box .title span.tag.on-sale-115 {
    background-color: #1cbaff;
}

.house-info2 .h1-box .title span.tag.on-sale-115:after {
    border-color: transparent #1cbaff transparent transparent;
}

.house-info2 .h1-box .title span.tag.on-sale-116 {
    background-color: #f60;
}

.house-info2 .h1-box .title span.tag.on-sale-116:after {
    border-color: transparent #f60 transparent transparent;
}

.house-info2 .h1-box .title span.tag.on-sale-117 {
    background-color: #ce9b86;
}

.house-info2 .h1-box .title span.tag.on-sale-117:after {
    border-color: transparent #ce9b86 transparent transparent;
}

.house-info2 .h1-box .title span.tag.on-sale-118 {
    background-color: #afafaf;
}

.house-info2 .h1-box .title span.tag.on-sale-118:after {
    border-color: transparent #afafaf transparent transparent;
}

.house-info2 .h1-box .title span.tag.on-sale-159 {
    background-color: #33aa66;
}

.house-info2 .h1-box .title span.tag.on-sale-159:after {
    border-color: transparent #33aa66 transparent transparent;
}

.house-info2 .h1-box .features {
    min-height: 32px;
    margin-bottom: 10px;
}

.house-info2 .h1-box .features span {
    display: inline-block;
    border: 1px solid #888;
    border-radius: 2px;
    color: #ccc;
    font-size: 12px;
    line-height: 18px;
    padding: 0 6px;
    margin: 0 5px 5px 0;
}

.house-info2 .h1-box .features span.a1 {
    border: 1px solid #7eb6e2;
    color: #7eb6e2;
}

.house-info2 .h1-box .features span.a2 {
    border: 1px solid  #b68fd8;
    color: #b68fd8;
}

.house-info2 .h1-box .features span.a3 {
    border: 1px solid  #e08585;
    color: #e08585;
}

.house-info2 .h1-box .features span.a4 {
    border: 1px solid  #cc9752;
    color: #cc9752;
}

.house-info2 .h1-box .features span.a5 {
    border: 1px solid  #77be66;
    color: #77be66;
}

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

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

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

.lp-info2 .tel {
    margin: 15px 0;
}

.lp-info2 .tel .font-lp-13 {
    font-size: 24px;
    float: left;
    margin-right: 10px;
    padding: 1px 1px 0px 1px;
    color: #e43;
    border: 2px solid #e43;
    border-radius: 5px;
}

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

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

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

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

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

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

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

.lp-info2 dt {
    float: left;
    clear: left;
    color: #333;
    margin-right: 20px;
    font-size: 14px;
    font-weight: bold;
}

.lp-info2 dd {
    margin-left: 0;
    min-height: 35px;
    margin: 5px 0;
    font-size: 14px;
    color: #333;
}

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

.lp-info2 dd.hasdt.mr20 {
    margin-right: 20px;
}

.lp-info2 dd.hasdt a:hover {
    color: #333;
}

.lp-info2 dd.hasdt .form-bdrs {
    color: #999;
    font-size: 12px;
    display: inline-block;
    line-height: 20px;
    height: 20px;
    border: 1px solid #FFF;
    padding: 0px 2px;
}

.lp-info2 dd.hasdt .form-bdrs i {
    padding-right: 2px;
}

.lp-info2 dd.hasdt .form-bdrs:hover {
    color: #666;
    border-color: #dbdbdb;
}

.lp-info2 dd.hasdt .lp-bdsm {
    font-size: 12px;
}

.lp-info2 dd.more-info {
    font-size: 14px;
    line-height: 32px;
    position: relative;
    padding-left: 130px;
}

.lp-info2 dd.more-info .morepage {
    position: absolute;
    margin-left: -130px;
    widows: 120px;
}

.lp-info2 dd.more-info .morepage a {
    color: #f00;
    font-weight: bold;
    min-height: 20px;
}

.lp-info2 dd.more-info .online {
    display: inline-block;
}

.lp-info2 dd.db0 {
    min-height: 20px;
}

.more-info .slider-content {
    height: 290px;
    overflow: hidden;
}

.more-info .l12 {
    margin-right: 1.8%;
}

.online-guwen {
    width: 470px;
    min-height: 168px;
    max-height: 460px;
    background-color: #f1f1f1;
    overflow-y: auto;
    display: none;
}

.loupangw {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 10px;
    margin-top: 10px;
}

.loupangw .wxpic {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 10px;
    right: 10px;
}

.loupangw .act {
    display: block;
}

.guwen-warp {
    position: relative;
    font-size: 0;
}

.guwen-warp .gw-container .gw-avatar {
    display: inline-block;
    width: 96px;
    height: 128px;
    vertical-align: top;
    margin-right: 15px;
}

.guwen-warp .gw-container .gw-info {
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.guwen-warp .gw-container .gw-name {
    font-weight: 600;
    font-size: 20px;
    color: #333;
    vertical-align: middle;
    margin-right: 6px;
}

.guwen-warp .gw-container .gw-tag {
    display: inline-block;
    margin-right: 8px;
    height: 18px;
    line-height: 18px;
    font-family: 'HiraginoSansGB-W3';
    font-size: 12px;
    color: #b0b4b4;
    font-weight: 300;
    padding: 0 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background-color: #eff0f2;
    vertical-align: middle;
}

.guwen-warp .gw-container .gw-desc {
    margin-bottom: 5px;
    margin-top: 5px;
    height: 17px;
    line-height: 17px;
    font-size: 12px;
    color: #101d37;
}

.guwen-warp .gw-container .gw-phone {
    margin-bottom: 8px;
    height: 23px;
    line-height: 23px;
    font-size: 14px;
    color: #101d37;
}

.guwen-warp .gw-container .gw-im {
    background-color: #f7f7f7;
    border: 1px solid #e6e6e6;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    color: #799bcd;
    display: inline-block;
    font-size: 14px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    text-decoration: none;
    width: 110px;
}

.guwen-warp .gw-container .gw-im span {
    vertical-align: middle;
}

.guwen-container {
    width: 1200px;
    min-width: 1200px;
    background-color: #fff;
    margin: 25px auto 0;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.guwen-container .guwen-list {
    padding: 20px 20px 0 20px;
}

.guwen-container .guwen-list .tit {
    height: 50px;
    border-bottom: 1px solid #ececec;
    position: relative;
}

.guwen-container .guwen-list .tit h3 {
    height: 30px;
    display: inline-block;
    font-size: 21px;
}

.guwen-container .guwen-list .tit span {
    font-size: 12px;
    color: #888;
    margin-left: 5px;
}

.guwen-container .guwen-list .con {
    padding-top: 20px;
}

.guwen-container .guwen-list .con ul li {
    float: left;
    width: 224px;
    margin-right: 10px;
    margin-bottom: 36px;
}

.guwen-container .guwen-list .con ul li.r0 {
    margin-right: 0;
}

.guwen-container .guwen-list .con ul li .picture {
    float: left;
    margin-right: 10px;
    border-radius: 5px;
    overflow: hidden;
    width: 75px;
    height: 100px;
}

.guwen-container .guwen-list .con ul li p {
    float: left;
    width: 138px;
    font-size: 18px;
}

.guwen-container .guwen-list .con ul li span {
    float: left;
    font-size: 16px;
    width: 138px;
    color: #ff7800;
    height: 36px;
    line-height: 36px;
    margin-bottom: 4px;
    overflow: hidden;
}

.guwen-container .guwen-list .con ul li em {
    border-radius: 5px;
    padding: 6px 14px;
    font-size: 12px;
    cursor: pointer;
    display: inline-block;
    color: #FFF;
    background-color: #b39d9b;
    position: relative;
}

.guwen-container .guwen-list .con ul li em i {
    margin-right: 5px;
    font-size: 16px;
}

.guwen-container .guwen-list .con ul li em:hover .ma {
    display: block;
}

.guwen-container .guwen-list .con ul li em .ma {
    display: none;
    position: absolute;
    width: 140px;
    height: 140px;
    top: -140px;
    left: -14px;
}

.clearfix {
    zoom: 1;
}

.clearfix:after {
    display: block;
    clear: both;
    content: "";
    visibility: hidden;
    height: 0;
}

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