@charset "UTF-8";

/*字体 需要头部引用*/

@import "../fonts/Avenir/font.css";
/* 思源字体 */
@import "../fonts/siyuanfonts/fonts.css"; 
 @import "./style.css";
@import "../fonts/iconfont/iconfont.css";
@import "./jquery.magnify.css";
html {
    /*color: #333;*/
    z-index: 1;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
ul,
ol,
li,
pre,
code,
form,
fieldset,
button,
input,
textarea,
p,
address,
em,
label,
img,
th,
td,
iframe,
sub,
sup,
div,
legend,
blockquote {
    padding: 0;
    margin: 0;
}


body {
    color: #333;
    font-size: 14px;
    background: #fff;
    font-family: "Avenir-Mudium", "Arial", "PingFangSC-Regular", "PingFangSC-Semibold", "Microsoft YaHei";
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

a:focus {
    outline: none;
    outline-offset: 0;
}

a:focus,
a:hover {
    text-decoration: none;
}

img {
    border: 0;
    display: inline-block;
}

input,
select,
input,
textarea {
    font-size: 14px;
    outline: none;
    border: none;
}

select,
input {
    vertical-align: middle;
}

::selection {
    background-color: rgba(255, 90, 0, .8);
    color: #FFF;
}

input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"]>input[type="button"]::-moz-focus-inner {
    border: 0;
    padding: 0;
}

textarea {
    resize: none;
}

fieldset {
    border: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
th {
    text-align: left;
}

address,
caption,
th,
cite,
code,
em,
dfn,
strong,
var {
    font-style: normal;
    font-weight: normal;
}

a:hover {
    color: #FF5A00;
    text-decoration: none;
    outline: 0;
}

i {
    font-style: normal;
}

q:before,
q:after {
    content: '';
}

abbr,
acronym {
    border: 0;
    font-variant: normal;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

input,
textarea,
select {
    *font-size: 100%;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

legend {
    color: #000;
}

a {
    color: #999;
    text-decoration: none;
}

input,
textarea {
    border: 1px solid #999;
}


/*html5*/

article,
aside,
dialog,
footer,
header,
section,
footer,
nav,
figure,
menu {
    display: block;
}

input[type="text"] {
    border: none;
    height: 28px;
    line-height: 28px;
    color: #333;
    font-size: 14px;
    font-weight: normal;
    padding: 0px 0px 0px 10px;
}

::-webkit-input-placeholder {
    color: #bbb;
    font-size: 14px;
}


/* 使用webkit内核的浏览器 */

:-moz-placeholder {
    color: #bbb;
    font-size: 14px;
}


/* Firefox版本4-18 */

::-moz-placeholder {
    color: #bbb;
    font-size: 14px;
}


/* Firefox版本19+ */

:-ms-input-placeholder {
    color: #bbb;
    font-size: 14px;
}


/* IE浏览器 */

:after,
 :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@-webkit-keyframes slide-bottom {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}


/*从底部滑入*/

@keyframes slide-bottom {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
    }
    80% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        -ms-transform: scale(0.3);
        transform: scale(0.3);
    }
    80% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

[class*=animation-] {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


/*从底部滑入*/

.animation-slide-bottom {
    -webkit-animation-name: slide-bottom;
    animation-name: slide-bottom;
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

.animation-zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

.invisible {
    visibility: hidden;
}

.animation-fade {
    -webkit-animation-name: fade;
    animation-name: fade;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.animation-scale {
    -webkit-animation-name: scale-12;
    animation-name: scale-12;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .a {
        line-height: 25px;
    }
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clearfix {
    clear: both;
    zoom: 1;
}

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

.container-wrapper {
    position: relative;
    width: 1200px;
    margin: 0 auto 50px auto;
}

.container-wrapper .top {
    height: 30px;
}

.container-wrapper .top .title-box {
    position: relative;
    font-size: 0;
}

.container-wrapper .top .title-box .b-left {
    display: inline-block;
    width: 4px;
    height: 30px;
    background: linear-gradient(#FF6F21, #FF9D33);
    background: -o-linear-gradient(#FF6F21, #FF9D33);
    border-radius: 2px;
    position: relative;
}

.container-wrapper .top .title-box .title {
    display: inline-block;
    font-size: 30px;
    color: #333;
    margin-left: 18px;
    height: 30px;
    line-height: 30px;
    vertical-align: top;
}

.container-wrapper .top .more {}

.container-wrapper .top .more .w-arrow-right {
    position: relative;
}

.container-wrapper .top .more>a {
    display: block;
    width: 80px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.05), 0px 4px 8px 0px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.container-wrapper .top .more>a:hover {
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05), 0px 8px 16px 0px rgba(0, 0, 0, 0.05);
    border-radius: 18px;
}

.container-wrapper .top .more>a:hover .more-txt {
    color: #FF5A00;
}

.container-wrapper .top .more>a:hover .w-arrow-right {
    background-position: -122px -120px;
}

.container-wrapper .top .more-txt {
    display: inline-block;
    font-size: 12px;
    color: #555;
    transition: all 0.3s;
    margin-right: 10px;
}

.arrow-right-bold {
    display: inline-block;
    width: 6px;
    height: 10px;
    border: solid #999;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    position: relative;
}

.container-wrapper .top .a-label {
    display: inline-block
}

.container-wrapper .w-label {
    display: inline-block;
    margin-left: 40px;
    vertical-align: top;
}

.container-wrapper .top .a-label .label {
    display: block;
    line-height: 30px;
    color: #333;
    border: 1px solid #e5e5e5;
    border-radius: 15px;
    background: #fff;
    padding: 0 20px;
    text-align: center;
    font-size: 14px;
    font-weight: normal;
    margin-right: 10px;
    transition: all 0.3s;
}

.container-wrapper .top .a-label:hover .label {
    color: #FF6F21;
    border: 1px solid #FF6F21;
}

.tag-wrapper {
    font-size: 0;
}

.w-tag {
    display: inline-block;
    font-size: 12px;
    color: #555;
    height: 24px;
    line-height: 24px;
    padding: 0 16px;
    border-radius: 12px;
    background: #F6F6F6;
    margin-right: 10px;
}

.w-tag:last-child {
    margin-right: 0;
}

.w-tag-mini {
    display: inline-block;
    font-size: 12px;
    color: #555;
    height: 20px;
    line-height: 20px;
    padding: 0 8px;
    border-radius: 10px;
    background: #F6F6F6;
    margin-right: 10px;
}

.w-tag-mini:last-child {
    margin-right: 0;
}

.w-tag-lg {
    display: inline-block;
    font-size: 14px;
    color: #555;
    height: 30px;
    line-height: 30px;
    padding: 0 16px;
    border-radius: 15px;
    background: #F6F6F6;
    margin-right: 10px;
}

.w-tag-lg:last-child {
    margin-right: 0;
}

.w-tag-blue {
    color: #186BD0;
    background: #E7F0FA;
}


/*住宅*/

.w-tag-orange {
    color: #FF5A00;
    background: #FFEEE5;
}


/*别墅*/

.w-tag-green {
    color: #16B981;
    background: #E7F8F2;
}


/*商业*/

.w-tag-purple {
    color: #7D4CEE;
    background: #F2EDFD;
}


/*写字楼*/

.w-tag-office {
    color: #B9824E;
    background: #F8F2ED;
}


/*公寓*/

.w-tag-apartment {
    color: #FF1E1E;
    background: #FFE8E8;
}

.main-list-tag {
    display: inline-block;
    font-size: 12px;
    color: #555;
    height: 24px;
    line-height: 24px;
    padding: 0 18px;
    border-radius: 12px;
    background: #F6F6F6;
    margin-right: 10px;
}

.main-list-tag:last-child {
    margin-right: 0;
}

.mask-img-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /*border-radius: 5px;*/
    opacity: 0;
    transition: all 0.3s;
}

.mask-img-wrap .mask-img-icon {
    display: block;
    width: 40px;
    height: 40px;
    background: url('../images/PC-new/home-all-icon.png');
    background-position: -205px -155px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
}

.mask-img-wrap .mask-img-icon-24 {
    display: block;
    width: 24px;
    height: 24px;
    background: url('../images/PC-new/zoom-in-white.png');
    background-size: 24px 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -12px;
    margin-top: -12px;
}


/*默认轮播图*/

.carousel-control.left,
.carousel-control.right {
    background-image: none;
}

.carousel-control {
    opacity: 1;
}

.carousel-control:focus,
.carousel-control:hover {
    opacity: 1;
}

.carousel-inner .item a,
.carousel-inner .item .a-big-img {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}


/*头部*/

.w-header-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    /*height:100px;*/
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.05), 0px 4px 8px 0px rgba(0, 0, 0, 0.05);
    z-index: 90;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-animation: gupIn 1s 0.1s both;
    -moz-animation: gupIn 1s 0.1s both;
    animation: gupIn 1s 0.1s both;
}

.w-header-top .container-wrapper {
    margin-bottom: 0;
    height: 70px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.w-header-top .w-logo {
    width: 136px;
    height: 30px;
    margin: 20px 0px 0 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.w-header-top .line {
    width: 1px;
    border-right: 0.5px solid #eee;
    height: 50px;
    margin-top: 10px;
    float: left;
}

.w-header-top .lines2 {
    width: 1px;
    border-right: 0.5px solid #eee;
    height: 50px;
    margin-top: 10px;
    float: left;
    position: absolute;
    left: 266px;
}

.w-header-top .w-logo>a {
    display: block;
    width: 100%;
    height: 100%;
}

.w-header-top .w-logo>a img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.w-header-top .city-box {
    width: 185px;
    margin-top: 20px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.city-box-wrap {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0 24px;
    cursor: pointer;
    transition: all 0.3s;
}

a[href='javascript:;'] {
    cursor: default !important;
}

.city-box-wrap>a {
    cursor: pointer !important;
}

.city-box-wrap:hover {
    cursor: pointer;
    /* background: #eee; */
}

.city-box-wrap>a {
    display: inline-block;
}

.container-wrapper .city-box-wrap .icon-location-city {
    display: inline-block;
    float: left;
    font-size: 14px !important;
    color: #999;
    margin-top: 0px;
    margin-left: 0px;
}

.city-box-wrap .city-name {
    display: inline-block;
    font-size: 14px;
    color: #333;
    float: left;
    max-width: 105px;
    margin: 0 15px 0px 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-left: 16px;
}

.city-box-wrap .w-arrow-down {
    float: left;
    margin-top: 12px;
}

.w-arrow-down {
    display: inline-block;
    width: 10px;
    height: 6px;
    background: url(../images/PC-new/home-all-icon.png);
    background-position: -20px -72px;
}

.w-arrow-up {
    display: inline-block;
    width: 10px;
    height: 6px;
    background: url(../images/PC-new/home-all-icon.png);
    background-position: -70px -72px;
}

.w-arrow-left {
    display: inline-block;
    width: 6px;
    height: 10px;
    background: url(../images/PC-new/home-all-icon.png);
    background-position: -172px -70px;
}

.w-arrow-right {
    display: inline-block;
    width: 6px;
    height: 10px;
    background: url(../images/PC-new/home-all-icon.png);
    background-position: -122px -70px;
}

.w-arrow-left-white {
    display: inline-block;
    width: 6px;
    height: 10px;
    background: url(../images/PC-new/home-all-icon.png);
    background-position: -272px -120px;
}

.w-arrow-right-white {
    display: inline-block;
    width: 6px;
    height: 10px;
    background: url(../images/PC-new/home-all-icon.png);
    background-position: -322px -120px;
}

.w-arrow-right-red {
    display: inline-block;
    width: 10px;
    height: 6px;
    background: url(../images/PC-new/home-all-icon.png);
    background-position: -122px -120px;
}

.w-header-top nav {
    position: relative;
}

.w-header-top .properties {
    display: none;
    position: absolute;
    width: 110px !important;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1), 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    padding-top: 10px;
    margin-left: -40px;
    margin-top: 4px;
    padding-bottom: 10px;
}

.w-header-top .properties .item {
    padding: 10px 20px;
    text-align: center;
}

.w-header-top .properties .item a {
    color: #333;
    font-size: 14px;
}

.w-header-top .properties .item:hover {
    background-color: #F6F6F6;
}

.w-header-top .w-menu {
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.w-header-top .w-menu .w-menu-item {
    float: left;
    margin-right: 50px;
    padding-bottom: 4px;
    transition: all 0.3s;
    height: 70px;
}
.w-header-top .w-menu .w-menu-item:last-child{
    margin-right: 0;
}
.w-header-top .w-menu .w-menu-item.active {
    /*border-bottom: 3px solid #FF6F21;*/
    position: relative;
}

.w-header-top .w-menu .w-menu-item.active:after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: #FF6F21;
    border-radius: 1.5px;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
}

.w-header-top .w-menu .w-menu-item.active .a-menu .desc {
    color: #FF5A00;
}

.w-header-top .w-menu .w-menu-item:hover .a-menu .desc {
    color: #FF5A00;
}

.w-header-top .w-menu .w-menu-item .a-menu {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 70px;
    text-align: center;
    position: relative;
}

.w-header-top .w-menu .w-menu-item .a-menu .desc {
    color: #333;
    font-size: 16px;
}

.w-menu-item:hover .qrcode {
    display: block;
}

.w-menu-item .qrcode {
    display: none;
    position: absolute;
    top: 70px;
    left: -30px;
    line-height: initial;
    background: #fff;
    padding: 15px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05), 0px 8px 16px 0px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    transition: all 0.3s;
}

.w-menu-item .qrcode .qrcode-img {
    width: 100px;
    height: 100px;
}

.w-menu-item .qrcode .qrcode-txt {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #555;
    margin-top: 5px;
    height: 16px;
    line-height: 16px;
}

.find-house-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(../images/PC-new/home-all-icon.png);
    background-position: -66px -17px;
    margin-right: 2px;
    position: relative;
    top: 2px;
}

.menu-phone-icon {
    display: inline-block;
    width: 12px;
    height: 16px;
    background: url(../images/PC-new/home-all-icon.png);
    background-position: -119px -17px;
    margin-right: 2px;
    position: relative;
    top: 2px;
}

.w-header-top .last-box {
    font-size: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.w-header-top .last-box .tel-icon {
    display: inline-block;
    width: 12px;
    height: 16px;
    background: url(../images/PC-new/home-all-icon.png);
    background-position: -169px -17px;
    margin-right: 10px;
    position: relative;
    top: 3px;
}

.w-header-top .last-box .tel-txt {
    display: inline-block;
    font-size: 16px;
    color: #FF5A00;
}


.w-header-top .last-box .tel-txt .num {
    font-style: normal;
    font-family: DINPro-Bold;
}

nav .indicator {
    pointer-events: none;
    position: fixed;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.default-h {
    width: 100%;
    height: 70px;
}

.w-header-top.min-header {
    height: 80px;
}

.w-header-top.min-header .container-wrapper {
    height: 80px;
}

.w-header-top.min-header .w-logo {
    width: 160px;
    height: 36px;
}

.w-header-top.min-header .w-logo,
.w-header-top.min-header .city-box {
    margin-top: 22px;
}

.w-header-top.min-header .w-menu,
.w-header-top.min-header .last-box {
    margin-top: 30px;
}


/*通用底部*/

.footer {
    background-color: #252525;
    clear: both;
    width: 100%;
    margin-top: 40px;
    padding-bottom: 30px;
}

.footer .wrapper {
    width: 1200px;
    margin: 0 auto;
}

.footer .f-title {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    margin: 0;
}

.footer .f-title .fr {
    position: relative;
    font-size: 24px;
    font-family: Avenir-Roman;
    font-weight: normal;
    color: #fff;
    margin-top: 34px;
}

.footer .f-title .fr .foot-icon {
    display: inline-block;
    position: relative;
    top: 1px;
    width: 16px;
    height: 20px;
    background: url(../images/PC-new/home-all-icon.png);
    background-position: -517px -15px;
    margin-right: 5px;
}

.footer .f-title .fl li {
    height: 100px;
    float: left;
}

.footer .f-title .fl li.nav_f {
    position: relative;
    text-align: left;
}

.footer .f-title .fl li.nav_f:hover .sitemap-quick {
    display: block;
}

.footer .f-title .fl li.nav_f .sitemap-quick {
    display: none;
    width: 200px;
    position: absolute;
    background: rgba(71, 78, 88, 0.95);
    padding: 15px;
    line-height: 20px;
    border-radius: 3px;
    right: -70px;
    top: 49px;
    z-index: 999;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    background: #333 \0;
}

.footer .f-title .fl li.nav_f .sitemap-quick p {
    color: #fff3be;
    font-size: 14px;
    font-weight: 700;
}

.footer .f-title .fl li.nav_f .sitemap-quick dd a {
    height: auto;
    margin: 5px 0;
    color: #dbece1;
}

.footer .f-title .fl li.nav_f .sitemap-quick .nav_area {
    clear: both;
    width: 200px;
    border-bottom: 1px solid #777;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.footer .f-title .fl li.nav_f .sitemap-quick .last {
    border: none;
    margin: 0;
    padding: 0;
}

.footer .f-title .fl li.nav_f .sitemap-quick a {
    color: #ddd;
    font-size: 12px;
    margin-right: 9px;
    height: 20px;
    line-height: 20px;
    padding: 0;
    float: none;
    display: inline-block;
}

.footer .f-title .fl li a {
    display: inline-block;
    color: #fff;
    margin-right: 30px;
    margin-top: 40px;
    font-size: 16px;
}

.footer .f-title .fl li.img a {
    position: relative;
    top: 1px;
}

.footer .f-title .fl li a:hover {
    text-decoration: none;
}

.footer .f-title .fl li a>img {
    display: block;
    /* width: 92px;
    height: 20px; */
}

.footer .link-box {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background: none;
    /*overflow: hidden;*/
    min-height: 70px;
}

.footer .link-box .fl .tab {
    height: 40px;
    font-size: 0;
}

.footer .link-box .fl .tab .tab-item {
    display: inline-block;
    margin-right: 30px;
    padding-top: 20px;
    border-top: 2px solid transparent;
}

.footer .link-box .fl .tab .tab-item span {
    display: block;
    color: #999;
    font-size: 16px;
    cursor: pointer;
}

.foot-bottom {
    margin-top: 20px;
}

.footer .link-box .fl .tab .tab-item.active {
    /*border-top: 2px solid #EA5504;*/
    position: relative;
}

.footer .link-box .fl .tab .tab-item.active:after {
    content: '';
    display: block;
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #EA5504;
    -webkit-border-radius: 1.5px;
    -moz-border-radius: 1.5px;
    border-radius: 1.5px;
}

.footer .link-box .fl .tab .tab-item.active span {
    color: #fff;
}

.footer .link-list {
    margin-top: 25px;
    padding-bottom: 20px;
    max-height: 110px;
    display: none;
    overflow: hidden;
}

.footer .link-box .fl dd .brand-house-item {
    color: #999;
    font-size: 12px;
    display: inline-block;
    position: relative;
    margin-right: 10px;
    padding-right: 15px;
    margin-bottom: 12px;
}

.footer .link-box .fl dd .brand-house-item:hover {
    color: #fff;
}

.footer .link-box .fl dd .brand-house-item:before {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 3px;
    width: 1px;
    height: 10px;
    background: #555;
}

.footer .link-box .fl dd .brand-house-item:last-child:before {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 9px;
    width: 0;
}

.footer .link-box .fr img {
    border: 5px solid #fff;
    border-radius: 2px;
    width: 129px;
    height: 129px;
}

.footer .copy {
    color: #999;
    font-size: 12px;
    line-height: 30px;
    font-family: "Avenir-Medium", "Microsoft YaHei";
}

.footer .info_1.fr {
    text-align: right;
}

.footer .online-chat-box {
    display: inline-block;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 20;
}

.footer .online-chat-box .online-chat-icon {
    display: block;
    width: 140px;
    height: 60px;
    background: url(../images/chat/online-icon.png) no-repeat 0 0;
    background-size: 100%;
}


/*城市选择框*/

.w-dialog {
    width: 720px;
    height: 540px;
    background: #fff;
    box-shadow: 0px 0px 48px 0px rgba(0, 0, 0, 0.1), 0px 48px 96px 0px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    position: fixed;
    z-index: 9999;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
}

.w-dialog .close-box {
    display: inline-block;
    width: 40px;
    height: 40px;
    overflow: hidden;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.w-dialog .close-box:hover .close-icon {
    background-position: -470px -20px;
}

.w-dialog .close-box .close-icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close-icon {
    background: url(../images/PC-new/home-all-icon.png);
    background-position: -420px -20px;
}

.city-change .fc-main {
    height: 397px;
    margin-top: 20px;
    overflow-y: auto;
    padding-left: 50px;
    padding-right: 20px;
    margin-right: 12px;
}

.city-change .fc-main .citys-l {
    width: 100%;
}

.city-change .fc-main .citys-r {
    width: 50%;
    height: 100%;
}

.city-change .fc-main ul {
    display: inline-block;
}

.city-change .fc-main li {
    padding-top: 30px;
}

.city-change .fc-main li:hover .code-title {
    background: -webkit-linear-gradient( #FF6F21, #FF9D33);
    background: -o-linear-gradient( #FF6F21, #FF9D33);
    background: -moz-linear-gradient( #FF6F21, #FF9D33);
    background: linear-gradient( #FF6F21, #FF9D33);
    color: #fff;
}

.city-change .fc-main li .code-title {
    display: inline-block;
    margin-right: 20px;
    color: #999;
    width: 40px;
    height: 40px;
    line-height: 42px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1), 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    text-align: center;
    font-size: 18px;
    font-family: Avenir-Medium;
    font-weight: 500;
    position: relative;
    top: -10px;
    transition: all 0.3s;
}

.city-change .fc-main li .city-enum {
    height: 100%;
    width: 560px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.city-change .fc-main li .city-enum a {
    margin-right: 30px;
    margin-bottom: 22px;
    display: inline-block;
    color: #333;
    font-size: 14px;
    height: 20px;
}

.city-change .fc-main li .city-enum a:hover {
    color: #FF5A00;
    border-bottom: 1px solid #FF5A00;
}

.city-change .title-line {
    width: 590px;
    height: 1px;
    background-color: #eee;
    margin: 0 auto;
    margin-bottom: 25px;
    margin-top: 10px;
}

.city-change .title {
    margin-top: 40px;
    padding-left: 50px;
    font-size: 30px;
    color: #333;
    position: relative;
}

.city-change .title .city-tab {
    display: inline-block;
    float: right;
    margin-right: 50px;
}

.city-change .title .city-tab span {
    font-size: 14px;
    font-weight: normal;
    display: inline-block;
    margin-right: 9px;
    color: #999;
}

.city-change .title .city-tab a {
    font-size: 14px;
    font-weight: normal;
    margin-left: 10px;
    color: #333;
}

.city-change .title .city-tab a:hover {
    color: #FF5A00;
}

.city-change .title .more {
    font-size: 12px;
    color: #00b064;
    text-align: right;
}


/*滚动条设置*/


/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/

.city-change ::-webkit-scrollbar {
    margin: 0 10px 0 0;
    width: 4px;
    height: 8px;
    background-color: transparent;
}


/*定义滚动条轨道 内阴影+圆角*/

.city-change ::-webkit-scrollbar-track {
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
    /*border-radius: 10px;*/
    background-color: transparent;
}


/*定义滑块 内阴影+圆角*/

.city-change ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);*/
    background-color: #eee;
}


/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/

.search-house-box ::-webkit-scrollbar,
.detail-main-map ::-webkit-scrollbar {
    width: 4px;
    height: 8px;
    background-color: transparent;
}


/*定义滚动条轨道 内阴影+圆角*/

.search-house-box ::-webkit-scrollbar-track,
.detail-main-map ::-webkit-scrollbar-track {
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
    /*border-radius: 10px;*/
    background-color: transparent;
}


/*定义滑块 内阴影+圆角*/

.search-house-box ::-webkit-scrollbar-thumb,
.detail-main-map ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, .1);
    box-shadow: 0 0 4px rgba(0, 0, 0, .1);
    background-color: #ccc;
}

.mp-form-group ::-webkit-scrollbar,
.detail-main-map ::-webkit-scrollbar {
    width: 4px;
    height: 8px;
    background-color: transparent;
}

.mp-form-group ::-webkit-scrollbar-track,
.detail-main-map ::-webkit-scrollbar-track {
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
    /*border-radius: 10px;*/
    background-color: transparent;
}

.mp-form-group ::-webkit-scrollbar-thumb,
.detail-main-map ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, .1);
    box-shadow: 0 0 4px rgba(0, 0, 0, .1);
    background-color: #ccc;
}


/*面包屑*/

.intro {
    /*height: 100px !important;*/
    /* background: #F6F6F6 !important; */
    background: #Fafafa !important;
}

.intro .container {
    width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.intro .container .l-txt {
    height: 60px;
    line-height: 60px;
}

.intro .l-txt,
.intro .r-txt {
    font-size: 12px;
}

.intro .l-txt i {
    display: inline-block;
    /*background: url(../images/bg.png) no-repeat -12px -7px;*/
    width: 16px;
    height: 16px;
    position: relative;
    top: 3px;
    background: url(../images/PC-new/home-all-icon.png);
    background-position: -617px -17px;
}

.intro .l-txt>a {
    color: #999;
    font-size: 14px;
}

.intro .l-txt .a-crumbs:last-child {
    color: #555;
}

.intro .l-txt .a-crumbs:last-child:hover {
    color: #FF5A00;
}

.intro .l-txt>a:hover {
    color: #FF5A00;
}

.intro .l-txt span {
    color: #999;
}

.intro .l-txt span.stp {
    color: #999;
    /*font-family: simsun;*/
}

.intro .l-txt .num {
    color: #e4393c;
}

.intro .r-txt {
    color: #888;
    max-width: 500px;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.intro .r-txt .desc {
    color: #39ac6a;
}

.new-search-box {
    width: 360px;
}

.new-search-box form {
    position: relative;
}

.new-search-box .input-box {
    width: 400px;
    height: 50px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1), 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    background: #fff;
}

.new-search-box .search-house-box .search {
    margin-top: 17px;
}

.input-box .form-control {
    position: absolute;
    width: 400px;
    height: 50px;
    padding-left: 20px;
    padding-right: 50px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    top: 0;
    left: 0;
    background: transparent;
    line-height: 50px;
    border: 0;
    color: #333;
}

.input-box .form-control::-webkit-input-placeholder {
    color: #bbb;
}

.input-box .act_submit {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    right: 0px;
    top: 0px;
    text-align: center;
    vertical-align: middle;
}

.input-box .act_submit i {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-top: 8px;
    background: url(../images/PC-new/home-all-icon.png);
    background-position: -715px -15px;
    position: relative;
    top: 8px;
}


/*动画效果 定义*/

@-webkit-keyframes gupIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -30px, 0);
    }
}

@-moz-keyframes gupIn {
    from {
        opacity: 0;
        -moz-transform: translate3d(0, -30px, 0);
    }
}

@keyframes gupIn {
    from {
        opacity: 0;
        transform: translate3d(0, -30px, 0);
    }
}

@-webkit-keyframes gupInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
    }
}

@-moz-keyframes gupInLeft {
    from {
        opacity: 0;
        -moz-transform: translate3d(0, 0, 0);
    }
}

@keyframes gupInLeft {
    from {
        opacity: 0;
        transform: translate3d(0, 0, 0);
    }
}


/*搜索*/

.search-house-box .search-list {
    position: absolute;
    top: 46px;
    left: 0;
    background: #fff;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.05), 0px 4px 8px 0px rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    z-index: 9;
    display: none;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    -webkit-animation: gupIn 0.5s 0.1s both;
    -moz-animation: gupIn 0.5s 0.1s both;
    animation: gupIn 0.5s 0.1s both;
    padding: 10px 0;
}

.search-house-box .search-list>ul {
    width: 260px;
    max-height: 260px;
    overflow-x: hidden;
    overflow-y: auto;
}

.search-house-box .search-list-item {
    width: 260px;
}

.search-house-box .a-search-list-item {
    display: block;
    width: 100%;
    height: 100%;
}

.search-house-box .a-search-list-item>span {
    display: block;
    color: #333;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-left: 20px;
}

.search-house-box .a-search-list-item:hover>span {
    color: #FF5A00;
}

.search-house-box .a-search-list-item:hover {
    background: #FAFAFA;
}

.search-house-box .search {
    position: relative;
    margin-top: 23px;
    width: 100%;
}

.search-house-box .search .input-search {
    width: 100%;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1), 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    padding-left: 20px;
    padding-right: 50px;
    border: none;
    z-index: 10;
    position: relative;
    padding-top: 16px;
    padding-bottom: 16px;
    height: 46px;
    font-size: 14px;
}

.search-house-box .search .input-search:focus,
.search-house-box .search .input-search:active {
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05), 0px 8px 16px 0px rgba(0, 0, 0, 0.05);
}

.search-house-box .search .input-search:focus,
.search-house-box .search .input-search:active {
    outline: none;
    border: none;
}

.search-house-box .search .search-icon-wrtap {
    display: inline-block;
    width: 46px;
    height: 46px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    z-index: 10;
}

.search-house-box .search .search-icon-wrtap:hover .search-icon {
    background-position: -715px -15px;
}

.search-house-box .search .search-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/PC-new/home-all-icon.png);
    background-position: -665px -15px;
    position: absolute;
    right: 20px;
    top: 13px;
}

.new-search-box .search-list {
    width: 100%;
}

.new-search-box .search-list>ul {
    width: 100%;
}

.new-search-box .search-list .search-list-item {
    width: 100%;
    display: inline-block;
}

.parting-line {
    display: inline-block;
    width: 1px;
    height: 14px;
    margin: -2px 12px;
    background: #ccc;
}

.detail-b-shadow {
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1), 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}


/*轮播图样式*/

.carousel-control {
    width: 40px;
    height: 40px;
    top: 50%;
    margin-top: -20px;
    /*background: #000;*/
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: none;
}

#carousel-activity:hover .carousel-control,
#news-activity:hover .carousel-control {
    display: block;
}

.carousel-control.left {
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1), 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.carousel-control.right {
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1), 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.prev-left {
    display: block;
    width: 6px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -3px;
    margin-top: -5px;
}

.prev-right {
    display: block;
    width: 6px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -3px;
    margin-top: -5px;
}

.carousel-control:focus,
.carousel-control:hover,
.carousel-control:focus,
.carousel-control:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
}

.new-popup-dialog-tip {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 1010;
    display: none;
}

.new-popup-dialog-tip .tip-wrap {
    width: 240px;
    height: 240px;
    display: inline-block;
    text-align: center;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    box-shadow: 0px 0px 48px 0px rgba(0, 0, 0, 0.1), 0px 48px 96px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-left: -120px;
    margin-top: -120px;
}

.new-popup-dialog-tip .tip-wrap .icon-box {
    text-align: center;
    margin-top: 50px;
}

.new-popup-dialog-tip .tip-wrap .icon-box i {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /*background: url(../images/H5/home/tip-success.png) no-repeat;*/
    background: #ddd;
}

.new-popup-dialog-tip .tip-wrap .icon-box i.success {
    position: relative;
    background: -webkit-linear-gradient(-30deg, rgba(60, 239, 195, 1), rgba(32, 195, 182, 1));
    background: -o-linear-gradient(-30deg, rgba(60, 239, 195, 1), rgba(32, 195, 182, 1));
    background: -moz-linear-gradient(-30deg, rgba(60, 239, 195, 1), rgba(32, 195, 182, 1));
    background: linear-gradient(-30deg, rgba(60, 239, 195, 1), rgba(32, 195, 182, 1));
    box-shadow: 0px 0px 8px 0px rgba(55, 203, 191, 0.1), 0px 8px 16px 0px rgba(55, 203, 191, 0.1);
}

.new-popup-dialog-tip .tip-wrap .icon-box i.success:before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    background: url(../images/PC-new/home-all-icon.png);
    background-position: -600px -300px;
}

.new-popup-dialog-tip .tip-wrap .icon-box i.error {
    position: relative;
    background: -webkit-linear-gradient(-30deg, rgba(255, 165, 142, 1), rgba(255, 110, 145, 1));
    background: -o-linear-gradient(-30deg, rgba(255, 165, 142, 1), rgba(255, 110, 145, 1));
    background: -moz-linear-gradient(-30deg, rgba(255, 165, 142, 1), rgba(255, 110, 145, 1));
    background: linear-gradient(-30deg, rgba(255, 165, 142, 1), rgba(255, 110, 145, 1));
    box-shadow: 0px 0px 8px 0px rgba(255, 110, 145, 0.1), 0px 8px 16px 0px rgba(255, 110, 145, 0.1);
}

.new-popup-dialog-tip .tip-wrap .icon-box i.error:before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    background: url(../images/PC-new/home-all-icon.png);
    background-position: -650px -300px;
}

.new-popup-dialog-tip .tip-wrap .icon-box i.warn {
    position: relative;
    background: -webkit-linear-gradient(-30deg, rgba(255, 156, 0, 1), rgba(255, 111, 33, 1));
    background: -o-linear-gradient(-30deg, rgba(255, 156, 0, 1), rgba(255, 111, 33, 1));
    background: -moz-linear-gradient(-30deg, rgba(255, 156, 0, 1), rgba(255, 111, 33, 1));
    background: linear-gradient(-30deg, rgba(255, 156, 0, 1), rgba(255, 111, 33, 1));
    box-shadow: 0px 0px 8px 0px rgba(255, 111, 33, 0.1), 0px 8px 16px 0px rgba(255, 111, 33, 0.1);
}

.new-popup-dialog-tip .tip-wrap .icon-box i.warn:before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    background: url(../images/PC-new/home-all-icon.png);
    background-position: -700px -300px;
}

.new-popup-dialog-tip .tip-wrap .txt {
    font-size: 24px;
    height: 24px;
    color: #333;
    margin-top: 30px;
}


/*大图*/

@media screen and (min-width: 1920px) {
    .photo-box-dialog {
        width: 1000px !important;
        height: 750px !important;
    }
    {
        width: 1000px !important;
        height: 750px !important;
    }
}

#foot_2 {
    width: 100%;
    height: 100px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1), 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
    padding: 22px;
    background: #252525;
    margin-top: 20px;
}

#foot_2 .company {
    text-align: center;
    color: #999;
    font-size: 12px;
    line-height: 30px;
}

#foot_2 .company .parting-line {
    height: 12px;
}

.alt-bg-img {
    position: absolute;
    top: 0;
    opacity: 0;
    width: 50px;
    height: 50px;
}

.information-search-box {
    width: 280px;
    margin-top: 15px;
    display: none;
}

.information-search-box .search-house-box .search {
    margin-top: 0;
}

.information-search-box .search-house-box .search-list>ul {
    width: 280px;
}

.information-search-box .search-house-box .search-list-item {
    width: 280px;
}

.information-search-box .search-house-box .search .input-search {
    height: 40px;
    padding-top: 13px;
    padding-bottom: 13px;
}


/*暂无内容*/

.no-main-txt-wrap-box {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 150px;
}

.no-main-txt-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -65px;
    margin-top: -73px;
    text-align: center;
}

.no-main-txt-wrap .icon {
    display: inline-block;
    width: 86px;
    height: 100px;
    background: url("../images/PC-new/icon-none.png");
    -webkit-background-size: 86px 100px;
    background-size: 86px 100px;
}

.no-main-txt-wrap .txt,
.no-main-txt-wrap .txt1 {
    color: #bbb;
    font-size: 16px;
    height: 17px;
    margin-top: 22px;
}

.w-number {
    font-family: DINPro-Medium;
}

.null_tip {
    margin-top: 20px;
    text-align: center;
}

.noimg {
    display: inline-block;
    width: 86px;
    height: 100px;
    background: url("../images/PC-new/icon-none.png")no-repeat;
    -webkit-background-size: 86px 100px;
    background-size: 86px 100px;
    margin-bottom: 20px;
}

.a-item .corner-marker {
    position: absolute;
    top: 0;
    left: 10px;
    width: 40px;
    height: 40px;
}


/*在线聊天*/

.chat-dialog-box {
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
}

.chat-dialog {
    position: relative;
    background: #FFF;
    /* height:550px; */
    height: 580px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -275px;
    margin-left: -400px;
    box-shadow: 0 0 4px #ccc;
    z-index: 10005;
    overflow: hidden;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 48px 0px rgba(0, 0, 0, 0.1), 0px 48px 96px 0px rgba(0, 0, 0, 0.1);
}

.big-chat-dialog {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-top: 0;
    margin-left: 0;
    z-index: 10005;
    overflow: hidden;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.chat-dialog-box .chat-mask {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

.chat-dialog .msg-lists {
    float: left;
    width: 240px;
    height: 100%;
    font-size: 14px;
    box-sizing: border-box;
}

#chat-dialog-box .chat-dialog .msg-lists .search {
    border-bottom: 1px solid #f6f6f6;
    overflow: hidden;
    box-sizing: border-box;
    width: 240px;
    height: 70px;
    background: #FFF;
    text-align: center;
    line-height: 68px;
}

#chat-dialog-box .chat-dialog .msg-lists .search-input {
    box-sizing: border-box;
    width: 200px;
    height: 30px;
    background: rgba(246, 246, 246, 1);
    border-radius: 15px;
    font-size: 12px;
    padding: 9px 0px 8px 15px;
}

.chat-dialog .msg-lists .search-input:before {
    content: '';
    /*background: #000;*/
}

.chat-dialog .msg-lists .msg-lists-contacts {}

.chat-dialog .msg-lists .msg-lists-contacts .no-search {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: rgb(153, 153, 153);
}

.chat-dialog .msg-lists .msg-lists-contacts ul {
    width: 100%;
    height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}

.big-content-list {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.chat-dialog .msg-lists .msg-lists-contacts .item {
    position: relative;
    display: block;
    padding: 15px 20px;
    cursor: pointer;
    width: 100%;
    float: left;
}

.chat-dialog .msg-lists .msg-lists-contacts .item:hover {
    background: #f6f6f6;
}

.chat-dialog .msg-lists .msg-lists-contacts .item.active {
    background: #ddd;
}

.chat-dialog .msg-lists .msg-lists-contacts .item .time {
    position: absolute;
    right: 10px;
    top: 18px;
    font-size: 12px;
    color: #999;
}

.chat-dialog .msg-lists .msg-lists-contacts .item .information {
    position: absolute;
    right: 10px;
    top: 47px;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    background-color: #FF6F21;
    padding: 3px 5px;
    font-family: 'Avenir-Medium', 'Microsoft YaHei';
}

.chat-dialog .msg-lists .msg-lists-contacts .item img {
    width: 50px;
    height: 50px;
    background: rgba(246, 246, 246, 1);
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1), 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    margin-right: 21px;
    float: left;
}

.chat-dialog .msg-lists .msg-lists-contacts .item .badge {
    display: inline-block;
    position: absolute;
    left: 40px;
    top: 4px;
    padding: 2px;
    min-width: 16px;
    min-height: 16px;
    line-height: 1rem;
    font-size: 12px;
    background-color: #f00;
    color: #fff;
    text-align: center;
    border-radius: 12px;
}

.chat-dialog .msg-lists .msg-lists-contacts .item .info {
    float: left;
    width: 115px;
}

.chat-dialog .msg-lists .msg-lists-contacts .item .info .name {
    font-size: 14px;
    color: #333;
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-bottom: 14px;
    width: 80%;
}

.chat-dialog .msg-lists .msg-lists-contacts .item .info .txt {
    width: 80%;
    font-size: 12px;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.chat-dialog .msg-content {
    float: left;
    width: 620px;
    height: 100%;
    box-sizing: border-box;
    border-left: 1px solid #f6f6f6;
}

.big-msg-content {
    float: left;
    width: 100%;
    height: 100%;
    /* position: fixed; */
    position: absolute;
    left: 240px;
    /* right: 250px;  */
}

.chat-dialog .msg-content .top-header {
    width: 100%;
    height: 70px;
    padding: 8px;
    box-sizing: border-box;
    /* border-bottom: 1px solid #f6f6f6; */
    padding-left: 20px;
}

.chat-dialog .msg-content .top-header .img-icon {
    float: left;
    width: 38px;
    height: 38px;
    margin: 0 10px 0 4px;
    position: relative;
    bottom: 3px;
    border-radius: 50%;
    overflow: hidden;
}

.chat-dialog .msg-content .top-header .img-icon img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10%;
}

.chat-dialog .msg-content .top-header .top-name {
    float: left;
    color: #fff;
    font-size: 14px;
    position: relative;
    top: -7px;
}

.chat-dialog .msg-content .top-header .top-name .title {
    font-size: 16px;
    text-align: left;
    font-weight: 400;
    color: #333;
    line-height: 70px;
}

.chat-dialog .msg-content .top-header .top-name .title .punctuation {
    width: 6px;
    height: 6px;
    background: rgba(204, 204, 204, 1);
    border-radius: 50%;
    display: inline-block;
}

.chat-dialog .msg-content .top-header .show-tool {
    float: right;
    line-height: 60px;
    margin-right: 10px;
}

.chat-dialog .msg-content .top-header .scale-model {
    display: inline-block;
    margin-right: 6px;
    width: 20px;
    height: 13px;
    background: url("../images/PC-new/icon-minimize.png") no-repeat 0 0;
    cursor: pointer;
}

.chat-dialog .msg-content .top-header .btn-window {
    display: inline-block;
    margin-right: 6px;
    width: 20px;
    height: 13px;
    background: url("../images/PC-new/icon-fullscreen.png")no-repeat 0 0;
    cursor: pointer;
}

.chat-dialog .msg-content .top-header .close-model {
    display: inline-block;
    width: 20px;
    height: 13px;
    background: url("../images/PC-new/icon-close-window.png") no-repeat 0 0;
    cursor: pointer;
}

.chat-dialog .msg-content .top-header .scale-model:hover,
.chat-dialog .msg-content .top-header .close-model:hover {
    opacity: 0.8;
}


/*聊天列表*/

.chat-dialog .msg-content .chat-content {
    width: 100%;
    /* height: 370px; */
    height: 63.6%;
    overflow-y: scroll;
    overflow-x: hidden;
}

.chat-content .pc-chat-list {
    position: relative;
    display: block;
    box-sizing: border-box;
    padding: 10px 5px;
    width: 100%;
}

.chat-dialog .msg-content .chat-content .pc-chat-list {
    text-align: center;
}

#chat-dialog-box .chat-dialog .msg-content .chat-content .pc-chat-list .u-msg {
    position: relative !important;
    padding: 0 !important;
    font-size: 12px !important;
    color: #999 !important;
    text-align: center !important;
    margin-bottom: 20px !important;
    padding-bottom: 2px !important;
}

#chat-dialog-box .chat-content .pc-chat-list .u-msg.item-time {
    margin-bottom: 0px;
}

#chat-dialog-box .chat-content .pc-chat-list .u-msg.session-chat {
    margin-bottom: 0px;
}

.chat-content .pc-chat-list .u-msg.session-chat {
    padding: 10px 0 !important;
    overflow: hidden;
}

.chat-content .pc-chat-list .u-msg.item-time {
    padding: 8px 0;
}

.chat-content .pc-chat-list .u-msg.item-time div {
    display: inline-block;
    color: #999;
    font-size: 12px;
}

.chat-content .pc-chat-list .u-msg.item-time .item {}

.chat-content .pc-chat-list .u-msg .msg-head {
    float: left;
    position: relative;
    display: inline-block;
    margin: 0;
    margin: 0 10px;
    width: 40px;
    height: 40px;
    padding: 0;
    vertical-align: top;
}

.chat-content .pc-chat-list .u-msg .msg-head .icon-head {
    display: inline-block;
    margin: 0;
    width: 100%;
    height: 100%;
}

.chat-content .pc-chat-list .u-msg.item-me .msg-text {
    float: left;
    /* background: #f6f6f6; */
    background: #FFF7F2;
    color: #333;
    border-radius: 5px;
    font-family: Microsoft YaHei;
}

.chat-content .pc-chat-list .u-msg.item-me.other-box .msg-text .text {
    font-size: 14px;
    color: #555;
}

.chat-content .pc-chat-list .u-msg.item-me.other-box .msg-text .phone-number {
    color: #FF5A00;
    font-family: 'Avenir-Medium', 'Microsoft YaHei';
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 24px;
}

.chat-content .pc-chat-list .u-msg.item-me.other-box .msg-text .fl .other-business {
    margin-top: 12px;
    color: #fff;
    font-size: 14px;
    background-color: #FF6F21;
}

.chat-content .pc-chat-list .u-msg.item-me.other-box .msg-text .counseling {
    height: 40px;
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    box-shadow: 0px 0px 2px 0px rgba(255, 111, 33, 0.1), 0px 2px 4px 0px rgba(255, 111, 33, 0.1);
    border-radius: 20px;
    padding: 13px 33px;
    color: #fff;
    font-size: 14px;
    display: inline-block;
    background-color: #FF6F21;
    line-height: 14px;
    margin-right: 20px;
    margin-top: 23px;
}

.chat-content .pc-chat-list .u-msg.item-me.other-box .msg-text .other-business {
    display: inline-block;
    height: 40px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1), 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 12px 24px;
    color: #333;
    line-height: 14px;
    margin-top: 23px;
}

.chat-content .pc-chat-list .u-msg.item-you .building-links {
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1), 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display: inline-block;
    float: left;
    padding-bottom: 20px;
}

.chat-content .pc-chat-list .u-msg.item-you .building-links .building-img {
    width: 260px;
    height: 195px;
    background-color: #ddd;
    border-radius: 5px 5px 0px 0px;
    margin-bottom: 20px;
}

.chat-content .pc-chat-list .u-msg.item-you .building-links .details-box {
    padding-left: 20px;
    text-align: left;
    font-size: 12px;
}

.chat-content .pc-chat-list .u-msg.item-you .building-links .building-name {
    color: #333;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: left;
    margin-left: 20px;
}

.chat-content .pc-chat-list .u-msg.item-you .building-message {
    margin-left: 20px;
    text-align: left;
}

.chat-content .pc-chat-list .u-msg.item-you .building-message .using {
    font-size: 12px;
    color: #777;
}

.chat-content .pc-chat-list .u-msg.item-you .building-message .area {
    /* border-right: 1px solid #ccc; */
    font-size: 12px;
    color: #777;
    padding-right: 5px;
}

.chat-content .pc-chat-list .u-msg.item-you .building-message .price {
    color: #FF5A00;
    font-size: 14px;
    text-align: right;
    font-family: 'Avenir-Medium', 'Microsoft YaHei';
}

.chat-content .pc-chat-list .u-msg.item-me .business-links {
    display: inline-block;
    width: 260px;
    height: 180px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1), 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    float: right;
}

.chat-content .pc-chat-list .u-msg.item-me .business-links .business-card {
    padding: 20px;
    text-align: left;
}

.chat-content .pc-chat-list .u-msg.item-me .business-links .business-card .business-name {
    display: inline-block;
    color: #333;
    font-size: 16px;
}

.chat-content .pc-chat-list .u-msg.item-me .business-links .business-card .response {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    border-radius: 14px;
    display: inline-block;
    background-color: #1C82FF;
    padding: 6px 10px;
    color: #fff;
    font-size: 12px;
    margin-left: 20px;
}

.chat-content .pc-chat-list .u-msg.item-me .business-links .business-message {
    border-top: 1px solid #eee;
    margin-top: 18px;
    padding-top: 18px;
    text-align: left;
}

.chat-content .pc-chat-list .u-msg.item-me .business-links .business-message span {
    font-size: 14px;
    color: #555;
    font-family: 'Avenir-Medium', 'Microsoft YaHei';
}

.chat-content .pc-chat-list .u-msg.item-me .msg-head {
    float: right;
}

.chat-content .pc-chat-list .u-msg.item-me .msg-text {
    float: right;
    /* background: #f6f6f6; */
    background: #FFF7F2;
    color: #333;
    border-radius: 5px;
    font-family: Microsoft YaHei;
}

.chat-content .pc-chat-list .u-msg.item-me .item {
    /* text-align: right; */
}

.chat-content .pc-chat-list .u-msg.item-you .item .single-figure {
    max-width: 460px;
    max-height: 230px;
    float: left;
    /* opacity: 0.5; */
    border-radius: 5px;
    /* background: rgba(0, 0, 0, 1); */
}

.chat-content .pc-chat-list .u-msg.item-you .item .msg-text {
    float: left;
}

.chat-content .pc-chat-list .u-msg.session-chat .msg-text {
    padding: 12px 20px;
    text-align: left;
    font-size: 14px;
    line-height: 24px;
    background-color: #FFF7F2;
}

.chat-content .pc-chat-list .u-msg.item-you.session-chat .msg-text {
    padding: 12px 20px;
    text-align: left;
    font-size: 14px;
    line-height: 24px;
    background-color: #f6f6f6;
}

.chat-content .pc-chat-list .u-msg .msg-text {
    position: relative;
    display: inline-block;
    max-width: 78%;
    min-height: 1.2rem;
    word-break: break-all;
    height: auto;
    line-height: 1.2rem;
    font-size: 0.9rem;
    /*border:0;*/
}

.chat-content .pc-chat-list .u-msg .msg-text .fl {
    display: inline-block;
    width: 66%;
    margin: 18px 0px 20px 0px;
}

.chat-content .pc-chat-list .u-msg .msg-text .fr {
    width: 130px;
    /* height: 140px; */
    padding: 20px 20px 12px 20px;
    display: inline-block;
    border-left: 1px solid #eee;
}

.chat-content .pc-chat-list .u-msg .consultant-qr-code .fr {
    padding-top: 30px;
}

.chat-content .pc-chat-list .u-msg .consultant-qr-code .fr .qr-code-pic {
    margin-bottom: 15px;
}

.chat-content .pc-chat-list .u-msg .msg-text .fr .qr-code-pic {
    width: 90px;
    height: 90px;
    background-color: #ddd;
}

.chat-content .pc-chat-list .u-msg .msg-text .fr .qr-code-text {
    font-size: 12px;
    color: #555;
    font-weight: 400;
}

.chat-content .pc-chat-list .u-msg .msg-text.a-msg-text {
    padding: 0;
    background: transparent;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1), 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display: inline-block;
    padding-bottom: 20px;
}

.chat-content .pc-chat-list .u-msg.session-chat .msg-text .a-box {
    display: block;
    text-align: left;
}

.chat-content .pc-chat-list .u-msg.session-chat {
    font-size: 16px;
}

.chat-content .pc-chat-list .u-msg.session-chat .msg-text .a-box .img-box {
    /* padding: 15px; */
    /* width: 220px;
    height: 120px; */
    /* background: #ea5504; */
    /* border-radius: 16px 0 0 0; */
    width: 100%;
    height: 100%;
}

.chat-content .pc-chat-list .u-msg.session-chat .msg-text .a-box .a-img {
    display: inline-block;
    width: 100%;
    height: 100%;
    width: 260px;
    height: 195px;
    margin-bottom: 20px;
    border-radius: 5px 5px 0px 0px;
}

.chat-content .pc-chat-list .u-msg.session-chat .msg-text .a-box .info {
    background: #fff;
    color: #333;
    padding: 0px 20px;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    width: 260px;
}

.chat-content .pc-chat-list .u-msg.session-chat .msg-text .a-box h3 {
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
}

.chat-content .pc-chat-list .u-msg.session-chat .msg-text .a-box .area {
    /* font-size: 14px;
    display: block;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; */
    /* border-right: 1px solid #ccc; */
    font-size: 12px;
    color: #777;
    padding-right: 5px;
    text-align: left;
}

.chat-content .pc-chat-list .u-msg.session-chat .msg-text .a-box .using {
    font-size: 12px;
    color: #777;
}

.chat-content .pc-chat-list .u-msg.session-chat .msg-text .a-box .price {
    color: #FF5A00;
    font-size: 14px;
    text-align: right;
    font-family: 'Avenir-Medium', 'Microsoft YaHei';
}

.chat-content .pc-chat-list .u-msg .msg-text .normal-img {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    max-width: 100%;
    vertical-align: bottom;
}

.chat-content .pc-chat-list .u-msg .u-circle {
    border-radius: 50%;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1), 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.chat-dialog .msg-content .chat-editor {
    position: relative;
    width: 100%;
    background: #fff;
    border-top: 1px solid #f6f6f6;
}

.chat-dialog .msg-content .big-chat-editor {
    /* position: fixed; */
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 100%;
    background: #fff;
    border-left: 1px solid #f6f6f6;
}

.chat-dialog .msg-content .chat-editor .chat-editor-tool {
    height: 36px;
    width: 100%;
}

.chat-dialog .msg-content .chat-editor .chat-editor-tool .tool-icon {
    float: left;
    margin-left: 10px;
    /*margin-top:10px;*/
}

.chat-dialog .msg-content .chat-editor .chat-editor-tool .tool-icon .icon-emil:hover,
.chat-dialog .msg-content .chat-editor .chat-editor-tool .tool-icon .icon-photo:hover {
    opacity: 0.7;
}

.chat-dialog .msg-content .chat-editor .chat-editor-tool .tool-icon .icon-emil {
    display: inline-block;
    width: 21px;
    height: 21px;
    margin: 0 5px;
    background: url('../images/chat/smile.png') no-repeat;
    cursor: pointer;
}

.chat-dialog .msg-content .chat-editor .chat-editor-tool .tool-icon .icon-photo {
    display: inline-block;
    width: 21px;
    height: 21px;
    margin: 0 5px;
    /* background: url("../images/chat/photo.png") no-repeat; */
    background: url("../images/PC-new/icon-picture.png") no-repeat;
    cursor: pointer;
    font-size: 0;
}

.big-icon-photo {
    display: inline-block;
    width: 42px !important;
    height: 38px !important;
    margin: 0 5px;
    background: url("../images/PC-new/icon-picture@2x.png")no-repeat 0 0 !important;
    cursor: pointer;
    font-size: 0;
}

.chat-dialog .msg-content .chat-editor .chat-editor-tool .tool-icon .icon-photo input[type='file'] {
    display: inline-block;
    float: left;
    width: 21px;
    height: 21px;
    opacity: 0;
}

.chat-dialog .msg-content .chat-editor .chat-editor-tool .msg-histroy {
    float: right;
    margin-top: 12px;
    margin-right: 10px;
    color: #ea5504;
    cursor: pointer;
}

.chat-dialog .msg-content .chat-editor .chat-editor-tool .msg-histroy:hover {
    opacity: 0.8;
}

.chat-dialog .msg-content .chat-editor .chat-editor-txt {
    width: 100%;
    height: 56px;
    height: 98px;
    padding: 5px 12px;
    box-sizing: border-box;
}

.chat-dialog .msg-content .chat-editor .chat-editor-txt .edit-textarea {
    width: 100%;
    height: 100%;
    background: transparent;
    border: 0;
    font-size: 14px;
    color: #333;
}

.chat-dialog .msg-content .chat-editor .edit-footer {
    /* width: 100%;
    height: 37px; */
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.chat-dialog .msg-content .chat-editor .edit-footer .edit-tip {
    float: left;
    font-size: 12px;
    color: #333;
    margin-left: 10px;
    margin-top: 10px;
}

.chat-dialog .msg-content .chat-editor .edit-footer .editor-txt-send {
    float: right;
    border: 0;
    padding: 10px;
    padding-bottom: 4px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    margin-right: 10px;
    cursor: pointer;
    height: 100%;
    /* background-color: #FF6F21 !important; */
    background-color: #999;
    margin-bottom: 20px;
    padding: 10px 10px 4px 10px;
}

.chat-dialog .msg-content .chat-editor .edit-footer #editor-txt-send {
    width: 34px !important;
    height: 34px !important;
    padding: 10px !important;
}

.chat-dialog .msg-content .chat-editor .edit-footer .editor-txt-sendimg {
    background: url(../images/PC-new/icon-send.png)no-repeat 2px;
    display: inline-block;
    width: 15px !important;
    height: 15px !important;
}

.chat-dialog .msg-content .chat-editor .edit-footer .editor-txt-send.no-txt {
    opacity: 0.7;
    cursor: auto;
}

.chat-dialog .msg-content .chat-editor .edit-footer .editor-txt-send.no-txt:hover {
    opacity: 0.7;
}

.chat-dialog .msg-content .chat-editor .edit-footer .editor-txt-send:hover {
    opacity: 0.9;
}

.chat-dialog .msg-content .chat-editor .edit-footer .editor-txt-send:active,
.chat-dialog .msg-content .chat-editor .edit-footer .editor-txt-send:focus {
    border: none;
    outline: none;
}

.chat-dialog .msg-content .chat-editor .expression-box {
    position: absolute;
    bottom: 190px;
    left: -50px;
    width: 470px;
    height: 290px;
    box-shadow: 0 0 8px #ccc;
    background-color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    display: none;
}

.chat-editor .expression-content {
    width: 100%;
    height: 240px;
    overflow: hidden;
    padding: 15px;
    box-sizing: border-box;
}

.chat-editor .expression-content .emoji-list {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.chat-editor .expression-content .emoji-list .emoji-list-item {
    width: 28px;
    height: 28px;
    margin: 2px;
    float: left;
    padding: 1px;
    cursor: pointer;
}

.chat-editor .expression-content .emoji-list .emoji-list-item:hover {
    background: #ddd;
}

.chat-editor .expression-content .emoji-list .emoji-list-item img {
    display: block;
    width: 100%;
    height: 100%;
}

.chat-editor .expression-content .emoji-list .emoji-list-item .icon-emoji {
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url("http://yx-web.nosdn.127.net/webdoc/h5/emoji/emoji/emoji_0.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    -webkit-background-size: 98%;
    background-size: 98%;
}

.chat-editor .expression-bottom {
    height: 50px;
    width: 100%;
    background: #ececec;
}

.chat-editor .expression-bottom .left {
    float: left;
}

.chat-editor .expression-bottom .left .emoji_1-wrap {
    float: left;
    height: 50px;
    width: 50px;
    background: #fff;
    text-align: center;
    cursor: pointer;
}

.chat-editor .expression-bottom .left .emoji_1 {
    display: inline-block;
    width: 33px;
    height: 30px;
    background: url(http://yx-web.nosdn.127.net/webdoc/h5/emoji/emoji/emoji_0.png) no-repeat 0 0;
    margin-top: 10px;
}

.chat-editor .expression-bottom .left .emoji_1 img {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.message-histroy-box {
    position: absolute;
    top: 0;
    left: 170px;
    height: 700px;
    width: 460px;
    overflow: hidden;
    background: #ececec;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 22px #ccc;
}

.message-histroy-box .top {
    height: 40px;
    width: 100px;
}

.message-histroy-box .close-histroy-box {
    float: right;
    display: inline-block;
    width: 20px;
    height: 13px;
    background: url("../images/chat/close.png") no-repeat -58px 0;
    cursor: pointer;
}


/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/

.chat-dialog-box ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: transparent;
}


/*定义滚动条轨道 内阴影+圆角*/

.chat-dialog-box ::-webkit-scrollbar-track {
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
    /*border-radius: 10px;*/
    background-color: transparent;
}


/*定义滑块 内阴影+圆角*/

.chat-dialog-box ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);*/
    background-color: #ccc;
}


/*在线图标*/

.online-chat-box {
    display: inline-block;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 20;
}

.online-chat-box .online-chat-icon {
    display: block;
    width: 140px;
    height: 60px;
    background: url(../images/chat/online-icon.png) no-repeat 0 0;
    background-size: 100%;
}

.mini {
    display: none;
    position: fixed;
    padding: 20px 0px 20px 20px;
    z-index: 10;
    right: 0;
    bottom: 0;
    right: 10px;
    bottom: 10px;
    width: 220px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1), 0px 6px 12px 0px rgba(0, 0, 0, 0.1);
    border-radius: 5px 0px 0px 0px;
}

.mini .icon {
    position: relative;
    top: 1px;
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url(../images/PC-new/home-all-icon.png);
    background-position: -719px -69px;
    margin-right: 20px;
}

.mini div {
    display: inline-block;
}

.mini .advisory-window {
    margin-right: 20px;
}

.mini .show-tool .btn-window-result {
    display: inline-block;
    width: 20px;
    height: 10px;
    background: url("../images/PC-new/icon-fullscreen.png")no-repeat 0 0;
    cursor: pointer;
    margin-right: 20px;
}

.mini .close-model {
    display: inline-block;
    width: 20px;
    height: 10px;
    background: url("../images/PC-new/icon-close-window.png") no-repeat 0 0;
    cursor: pointer;
}

.msg-lists .btn-search {
    color: #999;
    position: absolute;
    left: 192px;
}

.msg-lists .btn-search:hover {
    cursor: pointer;
}

.only-text {
    line-height: 48px;
    padding-right: 20px;
}

.chat-content .pc-chat-list .u-msg.item-you .item .single-figure {
    padding: 0px;
}

#chat-dialog-box .chat-content .pc-chat-list .u-msg.item-me .img-text {
    padding: 0px !important;
}

.chat-content .pc-chat-list .u-msg.item-me .img-text img {
    border-radius: 5px;
    max-width: 460px;
    max-height: 230px;
}

.magnify-head-toolbar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #f6f6f6 !important;
    margin-right: 20px;
    margin-top: 20px;
}

.iconclose {
    display: inline-block;
    width: 20px !important;
    height: 13px !important;
    border-radius: 50% !important;
    padding: 16px !important;
    /* background-color: #f6f6f6 !important; */
    border-width: 1px !important;
    border: 1px solid #f6f6f6!important;
    background: url(../images/PC-new/icon-close-window.png) no-repeat 11px 11px !important;
    cursor: pointer;
}

.current-session {
    background-color: #f6f6f6;
}

.ww-top-right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 70px;
   
}
.ww-login-btn{
    height: 30px;
    border-left: 1px solid #eee;
    padding-left: 20px;
    margin-left: 19px;
    display: flex;
    align-items: center;
}

.ww-login-btn .login-box{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #333;
    cursor: pointer;
}  
.ww-login-btn .login-box:hover{
    opacity: 0.8;
} 
.ww-login-btn .login-box >i{
    font-size: 18px;
    color: #16B981;
    margin-right: 10px;
    font-weight: normal;
}
.ww-login-btn .login-box-info{
    display: flex;
    justify-content: center;
    align-items: center;
}
.ww-login-btn .login-box-info .name{
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-right: 10px;
    white-space: nowrap;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 30px;
}
.ww-login-btn .login-box-info .quit{
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    color: #999;
    cursor: pointer;
}

.w-wx-quitdialog{
    width: 500px;
    width:500px;
    height:320px;
    background:rgba(255,255,255,1);
    box-shadow:0px 0px 48px 0px rgba(0, 0, 0, 0.14), 0px 48px 96px 0px rgba(0, 0, 0, 0.2);
    border-radius:6px;
    position: fixed;
    z-index: 9999;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
}
.w-wx-quitdialog .quit-close-box{
    position: absolute;
    right: 10px;
    top: 10px;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}   
.w-wx-quitdialog .quit-close-box >i{
    font-size: 12px;
    color: #9999;
}
.w-wx-quitdialog .quit-close-box:hover{
    opacity: 0.8;
}
.w-wx-quitdialog  .w-content{
    margin-top: 50px;
    text-align: center;
}
.w-wx-quitdialog  .w-content .name{
    font-size: 24px;
    height: 40px;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    padding: 0 25px;
    margin-bottom: 40px;
}
.w-wx-quitdialog  .w-content .name .txt{
    max-width: 200px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.w-wx-quitdialog  .w-content .w-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 60px;
    background: #f6f6f6;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 500;
    margin: 0 auto;
    cursor: pointer;
}
.w-wx-quitdialog  .w-content .true-btn{
    background:rgba(255,111,33,1);
    box-shadow:0px 0px 4px 0px rgba(255,111,33,0.1), 0px 4px 8px 0px rgba(255,111,33,0.1);
    color: #fff;
    margin-bottom: 20px;
}
.w-wx-quitdialog  .w-content .true-btn >i{
    font-size: 18px;
    color: #fff;
    margin-left: 19px;
}
.w-wx-quitdialog  .w-content .w-btn:hover{
    opacity: 0.8;
}
.w-login-successs-dialog{
    width: 500px;
    height:500px;
    background:rgba(255,255,255,1);
    box-shadow:0px 0px 48px 0px rgba(0, 0, 0, 0.14), 0px 48px 96px 0px rgba(0, 0, 0, 0.2);
    border-radius:6px;
    position: fixed;
    z-index: 9999;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
}
.w-login-successs-dialog .quit-close-box{
    position: absolute;
    right: 10px;
    top: 10px;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}   
.w-login-successs-dialog .quit-close-box >i{
    font-size: 12px;
    color: #9999;
}
.w-login-successs-dialog .quit-close-box:hover{
    opacity: 0.8;
}
.w-login-successs-dialog  .w-content{
    margin-top: 50px;
    text-align: center;
}
.w-login-successs-dialog  .w-content .name{
    font-size: 30px;
    height: 40px;
    color: #00B275;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.w-login-successs-dialog  .w-content .w-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 80px;
    background: #f6f6f6;
    border-radius: 40px;
    font-size: 20px;
    font-weight: 500;
    margin: 0 auto;
    margin-bottom: 30px;
}
.w-login-successs-dialog  .w-content .w-btn >img{
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}
.w-login-successs-dialog  .w-content .w-btn .txt{
    display: block;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.w-login-successs-dialog  .w-content .img-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 80px;
    margin-right: 80px;
}
.w-login-successs-dialog  .w-content .img-box .left-img-qr{
    text-align: center;
}
.w-login-successs-dialog  .w-content .img-box .left-img-qr .img-wrap{
    display: block;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,1);
    border: 1px solid rgba(238,238,238,1);
    border-radius: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin: 0 auto;
    overflow: hidden;

}
.w-login-successs-dialog  .w-content .img-box .left-img-qr .img-wrap >img{
    display: block;
    width: 120px;
    height: 120px;
    object-fit: cover;
}
.w-login-successs-dialog  .w-content .img-box .left-img-qr .w-sub{
    display: block;
    font-size: 16px;
    color: #333;
    line-height: 24px;
    margin-top: 15px;
}
.w-login-successs-dialog  .w-content .img-box .left-img-qr:last-child .img-wrap >img{
    display: block;
    width: 90px;
    height: 90px;
    object-fit: cover;
}
@media screen and (min-width: 1080px) {
    .no-detail-box{
       height: 400px;
    }
}
.no-detail-box{
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 550px; */
}
.no-detail-box .box-wrap{
    text-align: center;
}
.no-detail-box .no-img{
    display: block;
    width: 200px;
    height: 200px;
    background: url(../images/PC-new/icon-nonecon-xiaowo.png);
    background-size: 100% 100%;
}
.no-detail-box .no-txt{
    height: 40px;
    line-height: 40px;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 24px;
    color: #999;
}
.no-detail-box .no-btn{
    display: block;
    width:140px;
    height:40px;
    line-height: 40px;
    color: #fff;
    background:rgba(255,111,33,1);
    border:0px solid rgba(255,0,0,1);
    border-radius:20px;
    text-align: center;
    margin: 0 auto;
}

/*flex全兼容写法，超出换行，垂直居中*/

.flex {
    display: box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


/* flex 子元素 自适应 超出不换行省略号*/

.flexs {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 分页 */
.page_list li{display:inline;}
.page_list li span{}
.page_list {
    text-align: center;
    margin-top: 50px;
}
.page_list a,.page_list li span,
.page_list .more {
    display: inline-block;
    line-height: 100%;
    padding: 7px 15px;
    border-radius: 2px;
    font-size: 14px;
    text-align: center;
    margin-left: 6px;
    cursor: pointer;
}
.page_list a,.page_list li span {
    border: 1px solid #ebebeb;
}
.page_list .prev {
    margin-left: 0;
}
.page_list li.disabled span{border: 1px solid #ebebeb;background-color: #fff;color:#656565;}
.page_list a.on,.page_list li span,
.page_list a:hover {background: #FF6F21;color: #FFFFFF;}