.wow {
    opacity: 0;
}

.mobile {
    width: 100%;
}

.mobile-inner {
    margin-right: auto;
    margin-left: auto;
    background-color: ;
    position: relative;
}

.mobile-inner img {
}

.mobile-inner p {
    color: #676767;
    line-height: 25px;
    font-size: 16px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 0px;
}

.mobile-inner-header {
    width: 100%;
    height: 50px;
    position: relative;
    top: 0px;
    z-index: 666;
    left: 0px;
}

.mobile-inner-header-icon {
    color: #ffffff;
    height: 50px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 50px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(255,255,255,0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: #fff;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    overflow: auto;
    height: 100vh;
    padding-top: 50px;
}

.mobile-inner-nav {
    background: linear-gradient(270deg,#0866b1c9,#076cc3);
    width: 100%;
    position: absolute;
    top: 0;
    padding-bottom: 0%;
    display: none;
    z-index: 444;
}

.mobile-inner-nav a {
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    color: #fff;
    transition: all 0.5s;
}

.mobile-inner-nav dl {
    display: none;
}

.mobile-inner-nav dl dd {
    line-height: 33px;
    text-decoration: none;
    text-indent: 3em;
    font-size: 16px;
    color: #FFFFFF;
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
    font-size: 14px;
}

.mobile-inner-nav li {
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    line-height: 53px;
    text-indent: 20px;
}

.mobile-inner-nav h2.h2tit {
    line-height: 50px;
    text-decoration: none;
    text-indent: 2em;
    font-size: 16px;
    color: #FFFFFF;
    /* border-bottom:solid 1px rgba(255,255,255,0.3);*/
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.mobile-inner-nav h2.h2tit a {
    color: #FFFFFF;
}

.mobile-inner-nav a {
    border-bottom: none;
}

.mobile-inner-nav li {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
}

@-webkit-keyframes resize {
    from,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
        animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5,5);
        transform: scale(5,5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }
}

@keyframes resize {
    from,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
        animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5,5);
        transform: scale(5,5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.mobile-inner-nav li:last-child h2.h2tit {
    border-bottom: none;
}

.mobile-inner-nav li .h3tit {
    height: 50px;
    position: relative;
    background: url(../images/51_icon_search@2x.png) no-repeat 30px center;
    background-size: 17px;
}

.mobile-inner-nav li .words {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    text-indent: 60px;
    font-size: 15px;
    color: #fff;
    background: url(../images/search2.png) no-repeat 30px center;
    background-size: 20px;
}

.mobile-inner-nav li:last-child {
    border-bottom: none;
}

.mobile-inner-nav li form {
    display: block;
    width: 100%;
    height: 100%;
}

@charset "utf-8";@charset "UTF-8";.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.hinge {
    animation-duration: 2s;
}

.fadeInUp {
    animation-duration: 1.76s;
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0,40px,0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

* {
    font-family: Century Gothic;
}

body,h1,h2,h3,h4,h5,h6,dl,dt,dd,ul,ol,li,th,td,p,blockquote,pre,form,fieldset,legend,input,button,textarea,hr,span {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-size: calc(14/1920*100vw);
}

html,body {
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

body {
    font-family: "Microsoft YaHei" ! important;
    /* color: #000000; */
    background: #fff;
    margin: 0 auto;
    padding: 0px;
}

body {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
select{
    cursor: pointer;
}

input[type="button"],input[type="submit"],input[type="reset"],input[type="text"] {
    -webkit-appearance: none;
}

input[type="button"],input[type="submit"],input[type="reset"] {
    cursor: pointer;
}

input {
    -webkit-appearance: none;
}

input {
    -webkit-appearance: none!important;
    border-radius: 0;
}

button {
    cursor: pointer;
}

textarea {
    -webkit-appearance: none;
}

a {
    text-decoration: none;
    color: #235aa7;
    outline: none;
}

a:active {
    star: expression(this.onFocus=this.blur());
}

img {
    border: 0px;
    vertical-align: middle;
}

li {
    list-style: none;
}

* {
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

.loading {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
}

.loadingfa {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 29px;
    color: #1f8adf;
    position: absolute;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    top: 50%;
}

html {
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: none;
}

html {
    -webkit-tap-highlight-color: transparent;
}

body {
    -webkit-overflow-scrolling: touch;
    /* background: #000; */
    /* color: #fff; */
    line-height: 1;
}

* {
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    user-select: none;
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg)
    }

    to {
        -moz-transform: rotate(360deg)
    }
}

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(0deg)
    }

    to {
        -ms-transform: rotate(360deg)
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(0deg)
    }

    to {
        -o-transform: rotate(360deg)
    }
}

.xuanzhuan {
    animation: 2s linear 0s normal forwards infinite rotate;
    -webkit-animation: 2s linear 0s normal forwards infinite rotate;
    -moz-animation: 2s linear 0s normal forwards infinite rotate;
    -o-animation: 2s linear 0s normal forwards infinite rotate;
}

.xuanzhuan img {
    display: block;
    width: 100%;
}

.pc {
    display: block;
}

.wap {
    display: none;
}

.clearflex:after {
    content: "";
    display: table;
    clear: both;
}

.moveAni {
    animation: move .8s infinite;
    -moz-animation: move .8s infinite;
    -webkit-animation: move .8s infinite;
    -o-animation: move .8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

.tadaAni {
    animation: tada 2s infinite;
}

.pulseAni {
    animation: pulse 1s infinite;
}

.bounceInAni {
    animation: bounceIn 2s infinite;
}

.flashInAni {
    animation: flash 2s infinite;
}

.swingAni {
    animation: swing 2s infinite;
    transform-origin: right top;
}

.rubberBandAni {
    animation: rubberBand 1s infinite;
}

.bounceAni {
    animation: bounce 1s infinite;
}

.tdAni {
    animation: td .4s infinite;
    -moz-animation: td .4s infinite;
    -webkit-animation: td .4s infinite;
    -o-animation: td .4s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

.heartbeatAni {
    animation: heartbeat 1.4s infinite;
    -moz-animation: heartbeat 1.4s infinite;
    -webkit-animation: heartbeat 1.4s infinite;
    -o-animation: heartbeat 1.4s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

.shing {
    animation: shing 1s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
}

@keyframes shing {
    0% {
        opacity: 1;
    }

    100% {
        opacity: .6;
    }
}

@keyframes move2 {
    0% {
        transform: translate(0%,0px);
    }

    100% {
        transform: translate(0%,10px);
    }
}

.moveAni2 {
    animation: move2 1s infinite;
}

.moveAni {
    animation: move .8s infinite;
    -moz-animation: move .8s infinite;
    -webkit-animation: move .8s infinite;
    -o-animation: move .8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

@keyframes move {
    from {
        -o-transform: translate(0%,0%);
        -webkit-transform: translate(0%,0%);
        -moz-transform: translate(0%,0%);
        -ms-transform: translate(0%,0%);
        transform: translate(0%,0%);
    }

    to {
        -o-transform: translate(0%,30px);
        -webkit-transform: translate(0%,30px);
        -moz-transform: translate(0%,30px);
        -ms-transform: translate(0%,30px);
        transform: translate(0%,30px);
    }
}

@keyframes td {
    from {
        -o-transform: translate(0%,0%);
        -webkit-transform: translate(0%,0%);
        -moz-transform: translate(0%,0%);
        -ms-transform: translate(0%,0%);
        transform: translate(0%,0%);
    }

    to {
        -o-transform: translate(0%,20px);
        -webkit-transform: translate(0%,20px);
        -moz-transform: translate(0%,20px);
        -ms-transform: translate(0%,20px);
        transform: translate(0%,20px);
    }
}

@keyframes heartbeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes moveAni2 {
    0% {
        transform: translate(0%,0px);
    }

    100% {
        transform: translate(100vw,0px);
    }
}

.moveAni2 {
    animation: moveAni2 5.5s linear infinite;
}

@keyframes scrollAni1 {
    0% {
        transform: translate(0%,0px) rotate(0);
    }

    100% {
        transform: translate(-100%,0px) rotate(-360deg);
    }
}

.scrollAni1 {
    animation: scrollAni1 1.8s infinite;
    -moz-animation: scrollAni1 1.8s infinite;
    -webkit-animation: scrollAni1 1.8s infinite;
    -o-animation: scrollAni1 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
}

@keyframes scrollAni2 {
    0% {
        transform: translate(30%,0px) rotate(0);
    }

    100% {
        transform: translate(0%,0px);
    }
}

.scrollAni2 {
    animation: scrollAni2 1.8s infinite;
    -moz-animation: scrollAni2 1.8s infinite;
    -webkit-animation: scrollAni2 1.8s infinite;
    -o-animation: scrollAni2 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni3 {
    0% {
        transform: translate(0%,-20px);
    }

    100% {
        transform: translate(0%,0%);
    }
}

.scrollAni3 {
    animation: scrollAni3 1.8s infinite;
    -moz-animation: scrollAni3 1.8s infinite;
    -webkit-animation: scrollAni3 1.8s infinite;
    -o-animation: scrollAni3 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni4 {
    0% {
        transform: translate(0%,10px);
    }

    100% {
        transform: translate(0%,0%);
    }
}

.scrollAni4 {
    animation: scrollAni4 1.8s infinite;
    -moz-animation: scrollAni4 1.8s infinite;
    -webkit-animation: scrollAni4 1.8s infinite;
    -o-animation: scrollAni4 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni5 {
    0% {
        transform: none;
    }

    100% {
        transform: scale(1.35,1.35);
    }
}

.scrollAni5 {
    animation: scrollAni5 1.8s infinite;
    -moz-animation: scrollAni5 1.8s infinite;
    -webkit-animation: scrollAni5 1.8s infinite;
    -o-animation: scrollAni5 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni6 {
    0% {
        transform: scale(1.05,1.05);
    }

    100% {
        transform: none;
    }
}

.scrollAni6 {
    animation: scrollAni6 1.8s infinite;
    -moz-animation: scrollAni6 1.8s infinite;
    -webkit-animation: scrollAni6 1.8s infinite;
    -o-animation: scrollAni6 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes bubbleMover3 {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(5px) translateX(4px) rotate(9deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        transform: translateY(-3px) translateX(1px) rotate(-6deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(-1px) translateX(-5px) rotate(-2deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes bubbleMover2 {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(5px) translateX(4px) rotate(5deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        transform: translateY(-4px) translateX(2px) rotate(-3deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(-3px) translateX(-3px) rotate(-3deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes bubbleMover {
    0% {
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(3px) translateX(5px) rotate(5deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        transform: translateY(5px) translateX(10px) rotate(10deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(3px) translateX(5px) rotate(4deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes rotateAni {
    0% {
        transform: none;
    }

    100% {
        transform: rotateY(180deg);
    }
}

.rotateAni {
    -webkit-animation: rotateAni linear infinite 2s;
    -moz-animation: rotateAni linear infinite 2s;
    -o-animation: rotateAni linear infinite 2s;
    animation: rotateAni linear infinite 2s;
}

.pfAni1 {
    -webkit-animation: bubbleMover linear infinite 5s;
    -moz-animation: bubbleMover linear infinite 5s;
    -o-animation: bubbleMover linear infinite 5s;
    animation: bubbleMover linear infinite 5s;
}

.pfAni2 {
    -webkit-animation: bubbleMover2 linear infinite 5s;
    -moz-animation: bubbleMover2 linear infinite 5s;
    -o-animation: bubbleMover2 linear infinite 5s;
    animation: bubbleMover2 linear infinite 5s;
}

.pfAni3 {
    -webkit-animation: bubbleMover3 linear infinite 5s;
    -moz-animation: bubbleMover3 linear infinite 5s;
    -o-animation: bubbleMover3 linear infinite 5s;
    animation: bubbleMover3 linear infinite 5s;
}

@keyframes scalc {
    0% {
        -webkit-transform: scale(2.05,2.05);
        -o-transform: scale(2.05,2.05);
        -moz-transform: scale(2.05,2.05);
        -ms-transform: scale(2.05,2.05);
        transform: scale(2.05,2.05);
    }

    100% {
        -webkit-transform: none;
        -o-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.sclani {
    animation: scalc 7s forwards;
    animation-timing-function: ease-out;
}

@keyframes scalc2 {
    0% {
        transform: scale(1.2,1.2);
    }

    100% {
        -webkit-transform: none;
        -o-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.sclani2 {
    animation: scalc2 7s forwards;
    animation-timing-function: ease-out;
}

@keyframes clipAni {
    0% {
        clip: rect(auto,0,auto,auto);
    }

    100% {
        clip: rect(auto,300px,auto,auto);
    }
}

.txtModel i {
    animation: clipAni ease-out infinite 2s alternate;
}

.swingAni {
    transform-origin: top center;
    animation: swing 3s infinite ease-in-out;
}

@keyframes swing {
    0% {
        transform: rotate(-6deg);
    }

    50% {
        transform: rotate(6deg);
    }

    100% {
        transform: rotate(-6deg);
    }
}

.swingAni2 {
    -webkit-animation-name: routate;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-name: routate;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@keyframes routate {
    0% {
        -webkit-transform: rotate(7deg);
        -ms-transform: rotate(7deg);
        transform: rotate(7deg);
    }

    50% {
        -webkit-transform: rotate(-7deg);
        -ms-transform: rotate(-7deg);
        transform: rotate(-7deg);
    }

    100% {
        -webkit-transform: rotate(7deg);
        -ms-transform: rotate(7deg);
        transform: rotate(7deg);
    }
}

.bouncing-ball {
    -webkit-mask: radial-gradient(ellipse at center,rgba(0,0,0,0) 0%,rgba(0,0,0,0) 20%,black 20.1%,black 75%,black 100%);
    mask: radial-gradient(ellipse at center,rgba(0,0,0,0) 0%,rgba(0,0,0,0) 20%,black 20.1%,black 75%,black 100%);
    -webkit-animation: bouncing-ball 1.5s linear infinite;
    animation: bouncing-ball 1.5s linear infinite;
}

@keyframes bouncing-ball {
    0% {
        transform: scale(1,1) translateY(-80%);
    }

    25% {
        transform: scale(1,1.1) translateY(-45%);
    }

    50% {
        transform: scale(1,1.5) translateY(10%);
    }

    66% {
        transform: scale(2,0.75) translateY(25%);
    }

    75% {
        transform: scale(1,1.25) translateY(10%);
    }

    100% {
        transform: scale(1,1) translateY(-80%);
    }
}

.small_Big {
    -webkit-animation: scaleCircles 2s infinite cubic-bezier(0.55,0.15,0.45,0.85) alternate;
    animation: scaleCircles 2s infinite cubic-bezier(0.55,0.15,0.45,0.85) alternate;
}

@keyframes scaleCircles {
    0% {
        z-index: 1;
        transform: scale3d(0,0,0);
    }

    100% {
        z-index: 2;
        transform: scale3d(1,1,1);
    }
}

.index *{
    opacity: 1;
}
.index{
    overflow: hidden;
}
.wrap:after{
    content:"";
    display: table;
    clear: both;
}


.fadeInUpGroup.animated{
  animation-fill-mode:both;
  animation-name: fadeInLeft3;
  opacity: 0;
}


.fadeInUpGroup.animated:nth-child(1){
    animation-duration: .5s !important;
    animation-delay: .1s !important;
}

.fadeInUpGroup.animated:nth-child(2){
    animation-duration: 1s !important;
    animation-delay: .6s !important;
}

.fadeInUpGroup.animated:nth-child(3){
    animation-duration: 1.5s !important;
    animation-delay: .9s !important;
}

.fadeInUpGroup.animated:nth-child(4){
    animation-duration: 2s !important;
    animation-delay: 1.1s !important
}

.fadeInUpGroup.animated:nth-child(5){
animation-duration: 1.5s !important;
    animation-delay: 1.6s !important;
}

.container {
    width: 1300px;
    margin: 0 auto;
    position: relative;
}

/* ================= Banner & Header ================= */
.banner-wrapper {
    width: 100%;
    position: relative;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgb(41 17 18 / 40%); /* 半透明黑底 */
    z-index: 10;
    z-index: 5555;
}
    .topHead .header-inner{
        justify-content: flex-start;
    }
.header-inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {height: 66px;}

.nav-right { display: flex; align-items: center; }
.nav {display: flex;gap: 18px;}
    .nav li a img{
        margin-right:8px;
    }
.nav li a {
    color: #ddd;
    font-size: 22px;
    padding: 0 15px;
    line-height: 80px;
    display: block;
    transition: 0.3s;
    display: flex;
    align-items: center;
}
.nav li.active a, .nav li a:hover {
    color: #fff;
    background-color: #3E0C0C; /* 深红选中底色 */
}
.nav li a i { margin-right: 5px; }

.hotline {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    font-style: italic;
    margin-left: 30px;
    font-family: AlibabaPuHuiTi_2_65_Medium;
    font-weight: 400;
    font-size: 32px;
    color: #FFFFFF;
    font-style: italic;
}

/* Banner Image */
.banner-img {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 箭头 */
.banner-img .arrow {
    position: absolute;
    top: 50%; 
    transform: translateY(-50%);
    width: 100px; 
    height: 100px;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}


.banner-img .arrow.swiper-button-prev { left: 50px;background:url(../images/left.png) no-repeat center center;background-size:100% }
.banner-img .arrow.swiper-button-next { right: 50px;background:url(../images/right.png) no-repeat center center;background-size:100% }

/* 中间文字框 */
.banner-text-box {
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    padding: 40px 60px;
    text-align: center;
    border: 1px solid #ddd;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.banner-text-box h2 {
    font-size: 36px;
    color: #3E0C0C; /* 深红 */
    font-weight: bold;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}
.banner-text-box h2::after, .banner-text-box h2::before {
    content: '';
    position: absolute;
    top: 50%; 
    width: 40px; height: 2px; background: #3E0C0C;
}
.banner-text-box h2::before { left: -50px; }
.banner-text-box h2::after { right: -50px; }

.banner-text-box p {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}
.banner-text-box .tags {
    background: #3E0C0C;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
}

/* ================= Filter Card (悬浮筛选) ================= */
.filter-card-wrapper {
     /* 向上浮动盖住Banner底部 */
     position: relative;
     z-index: 20;
     /* margin-bottom: 50px; */
     background: #F7F7F7;
}

.filter-card {
    padding: 30px 0px;
    background: #FFFFFF;
    box-shadow: 0px 5px 32px 0px rgba(115,115,115,0.26);
    border-radius: 20px;
    padding-bottom: 0;
    margin-top: -30px;
    display: inline-block;
    width: 100%;
}

.f-label {
    line-height: 30px;
    border-left: 8px solid #47090C;
    padding-left: 14px;
    font-size: 20px;
    color: #333;
    font-weight: bold;
    display: block;
    /* width: 100%; */
}

/* 区域选择 */
.area-row {
    margin-bottom: 25px;
    /* display: flex; */
    /* align-items: flex-start; */
}
.area-row .f-label {margin-right: 20px;/* width: 100px; */flex-shrink: 0;margin-bottom: 26px;}
.area-list {
    display: flex;
    /* flex-wrap: wrap; */
    /* gap: 10px; */
    padding: 0px 25px;
    /* zoom: 1; */
    /* overflow: hidden; */
}
.area-list .left{
    
/* float: left; */
    
width: 70px;
}
.area-list .right{
    width: calc(100% - 70px);
    padding-left: 20px;
    /* display: flex; */
    /* gap: 20px; */
}
    .left .area-tag{
        width: 70px;
        display: block;
        padding: 0;
        margin: 0;
    }
.area-tag {
    /* padding: 5px 20px; */
    background: #F5F5F5;
    color: #666;
    font-size: 14px;
    /* border-radius: 4px; */
    transition: 0.3s;
    line-height: 30px;
    text-align: center;
    width: 120px;
    height: 30px;
    background: #F4F4F4;
    display: inline-block;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 16px;
    color: #AAAAAA;
    margin-right: 20px;
    margin-bottom: 15px;
}
.area-tag:hover, .area-tag.active {
    background: #47090C;
    color: #fff;
}

/* 面积滑块 */
.slider-row {
    margin-bottom: 41px;
}
.slider-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-right: 30px;
}
.slider-val {
    color: #3E0C0C;
    font-size: 20px;
    font-weight: bold;
    font-family: AlibabaPuHuiTi_2_65_Medium;
    font-weight: 400;
    font-size: 26px;
    color: #47090C;
    font-style: italic;
}

/* jQuery UI Slider Customization */
.slider-container {
    padding: 0 50px; /* 留点边给滑块头 */
}
#area-slider {
    height: 8px;
    background: #F4F4F4;
    border: none;
}
#area-slider .ui-slider-range {
    background: #47090C; /* 选中区域红色 */
}
#area-slider .ui-slider-handle {
    width: 14px;
    height: 24px;
    background: url(../images/hk.png) no-repeat center center;
    background-size: 100%;
    border: none;
    top: -7px;
}
#area-slider .ui-slider-handle:focus { outline: none; border-color: #3E0C0C; }

/* 刻度尺 */
.slider-ruler {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: #999;
    font-size: 12px;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 20px;
    color: #AAAAAA;
}

/* 立刻找房按钮 */
.find-btn-row {
    text-align: center;
    margin-bottom: 37px;
}
.btn-find img{
    position: relative;
    top: -2px;
    margin-right: 6px;
}
.btn-find {
    background: #3E0C0C;
    color: #fff;
    border: none;
    padding: 12px 60px;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 350px;
    height: 60px;
    background: linear-gradient(0deg, #301e1f, #7c393c);
    border-radius: 10px;
    padding: 0;
}
.btn-find:hover { opacity: 0.9; }

/* 底部大搜索框 */
.bottomSearch{
    
background: #F1F1F1;
    
padding: 30px 50px;
}
.bottom-search {
    display: flex;
    height: 60px;
    background: #FFFFFF;
    border-radius: 10px;
}
.bottom-search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 32px;
    font-size: 22px;
    outline: none;
}
.btn-search-big img{
    width: 26px;
    position: relative;
    top: -2px;
}
.btn-search-big {
    background: #3E0C0C;
    color: #fff;
    border: none;
    padding: 10px 40px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 196px;
    background: linear-gradient(0deg, #301e1f, #7c393c);
    padding: 0;
    font-size: 26px;
}
/* ================= Features Section ================= */
.features-section {
    padding: 40px 0 56px;
    /* 如果上一块是白底，这里不需要背景色；如果是灰底，这里保持透明或灰底 */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px; /* 卡片间距 */
}

.feat-card {
    /* 深红渐变背景 */
    background: linear-gradient(135deg, #4A0E0E 0%, #2B0505 100%);
    border-radius: 10px;
    padding: 30px 20px;
    display: flex;
    /* justify-content: space-between; */
    /* align-items: center; */
    color: #fff;
    position: relative;
    overflow: hidden; /* 防止图标溢出 */
    transition: all 0.3s;
    cursor: pointer;
    height: 120px; /* 固定高度，保证整齐 */
    height: 160px;
    background: linear-gradient(90deg, #47090C, #8a4d50);
    border-radius: 20px;
    padding: 39px 19px;
    padding-bottom: 0;
}

.feat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(62, 12, 12, 0.3);
}

.fc-text {
    z-index: 2; /* 文字在上层 */
}

.fc-text h3 {
    font-size: 24px;
    font-weight: 900; /* 很粗的字体 */
    font-style: italic; /* 稍微倾斜 */
    margin-bottom: 10px;
    line-height: 1.2;
    font-family: hzgb;
    font-size: 28px;
    color: #FFFFFF;
    font-style: italic;
    margin-bottom: 20px;
}

.fc-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.7); /* 浅一点的白 */
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 18px;
    color: #999999;
}
.fc-icon img{
    
}
.fc-icon img {
    font-size: 60px; /* 超大图标 */
    color: rgba(255,255,255,0.15); /* 很淡的透明度 */
    position: absolute;
    right: 0;
    bottom: 0; /* 稍微下沉 */
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 如果用图片替代图标 */
/* .fc-icon img { width: 80px; opacity: 0.2; } */


/* ================= Hot Section Header ================= */
.hot-section {
    /* padding-bottom: 20px; */ /* 留给下面列表 */
}

.hot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
     /* 可选：通栏底线 */
    padding-bottom: 20px;
    /* margin-bottom: 30px; */
}

/* 左侧 Tabs */
.hot-tabs {
    display: flex;
    gap: 60px; /* Tab 间距 */
    align-items: center;
}

.h-tab {
    font-size: 20px;
    color: #999;
    padding-bottom: 15px;
    position: relative;
    font-weight: 500;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 26px;
    color: #999999;
}

/* 激活状态 */
.h-tab.active {
    color: #333;
    font-weight: bold;
    font-size: 36px;
}

/* 激活下划线 */
.h-tab.active::after {
    content: '';
    position: absolute;
    bottom: -7px; /* 盖住父级的border */
    left: 50%;
    transform: translateX(-50%);
    width: 68px;
    height: 8px;
    background-color: #47090C; /* 深红 */
}

/* 悬停微效 */
.h-tab:hover {
    color: #333;
}

/* 右侧按钮 */
.btn-more-outline {
     /* 胶囊圆角 */
     
      /* 极淡的红色背景 */
     display: block;
     transition: all 0.3s;
     width: 190px;
     line-height: 38px;
     background: rgba(71,9,12,0.1);
     border-radius: 10px;
     border: 1px solid #47090C;
     padding: 0;
     text-align: center;
     font-family: AlibabaPuHuiTi_2_55_Regular;
     font-weight: 400;
     font-size: 18px;
     color: #47090C;
}

.btn-more-outline:hover {
    background-color: #3E0C0C;
    color: #fff;
}

/* ================= Hot Content Area ================= */
.hot-content-inner {

background: url(../images/xx.png) no-repeat left bottom;
}
.hot-content-inner .container{
        display: flex;
        justify-content: space-between;
        /* height: 500px; */ /* 固定高度，或者由右侧图片撑开 */
        position: relative;
        /* padding-bottom: 50px; */
}
/* --- 左侧菜单 --- */
.hot-menu {
    width: 25%;
    position: relative;
    display: flex;
    flex-direction: column;
    /* justify-content: space-around; */ /* 垂直均匀分布 */
    padding: 56px 0px 70px;
    gap: 96px 0;
}

/* 贯穿竖线 */
.menu-line {
    position: absolute;
    left: 20px; /* 圆点中心位置 */
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #47090C; /* 深红线 */
    z-index: 0;
}

.menu-item {
    position: relative;
    z-index: 1; /* 在线上面 */
    padding-left: 80px; /* 留出圆点位置 */
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* 圆点 */
.menu-item .dot {
    position: absolute;
    left: 6px; /* (线left 20) - (宽12 / 2) + 修正 */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #DDDDDD; /* 默认灰点 */
    border: 7px solid #f0f0f0; /* 白边，盖住线 */
    /* box-shadow: 0 0 0 1px #ccc; */ /* 外圈描边 */
    transition: all 0.3s;
    cursor: pointer;
}

/* 激活圆点 */
.menu-item.active .dot {
    background-color: #47090C; /* 深红点 */
    transform: scale(1.5); /* 放大 */
     /* 光晕 */
    border-color: rgb(175 113 113);
}

/* 按钮 */
.menu-btn {
    display: block;
    background-color: #E0E0E0; /* 默认浅灰背景 */
    color: #666;
    padding: 10px 40px;
    border-radius: 20px;
    font-size: 16px;
    transition: all 0.3s;
    width: 160px;
    text-align: center;
    width: 220px;
    line-height: 50px;
    background: #DDDDDD;
    border-radius: 25px;
    padding: 0;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 22px;
    color: #333333;
}

/* 激活按钮 */
.menu-item.active .menu-btn {
    background-color: #3E0C0C;
    color: #fff;
    box-shadow: 0 4px 10px rgba(62, 12, 12, 0.3);
}

.menu-item:hover .menu-btn {
    background-color: #d0d0d0;
}
.menu-item.active:hover .menu-btn {
    background-color: #3E0C0C;
}

/* --- 右侧大图 --- */
.hot-display {
    width: 72%;
    height: 100%;
    overflow: hidden;
    position: relative;
    /* border-radius: 10px; 可选 */
}

.display-img {
    width: 100%;
    height: 100%;
    display: none; /* 默认隐藏 */
    padding-top: 20px;
}
.display-img.active {
    display: block; /* 激活显示 */
}

.display-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 铺满 */
    height: 725px;
}
/* ================= Trust Banner ================= */
.trust-banner {
    height: 300px;
    background: url(../images/hb.jpg) no-repeat center center; /* 深红背景图 */
    background-size: cover;
    /* 如果没有背景图，可以用渐变模拟 */
    position: relative;
    overflow: hidden;
    height: 330px;
}

.trust-content {
    color: #fff;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-top: 63px;
}

.trust-content h2 {font-size: 36px;font-weight: bold;font-family: AlibabaPuHuiTi_2_85_Bold;font-weight: 400;font-size: 58px;color: #FFFFFF;}
.trust-content p {font-size: 18px;padding-bottom: 40px;font-family: AlibabaPuHuiTi_2_55_Regular;font-weight: 400;font-size: 32px;padding-top: 31px;color: #FFFFFF;}

.btn-trust {
    display: inline-block;
    transition: 0.3s;
    width: 440px;
    line-height: 80px;
    background: #FFFFFF;
    border-radius: 40px;
    padding: 0;
    text-align: center;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 32px;
    color: #47090C;
}
.btn-trust:hover { background: #f0f0f0; }

.trust-person {
    position: absolute;
    right: 100px;
    bottom: 0;
    z-index: 1;
}
.trust-person img { height: 280px; }

/* ================= News Section ================= */
.news-section {
    padding: 47px 0;
    background-color: #fff;
    background: #F7F7F7;
    padding-bottom: 12px;
}
/* 复用 .hot-header 样式 */
.news-list-row:after{
    content:"";
    width: 1px;
    height: 190px;
    border-right: 1px dashed #DDDDDD;
    position:absolute;
    top: 46%;
    left: 50%;
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.news-list-row {
    display: flex;
    justify-content: space-between;
    gap: 40px; /* 两列间距 */
    position: relative;
}

.news-col {
    flex: 1;
}
.news-col li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 14px;
    color: #666;
    padding-top: 0;
    padding-bottom: 20px;
}
.news-col li::before {
    content: '';
    color: #999;
    font-size: 10px;
    margin-right: 10px;
    width: 8px;
    height: 8px;
    background: #333333;
    border-radius: 50%;
    top: 5px;
    position: relative;
}
.news-col li a {flex: 1;font-family: AlibabaPuHuiTi_2_55_Regular;font-weight: 400;font-size: 16px;color: #666666;}
.news-col li a:hover { color: #3E0C0C; }
.news-col li span {color: #999;font-family: AlibabaPuHuiTi_2_55_Regular;font-weight: 400;font-size: 16px;color: #AAAAAA;}

/* ================= Hot Links Bar ================= */
.hot-links-bar {
    background-color: #FFFFFF;
    padding: 18px 0;
    font-size: 12px;
}
.hot-links-bar .container {
    display: flex;
}

.hl-label {
     /* 深红 */
     margin-right: 10px;
     font-family: AlibabaPuHuiTi_2_55_Regular;
     font-weight: 400;
     font-size: 14px;
     color: #47090C;
}

.hl-list {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
     /* 默认只显示一行 */
    overflow: hidden;
    height: 12px;
}
.hl-list.show{height: auto;}
.hl-list a {color: #666;font-family: AlibabaPuHuiTi_2_55_Regular;font-weight: 400;font-size: 12px;color: #AAAAAA;}
.hl-list a:hover { color: #3E0C0C; }

.hl-expand {
    color: #3E0C0C;
    margin-left: 20px;
    cursor: pointer;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 14px;
    color: #47090C;
    padding-right: 18px;
    background: url(../images/zk.png) no-repeat right center;
    height: 14px;
}
.hl-expand.current{
    background: url(../images/zk2.png) no-repeat right center;

}
/* ================= Footer ================= */
.footer {
    background-color: #000;
    color: #fff;
    padding: 43px 0px 54px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* 左侧 */
.f-links-group{
        padding-left: 41px;
        padding-top: 13px;
    }
.footer-left {width: 60%;display: flex;}
.f-logo img {width: 140px;}

.f-row {margin-bottom: 48px;display: flex;gap: 54px;font-size: 14px;}
.f-row a {color: #ddd;font-family: AlibabaPuHuiTi_2_55_Regular;font-weight: 400;font-size: 16px;color: #AAAAAA;}
.f-row a:hover { color: #fff; }

.f-friends {
    font-size: 12px;
    color: #999;
    gap: 12px;
    display: flex;
    margin: 0;
}
    .f-friends.f-row a:hover{
color:#fff}
.f-friends.f-row a {
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 14px;
    color: #AAAAAA;
    line-height: 26px;
    }
    .f-friends .rig{
        gap: 3px 10px;
        display: flex;
        flex-wrap: wrap;
    }
.f-friends span {color: #666;font-family: AlibabaPuHuiTi_2_55_Regular;font-weight: 400;font-size: 16px;color: #FFFFFF;margin-right: 11px;line-height: 26px;white-space: nowrap;}

/* 右侧 */
.footer-right {
    display: flex;
    gap: 46px;
}
.f-service p img{
}
.f-service { text-align: right; }
.f-service p {font-family: AlibabaPuHuiTi_2_55_Regular;font-weight: 400;font-size: 18px;color: #AAAAAA;margin-bottom: 20px;text-align: left;display: flex;flex-flow: wrap;gap: 14px;align-items: center;}
.f-service h2 {font-size: 32px;font-weight: bold;font-style: italic;margin-bottom: 5px;font-family: AlibabaPuHuiTi_2_65_Medium;font-weight: 400;font-size: 32px;color: #FFFFFF;font-style: italic;margin-bottom: 20px;}
.f-service .time {font-size: 12px;font-family: AlibabaPuHuiTi_2_55_Regular;font-weight: 400;font-size: 16px;color: #DDDDDD;margin: 0;}

.f-qr { text-align: center; }
.f-qr img {width: 80px;margin-bottom: 12px;width: 120px;}
.f-qr p {font-size: 12px;color: #999;font-family: AlibabaPuHuiTi_2_55_Regular;font-weight: 400;font-size: 14px;color: #DDDDDD;}
/* ================= Recommendation Section ================= */
.rec-section {
    padding: 56px 0;
    background: #F7F7F7; /* 浅灰背景区分 */
    padding-bottom: 30px;
}

/* --- Header --- */
.rec-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    /* border-bottom: 1px solid #eee; */ /* 可选：长底线 */
    padding-bottom: 34px;
}

.rh-left {
    display: flex;
    align-items: baseline;
    gap: 70px;
}

.rh-left h2 {
    font-size: 36px;
    color: #222222;
    font-weight: bold;
    position: relative;
    padding-bottom: 21px; /* 留给红线 */
}

/* 标题下的深红粗线 */
.rh-left h2::after {
    content: '';
    position: absolute;
    bottom: 0; /* 盖住长底线 */
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #3E0C0C;
    width: 170px;
    height: 8px;
    background: #47090C;
    left: 50%;
    margin-left: -85px;
}

.rh-left p {
     /* 深红文字 */
     font-family: AlibabaPuHuiTi_2_55_Regular;
     font-weight: 400;
     font-size: 26px;
     color: #47090C;
     font-style: italic;
}

/* --- Slider --- */
.rec-slider-wrapper {
    position: relative;
/* 给左右箭头留位置 */
}

.slider-track{
        padding: 0 60px; 
        position: relative;

}
.slider-track:after{
    position: absolute;
    width: 90px;
    height: 100%;
    content: "";
    right: 0px;
    top: 0px;
    z-index: 6;
    position: absolute;
    top: 0;
    right: 50px; /* 在右箭头左边 */
    width: 150px; /* 遮罩宽度 */
    height: 88%;
    /* 从右边白色 渐变到 左边透明 */
    background: linear-gradient(to left, #F9F9F9 20%, rgba(249,249,249,0) 100%);
    pointer-events: none; /* 让鼠标能穿透遮罩点击下面的内容 */
    z-index: 5;
}
.slider-viewport {
    width: 100%;
    overflow: hidden; /* 隐藏超出部分 */
}

.slider-track {
     /* 卡片间距 */
      /* 滑动动画 */
      /* 让内容撑开宽度 */
}

.rec-card {
     /* 固定宽度 */
      /* 防止被挤压 */
}

.rec-card {}




.rc-img {
    width: 100%;
    overflow: hidden;
    margin-bottom: 13px;
    height: 250px;
}
.rc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.rec-card:hover .rc-img img {
    transform: scale(1.1);
}

.rc-title {
    font-size: 16px;
    color: #333;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 22px;
    color: #333333;
    text-align: center;
}

/* 箭头按钮 */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 40px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
    width: 24px;
    height: 40px;
    opacity: .4;
}
.slider-btn:hover { color: #3E0C0C; }
.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

.floating{
    background: #fff;
    padding-top: 20px;
    padding-bottom: 26px;
}
.rc-title a{
    color: inherit;
}
.slider-btn.swiper-button-next{
    background: url(../images/right2.png) no-repeat center center;
    background-size: 100%;
}
.slider-btn.swiper-button-prev{
    background: url(../images/left2.png) no-repeat center center;
    background-size: 100%;
}
.listNews{
    background: #fff;
    padding: 30px 0px;
    padding-bottom: 10px;
    position: relative;
}



/* ================= Top Bar ================= */
.top-bar {
     /* 浅灰底 */
    line-height: 40px;
    font-size: 12px;
    color: #666;
    height: 40px;
    background: #F1F1F1;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
}
    .tb-left{
        display:flex;
    }
.tb-left a img{
margin-right:6px;}
.tb-left a {
    margin-right: 36px;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    display: flex;
    align-items: center;
}
    .tb-right span img{
        margin-right:8px;
    }
.tb-left a:hover { color: #3E0C0C; }
.tb-right {
    display:flex;
}
.tb-right span {
    margin-left: 20px;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    display: flex;
    align-items: center;
}
.tb-right .phone {
    font-weight: bold;
    color: #3E0C0C;
    font-size: 14px;
    margin-left: 49px;
    font-family: AlibabaPuHuiTi_2_65_Medium;
    font-weight: 400;
    font-size: 18px;
    color: #47090C;
    font-style: italic;
}


/* ================= Search Banner ================= */
.search-banner {
    height: 200px;
    /* 淡粉色背景图 */
    background: url(../images/bg2.jpg) no-repeat center center;
    background-size: cover;
     /* 备用色 */
    display: flex;
    align-items: center;
    margin-top: 120px;
}

.relative-z { position: relative; z-index: 2; }

.search-wrap-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* 左侧搜索区 */
.search-area {
    width: 860px;
}

.big-search-box {
    display: flex;
    margin-bottom: 16px;
    overflow: hidden;
    width: 100%;
    height: 60px;
    background: #FFFFFF;
    border-radius: 6px;
    border: 2px solid #47090C;
}

.big-search-box input {
    flex: 1;
    border: none;
    padding: 0 19px;
    font-size: 16px;
    outline: none;
    color: #333;
}

.btn-search-icon {
    width: 60px;
    background: transparent;
    border: none;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    background: url(../images/search2.png) no-repeat center center;
}

.hot-search {
    font-size: 16px;
    color: #666;
}
.hot-search span {font-family: AlibabaPuHuiTi_2_55_Regular;font-weight: 400;color: #47090C;}
.hot-search a {
    margin-right: 15px;
    color: #333333;
}
.hot-search a:hover { color: #3E0C0C; text-decoration: underline; }

/* 右侧二维码 */
.qr-card {
    background: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: #FFFFFF;
    border-radius: 10px;
    padding: 5px 10px;
}

.qr-card img {
    width: 150px;
}

.qr-text p {
    line-height: 1.4;
    margin: 0;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 26px;
    color: #47090C;
}

.topHead{
    position: fixed;
    width: 100%;
    z-index: 9999;
    left: 0px;
    top: 0px;
}

.topHead .header .nav li.active a,.topHead .header .nav li:hover a{
    color: #fff;
}
.topHead .header .nav li.active a .icon img.default,.topHead .header .nav li:hover a .icon img.default{
    top: 50%;
}
.topHead .header .nav li.active a .icon img.current,.topHead .header .nav li:hover a .icon img.current{
    margin-top: 196%;
}
.topHead .header .nav li.active a .icon img.current{
    
}
    
.topHead .header   .nav li a{
        
color: #222;
    }
.topHead .header   .nav li a .icon{
        display: inline-block;
        position: relative;
        margin-right: 8px;
        overflow: hidden;
        width: 22px;
        height: 22px;
    }
.topHead .header   .nav li a .icon img{
    display: block;
    margin: 0;
    -webkit-transition: all 0.2s;
    -o-transition:all 0.2s;
    -moz-transition:all 0.2s;
    -ms-transition:all 0.2s;
    transition:all 0.2s;
    position: relative;
}
.topHead .header   .nav li a .icon .default{
        position: absolute;
        top: -50%;
        left: 50%;
        -o-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
.topHead .header   .nav li a .icon .current{
        
    }
.topHead .header .nav-right{
        margin-left: 219px;
    }
.topHead .header{
    position: static;
    height: 80px;
    background: #FFFFFF;
    box-shadow: 0px 1px 0px 0px rgba(115,115,115,0.16);
}


/* ================= Filter Section ================= */
.filter-section {
    padding: 20px 0;
    background-color: #fff;
    padding-bottom: 3px;
}


.filter-group {
    margin-bottom: 35px;
}

.fg-title {
    font-size: 20px;
    font-weight: bold;
    color: #222222;
    padding-left: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    line-height: 30px;
    padding-left: 15px;
    border-left: #47090C 8px solid;
}

.fg-title .unit {
    font-size: 12px;
    color: #666;
    font-weight: normal;
    margin-left: 52px;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 18px;
    color: #666666;
}

/* 一级列表 */
.fg-list {
    display: flex;
    /* flex-wrap: wrap; */
    /* gap: 10px; */
}

.fg-item {
    display: inline-block;
    padding: 6px 20px; /* 较宽的内边距 */
    background-color: #F5F5F5; /* 默认浅灰 */
    color: #666;
    font-size: 14px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.2s;
    min-width: 80px;
    text-align: center;
    width: 120px;
    line-height: 30px;
    background: #F4F4F4;
    padding: 0;
}

.fg-item:hover,
.fg-item.active {
    background-color: #3E0C0C; /* 激活深红 */
    color: #fff;
}

/* 二级列表 (商圈/站点) */
.fg-sub-list {
    width: 100%;
    background-color: #FAFAFA; /* 极浅灰背景 */
    padding: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 19px 49px; /* 间距大一点 */
    background: rgba(71,9,12,0.03);
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 16px;
    color: #AAAAAA;
    padding: 23px 136px;
}

.sub-item {
    font-size: 12px;
    color: #666;
    transition: color 0.2s;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 16px;
    color: #AAAAAA;
}

.sub-item:hover,
.sub-item.active {
    color: #3E0C0C;
    font-weight: bold;
}

.fg-list .first .fg-item{
    width: 90px;
}
.fg-list .first{
    
width: 125px;
    
text-align: center;
}
.fg-list .rig{
    
width: calc(100% - 125px);
    
flex-wrap: wrap;
    
gap: 15px 20px;
    
display: flex;
}


/* ================= House List Section ================= */
.house-list-section {
    padding: 30px 0 0px;
    background-color: #F7F7F7; /* 浅灰底 */
    padding-bottom: 14px;
}

/* --- Selected Tags --- */
.selected-tags-row {
    display: flex;
    flex-wrap: wrap;
    /* gap: 10px; */
    margin-bottom: 30px;
    align-items: center;
}

.tag-item {
    display: flex;
    align-items: center;
    /* gap: 5px; */
    padding: 5px 15px;
    background-color: #FCEFEF; /* 极浅红 */
    border: 1px solid #3E0C0C; /* 深红边框 */
    color: #3E0C0C;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 18px;
    color: #47090C;
    line-height: 50px;
    border-radius: 10px;
    border: 1px solid #47090C;
    padding: 0;
    padding-left: 17px;
    padding-right: 8px;
    margin-right: 10px;
    background: none;
}
.tag-item:hover {

}
.tag-item i {font-size: 12px;display: inline-block;width: 13px;height: 14px;margin-left: 30px;background: url(../images/close.png) no-repeat center center;background-size: 100%;cursor: pointer;}

.clear-all {
    font-size: 14px;
    color: #999;
    margin-left: 10px;
}
.clear-all:hover { color: #3E0C0C; text-decoration: underline; }

/* --- House Card --- */
.house-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.house-card {
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    background: #FFFFFF;
    border-radius: 10px;
}
.house-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.card-link {
    display: flex;
    text-decoration: none;
    color: inherit;
}

.hc-img {
    width: 360px; /* 固定图片宽 */
    height: 230px;
    /* border-radius: 6px; */
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 18px;
}
.hc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.house-card:hover .hc-img img { transform: scale(1.05); }

.hc-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    padding-top: 16px;
    position: relative;
}

.hc-head .title {
    font-size: 22px;
    color: #333;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 23px;
    font-family: AlibabaPuHuiTi_2_65_Medium;
    font-weight: 400;
    font-size: 26px;
    color: #222222;
}

.badge-yellow {
    background-color: #FFC107; /* 黄色 */
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 2px;
    font-weight: normal;
    width: 50px;
    line-height: 32px;
    background: #F5B800;
    border-radius: 6px;
    padding: 0;
    text-align: center;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}

.hc-details p {
    font-size: 14px;
    color: #666;
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 18px;
    color: #999999;
}
.hc-details i { color: #999; width: 16px; text-align: center; }

.hc-foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* margin-top: 10px; */
    position: absolute;
    width: 100%;
    bottom: 18px;
    left: 0;
}

.views {
    font-size: 12px;
    color: #999;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 16px;
    color: #AAAAAA;
    display: flex;
    align-items: center;
    gap: 5px;
}

.price-box {
    text-align: right;
}
.price {
    font-size: 28px;
    color: #E60012; /* 鲜红价格 */
    font-weight: bold;
    font-family: Arial, sans-serif;
    font-family: AlibabaPuHuiTi_2_65_Medium;
    font-weight: 400;
    font-size: 36px;
    color: #E3000B;
}
.unit {
    font-size: 12px;
    color: #E60012;
    font-weight: bold;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 14px;
    color: #E2000B;
    padding-right: 22px;
}
.pagination{text-align: center;padding-top: 30px;padding-bottom: 46px;gap: 10px;display: flex;justify-content: center;}
.pagination a{

display: inline-block;

width: 50px;

line-height: 40px;

border-radius: 10px;

border: 1px solid #47090C;

vertical-align: bottom;

font-family: AlibabaPuHuiTi_2_55_Regular;

font-weight: 400;

font-size: 20px;

color: #47090C;
}
.pagination a.current{color: #fff;background: #47090C;}
.pagination span {
font-family: AlibabaPuHuiTi_2_55_Regular;
font-weight: 400;
font-size: 20px;
color: #47090C;}


/* ================= Everyone Section ================= */
.everyone-section {
    padding: 13px 0px 13px;
    background-color: #fff; /* 保持浅灰底 */
     /* 可选分割线 */
}

.everyone-slider-wrapper {
    position: relative;
    padding: 0 50px; /* 给箭头留空 */
}

.everyone-viewport {
    width: 100%;
    overflow: hidden;
}

.everyone-track {
    transition: transform 0.5s ease;
}

/* --- 卡片样式 --- */
.ev-card {
     /* 固定宽度，一屏大概放5个 */
     background: #fff;
     box-shadow: 0 2px 10px rgba(0,0,0,0.05);
     padding-bottom: 12px;
     transition: transform 0.3s;
}

.ev-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.ev-img {
    width: 100%;
    height: 144px;
    overflow: hidden;
    margin-bottom: 19px;
}
.ev-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ev-info {
    padding: 0 10px;
}

.ev-title a {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    font-weight: bold;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    margin-bottom: 15px;
    display: block;
}

.ev-addr {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    margin-bottom: 32px;
}

.ev-price .num {
    font-size: 20px;
    color: #E60012;
    font-weight: bold;
    font-family: AlibabaPuHuiTi_2_65_Medium;
    font-weight: 400;
    font-size: 32px;
    color: #E3000B;
}
.ev-price .units {
    font-size: 12px;
    color: #E60012;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 14px;
    color: #E2000B;
}

/* --- 箭头 --- */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 40px;
    color: #999;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}
.slider-arrow:hover { color: #333; }
.prev-arrow { left: 0; }
.next-arrow { right: 0; }

/* --- 遮罩层 (右侧渐隐) --- */
.fade-mask {
    position: absolute;
    top: 0;
    right: 50px; /* 在右箭头左边 */
    width: 150px; /* 遮罩宽度 */
    height: 100%;
    /* 从右边白色 渐变到 左边透明 */
    background: linear-gradient(to left, #fff 20%, rgba(249,249,249,0) 100%);
    pointer-events: none; /* 让鼠标能穿透遮罩点击下面的内容 */
    z-index: 5;
}

.everyone-track .swiper-slide{
    padding-top: 12px;
    padding-bottom: 12px;
}
.everyone-track .btns{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 40px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
    width: 24px;
    height: 40px;
    opacity: .4;
}
.everyone-track .btns.swiper-button-next{
    background: url(../images/right2.png) no-repeat center center;
    background-size: 100%;
}
.everyone-track .btns.swiper-button-prev{
    background: url(../images/left2.png) no-repeat center center;
    background-size: 100%;

}
.h114{
    height: 114px;
    background: #F7F7F7;
}
body{
    min-width: 1300px;
}
.topHead .header .nav-right.right2{
    margin-left: 75px;
    justify-content: space-between;
}
.searchSec{

width: 400px;

height: 40px;

background: #F7F7F7;

border-radius: 6px;

display: flex;

margin-left: 26px;
}
.searchSec .words{
    
flex: 1;
    
border: none;
    
padding: 0 19px;
    
font-size: 16px;
    
outline: none;
    
color: #333;
    
background: none;
}
.searchSec .send{
    
width: 60px;
    
background: transparent;
    
border: none;
    
font-size: 20px;
    
color: #333;
    
cursor: pointer;
    
background: url(../images/search2.png) no-repeat center center;
}













/* ================= Detail Page ================= */
.detail-main {
    padding: 134px 0 30px;
    background-color: #fff;
}

.breadcrumb {
    font-size: 14px;
    color: #AAAAAA;
    margin-bottom: 52px;
}
.breadcrumb a {color: #AAAAAA;}
.breadcrumb .current {color: #AAAAAA;}

.detail-top-wrapper {
    display: flex;
    gap: 30px;
}

/* --- Left Gallery --- */
.dt-gallery {
    width: 620px;
    background: #F6F6F6;
    padding-bottom: 15px;
}

.dt-big-img {
    width: 100%;
    height: 400px;
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
}
.dt-big-img img {
    width: 100%; height: 100%; object-fit: cover;
}
.img-count {
    position: absolute;
    bottom: 10px; right: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 12px;
}

.dt-thumbs {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.thumbs-list {
    display: flex;
    gap: 10px;
    overflow: hidden;
    width: 520px;
}
.thumb-item {
    width: 120px; height: 90px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}
.thumb-item.active, .thumb-item:hover {
    opacity: 1;
    border: 2px solid #3E0C0C;
}
.thumb-item img { width: 100%; height: 100%; object-fit: cover; }

.thumb-btn {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
}
.thumb-btn:hover { color: #333; }

/* --- Right Info --- */
.dt-info {
    flex: 1;
}

.dt-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 32px;
    color: #222222;
}
/* 复用 .badge-yellow */

.dt-params {padding-bottom: 13px;}
.dt-params li {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start; /* 顶部对齐 */
    gap: 10px;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 20px;
    color: #999999;
    line-height: 24px;
}
.dt-params i { color: #3E0C0C; margin-top: 3px; }

.row-2 {
    gap: 60px !important; /* 同一行参数间距 */
}

.metro-info {
    line-height: 1.6;
}

.dt-price-row {
    margin-bottom: 99px;
}
.dt-price-row .price {
    font-size: 40px;
    color: #E60012;
    font-weight: bold;
    font-family: Arial;
    font-family: AlibabaPuHuiTi_2_65_Medium;
    font-weight: 400;
    font-size: 48px;
    color: #E3000B;
}
.dt-price-row .unit {
    font-size: 16px;
    color: #E60012;
    font-weight: bold;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 20px;
    color: #E2000B;
    margin-left: 13px;
}

.dt-views {
    font-size: 14px;
    color: #999;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 20px;
    color: #999999;
    margin-bottom: 30px;
}
.dt-views .num {
    color: #3E0C0C;
    font-weight: bold;
    font-size: 18px;
    margin: 0 5px;
    font-family: AlibabaPuHuiTi_2_65_Medium;
    font-weight: 400;
    font-size: 26px;
    color: #47090C;
    font-style: italic;
}

/* 按钮组 */
.dt-actions {
    display: flex;
    gap: 10px;
}

.btn-book {
    flex: 1;
    background-color: #3E0C0C; /* 深红 */
    color: #fff;
    border: none;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    width: 430px;
    height: 90px;
    background: #47090C;
    border-radius: 10px;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 32px;
    color: #FFFFFF;
    font-style: italic;
}
.btn-book:hover { opacity: 0.9; }

.btn-qr {
    width: 200px;
    border: 1px solid #3E0C0C;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    gap: 10px;
    cursor: pointer;
    width: 210px;
    height: 90px;
    border-radius: 10px;
    border: 1px solid #47090C;
}
.btn-qr img {width: 50px;height: 50px;width: 74px;height: 74px;}
.btn-qr .text p {
    font-size: 14px;
    color: #3E0C0C;
    font-weight: bold;
    line-height: 1.4;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 18px;
    color: #47090C;
}
.dt-gallery .gallery-thumbs {
    margin-top:18px;
}
.dt-gallery .gallery-thumbs img{
    height: 100px;
    background: #47090C;
    border-radius: 8px;
    object-fit: cover;
}
.dt-gallery  .gallery-top img{
    height: 400px;
    object-fit: cover;
}
.dt-gallery  img{
    width: 100%;
}
    .gallery-top{

    }
    .gallery-thumbs {

    }
    .gallery-thumbs .swiper-slide {
        width: 28%;
        height: 100%;
        opacity: 0.4;
    }
    .gallery-thumbs .swiper-slide-active {
        opacity: 1;
    }
    

.flextet{
    display: flex;
}
.flextet .lef{
    
white-space: nowrap;
}
.flextet .rig{
    
line-height: 1.4;
}


/* ================= Building Section ================= */
.building-section {
    padding: 36px 0 20px;
    background-color: #F9F9F9;
    background: #F7F7F7;
}

.sec-title-left {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
    position: relative;
}
/* 红色短线 */
.sec-title-left::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 14px;
    width: 60px;
    height: 4px;
    background-color: #3E0C0C;
}

/* --- Listing Tabs --- */
.listing-box {
    margin-bottom: 10px;
    margin-top: 30px;
}

.listing-tabs {
    display: flex;
    margin-bottom: 10px;
}
.lt-item:after{
    content:"";
    position:absolute;
    right:0px;
    
    width: 1px;
height: 48px;
background: #DDDDDD;
    top:21px;
}
.lt-item {
    flex: 1;
    text-align: center;
    padding: 17px 0;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.lt-item:last-child:after {opacity: 0;}

.lt-item .type {font-size: 14px;color: #333;font-family: AlibabaPuHuiTi_2_55_Regular;font-weight: 400;font-size: 18px;color: #222222;}
.lt-item .count {font-size: 16px;color: #999;font-weight: bold;font-family: AlibabaPuHuiTi_2_55_Regular;font-weight: 400;font-size: 24px;color: #AAAAAA;margin-top: 17px;}
.lt-item .count.highlight {color: #47090C;}

/* 激活状态 */
    .lt-item.active:after{
background:#47090C}
.lt-item.active {
    background-color: #47090C;
}
.lt-item.active .type, .lt-item.active .count {
    color: #fff;
}

/* --- Listing Table --- */
.listing-header, .listing-row {
    display: flex;
    align-items: center;
    padding: 20px;
    /* border-bottom: 1px solid #eee; */
    text-align: center;
    background: #FFFFFF;
}
    .listing-header .col-4,.listing-header .col-5{
        color: #333 !important;
    }
.listing-header {
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #333333; /* 标题下黑线 */
    /* background: #FFFFFF; */
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 18px;
    color: #222222;
    padding-top: 31px;
    padding-bottom: 12px;
}

/* 列宽分配 */
.col-1 { width: 15%; }
.col-2 { width: 20%; }
.col-3 { width: 25%; }
.col-4 {width: 20%;font-family: AlibabaPuHuiTi_2_55_Regular;font-weight: 400;font-size: 20px;color: #666666;}
.col-5 {width: 20%;font-family: AlibabaPuHuiTi_2_55_Regular;font-weight: 400;font-size: 20px;color: #666666;}

.listing-row .img-box img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    width: 180px;
    height: 120px;
    background: #47090C;
    border-radius: 10px;
}
.listing-row .size {font-size: 18px;font-family: AlibabaPuHuiTi_2_55_Regular;font-weight: 400;font-size: 20px;color: #666666;color: #333;}
.listing-row .price {font-family: AlibabaPuHuiTi_2_55_Regular;font-weight: 400;font-size: 32px;color: #E3000B;}

/* --- Building Info Card --- */
.building-info-card {
    background-color: #fff;
    padding: 23px 33px  33px;
    margin-bottom: 41px;
}

/* 上部 */
.bi-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 44px;
}

.bi-left {
    display: flex;
    gap: 44px;
}
.bi-img img {width: 200px;height: 150px;object-fit: cover;width: 270px;height: 175px;}
.bi-basic .bi-row{
    
}
.bi-basic {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 43px;
}
.bi-row .label {color: #999;font-size: 14px;margin-right: 10px;display: block;font-family: AlibabaPuHuiTi_2_55_Regular;font-weight: 400;font-size: 16px;color: #AAAAAA;margin-bottom: 13px;}
.bi-row .val {color: #333;font-weight: bold;font-size: 16px;display: block;font-family: AlibabaPuHuiTi_2_55_Regular;font-weight: 400;font-size: 20px;color: #222222;}
.bi-row .val.red { color: #3E0C0C; }

/* 右侧核心参数框 */
.bi-right {
    width: 400px;
    width: 500px;
    height: 150px;
    background: #F7F7F7;
    border-radius: 10px;
    border: 1px solid #DDDDDD;
    overflow: hidden;
}
.core-param {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
}
.cp-item {
    text-align: center;
}
.cp-item .label {display: block;color: #999;font-size: 14px;margin-bottom: 5px;font-family: AlibabaPuHuiTi_2_55_Regular;font-weight: 400;font-size: 26px;color: #666666;margin-bottom: 18px;}
.cp-item .val {display: block;color: #333;font-size: 30px;font-weight: bold;font-family: AlibabaPuHuiTi_2_65_Medium;font-weight: 400;font-size: 36px;color: #222222;}

.cp-divider {
    width: 1px;
    height: 50px;
    background-color: #ccc;
    width: 1px;
    height: 60px;
    background: #47090C;
}

/* 中部网格 */
.bi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px 0px;
}
.bi-grid-item {
    display: flex;
    flex-direction: column;
    /* gap: 5px; */
}
.bi-grid-item .label {font-size: 12px;color: #999;font-family: AlibabaPuHuiTi_2_55_Regular;font-weight: 400;font-size: 16px;color: #AAAAAA;margin-bottom: 13px;}
.bi-grid-item .val {font-size: 14px;color: #333;font-weight: 500;font-family: AlibabaPuHuiTi_2_55_Regular;font-weight: 400;font-size: 20px;color: #222222;white-space: nowrap;padding-right: 42px;line-height: 1.2;}

/* 下部文字 */
.bi-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    text-align: justify;
    border-top: 1px solid #DDDDDD;
    padding-top: 30px;
    margin-top: 51px;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 18px;
    color: #666666;
    line-height: 28px;
    padding: 32px 15px;
    padding-bottom: 0;
}
.bi-desc p { margin-bottom: 15px; }

.whitebg{
    padding-left: 30px;
    padding-right: 30px;
    background: #fff;
    padding-bottom: 30px;
}
.h14{
    height: 14px;
    background: #F7F7F7;
}