/* 样式初始化 */
@import './minireset.css';

/* 主题色 */
:root {
    --bgc: rgba(0,0,0, .8); /*菜单背景色*/
    --bgc_active: rgba(157,138,111, .7); /*菜单激活背景色*/
}

.iframe {
    display: none;
    position: fixed;
    width: 100%;
    height: calc(100% - 40px);
    background: #f0f0f0;
    top: 0;
    left: 0;
    border: none;
    opacity: 0;
    padding-bottom: env(safe-area-inset-bottom);
}

.iframe.show {
    display: block;
    z-index: 10010;
    opacity: 1
}

.iframe.showmap {
    display: block;
    z-index: 10010;
    opacity: 1
}

.menu_main {
    width: 100%;
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    z-index: 23000;
    left: 50%;
    transform: translate(-50%, 100%);
    transition: all .5s;
    max-width: 768px;
    background-color: var(--bgc);
    box-shadow: 0 -1px 2px rgba(255, 255, 255, 0.4);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
    --size: 17px;
}

.menu_main.show {
    transform: translate(-50%, 0)
}

.menu_main li {
    display: block;
    float: left;
    z-index: 99999;
    /* background-color: rgba(0,0,0, 1); */
    color: #fff;
    text-align: center;
    height: 40px;
    padding: 5px 0 0;
    flex: 1;
    white-space: nowrap;
    position: relative;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 1);
}

.menu_main li [class*='icon-'] {
    display: block;
    width: var(--size);
    height: var(--size);
    margin: 0 auto;
    background: url(../images/icon/icon_menu.svg) no-repeat left top/34px 170px
}

.menu_main li .icon-quyu {
    background-position: left top
}

.menu_main li .icon-quanjing {
    background-position: left calc(var(--size) * -1)
}

.menu_main li .icon-yuanlin {
    background-position: left calc(var(--size) * -2)
}

.menu_main li .icon-shangjie {
    background-position: left calc(var(--size) * -3)
}

.menu_main li .icon-shinei {
    background-position: left calc(var(--size) * -4)
}

.menu_main li .icon-frames {
    background-position: left calc(var(--size) * -5)
}

.menu_main li .icon-huxing {
    background-position: left calc(var(--size) * -6)
}

.menu_main li .icon-manyou {
    background-position: left calc(var(--size) * -7)
}

.menu_main li .icon-manyouout {
    background-position: left calc(var(--size) * -8)
}

.menu_main li .icon-shiye {
    background-position: left calc(var(--size) * -9)
}

.menu_main li .icon-more {
    background: none;
    font-size: 16px;
    line-height: 1.2
}

.menu_main li.active {
    background-color: var(--bgc_active);
}

.menu_main li.active .icon-quyu {
    background-position: -17px top
}

.menu_main li.active .icon-quanjing {
    background-position: -17px calc(var(--size) * -1)
}

.menu_main li.active .icon-yuanlin {
    background-position: -17px calc(var(--size) * -2)
}

.menu_main li.active .icon-shangjie {
    background-position: -17px calc(var(--size) * -3)
}

.menu_main li.active .icon-shinei {
    background-position: -17px calc(var(--size) * -4)
}

.menu_main li.active .icon-frames {
    background-position: -17px calc(var(--size) * -5)
}

.menu_main li.active .icon-huxing {
    background-position: -17px calc(var(--size) * -6)
}

.menu_main li.active .icon-manyou {
    background-position: -17px calc(var(--size) * -7)
}

.menu_main li.active .icon-manyouout {
    background-position: -17px calc(var(--size) * -8)
}

.menu_main li.active .icon-shiye {
    background-position: -17px calc(var(--size) * -9)
}

.menu_main li.active .icon-more {
    background: none;
    font-size: 16px;
    line-height: 1.2
}

.menu_main li.show .sub-nav {
    transform: scaleY(1)
}

@media all and (min-width: 768px) {
    .menu_main {
        font-size: 14px
    }

    .menu_main li {
        line-height: 40px;
        padding-top: 2px
    }

    .menu_main li [class*='icon'] {
        display: inline-block;
        vertical-align: -3px;
        margin-right: 3px
    }
}

.sub-nav {
    position: absolute;
    left: 0;
    bottom: 41px;
    width: 100%;
    margin: auto;
    justify-content: space-around;
    transform: scaleY(0);
    transform-origin: left bottom;
    transition: all .3s;
    max-width: 768px
}

.sub-nav span {
    position: relative;
    text-align: center;
    background-color: var(--bgc);
    color: white;
    font-size: 8px;
    display: block;
    padding: 10px 0;
    /* margin-bottom: 1px; */
    white-space: pre-wrap;
}

.sub-nav span.active {
    background-color: var(--bgc_active);
    color: white;
}

.sub-nav span::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 1px;
    background: rgba(255,255,255, .3);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.sub-nav span b {
    display: block;
    width: 100%;
    line-height: 1;
    padding: 10px 0
}

.sub-nav span img {
    display: block
}

.ctrl_sider {
    display: block;
    position: fixed;
    right: 10px;
    top: 10px;
    width: 25px;
    z-index: 20000;
    font-size: 0
}

.icon_bg {
    display: inline-block;
    width: 26px;
    height: 26px;
    text-align: center;
    padding: 5px;
    margin-bottom: 15px;
    box-sizing: border-box;
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.2);
    color: #fff;
    font-size: 14px
}

.icon_bg.active {
    background: #121212;
}

.icon_bg svg {
    display: block;
    width: 16px;
    height: 16px;
    fill: #fff
}

[class*="icon-"] {
    display: block;
    width: 16px;
    height: 16px
}

[class*="icon-"] svg {
    display: block;
    width: 100%;
    height: 16px;
    fill: #fff
}

/* .icon-info svg: {
    fill: #f22;
} */

.icon-music.musicPlaying {
    animation: rotateit 2s linear infinite
}

@keyframes rotateit {
    to {
        transform: rotate(1turn)
    }
}

@-webkit-keyframes rotateit {
    to {
        transform: rotate(1turn)
    }
}

@media all and (orientation: landscape) {
    .ctrl_sider {
        top: 30px
    }
}

.map-container,
.info-container {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: -20000;
    transform: scale(0);
    transition: all .3s;
    opacity: 0
}

.map-container .sub-content,
.info-container .sub-content {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 85vw;
    padding: 40px 20px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 2px 3px 25px rgba(0, 0, 0, 0.6);
    transition: all .6s;
    opacity: 0
}

.map-container.show,
.info-container.show {
    transform: scale(1);
    opacity: 1;
    z-index: 200000
}

.map-container.show .sub-content,
.info-container.show .sub-content {
    opacity: 1
}

.info-container {
    color: #333;
    line-height: 2
}

.info-container .info-content h1 {
    font-size: 1.4em;
    text-align: center;
    color: #000
}

.info-container .info-content h2 {
    font-size: 1.2em;
    text-align: left;
    color: #111;
    padding-bottom: 10px
}

.info-container .info-content p {
    margin: 0;
    padding: 0 0 1em 30px;
    line-height: 1.65;
    text-align: left
}

.info-container .info-content span {
    display: inline-block;
    width: 30px;
    margin-left: -30px
}

.info-container .info-content .stat {
    max-height: calc(100vh - 300px);
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 14px;
    padding: 0 10px 0 20px;
    line-height: 1.65;
    white-space: pre-wrap;
    word-break: break-word
}

.info-container a {
    color: #36373b;
    text-decoration: none
}

.map-container.show {
    background: white;
    z-index: 300000
}

.quyu-container {
    width: 100vw;
    height: calc(100vh - 40px);
    animation: ani_bg 2s ease-in-out;
    background-position: 100% center;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.quyu-container::-webkit-scrollbar {
    display: none
}

.quyu-container.show {
    display: block
}

.quyu {
    opacity: 0;
    overflow: scroll;
    height: calc(100vh - 40px)
}

.quyu img {
    display: block;
    width: auto;
    height: calc(100vh - 40px);
    min-width: 100vw;
    max-width: none
}

@keyframes ani_bg {
    0% {
        background-position: 100% center
    }

    100% {
        background-position: 50% center
    }
}

@media all and (max-width: 768px) {
    .quyu img {
        min-width: 100%
    }
}

.swiper-container {
    width: 100vw;
    height: 100%;
    margin: 0 auto;
    background: #f1f4f9
}

.swiper-slide {
    background-size: cover;
    background-position: center
}

.swiper-slide .swiper_target {
    display: inline-block;
    position: absolute;
    left: 10px;
    top: calc(50% - 190px);
    width: 77px;
    height: 138px
}

.sec {
    display: inline-block;
    position: absolute;
    right: 10px;
    bottom: 100px;
    width: 50px;
    height: 20px;
    line-height: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    color: #111;
    text-align: center
}

.sec.active {
    background: #fff
}

.house-content {
    width: 100vw;
    height: calc(100vh - 40px);
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    --color: #ba8e4e
}

.house-content .house-wrap {
    padding-bottom: 80px
}

.house-content .house-wrap h1 {
    padding: 30px 0;
    margin: 0;
    line-height: 1;
    color: var(--color);
    font-size: 24px;
    text-align: center
}

.house-content::-webkit-scrollbar {
    display: none
}

.house-content .tab_item {
    border-left: 6px solid var(--color);
    height: 70px;
    box-shadow: 0px 6px 20px 0px rgba(15, 34, 74, 0.2);
    background: #fff;
    position: relative;
    margin-bottom: 20px;
    font-size: 16px
}

.house-content .tab_item::before {
    position: absolute;
    left: 4%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--color);
    content: attr(data-title);
    line-height: 1
}

.house-content .tab_item::after {
    position: absolute;
    left: 45%;
    bottom: 11px;
    font-size: 18px;
    color: var(--color);
    content: attr(data-area);
    line-height: 1;
    font-family: "Times New Roman"
}

.house-content .tab_item span:nth-of-type(1) {
    display: inline-block;
    border-left: .1vw solid #aaa;
    height: 44px;
    margin: 13px 0 0;
    padding-left: 12px;
    position: absolute;
    left: 22%;
    top: 0;
    color: #555;
    line-height: 1;
    font-size: 16px
}

.house-content .tab_item span:nth-of-type(1) em {
    display: block;
    font-style: normal;
    padding: 16px 0 0;
    font-size: 12px
}

.house-content .tab_item span:nth-of-type(2) {
    display: inline-block;
    height: 100%;
    line-height: 70px;
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    color: #333;
    background: url(../images/search.svg) no-repeat right 10px center/14px;
    color: var(--color);
    font-size: 12px
}

.house-content .tab_item.show+.tab_content {
    padding-bottom: 50px;
    transform: scaleY(1);
    height: auto;
    opacity: 1
}

.house-content .tab_content {
    overflow: hidden;
    height: 0;
    transform: scaleY(0);
    transition: all .5s;
    opacity: 0
}

.house-content .tab_content img {
    width: 90%;
    margin: 0 auto
}

.house-content img {
    display: block;
    width: 100%
}

@media all and (min-width: 1000px) {
    .house-content .house-wrap {
        max-width: 80%;
        margin: 0 auto;
        padding: 0 100px
    }

    .house-content .house-wrap h1 {
        padding: 55px 0;
        font-size: 45px
    }

    .house-content .tab_item {
        margin-bottom: 40px
    }
}

.swiper-slide {
    overflow: hidden
}

.swiper-container {
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background: white
}

@media all and (min-width: 768px) {

    .swiper-container .swiper-button-next,
    .swiper-container .swiper-button-prev {
        background-size: 28px 44px
    }
}

.closeit,
.closeit_black {
    display: inline-block;
    position: absolute;
    top: 20px;
    right: 10px;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20fill%3D'%23fff'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%3E%3Cpath%20d%3D%22M14.1%2C12l8.5-8.5c0.6-0.6%2C0.6-1.5%2C0-2.1s-1.5-0.6-2.1%2C0L12%2C9.9L3.5%2C1.4C3%2C0.9%2C2%2C0.9%2C1.4%2C1.4S0.9%2C3%2C1.4%2C3.5L9.9%2C12l-8.5%2C8.5%20c-0.6%2C0.6-0.6%2C1.5%2C0%2C2.1s1.5%2C0.6%2C2.1%2C0l8.5-8.5l8.5%2C8.5c0.6%2C0.6%2C1.5%2C0.6%2C2.1%2C0s0.6-1.5%2C0-2.1L14.1%2C12z%22/%3E%3C%2Fsvg%3E") no-repeat center center/50%;
    z-index: 99999;
    cursor: pointer
}

.closeitnew {
    display: inline-block;
    position: absolute;
    top: -50px;
    right: -10px;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20fill%3D'%23fff'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%3E%3Cpath%20d%3D%22M14.1%2C12l8.5-8.5c0.6-0.6%2C0.6-1.5%2C0-2.1s-1.5-0.6-2.1%2C0L12%2C9.9L3.5%2C1.4C3%2C0.9%2C2%2C0.9%2C1.4%2C1.4S0.9%2C3%2C1.4%2C3.5L9.9%2C12l-8.5%2C8.5%20c-0.6%2C0.6-0.6%2C1.5%2C0%2C2.1s1.5%2C0.6%2C2.1%2C0l8.5-8.5l8.5%2C8.5c0.6%2C0.6%2C1.5%2C0.6%2C2.1%2C0s0.6-1.5%2C0-2.1L14.1%2C12z%22/%3E%3C%2Fsvg%3E") no-repeat center center/50%;
    z-index: 99999;
    cursor: pointer 
}

.closeit_black {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20fill%3D'%23111'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%3E%3Cpath%20d%3D%22M14.1%2C12l8.5-8.5c0.6-0.6%2C0.6-1.5%2C0-2.1s-1.5-0.6-2.1%2C0L12%2C9.9L3.5%2C1.4C3%2C0.9%2C2%2C0.9%2C1.4%2C1.4S0.9%2C3%2C1.4%2C3.5L9.9%2C12l-8.5%2C8.5%20c-0.6%2C0.6-0.6%2C1.5%2C0%2C2.1s1.5%2C0.6%2C2.1%2C0l8.5-8.5l8.5%2C8.5c0.6%2C0.6%2C1.5%2C0.6%2C2.1%2C0s0.6-1.5%2C0-2.1L14.1%2C12z%22/%3E%3C%2Fsvg%3E") no-repeat center center/50%
}

.video-container {
    height: 100vh;
}

.video-container h2 {
    display: block;
    text-align: center;
    padding: 1em 0 2em;
    color: #d1b686;
    font-size: 1.4em
}

.video-container.show {
    display: block
}

.vid_play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(100vh - 40px);
    cursor: pointer;
    box-sizing: content-box;
}

.vid_play::after {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 45px;
    height: 45px;
    border: 2px solid white;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20fill%3D'%23fff'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%3E%3Cpath%20d%3D%22M2.579%2C23.633%20C2.157%2C23.633%201.734%2C23.512%201.352%2C23.291%20C0.668%2C22.868%200.265%2C22.124%200.265%2C21.319%20L0.265%2C2.803%20C0.265%2C1.998%200.668%2C1.254%201.352%2C0.831%20C2.036%2C0.408%202.881%2C0.368%203.606%2C0.73%20L22.121%2C9.988%20C23.269%2C10.572%2023.731%2C11.96%2023.168%2C13.108%20C22.947%2C13.55%2022.584%2C13.913%2022.121%2C14.154%20L3.606%2C23.412%20C3.284%2C23.553%202.922%2C23.633%202.579%2C23.633%20z%22/%3E%3C%2Fsvg%3E") no-repeat center center/20px;
    content: '';
    border-radius: 50%;
    display: inline-block;
    filter: drop-shadow(1px 1px 3px #111);
}

.modal-video {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 99999;
}

.modal-video video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    max-width: 100vw;
    max-height: calc(100vh - 40px)
}

.modal-video video::-webkit-media-controls-start-playback-button {
    display: none
}

.modal-video.active {
    display: block
}

.modal-video .closeit {
    left: 0
}

.video_loading {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    width: 100vw;
    height: calc(100vh - 40px);
    background: url(../images/loading2.svg) no-repeat center center/30px
}

.info-wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 0 50px;
    box-sizing: border-box;
    border-radius: 3px;
    color: white;
    font-size: 14px;
    backdrop-filter: blur(8px);
    z-index: 22000
}

.info-wrap .img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/loading2.svg) no-repeat center center/30px
}

.info-wrap .img img {
    display: block;
    width: auto;
    height: 100%
}

.info-wrap p {
    display: block;
    padding: 50px;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

@keyframes shines {
    0% {
        filter: drop-shadow(0 0 0 rgba(0, 135, 255, 0.5))
    }

    50% {
        filter: drop-shadow(0 0 10px #0087ff)
    }

    100% {
        filter: drop-shadow(0 0 0 rgba(0, 135, 255, 0.5))
    }
}

@keyframes showmarks {
    0% {
        transform: translate(0, -1000px)
    }

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

.side-menu-left {
    position: fixed;
    bottom: 100px;
    margin-bottom: env(safe-area-inset-bottom);
    left: 5px;
    z-index: 19999;
    padding: 10px 10px;
    background: rgba(23, 25, 22, 0.7);
    color: #fff;
    display: none;
    border-radius: 5px;
}
.side-menu-left {
    margin-bottom: env(safe-area-inset-bottom);
}



.side-menu-left h2 {
    font-size: 14px;
    margin-bottom: 5px;
    text-align: left;
}


.side-menu-left span {
    display: block;
    margin-bottom: 3px;
    font-size: 13px;
    padding-top: 10px;
    padding-right: 25px;
    text-align: right;
    position: relative;
}

.side-menu-left.xmpt span {
    display: block;
    margin-bottom: 3px;
    font-size: 13px;
    text-align: left;
    position: relative;
}

.side-menu-left span::after {
    content: "";
    position: absolute;
    right: 0;
    top: 9px;
    width: 20px;
    height: 20px
}
.side-menu-left.xmpt i {
    font-style: normal;
    margin-right: 20px;
    padding: 0px 10px;
    width: 20px;
    height: 20px;
    background-color: #DCAA5D;
}

.side-menu-left.rxlw,
.side-menu-left.roadnet{
    position: fixed;
    bottom: 200px;
    margin-bottom: env(safe-area-inset-bottom);
    z-index: 19999;
    padding: 10px 10px;
    background: rgba(23, 25, 22, 0.7);
    color: #fff;
    display: none;
    border-radius: 5px;
}

.side-menu-left.roadnet span:nth-of-type(1)::after {
    background: #EEEBCC;
}
.side-menu-left.rxlw span:nth-of-type(1)::after {
    background: #EEEBCC;
}

.side-menu-left.cxlw span:nth-of-type(1)::after {
    background: #B59CFF;
}
.side-menu-left.cxlw span:nth-of-type(2)::after {
    background: #58B4FF;
}
.side-menu-left.cxlw span:nth-of-type(3)::after {
    background: #4A72FF;
}
.side-menu-left.cxlw span:nth-of-type(4)::after {
    background: #98EF82;
}


.side-menu-left.jggh span:nth-of-type(1)::after {
    background: #BF4B58;
}
.side-menu-left.jggh span:nth-of-type(2)::after {
    background: #C1874C;
}

.side-menu-left.jggh span:nth-of-type(3)::after {
    background: #547BBA;
}
.side-menu-left.jggh span:nth-of-type(4)::after {
    background: #59B66D;
}
.side-menu-left.jggh span:nth-of-type(5)::after {
    background: #28B4A1;
}

.side-menu-left.nblw_a6 span:nth-of-type(1)::after {
    background: #E9A433;
}
.side-menu-left.nblw_a6 span:nth-of-type(2)::after {
    background: #04B9AA;
}

.side-menu-left.nblw_a6 span:nth-of-type(3)::after {
    background: #3F8ECC;
}
.side-menu-left.nblw_a6 span:nth-of-type(4)::after {
    background: #45937A;
}

.side-menu-left.jggh_a6 span:nth-of-type(1)::after {
    background: #B65B68;
}
.side-menu-left.jggh_a6 span:nth-of-type(2)::after {
    background: #D1D162;
}

.side-menu-left.jggh_a6 span:nth-of-type(3)::after {
    background: #D19A70;
}
.side-menu-left.jggh_a6 span:nth-of-type(4)::after {
    background: #5780B5;
}
.side-menu-left.jggh_a6 span:nth-of-type(5)::after {
    background: #41BD4C;
}
.side-menu-left.jggh_a6 span:nth-of-type(6)::after {
    background: #5ACFB2;
}





.side-menu-left.roadnet-menu span::after {
    top: 3px;
    height: 10px
}

.side-menu-left.roadnet-menu span:nth-of-type(1)::after {
    background: #01d6f4;
    width: 10px;
    border-radius: 50%;
}

.side-menu-left.roadnet-menu span:nth-of-type(2)::after {
    background: #f974e0;
    width: 10px;
    border-radius: 50%;
}

.side-menu-left.roadnet-menu span:nth-of-type(3)::after {
    background: #87fe86
}

.side-menu-left.roadnet-menu span:nth-of-type(4)::after {
    background: #f974e0
}

/* .js_tel {
    position: fixed !important;
    right: 15px;
    bottom: 220px;
    width: 36px;
    height: 36px;
    background: #000;
} */

.support_ctrl {
    position: fixed;
    right: 11px;
    bottom: 100px;
}

.time_ctrl {
    position: fixed;
    right: 11px;
    bottom: 70px;
    margin-bottom: env(safe-area-inset-bottom);
}
.time_ctrl {
    margin-left: env(safe-area-inset-left);
}

.time_ctrl.rxlw {
    left: 10px;
    right: auto;
}

.time_ctrl.rxlw_a7 {
    left: 10px;
    right: auto;
}


.time_ctrl_item,
.support_ctrl_item {
    position: relative;
    width: auto;
    min-width: 60px;
    height: 22px;
    border-radius: 5px;
    background-color: rgba(0,0,0,.6);
    font-size: 8px;
    text-align: center;
    padding: 0 5px;
    color: #fff;
    line-height: 22px;
    margin: 5px 0;
    /* text-shadow: 1px 1px 5px rgba(64, 94, 132, 1); */
}

.time_ctrl_item::after {
    content: "";
    position: absolute;
    bottom: 0;
    background-color: rgba(255,255,255,.3);
    width: 50%;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
}

.disable {
    color: #888 !important;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    top: 30px;
    bottom: auto;
    display: flex;
    justify-content: center;
}

.swiper-pagination-yt,
.swiper-pagination-qj {
    top: 60px;
    bottom: auto;
    display: flex;
    justify-content: center;
    width: 100%;
    left: 0;
    position: absolute;
    text-align: center;
    z-index: 10;
}

.swiper-pagination-qj {
    top: 90px;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 20px;
    border-radius: 10px;
    background-color: rgba(124, 166, 190, 1);
    color: #fff;
    text-shadow: 1px 1px 2px rgba(64, 94, 132, 1);
    opacity: 1;
    border: 1px solid rgb(124, 166, 190);
}

.swiper-pagination-bullet-active {
    background-color: #fff !important;
    color: rgb(124, 166, 190) !important;
    text-shadow: none !important;
    font-weight: bold;
}

.hxt_trigger {
    width: 50%;
    right: 0;
    height: 180px;
    position: fixed;
    opacity: 0;
    background-color: #f00;
    top: 30%;
    z-index: 2;
}

.hxt_container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(119, 155, 178);
    z-index: 3;
}

.hxt_content {
    width: 100%;
    height: 100%;
}

.hxt_yt,
.hxt_qj {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 20px;
    border-radius: 10px;
    background-color: rgba(124, 166, 190, 1);
    color: #fff;
    text-shadow: 1px 1px 2px rgba(64, 94, 132, 1);
    border: 1px solid rgb(124, 166, 190);
    margin: 0 4px;
    opacity: 0;
}

.yt_container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #f0f0f0 url('../images/yangtai/yangtai (1).jpg') center/contain no-repeat;
    z-index: 99;
}

.detailBox {
    display: none;
    position: absolute;
    z-index: 99999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 60vh;
    background: rgba(0,0,0, .7) ;
    overflow: scroll;
}

.detailBox h2 {
    margin: 40px 20px 20px;
    font-weight: 700;
    font-size: 16px;
}

.detailBox img {
    padding: 0 10px;
}

.detailBox p {
    margin: 0 20px;
    font-size: 13px;
}


.detailBox button {
    position: fixed;
    right: 10px;
    top: 10px;
    font-size: 20px;
    outline: none;
    border: 1px solid white;
    color: #fff;
    background: transparent;
}
/* 客户免责声明 */
/* .disclaimer {
    position: absolute;
    bottom: 40px;
    width: auto;
    height: auto;
    font-size: 8px;
} */

.cls_phone {
    position: absolute;
    right: 30px;
    width: auto;
    height: 50px;
}

.cls_phone a{
    display: block;
    height: 10px;
    width: auto;


}