@charset "UTF-8";

/*初始化类*/
/* common.css */

html {
    overflow-x: hidden;
}

html,
body {
    /* -webkit-touch-callout: none; */
    /* -webkit-text-size-adjust: none; */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /* -webkit-user-select: none; */
    background: #131616;
    font-family: -apple-system, BlinkMacSystemFont, PingFang SC, HelveticaNeue, STHeiti, Microsoft Yahei, Tahoma, Simsun, sans-serif;
    -webkit-font-smoothing: antialiased !important;
    /* height: 100%; */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, PingFang SC, HelveticaNeue, STHeiti, Microsoft Yahei, Tahoma, Simsun, sans-serif;
    font-size: 14px;
    color: #666;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
    /* 抗锯齿很好（ */
    -webkit-font-smoothing: antialiased !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
}

html,
body,
header,
section,
footer,
div,
ul,
ol,
li,
img,
a,
span,
em,
del,
legend,
center,
strong,
var,
fieldset,
form,
label,
dl,
dt,
dd,
cite,
input,
hr,
time,
mark,
code,
figcaption,
figure,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    border: 0;
    padding: 0;
    font-style: normal;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* -webkit-user-select: none; */
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

ul,
li {
    list-style: none;
}

a {
    color: #fff;
    text-decoration: none;
    background-color: transparent;
    display: block;
}

textarea {
    overflow: hidden;
    resize: none;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
}

img {
    vertical-align: middle;
    border: 0;
    max-width: 100%;
    height: auto;
    display: block;
}

video {
    width: 100%;
}

[v-cloak] {
    display: none;
}

/*自动隐藏文字*/
.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ellipsis-1 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.ellipsis-2 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipsis-3 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.ellipsis-4 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.ellipsis-5 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal !important;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

/* 水波纹效果 */
.btn-ripple {
    vertical-align: bottom;
}

.btn-ripple:not(:disabled):hover {
    opacity: 1;
    position: relative;
    overflow: hidden;
}

.btn-ripple:not(:disabled):hover::before {
    animation: ani_ripple 0.75s;
    z-index: 1;
    content: "";
    position: absolute;
    display: block;
    transition: all 0.6s;
    width: 100%;
    height: 0;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    padding-top: 100%;
    transform: translateX(-50%) translateY(-50%);
}

@keyframes ani_ripple {
    0% {
        background: rgba(0, 0, 0, 0.25);
        transform: translateX(-50%) translateY(-50%) scale(0);
    }

    to {
        background: transparent;
        transform: translateX(-50%) translateY(-50%) scale(1);
    }
}

/*图片经过*/
.tran_scale {
    overflow: hidden;
    display: block;
}



/*img{transition: All 0.7s ease-in-out;}*/
.tran_scale img {
    -webkit-transition: opacity .4s ease-in, -webkit-transform .6s linear;
    transition: opacity .4s ease-in, transform .6s linear;
}

.tran_scale:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -moz-: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
}

/* 滑过按钮 */
.common-bt {
    transition: all .3s linear;
}

.common-bt:hover {
    /* border-color: #bea578;
    color: #bea578; */
}

.common-width {
    width: 80vw;
}


.wap {
    display: none !important;
}

.phone {
    display: none !important;
}

.mobile_btn {
    display: none;
}

.mobile_btn {
    display: none;
}

@media only screen and (max-width: 768px) {
    .pc {
        display: none !important;
    }

    .pc_btn {
        display: none;
    }

    .wap {
        display: flex !important;
    }

    .phone {
        display: block !important;
    }

    .mobile_btn {
        display: block;
    }

    .common-width {
        width: auto;
    }

    .layui-laypage .layui-laypage-skip {
        display: none !important;
    }
}

/* -------顶部导航 start-------------------------------------------------------------------------------------------------------------------- */
.header-wrap {
    position: fixed;
    width: 100%;
    height: 4.167vw;
    background: rgba(0, 0, 0, .2);
    z-index: 999;
    transition: all .365s;
    top: 0;
    left: 0;
    overflow: hidden;
    /* border-bottom: 0.052vw solid rgba(0,0,0,0.4000); */
    /* box-shadow: 0vw 0.156vw 0.313vw 0.052vw rgba(0, 0, 0, 0.16); */

}

.header-wrap:hover {
    opacity: 1 !important;
}

.headerBg {
    /* box-shadow: 0vw 0.156vw 0.313vw 0.052vw rgba(0, 0, 0, 0.16); */
    /* background: rgba(0, 0, 0, .6); */
    /* backdrop-filter: saturate(180%) blur(20px); */
}

.headerBg .header-right .button {
    border-color: #bea578;
    color: #bea578;
}

.headerBg::after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    /* backdrop-filter: saturate(180%) blur(1px); */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.headerHide {
    height: 0;
    overflow: hidden;
}

.indexHeaderBg {
    /* background: transparent; */
}

.indexHeaderBg .header-menu-a {
    color: #fff;
}

.indexHeaderBg .headerImgWhite {
    display: block;
}

.indexHeaderBg .headerImgBlack {
    display: none;
}

.headerImgWhite {
    display: none;
}

.header-box {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

.header-logo {
    height: 2.6vw;
    /* position: absolute;
    z-index: 5;
    left: 0; */
}

.header-logo img {
    height: 100%;
    width: auto;
}

.header-slogan-logo {
    height: 1.8vw;
    margin-left: 1vw;
    /* position: absolute;
    z-index: 5; */
    /* left: 3vw; */
}

.header-slogan-logo img{
    height: 100%;
    width: auto;
}
.header-slogan-logo>img.slogan-on{
    display: none;
}
.header-slogan-logo:hover>img.slogan{
    display: none;
}
.header-slogan-logo:hover>img.slogan-on{
    display: block;
}

.header-hi4-t-logo,
.header-hi4-z-logo {
    width: 3.9vw;
    height: 1.1vw;
}


.header-nav-box {
    height: 100%;
    display: flex;
    align-items: center;
}

.header-nav {
    height: 100%;
    display: flex;
    align-items: center;
}

.header-menu {
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 1vw;
    position: relative;
}

.header-menu-a {
    font-size: 1.094vw;
    font-family: SourceHanSansCN, sans-serif;
    font-weight: 400;
    color: #fff;
    position: relative;
    z-index: 5;
}

.header-menu .active {
    font-weight: bold;
}

.header-first {
    cursor: pointer;
    position: relative;
}

.header-first::after {
    content: '';
    width: 0;
    height: 0.156vw;
    background: #bea578;
    position: absolute;
    bottom: 0vw;
    left: 50%;
    transform: translateX(-50%);
    transition: all .365s;
    z-index: 4;
}

.header-first:hover::after {
    width: 100%;
}

.header-first:hover .header-level-box {
    height: auto;
    opacity: 1;
    padding-top: 4.063vw;
    /* transition: all .365s; */
}

/*  */
.header-level-box {
    position: fixed;
    width: 100%;
    height: 0;
    opacity: 0;
    overflow: hidden;
    top: 0%;
    left: 50%;
    z-index: 99;
    transform: translateX(-50%);
    /* transition: all .365s; */
    background: rgba(0, 0, 0, .85);
    z-index: 2;

    display: flex;
    justify-content: center;
    padding: 0;
}

.header-level-nav {
    margin: 0 auto;
    border-top: 1px solid #bea578;
    display: flex;
    justify-content: center;
    padding: 1.5625vw 0 4.1667vw 0;
}

.header-level-a {
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #fff;
    margin: 0 1.563vw;
}

.header-level-a:hover {
    color: #bea578;
}

/*  */
.header-level-car-box {
    margin: 0 auto;
    border-top: 1px solid #bea578;
    display: flex;
    justify-content:  center;
    padding: 1.5625vw 0;
    flex-wrap: wrap;
    width: 88vw;
}
/* .header-first:nth-child(5) .header-level-car-box{
    justify-content: start;
} */

.header-level-car {
    /* padding: 1.0417vw 4.167vw; */
    padding: 1.0417vw 3.6vw;
    background: #f3f4f6;
    border-radius: 0.4vw;
    margin-right: 1vw;
    position: relative;
    transition: all 0.5s ease;
    margin-bottom: 1vw;

}

.header-level-car:hover {
    transform: scale(1.05);
}

.header-level-car:last-child {
    margin-right: 0;
}

.header-level-car-img {
    width: 9.375vw;
    height: 6.771vw;
    position: relative;
}

.header-level-car-img img {
    max-width: inherit;
    width: auto;
    height: 100%;
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -30%);
    transition: all .1s linear;
}

.header-level-car-img-front {}

.header-level-car-img-rotate {
    opacity: 0;
}

/* .header-level-car:hover .header-level-car-img-front {
    opacity: 0;
}

.header-level-car:hover .header-level-car-img-rotate {
    opacity: 1;
} */

/* .header-level-car:hover .header-level-car-text {
    color: #bea578;
} */
.header-level-car-text-con {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 8%;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
}

.header-level-car-text {}

.header-level-car-text>.header-level-car-title {
    /* font-size: 1.2vw; */
    font-size: 0.95vw;
    font-weight: 500;
    color: #212121;
    text-align: left;
}

.header-level-car-text>.header-level-car-desc {
    font-size: 0.8vw;
    font-weight: 500;
    color: #777;
    text-align: left;
}

.header-level-car-hi4 {
    width: 4vw;
    height: 1vw;
    margin-top: 0.2vw;
}

/*  */
.header-right {
    height: 100%;
    display: flex;
    /* position: absolute; */
    position: relative;
    align-items: center;
    z-index: 3;
    right: 0;
}

.header-right .button {
    border: 1px solid #fff;
    margin-left: 1em;
    padding: 0.5em 2em;
    font-size: 1vw;
    font-family: SourceHanSansCN, sans-serif;
    color: #fff;
    border-radius: 1.5em;
    background-color: transparent;
    cursor: pointer;
}

.header-edit {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 6;
    /* margin-right: 20px; */
}

.header-edit img{
    width: 1.2vw;
}
.header-edit img.header-edit-icon{
    display: block;
}
.header-edit img.header-edit-icon-on{
    display: none;
}
.header-edit:hover>img.header-edit-icon{
    display: none;
}
.header-edit:hover>img.header-edit-icon-on{
    display: block;
}

.header-edit p {
    font-size: 1.042vw;
    font-family: SourceHanSansCN, sans-serif;
    font-weight: 400;
    color: #fff;
    margin-left: 6px;
}
.header-edit:hover p{
    color: #bea578;
}

/*  */
.header-search {
    height: 100%;
    cursor: pointer;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    padding: 0 1.042vw;
}

.header-search-img {
    width: 1.146vw;
    position: relative;
    z-index: 5;
}

.header-search:hover .header-level-box {
    height: auto;
    opacity: 1;
    padding-top: 4.167vw;
    transition: all .365s;
}

.header-search-popup {
    padding: 2.6042vw 0;
    margin: 0 auto;
    border-top: 1px solid #bea578;
}

.header-search-input {
    width: 45vw;
    height: 3.125vw;
    display: flex;
    align-items: center;
    background: #1B1B1B;
    padding: 0 1.563vw;
    margin: 0 auto;
}

.header-search-input input {
    width: 100%;
    height: 100%;
    font-size: 1.146vw;
    color: #fff;
    background: transparent;
}

.header-search-input img {
    cursor: pointer;
    width: 1.146vw;
    flex-shrink: 0;
    margin-left: 1.563vw;
}

.header-search-hot-box {
    width: 45vw;
    display: flex;
    align-items: center;
    margin: 0 auto;
    margin-top: 1.823vw;
}

.header-search-hot-text {
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}

.header-search-label-list {
    display: flex;
}

.header-search-label {
    margin-left: 1.302vw;
    min-width: 2.604vw;
    padding: 0.313vw 1.042vw;
    font-size: 12px;
    color: #000;
    background: #757575;
    border-radius: 0.208vw;
    transition: all .365s linear;
}

.header-search-label:hover {
    color: #bea578;
}

/*  */
.header-lang {
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-family: SourceHanSansCN, sans-serif;
    font-weight: 400;
    color: #fff;
    position: relative;
    z-index: 5;
}


/* .header-lang a:first-of-type::after{
    content: '';
    width: 0.052vw;
    height: 80%;
    background: #fff;
    position: absolute;

    top: 50%;
    right: 0;
    transform: translateY(-50%);
} */
.header-lang a {
    /* padding: 0 0.521vw; */
    font-size: 1.042vw;
    font-family: SourceHanSansCN, sans-serif;
    font-weight: 400;
    color: #fff;
    position: relative;
    transition: all .3s linear;
}

.header-lang a:hover {
    color: #bea578;
}

.is-noheader .header-wrap,
.is-noheader .header-mobile-wrap {
    display: none !important;
}

/* 通用弹出样式 */
.common-popup-wrap {
    display: flex;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0);
    transition: background 0.3s;
}

.common-popup-img-holder {
    position: relative;
    height: 45.12vh;
    width: auto;
}

.common-popup-img-holder img {
    width: auto;
    height: 100%;
}

.common-popup-wrap.active {
    /* display: flex; */
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.4);
}

.common-popup-wrap .popup-holder {
    display: flex;
    background-image: linear-gradient(rgb(1, 7, 6), rgb(21, 27, 26));
    flex-direction: column;
    justify-content: center;
    padding: 3vw 2vw;
    border-radius: 0.5vw;
    opacity: 0;
    transform: translateY(70%);
    transition: all 0.7s;
}

.common-popup-wrap.active .popup-holder {
    opacity: 1;
    transform: translateY(0);
}

.common-popup-wrap .close-btn {
    content: '';
    width: 1vw;
    height: 1vw;
    min-width: 1em;
    min-height: 1em;
    position: absolute;
    right: 1.5625vw;
    top: 1.5625vw;
    background: url(../png/close.png) no-repeat 50% 50% / 100% 100%;
    cursor: pointer;
    transition: transform 0.3s;
}

.common-popup-wrap .close-btn:hover {
    transform: rotate(90deg);
}

.common-popup-wrap .popup-title {
    font-size: 1.5625vw;
    padding-bottom: 1em;
    color: #fff;
    text-align: center;
    font-weight: 300;
}

.common-popup-wrap .popup-content {
    display: flex;
    align-items: center;
}

.common-popup-wrap .popup-media {
    /* width: 320px; */
    width: 15.66vw;
    padding: 0 2vw;
    border-right: 1px solid #5b543f;
}

.popup-media-img {
    /* width: 70%; */
}

.common-popup-wrap .popup-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2vw;
}

.popup-code-img-holder {
    display: flex;
}



.common-popup-wrap .popup-code-img-item {
    /* width: 220px; */
    width: 8.5vw;
    padding: 0.5vw;

}

.common-popup-wrap .popup-code-img {
    background-color: #fff;
    /* width: 60%; */
}

.popup-code-img-title {
    text-align: center;
    padding-top: 1em;
    font-size: 14px;
    color: #999;
}

.qrcode-is-round .popup-code-img {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

.common-popup-wrap .popup-message {
    padding: 2em 0 0;
    color: #bea578;
    white-space: nowrap;
}

.simple-popup {
    position: fixed;
    top: 30%;
    left: 5%;
    z-index: 10;
    width: 90%;
    /* height: 40%; */
    padding: 2em;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-radius: 1em;
}

.simple-popup h2 {
    color: #fff;
    margin-bottom: 2em;
    font-size: 16px;
}

.simple-popup a {
    border: 1px solid #fff;
    border-radius: 3em;
    width: 100%;
    padding: 1em;
    margin-bottom: 1em;
    text-align: center;
}

.simple-popup .close-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 2em;
    height: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
}

@media only screen and (max-width: 768px) {
    .common-popup-wrap .close-btn {
        background-size: 30%;
    }
}

/* 车型页顶部增加试驾/订购按钮 */
.model_page .leftNav {
    display: none !important;
}

.model_page .leftNav.active {
    display: flex !important;
}

.model_page .leftNav-box .vehicle-header-bt {
    display: flex;
    /* visibility: hidden; */
}

/* .has-order-info .vehicle-header-bt {
    visibility: visible;
} */

.model_page .leftNav-box .link-btn {
    border: 1px solid #fff;
    margin-left: 1em;
    padding: 0.5em 2em;
    font-size: 0.85vw;
    font-family: SourceHanSansCN, sans-serif;
    color: #fff;
    border-radius: 1.5em;
    background-color: transparent;
    cursor: pointer;
    /* visibility: hidden; */
    white-space: nowrap;
}

/* .header-is-loaded .leftNav-box .link-btn {
    visibility: visible;
} */

.hide-page-header .header-mobile,
.hide-page-header .header-wrap {
    display: none !important;
}


/* 产品页新增板块 */
.model_service_links {
    /* height: 100vh; */
    height: 100%;
}

.model_service_links .section-inner{
    display: flex;
    width: 87%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: space-between;
}

.model_service_links .service-link {
    position: relative;
    background-color: #2f343a;
    overflow: hidden;
}

.model_service_links .service-link picture {
    display: block;
    transform: scale(1);
    transition: 0.6s;
    width: 28.15vw;
}

.model_service_links .service-link:hover picture {
    transform: scale(1.1);
}

.model_service_links .link-info {
    position: absolute;
    left: 0;
    bottom: 7em;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.model_service_links .link-title {
    display: flex;
    align-items: center;
    padding-bottom: 0.5em;
    font-size: 22px;
}

.model_service_links .link-title:before {
    content: '';
    /* outline: 1px solid #c00; */
    width: 6em;
    height: 2em;
    margin-right: 1.5em;
    order: -2;
    background: url(../png/tank-logo-text.png) no-repeat 50% 50% / 100% auto;
}

.model_service_links .link-title:after {
    content: '';
    width: 5px;
    height: 5px;
    background-color: #fff;
    margin-right: 0.8em;
    order: -1;
}

.model_service_links .link-more {
    color: #baa67e;
}

@media only screen and (max-width: 768px) {
    .model_service_links .service-link picture {
        width: 100%
    }
    .model_page .leftNav {
        display: none !important;
    }

    .model_page .leftNav .page-nav {
        display: none !important;
    }

    .model_page .vehicle-header-bt {
        margin-right: 20px;
    }

    .model_page .leftNav-box .link-btn {
        padding: 0.5em 1.4em;
        border: 1px solid #eae8e9;
        font-size: 12px;
        border-radius: 50px;
    }

    .model_service_links .section-inner {
        /* width: 90vw; */
        padding-top: 50px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .model_service_links .service-link {
        width: 100%;
        aspect-ratio: 2 / 1;
        margin-bottom: 5vw;
    }

    .model_service_links .service-link:hover picture {
        transform: scale(1);
    }

    .model_service_links .service-link:last-child {
        margin-bottom: 0;
    }

    .model_service_links .link-info {
        position: absolute;
        top: 1em;
        left: 1em;
        width: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .model_service_links .link-title {
        padding: 0;
        font-size: 16px;
    }

    .model_service_links .link-title:before {
        width: 4em;
        margin-right: 1em;
    }

    .common-popup-wrap {
        display: none !important;
    }

    .header-mobile {
        height: 16vw;
        width: 100%;
        padding: 0 8vw;
        display: flex;
        /* display: none; */
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        background: rgba(0, 0, 0, .2);
        transition: all .365s;
        overflow: hidden;
    }
    .header-hi4-t-logo,
    .header-hi4-z-logo {
        width: 14vw;
        height: 4vw;
    }

    .header-mobile-left-box{
        display: flex;
        align-items: center;
    }
    .header-mobile-right-box {
        display: flex;
        align-items: center;
    }

    .header-mobile-right-box .button {
        position: relative;
        z-index: 2;
        padding: 0.5em 1.4em;
        border: 1px solid #eae8e9;
        margin-right: 1.5em;
        font-size: 12px;
        border-radius: 50px;
    }

    .headerBg .header-mobile-right-box .button {
        border: 1px solid #979797;
    }

    .header-slogan-logo-mobile{
        margin-left: 4vw;
        width: 16vw;
        height: 6vw;
        z-index: 2;
    }
    .header-slogan-logo-mobile>img{
        width: 100%;
        height: 100%;
    }

    .header-logo-mobile {
        display: flex;
        align-items: center;
        flex: 1;
    }

    .header-logo-mobile-img {
        width: 6.667vw;
        flex-shrink: 0;
        transition: all .365s;
        z-index: 2;
    }

    /* .headerBg {
        background: rgba(0, 0, 0, .9);
        height: 12vw;
    } */

    /* .headerBg .header-logo-mobile-img {
        width: 5.733vw;
    } */

    .header-menu_btn {
        width: 30px;
        height: 0;
        padding: 10px 0;
        position: relative;
        border-top: 2px solid hsla(0, 0%, 100%, .8);
        -webkit-transition: all .3s linear;
        transition: all .3s linear;
        z-index: 2;
    }

    .header-menu_btn:before {
        top: 8px
    }

    .header-menu_btn:after,
    .header-menu_btn:before {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: hsla(0, 0%, 100%, .8);
        -webkit-transition: all .3s linear;
        transition: all .3s linear
    }

    .header-menu_btn:after {
        bottom: 0
    }

    .header-menu_btn.active {
        border: none
    }

    .header-menu_btn.active:before {
        -webkit-transform-origin: 19px 50%;
        transform-origin: 16px 50%;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        left: -3px
    }

    .header-menu_btn.active:after {
        -webkit-transform-origin: 29px -50%;
        transform-origin: 27px -50%;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        left: -4px
    }

    /*  */
    .navigation-wrap {
        width: 100%;
        height: 0;
        /* opacity: 0; */
        max-height: 100vh;
        overflow-y: auto;
        position: fixed;
        top: -100%;
        right: 0;
        z-index: 9998;
        transition: all .5s ease-out;
        /* display: none; */
        background: #000;
        padding-top: 16vw;
    }

    .navigation-wrap.active {
        /* height: auto; */
        /* height: 100vh; */
        height: 100%;
        opacity: 1;
        top: 0;
    }

    .navigation-wrap .order-in-app {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 1em;
        background-color: #000;
    }

    .navigation-wrap .order-in-app-link {
        padding: 0.5em 0;
        border-radius: 50px;
        background: rgba(0, 0, 0, .1);
        border: 1px solid #eae8e9;
        text-align: center;
    }

    .navigation-box {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: scroll;
        padding-bottom: 65px;
    }

    .navigation-box::after {
        content: '';
        width: calc(100% - 16vw);
        height: 1px;
        background: #bea578;
        position: absolute;
        top: 1px;
        left: 50%;
        transform: translateX(-50%);
    }

    .navigation-search {
        width: calc(100% - 16vw);
        height: 11.6vw;
        background: #1B1B1B;
        margin: 3.2vw auto;
        display: flex;
        align-items: center;
        padding: 0 3.333vw;
    }

    .navigation-search input {
        width: 100%;
        height: 100%;
        background: transparent;
        font-size: 3.467vw;
        color: #fff;
    }

    .navigation-search img {
        width: 4vw;
        flex-shrink: 0;
        margin-left: 2.667vw;
    }

    .navigation {
        /* overflow: auto; */
    }

    .navigation-list {}

    .navigation-item {
        width: calc(100% - 16vw);
        height: 13.333vw;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #fff;
        border-bottom: 0.133vw solid #232323;
    }

    .navigation-item-p {
        font-size: 4.267vw;
        font-weight: 400;
        font-family: SourceHanSansCN, sans-serif;
    }

    .navigation-item-icon {
        width: 6vw;
        transition: all .365s;
    }

    .navigation-level {
        display: none;
        background: #131313;
        padding-bottom: 4vw;
        /* padding: 3.333vw 0; */
    }

    .navigation-level-item {
        height: 10.667vw;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4vw;
        font-family: SourceHanSansCN, sans-serif;
        font-weight: 300;
        color: #FFFFFF;
        padding: 3.333vw 0;
    }

    .navigation-lang {
        width: 36.8vw;
        height: 7.6vw;
        margin: 17.333vw auto;
        border: 1px solid #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3.2vw;
        font-family: SourceHanSansCN, sans-serif;
        font-weight: 500;
        color: #FFFFFF;
    }

    .navigation-level-car-box {
        /* display: flex;
        overflow-x: auto; */
        /* x轴吸附 */
        /* scroll-snap-type: x mandatory; */
        /* 兼容IOS下滑动效果 */
        /* -webkit-overflow-scrolling: touch; */
        padding: 4vw 4vw 0 4vw;
    ;
    }

    .navigation-level-car-box::-webkit-scrollbar {
        /* display: none; */
    }

    .navigation-level-car-box::-webkit-scrollbar {
        width: 4px;
        height: 4px
    }

    .navigation-level-car-box::-webkit-scrollbar-thumb {
        border-radius: 5px;
        -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, .2);
        background: #bea578
    }

    .navigation-level-car-box::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, .2);
        border-radius: 0;
        background: #444
    }

    .navigation-level-car {
        /* 定义每个板块宽度为50% */
        /* flex: 0 0 50%; */
        /* 吸附效果从左侧开始 */
        /* scroll-snap-align: start;
        padding: 0 3.333vw; */
        padding: 0 3.333vw;
        background: #f3f4f6;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        border-radius: 2vw;
        margin-bottom: 4vw;
        position: relative;
    }

    .navigation-level-car:last-child {
        margin-bottom: 0;
    }

    .navigation-level-car-hi4 {
        position: absolute;
        left: 4%;
        bottom: 6vw;
        width: 14vw;
        height: 4vw;
    }

    .navigation-level-car-img,
    .navigation-level-car-img img {
        object-fit: contain;
        width: 50vw;
    }

    .navigation-level-car-text {
        margin-top: 7vw;
    }

    .navigation-level-car-text-title {
        font-size: 3.2vw;
        font-weight: 700;
        color: #212121;
        text-align: left;
    }

    .navigation-level-car-text-desc {
        font-size: 3vw;
        color: #777;
        text-align: left;
    }
}

/* -------顶部导航 end-------------------------------------------------------------------------------------------------------------------- */
/* -----底部 start--------------------------------------------------------------------------------------------------------------------- */
.footer-wrap {
    width: 100%;
    background: #000;
    padding: 1.563vw 0;
}

.footer-box {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-p:last-of-type {
    margin-top: 1.302vw;
}

.footer-p {
    display: flex;
    align-items: center;
}

.footer-p a {
    font-size: 0.938vw;
    font-family: SourceHanSansCN, sans-serif;
    font-weight: 400;
    color: #666666;
    padding-left: 1.042vw;
    margin-right: 1.042vw;
    border-left: 0.052vw solid #666666;
    transition: all .3s linear;
}

.footer-p p {
    font-size: 0.938vw;
    font-family: SourceHanSansCN, sans-serif;
    font-weight: 400;
    color: #666666;
}

/* .footer-p a:last-of-type {
    padding-right: 0;
    margin-right: 0;
    border: 0;
} */

.footer-p a:first-of-type {
    padding-left: 0;
    margin-left: 0;
    border: 0;
}

.footer-p a:hover {
    color: #fff;
}

.footer-phone {}

.footer-phone-text {
    font-size: 0.938vw;
    font-family: SourceHanSansCN, sans-serif;
    font-weight: 400;
    color: #FFFFFF;
}

.footer-phone-num {
    /* font-size: 1.563vw; */
    font-size: 0.938vw;
    font-family: SourceHanSansCN, sans-serif;
    font-weight: 500;
    color: #BEA578;
    margin-top: 0.781vw;
}

.footer-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 3.646vw;
}

.footer-share-box {
    display: flex;
    align-items: center;
}

.footer-share-item {
    position: relative;
    margin-left: 1.042vw;
}

.footer-share {
    width: 3.125vw;
    height: 3.125vw;
    background: #1B2121;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.footer-share i {
    color: #BFBFBF;
    font-size: 1.302vw;
    transition: all .3s linear;
}

.footer-share-item:hover i {
    color: #BEA578;
}

.footer-share-item:hover .footer-code-popup {
    display: block;
}

.footer-code-popup {
    position: absolute;
    bottom: 4.063vw;
    left: 50%;
    z-index: 3;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 8vw;
    border-radius: 0.208vw;
    background: #252c2c;
    padding: 0.521vw;
    display: none;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.footer-code-popup img {
    width: 100%;
}

.footer-code-popup::after {
    bottom: -0.469vw;
    border-color: transparent transparent #252c2c #252c2c;
    border-style: solid;
    border-width: 0.417vw;
    content: "";
    height: 0;
    left: 45%;
    position: absolute;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: rotate(-45deg) translateX(-45%);
    transform: rotate(-45deg) translateX(-45%);
    width: 0;
}

@media only screen and (max-width: 768px) {
    .footer-wrap {
        padding: 10.667vw 2vw;
    }

    .footer-right {
        order: -1;
    }

    .footer-box,
    .footer-right {
        flex-direction: column;
        margin: 0;
    }

    .footer-lang {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-top: 13px;
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .2);
    }

    .footer-lang-p {
        font-size: 3.633vw;
        font-family: SourceHanSansCN, sans-serif;
        font-weight: 300;
        color: #FFFFFF;
        padding: 0 12px;
        position: relative;
    }

    .footer-lang p::after {
        content: '';
        width: 1px;
        height: 80%;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, .3);
    }

    .footer-phone {
        text-align: center;
    }

    .footer-phone-text {
        font-size: 2.133vw;
        font-family: SourceHanSansCN, sans-serif;
        font-weight: 300;
        color: #FFFFFF;
    }

    .footer-phone-num {
        font-size: 4vw;
    }

    .footer-share-box {
        margin-top: 5.333vw;
    }

    .footer-share-item {
        margin: 0 2.667vw;
    }

    .footer-share {
        width: 8vw;
        height: 8vw;
    }

    .footer-share i {
        font-size: 14px;
    }

    .footer-code-popup {
        position: absolute;
        bottom: 8.667vw;
        left: 50%;
        z-index: 3;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 20vw;
        border-radius: 1.333vw;
        background: #252c2c;
        padding: 1.333vw;
        display: none;
        -webkit-transition: all .3s linear;
        transition: all .3s linear;
    }

    .footer-code-popup::after {
        opacity: 0;
    }

    .footer-p {
        justify-content: center;

    }

    .footer-p:last-of-type {
        margin: 0;
        flex-direction: column;
    }

    .footer-p a,
    .footer-p p {
        /* font-size: 2.667vw; */
        /* line-height: 4.667vw; */
        font-size: 3.7333vw;
        line-height: 1.6;
        white-space: nowrap;
    }

    .footer-links {
        margin-bottom: 4vw;
        flex-wrap: wrap;
    }

    .footer-links a {
        /* width: 25%; */
        margin: 0.5em 0;
        padding: 0 1em !important;
        text-align: center;
        line-height: 1;
        /* flex-grow: 1; */
    }

    .footer-links .without-border {
        border: 0 none;
    }
}

.is-nofooter .footer {
    display: none !important;
}


/* 右侧悬浮 */
.common-menu-wrap {
    position: fixed;
    z-index: 10;
    right: 0;
    bottom: 8.333vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.common-menu-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.common-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.052vw 0;
    padding: 0.573vw;
    background: rgba(0, 0, 0, .6);
    cursor: pointer;
}

.common-menu-icon {
    width: 1.719vw;
    height: 1.719vw;
    object-fit: contain;
    flex-shrink: 0;
}

.common-menu-text {
    font-size: 0.938vw;
    font-family: SourceHanSansCN, sans-serif;
    font-weight: 400;
    color: #BEA578;
    width: 0;
    height: 1.719vw;
    line-height: 1.719vw;
    transition: all .365s;
    overflow: hidden;
    margin-left: 0;
}

.common-menu:hover .common-menu-text {
    width: 5.729vw;
    margin-left: 1.042vw;
}

@media only screen and (max-width: 768px) {
    .toggle_box {
        display: none;
    }

    .common-menu-wrap {
        bottom: 20%;
    }

    .common-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 10px 0;
        background: rgba(0, 0, 0, .6);
        cursor: pointer;

        flex-direction: column;
        width: 55px;
        /* height: 9.333vw; */
    }

    .common-menu-icon {
        width: 4.4vw;
        height: auto;
        object-fit: contain;
        flex-shrink: 0;
    }

    .common-menu-text {
        height: auto;
        font-size: 12px;
        line-height: 18px;
        font-family: SourceHanSansCN, sans-serif;
        font-weight: 400;
        color: #BEA578;
        width: auto;
        margin-top: 4px;

        transition: all .365s;
        overflow: hidden;
    }

    .toggle_m {
        height: 55px;
        /* display: flex;
        align-items: center;
        justify-content: center; */
        margin-top: 5px;
    }

    .toggle_m .common-menu-text {
        margin-top: 0;
        font-size: 40px;
        /* font-weight: bold; */
        line-height: 35px;
    }

    .common-menu-box .toggle_m:last-of-type {
        display: none;
    }

    .common-menu-box.active .toggle_m:last-of-type {
        display: flex;
    }

    .common-menu-box.active .toggle_m:first-of-type {
        display: none;
    }

    .common-menu:hover .common-menu-text {
        width: auto;
        margin-left: 0;
    }
}

/* -----底部 end--------------------------------------------------------------------------------------------------------------------- */
/* -------预约试驾--------------------------------------------------------------------------------------------------------- */
.testdrive-table-box {
    width: 100%;
    padding: 40px 0 10px;
    background: #131616;
}

.testdrive-title {
    width: 86%;
    margin: 0 auto;
    font-size: 26px;
    font-weight: 500;
    color: #BEA578;
    padding-bottom: 10px;
    position: relative;
    letter-spacing: 4px;
}

.testdrive-title::after {
    content: '';
    width: 100%;
    /* height: 0.052vw; */
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 1px;
    left: 0;
}

.testdrive-form {
    width: 90%;
    margin: 20px auto;
}

.testdrive-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.testdrive-select {
    width: 100%;
    /* height: 38px; */
}

.testdrive-select .layui-input {
    color: #fff;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #323232;
    border-radius: 4px;
}

.testdrive-select .layui-input:focus,
.testdrive-input .layui-input:focus {
    box-shadow: none;
    border-color: #323232 !important;
}

.layui-custom-dropdown {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 48px;
    background-color: #131616;
    color: #bbb;
    border: 0 none;
    align-items: center;
    padding-left: 10px;
    border-bottom: 1px solid #323232;
    border-radius: 4px;
    cursor: pointer;
}

.layui-custom-dropdown.active .select-text {
    color: #fff;
}

.layui-custom-dropdown .layui-icon-down {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -6px;
    cursor: pointer;
    color: #fff;
}

.layui-custom-dropdown .select-text {
    /* color: #fff; */
}

.dealer-dropdown {
    margin: 0;
    height: 200px;
    overflow: auto;
    background-color: #000;
    border: 0 none;
    /* width: 100%; */
}

.dealer-dropdown .layui-dropdown-menu {
    margin: 0;
    background-color: #000;
}

.dealer-dropdown .layui-menu .item {
    color: #fff;
}

.dealer-dropdown .layui-menu .item .dealer-saleHours,
.dealer-dropdown .layui-menu .item .dealer-addr {
    font-size: 12px;
    color: #999;
    /*font-size: 1.5;*/
}

.dealer-dropdown .layui-menu li:hover {
    background-color: #161a1a;
}

.dealer-list .icon-bar .icon,
.dealer-dropdown .icon-bar .icon {
    font-style: normal;
    font-size: 12px;
    padding: 0.25em 0.5em;
    border: 1px solid #fff;
    border-radius: 4px;
}

.dealer-list .icon-bar .icon-dtc,
.dealer-dropdown .icon-bar .icon-dtc {
    background-color: #fffaf0;
    border-color: #ffdab0;
    color: #ff958f;
}

.layui-form-select .layui-icon-down {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -6px;
    cursor: pointer;
    color: #fff;
    /* border-width: 6px;
    border-top-color: #c2c2c2;
    border-top-style: solid;
    transition: all .3s;
    -webkit-transition: all .3s; */
}

.ui-select {
    display: flex;
    flex-direction: column;
}

.ui-select-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    color: #bbb;
    padding-left: 10px;
    padding-right: 10px;
    border: 0;
    border-bottom: 1px solid #323232;
    border-radius: 4px;
    cursor: pointer;
}

.ui-select-text:hover {
    border-color: #cbcbcb;
}

.ui-select-text .icon {
    color: #ddd;
}

.ui-select-text em {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ui-select-text em.active {
    color: #fff;
}

.ui-select-content {
    /* display: none; */
    height: 0;
    width: 100%;
    position: relative;
}

.ui-select-content .ui-select {
    position: absolute;
    width: 100%;
    height: 40vh;
    background-color: #000;
    z-index: 10;
}

.ui-tabs-hd {
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid #1b1b1b;
}

.ui-tabs-hd .ui-tab {
    padding: 10px;
    width: 33.3333%;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: transparent;
    border: 0 none;
    outline: 0 none;
}

.ui-tabs-hd .ui-tab.active {
    color: #fff;
}

.ui-tabs-bd {
    flex-grow: 1;
    overflow-y: scroll;
}

.ui-tabs-bd .group {
    display: flex;
}

.ui-tabs-bd .group-letter {
    text-align: center;
    width: 2em;
    padding: .8em .5em;
}

.ui-tabs-bd .group-list {
    flex-grow: 1;
}

.ui-tabs-bd .row {
    padding: 0.75em 1em;
    color: #777;
    cursor: pointer;
}
.ui-tabs-bd .row.active {
    color: #fff;
}

.ui-tabs-bd .row:hover {
    background-color: #161a1a;
}
.dealer-list p {
    /* line-height: 1.5 */
    padding: 0.2em 0;
    color: #999;
}

.dealer-list .dealer-name {
    color: #fff;
    font-size: 16px;
}

.select-backdrop {
    background: none;
    position: fixed;
    width: 100vw;
    left: 0;
    z-index: 9;
    height: 100vh;
    top: 0;
}

.model_page .select-backdrop {
    background: transparent;
    position: absolute;
    width: 200vw;
    left: 0;
    z-index: 9;
    height: 150vh;
    top: 0;
    transform: translate(-25%, -50%);
}

/*  */
.data-table-box::-webkit-scrollbar,
.ui-tabs-bd::-webkit-scrollbar,
.dealer-dropdown::-webkit-scrollbar,
.layui-form-select dl::-webkit-scrollbar {
    width: 4px;
    height: 4px
}

.data-table-box::-webkit-scrollbar-thumb,
.ui-tabs-bd::-webkit-scrollbar-thumb,
.dealer-dropdown::-webkit-scrollbar-thumb,
.layui-form-select dl::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, .2);
    background: #bea578
}

.data-table-box::-webkit-scrollbar-track,
.ui-tabs-bd::-webkit-scrollbar-track,
.dealer-dropdown::-webkit-scrollbar-track,
.layui-form-select dl::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, .2);
    border-radius: 0;
    background: #444
}

.testdrive-select .layui-form-select dl{
    background: #000;
    border: none;
}
.testdrive-select .layui-form-select dl dd:hover,.testdrive-select .layui-form-select dl dd:focus{
    background: rgba(37,44,44,.6);
    border: none;
    color: #fff;
    transition: none;
}

.testdrive-select .layui-form-select dl dd.layui-disabled{
    background-color: #000;
}

.testdrive-select .layui-form-select dl dd {
    color: #fff;
}

.testdrive-select .layui-form-select dl dd.layui-this {
    background: #000;
    border: none;
    color: #fff;
    font-weight: 400;
}
.testdrive-select .layui-form-select dl dd.layui-this:hover{
    background: rgba(37,44,44,.6);
    border: none;
    color: #fff;
    transition: none;
}
.testdrive-input {
    width: 100%;
}

.testdrive-input .layui-input {
    width: 100%;
    color: #fff;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #323232;
    border-radius: 4px;
}

.testdrive-col6 {
    width: 48%;
}

.testdrive-checked {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #323232;
}

.testdrive-checked .layui-form-radio {
    margin-top: 0;
    color: #bbb;
}

.testdrive-checked .layui-form-radio>i {
    font-size: 18px;
}

.testdrive-checked .layui-form-radio:hover>*,
.testdrive-checked .layui-form-radioed,
.testdrive-checked .layui-form-radioed>i {
    color: #bbb;
}

.testdrive-notes {
    padding: 1em 0 0;
    font-size: 12px;
}

.testdrive-notes h3 {
    padding-bottom: 0.5em;
}

.testdrive-notes p {
    text-align: justify;
    padding: 0.125em 0;
}

.testdrive-policy {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.testdrive-policy .testdrive-checked {
    width: auto;
}

.testdrive-policy .testdrive-checked .layui-form-radio {
    margin-right: 0;
    padding: 0;
}

.testdrive-policy-text {
    display: flex;
    flex-wrap: wrap;
}

.testdrive-policy-text,
.testdrive-policy-text a {
    color: #bbb;
    /* font-size: 1vw; */
}

.testdrive-policy-text a {
    color: #BEA576;
}

.testdrive-btn {
    width: 50%;
    height: 3.125vw;
    /* border: 1px solid #fff; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.146vw;
    margin: auto;
    margin-top: 10px;
    cursor: pointer;
    margin-bottom: 10px;
    background: #bea578;
    border-radius: 100px;
    letter-spacing: 2px;
    color: #000;
}

.select .layui-form-select dl dd:hover,
.layui-form-select dl dd.layui-this {
    background: rgba(37, 44, 44, .6);
}


input::-webkit-input-placeholder {
    color: #bbb !important;
}

.testdrive-section-contact {
    position: relative;
}

.get-sms-code {
    position: absolute;
    right: 1em;
    top: 50%;
    color: #bea578;
    transform: translateY(-50%);
    cursor: pointer;
    background: none;
    border: 0 none;
}

.get-sms-code.countdown-disabled {
    color: #655844;
    cursor: no-drop;
}

.get-sms-code.disabled {
    color: #666;
    cursor: no-drop;
}

/* .layui-input, .layui-select, .layui-textarea{
    height: auto !important;
    padding: 2vh 0;
} */
@media only screen and (max-width: 768px) {
    .testdrive-table-box {
        width: 100%;
        padding: 0;
        background: none;
        /* padding: 6.667vw 0; */
        /* background: #000; */
    }

    .testdrive-title {
        width: 90%;
        margin: 0 auto;
        font-size: 5.333vw;
        padding: 4vw 0;
        position: relative;
        letter-spacing: 2px;
    }

    .testdrive-policy-text,
    .testdrive-policy-text a {
        font-size: 3.6vw;
    }

    .testdrive-btn {
        width: 50%;
        height: 50px;
        font-size: 16px;
        margin-top: 5vw;
        margin-bottom: 5vw;
    }

    .ui-select {
        bottom: 0;
    }

    .ui-select-content .ui-select {
        height: 60vh;
        width: 105%;
        left: -2.5%;
        bottom: -20vh;
        border: 1px solid #333;
    }

    .select-backdrop {
        position: absolute;
        z-index: 9;
        top: -50%;
        left: 50%;
        background-color: rgba(0, 0, 0, 0.7) !important;
        width: 100vw;
        height: 200vh;
        transform: translate(-50%, -50%);
    }

    .model_page .testdrive-main {
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        background: none;
    }

    .model_page .testdrive-wrap {
        padding: 0;
    }

    /* 省市门店下拉展示时，隐藏产品页顶部导航 */
    .focus-in-dropdown .leftNav {
        z-index: -1 !important;
    }
}

/* -------预约试驾end--------------------------------------------------------------------------------------------------------- */
/* －－－－分页－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－ */
.common-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
}

.layui-laypage a,
.layui-laypage span {
    vertical-align: middle;
    padding: 0 10px;
    height: 28px;
    line-height: 28px;
    margin: 0 -1px 5px 0;
    background-color: transparent;
    color: #fff;
    font-size: 12px;
    border: none;
}

.layui-laypage a[data-page] {
    color: #fff;
}

.layui-laypage .layui-laypage-curr .layui-laypage-em {
    background: #BEA578;
}

.layui-laypage button {
    background: #BEA578;
    color: #fff;
    border: none;
}

.popup_con {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
    z-index: 100;
}

.popup_con .popup_success {
    width: 500px;
    padding: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #252c2c;
    text-align: center;
}

.popup_con .popup_success:after {
    /* content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 100px solid transparent;
    border-left: 100px solid transparent;
    border-right: 100px solid rgba(0, 0, 0, .5); */
}

.popup_con .popup_success .pop-icon {
    width: 48px;
    height: 48px;
    margin: auto;
    margin-bottom: 1.3em;
}

.popup_con .popup_success p {
    font-size: 28px;
    line-height: 1.4em;
    letter-spacing: 2px;
    color: #bea578;
    line-height: 1.5em;
    text-align: center;
    letter-spacing: 4px;
    padding: 0 5%;
}

.popup_con .popup_success p span {
    display: block;
    font-size: 16px;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1.5em;
    margin-top: 0.5em;
}

.popup_con .popup_success .close_popup {
    font-size: 16px;
    width: 30%;
    margin: 1.5em auto 0;
    letter-spacing: 2px;
    color: #000;
    line-height: 1em;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    background: #bea578;
    border-radius: 100px;
    text-align: center;
    cursor: pointer;
    display: block;
}

@media only screen and (max-width: 768px) {
    .popup_con .popup_success {
        width: 70%;
        height: auto;
        overflow: hidden;
        padding: 10% 0;
    }

    .popup_con .popup_success p {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .popup_con .popup_success .close_popup {
        width: 50%;
        height: 50px;
        line-height: 50px;
        padding-top: 0;
        padding-bottom: 0;
    }

    /* .popup_con .popup_success:after {
        border-top: 60px solid transparent;
        border-left: 60px solid transparent;
        border-right: 60px solid rgba(0, 0, 0, .5);
    } */
}

.privacy-box .container {
    padding: 36px 0;
    width: 88%;
    position: relative;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.privacy-content {
    position: fixed;
    left: 0;
    display: none;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99998;
}

.privacy-content p {
    margin: 0 0 10px;
}

.is-container .privacy-content {
    display: none !important;
}

.privacy-item-box {
    display: flex;
    justify-content: center;
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 0px solid transparent;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.privacy-box {
    position: fixed;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    z-index: 1010;
    z-index: 11;
    border-radius: 6px;
}

.privacy-box lable {
    padding-top: 0.9em;
    padding-bottom: 0.9em;
    font-size: 1em;
    color: #bbb;
    position: relative;
    margin-left: 12px;
    margin-right: 20px;
}

.privacy-box label::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 1px solid #fff;
    left: 0;
    border-radius: 50%;
    top: 50%;
    margin-top: -8px;
    position: absolute;
}

.privacy-box label.true::after {
    content: '';
    width: 8px;
    height: 8px;
    left: 4px;
    margin-top: -4px;
    background: #fff;
    position: absolute;
    border-radius: 50%;
    top: 50%;
}

.privacy-box .container {
    padding: 36px 0;
    width: 88%;
    position: relative;
}

.privacy-box p {
    display: inline-block;
    color: #444;
    padding-bottom: 12px;
    line-height: 2;
}

.privacy-box a {
    color: #444;
    text-decoration: underline;
}
.privacy-box a:hover{
    color: #bea578;
}

.privacy-box .close_cookies {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.layui-form-select dl{
    height: 200px;
}

@media (max-width: 1024px) {
    .privacy-box .close_cookies {
        right: -13px;
    }
}

.privacy-box .close_cookies i {
    font-size: 16px;
}

.privacy-box .privacy-policy {
    display: inline-block;
    cursor: pointer;
    color: #bea578;
}

.privacy-box .privacy {
    margin-left: 30px;
}

.privacy-box .privacy-policy:hover {
    text-decoration: underline;
}

.privacy-box .btn-primary {
    color: #fff;
    width: 120px;
    display: inline-block;
    margin: 0 20px;
    background-color: #333;
    border-color: #333;
    border-radius: 50px;
    padding: 10px 12px;
    font-size: 16px;
}

.privacy-box .btn-primary1 {
    color: #fff;
    width: 120px;
    display: inline-block;
    margin: 0 20px;
    background-color: #999;
    border-color: #999;
    border-radius: 50px;
    padding: 10px 12px;
    font-size: 16px;
}

.privacy-box .btn-primary:hover,
.privacy-box .btn-primary1:hover {
    color: #fff;
    background-color: #bea578;
    border-color: #bea578;
}

@media (max-width: 768px) {
    .privacy-box {
        width: 80%;
    }

    .privacy-box .btn-primary {
        color: #fff;
        width: 40%;
        background-color: #bea578;
        margin: 0 2.5%;
        border-color: #bea578;
    }

    .privacy-box .btn-primary1 {
        width: 40%;
        margin: 0 2.5%;
    }

    .privacy-box a {
        color: #bea578;
    }

    .privacy-item-box {
        justify-content: space-between;
    }

    .privacy-box .privacy {
        margin-left: 0;
    }
}

/* 车型页 */
.model_page .model_kv .kv_btn {
    transition-duration: 0.5s;
    transition-delay: 0.3s;
}

.model_page .model_kv .kv_btn .more_btn {
    justify-content: center;
}

.model_page .model_kv .kv_btn .disable {
    opacity: 0.8;
    background-color: rgba(255,255,255,0.3) !important;
    border-color: rgba(255,255,255,0.3) !important;
}

.model_page .model_kv .J-order {
    /* display: none; */
    position: relative;
    cursor: pointer;
    justify-content: center;
}

.model_page .model_kv .J-order:hover .qrcode-holder {
    display: block;

    @media (max-width: 768px) {
        display: none
    }
}

.model_page .model_kv .hide-qrcode .qrcode-holder {
    display: none !important
}

.model_page .model_kv .qrcode-holder {
    display: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 200px;
    height: 200px;
    background-color: #fff;
    transform: translate(-50%, -25%);
    padding: 0.5em;
    border-radius: 0.5em;
}

.model_page .model_kv .qrcode-img {
    width: 100%;
    height: auto;
}

.is-container-sapp .model_page .no-ani {
    visibility: visible !important;
}

.is-container-sapp .leftNav-box,
.is-container-sapp .disable-in-sapp,
.is-container .header-mobile,
.is-container .testdrive-wrap,
.is-container .end-slide,
.is-container .common-menu-wrap,
.is-container .leftNav-box li:last-child,
.is-container .footer-wrap,
.is-container-sapp #news_details_model .banner,
.is-container-sapp #news_details_model .recom-wrap
{
    display: none !important;
}

.is-container-sapp .leftNav {
    display: none !important;
}

#model-page-holder .section-benefits .image-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background-color: #36312d;
}

#model-page-holder .section-benefits .benefits-image-pc {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
#model-page-holder .section-benefits .benefits-image-mob {
    width: auto;
    height: 100%;
    object-fit: scale-down;
}

