html{
    font-size:5vw;
}
body{
    font-family: -apple-system-font,Helvetica Neue,sans-serif;
}
a {
    color: #333;
    outline: none;
    text-decoration: none;
}
.d_n{
    display:none !important;
}
.container{
    max-width:1400px;
    margin:0 auto;
    box-sizing:border-box;
    padding:0 1rem;
}
.full-container{
    width:100%;
}
.visible-xs-block {
    display:none !important;
}
@media screen and (max-width:768px) {    
    .container{
        width:100% !important;
    }
    .full-container{
        min-width:100% !important;
    }
    .hidden-xs{
        display:none !important;
    }
    .visible-xs-block {
        display:block !important;
    }
}

/* 动画 start */
@keyframes play_rotate {
    from {
      transform:rotate(0deg);
    }
  
    to {
      transform:rotate(360deg);
    }
}
/* 动画 end */

/* 开屏海报 start */
.screen-banner{
    position:fixed;
    z-index:999;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:#fff;
}
.screen-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
    cursor:pointer;
}
/* 开屏海报 end */
  

/* header start */
.header{
    position:fixed;
    z-index:99;
    top:0;
    width:100%;
    height:60px;
    background-color:rgba(0,0,0,0.5);
}
.header .container{
    height:100%;
    display:flex;
    flex-direction:row;
    align-items: center;
    justify-content:space-between;
}
.header .logo img{
    height:0.45rem;
    width:auto;
}
.header .navbar .nav-list{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
}
.nav-list li{
    padding:0 0.2rem;
}
.nav-list li a{
    font-size:0.14rem;
    color:#fff;
    padding:0.05rem 0;
    border-bottom:1px solid transparent;
}
.nav-list li.active a{
    border-color:#fff;
}
.header .rests .btn{
    display:inline-block;
    width:auto;
    height:0.3rem;
    line-height:0.3rem;
    padding:0 0.25rem;
    border-radius:0.3rem;
    border:1px solid #fff;
    color:#fff;
    font-size:0.14rem;
}
@media screen and (max-width:768px){
    .header{
        /*background-color:#fff;*/
        background-color: rgba(0,0,0);
        height:60px;
        display:block !important;
    }
    .header .container{
        box-sizing: border-box;
        padding:0 15px;
    }
    .header .logo img{
        height:20px;
    }
    .header .navbar .moblie-show-btn{
        width:30px;
        height:30px;
        background:url(../images/m_more.png) center center/cover no-repeat;
    }
    .header .navbar .moblie-show-btn.on{
        background:url(../images/m_close.png) center center/cover no-repeat;
    }
}
/* header end */

/* moblie-navber start */
.moblie-navber{
    position:fixed;
    z-index:9999;
    top:60px;
    bottom:0;
    box-sizing:border-box;
    overflow-y:auto;
    width:100%;
    padding-bottom:50px;
    background-color:rgba(0,0,0,.8);
}
.moblie-navber-wrap, .moblie-navber-rests{
    width:100%;
    box-sizing: border-box;
    padding:5px 15px;
}
.moblie-navber-item{
    line-height:50px;
    padding-left:50px;
    border-bottom:1px solid #fff;
}
.moblie-navber-item a{
    font-size:14px;
    color:#fff;
}
.moblie-navber-item a:hover,
.moblie-navber-item a:active {
    color:rgba(228, 0, 0, 0.8);
}
.moblie-navber-rests .btn{
    margin:10px 0;
    margin-left:50px;
    color:#fff;
    width:150px;
    height:30px;
    font-size:14px;
    text-align:center;
    display:inline-block;
    line-height:30px;
    border:1px solid #fff;
    border-radius:30px;   
}
/* moblie-navber end */

/* 侧边导航栏 start */
.suspend-side-navber{
    position:fixed;
    z-index:88;
    top:50%;
    left:6%;
    transform:translateY(-50%);
}
.suspend-side-navber ul li{
    position:relative;
    line-height:0.36rem;
    margin:0.2rem 0;
    padding-left:0.2rem;
    cursor:pointer;
}
.suspend-side-navber ul li.active::after{
    content:'';
    display:block;
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:0.04rem;
    height:100%;
    border-radius:0.04rem;
    background-color:#fff;
}
.suspend-side-navber ul li a{
    font-size:0.16rem;
    color:#fff;
}
/* 侧边导航栏 end */

/* 底部悬浮 strat */
.suspend-base{
    position:fixed;
    z-index:99;
    bottom:0;
    background-color:rgba(0,0,0,.5);
}
.full-container.suspend-base{
    overflow:visible;
}
.suspend-base-main{
    position:relative;
    height:60px;
}
.suspend-base-form{
    height:100%;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
}
.suspend-base-form .layui-form-item{
    margin-bottom:0;
    flex:1;
}
.suspend-base-form .layui-form-item .layui-form-label{
    color:#fff;
    font-size:0.16rem;
    line-height:0.2rem;
    width:0.8rem;
    padding:0.09rem 0.15rem;
}
.suspend-base-form .layui-form-item .layui-input-block{
    margin-left:1.1rem;
    min-height:0.36rem;
}
.suspend-base-form .layui-form-item .layui-input{
    background-color:transparent;
    border:none;
    border-bottom:1px solid #fff;
    font-size:0.16rem;
    text-align:center;
    color:#fff;
    height:0.32rem;
    border-radius:0;
}
.suspend-base-form .layui-form-item .layui-input::placeholder{
    color:#ccc;
}
.suspend-form-subimt{
    background-color: #2b81ff;
    width: 1.4rem;
    height: 0.36rem;
    line-height: 0.36rem !important;
    border-radius: 0.18rem;
    display: inline-block;
    text-align: center;
    font-size: 0.16rem;
    color: #fff;
    margin-left: 50px;
    border:none;
    padding:0;
}
.suspend-base-main .suspend-base-close{
    position:absolute;
    right:1rem;
    top:50%;
    width:0.2rem;
    height:0.2rem;
    transform:translateY(-50%);
}
.suspend-base-close{
    z-index:9;
    background-image:url(../images/base_form_close.png);
    background-size:100% 100%;
    cursor:pointer;
}
.suspend-base-trial{
    height:44px;
}
.base-trial-wrap{
    box-sizing:border-box;
    padding:0 20px;
    height:100%;
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
}
.base-trial-wrap .suspend-base-close{
    width:0.2rem;
    height:0.2rem;
    margin-right:0.65rem;
}
.base-trial-wrap p{
    color:#fff;
    font-size:0.14rem;
}
.base-trial-button{
    width:auto;
    height:0.36rem;
    padding:0 0.3rem;
    display:inline-block;
    background-color: #2b81ff;
    border-radius:0.18rem;
    line-height:0.36rem;
    text-align:center;
    color:#fff;
    font-size:0.14rem;
}
/* 底部悬浮 end */

/* banner start */
.banner-swiper{
    --swiper-theme-color: #fff;
}
.banner{
    width:100%;
    height:auto;
}
.banner-swiper{
    width:100%;
    height:100%;
    position:relative;
}
.banner-swiper .swiper-slide{
    position:relative;
    overflow:hidden;
    display:flex;
}
.banner-swiper .swiper-slide picture{
    width:100%;
}
.banner-swiper .swiper-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.banner-swiper .swiper-slide .video-auto, .banner-swiper .swiper-slide .jsmpeg-canvas{
    width:100%;
    height:100%;
    object-fit:cover;
}
.play_btn{
    position:absolute;
    top:50%;
    left:50%;
    width:100px;
    height:100px;
    cursor:pointer;
    transform:translate(-50%,-50%);
    background:url(../images/play_btn.png) center center / cover no-repeat;
}
.play_btn::before{
    content:'';
    display:block;
    width:100%;
    height:100%;
    background:url(../images/play_circle.png) center center / cover no-repeat;
    animation:play_rotate 3s infinite linear;
}
@media screen and (max-width:768px) {
    .banner{
        padding-top:60px;
    }
}
/* banner end */

/* 震撼上市 start */
.market{
    width:100%;
    height:auto;
}
.market img{
    width:100%;
    height:auto;
}
/* 震撼上市 end */


/* 基本信息 start */
.basic{
    width:100%;
    max-height:auto;
}
.basicBox{
    width:100%;
    height:100%;
    background:url(../images/basic_bg.jpg) center center / cover no-repeat;
}
.basic_content{
    width:100%;
    height:100%;
}
.basic_content .container{
    position:relative;
    height:100%;
}
.basic_head{
    text-align:center;
    padding-top:50px;
}
.basic_head h3{
    font-size:0.42rem;
    color:#000;
    line-height:2;
}

.basic_cars{
    width:100%;
    height:100%;
    overflow:hidden;
}
.basic_cars .basic_car_plane{
    position:relative;
    width:100%;
    height:100%;
    padding-bottom:3rem;
    display:none;
}
.basic_cars .basic_car_plane.active{
    display:block;
}
.basicCar_message{
    width:100%;
}
.basicCar_info{
    margin-top:3%;
}
.basicCar_info_item .basicCar_info_name{
    font-size:0.2rem;
}
.basicCar_info_counts .count{
    font-size:0.36rem;
    font-weight:bold;
}
.basicCar_info_counts .sym{
    width:0.2rem;
    height:0.2rem;
    display:inline-block;
    background-image:url(../images/sym.png);
    background-size:100% 100%;
    margin:0 0.1rem;
}
.basicCar_info_counts .unit{
    font-size:0.22rem;
    align-self:flex-end;
    margin-bottom:0.05rem;
    padding-left:0.02rem;
}
.basicCar_refer{
    margin-top:3%;
}
.basicCar_refer .refers{
    font-size:0.14rem;
    padding-left:0.15rem;
    line-height:2;
}
.basicCar_refer .refers li{
    list-style-type:disc;
}
.basicCar_refer .refers li b{
    margin-left:0.2rem;
}
.basicCar_refer .hint{
    color:rgba(0,0,0,0.5);
    font-size:0.14rem;
}
.basicCars_wrap{
    position:absolute;
    left:50%;
    bottom:5%;
    transform:translateX(-50%);
}
.basicCars_wrap .basicCar_box{
    display:none;
}
.basicCars_wrap .basicCar_box img{
    width:9rem;
    height:auto;
}
.basic_content .basic_tabs{
    /*position:absolute;*/
    /*right:0;*/
    /*top:50%;*/
    transform:translateY(-50%);
    display:flex;
    /*flex-direction:column;*/
   
    justify-content: center;
}
.basic_content .basic_tabs .basic_tab{
    position:relative;
    width:0.6rem;
    height:0.6rem;
    border-radius:50%;
    box-sizing:border-box;
    padding:0.05rem;
    border:0.02rem solid transparent;
    margin:0.1rem 0;
    cursor:pointer;
}
.basic_content .basic_tabs .basic_tab.on{
    border-color:#fff;
}
.basic_content .basic_tabs .basic_tab .text{
    position:absolute;
    left:50%;
    top:165%;
    transform:translate(-50%, -120%);
    color:rgba(0,0,0,.5);
    font-size:0.16rem;
    white-space:nowrap;
    display:none;
}
.basic_content .basic_tabs .basic_tab.on .text{
    display:block;
}
.basic_content .basic_tabs .basic_tab:hover .text{
    display:block;
}
.basic_content .basic_tabs .basic_tab img{
    width:100%;
    height:100%;
    border-radius:50%;
    overflow:hidden;
    object-fit:cover;
}
.basicCar_footer{
    width:100%;
    padding-bottom:5%;
    text-align:center;
    color:#000;  
}
.basicCar_footer .basicCar_btn{
    font-size:0.24rem;
    height:0.58rem;
    line-height:0.58rem;
    width:2.4rem;
    text-align:center;
    display:block;
    margin:0 auto;
    border:1px solid #000;
    border-radius:0.3rem;
    margin-top:0.3rem;
    color:#000;
}

.basi3D{
    position:relative;
    width:100%;
    height:80vh;
    display:none;
}
.basi3D .basi3D_canvas{
    width: 100% !important;
    height: 100% !important;
}
.basi3D .basi3D_cut {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 15;
    display:flex;
    flex-direction:row;
    align-items:center;
}
.basi3D .basi3D_cut .cutBtn{
    margin:0 10px;
    cursor: pointer;
}
.basi3D .loading{
    position:absolute;
    z-index:10;
    top:0;
    width:100%;
    height:100%;
    background-color:#fff;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
}
.basi3D .basi3D_Tab{
    bottom:0;
    width:100%;
}
.basi3D .basi3D_Tab .look{
    position:absolute;
    bottom:30px;
    left:0;
    width:100%;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
}
.basi3D .basi3D_Tab a{
    display: inline-block;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: #d9d9d9;
    margin:0.05rem;
    position: relative;
}
.basi3D .basi3D_Tab a img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius: 50%;
}
.basi3D .basi3D_Tab a.on::after{
    content: '';
    display: block;
    border: 1px solid #9c9c9c;
    position: absolute;
    left: -0.05rem;
    top: -0.05rem;
    right: -0.05rem;
    bottom: -0.05rem;
    border-radius: 50%;
}
.basi3D .basi3D_Tab a span{
    display: none;
    position: absolute;
    width: auto;
    height: 2em;
    padding:0 0.1rem;
    text-align: center;
    line-height: 2em;
    color: #fff;
    font-size:0.14rem;
    white-space:nowrap;
    pointer-events:none;
    background: linear-gradient(180deg,rgba(0,0,0,.5) 40%,transparent);
}
.basi3D .basi3D_Tab .wheel{
    position:absolute;
    left:0.1rem;
    bottom:50%;
    transform:translateY(50%);
    display:flex;
    flex-direction:column;
}
.basi3D .basi3D_Tab .pinion{
    position:absolute;
    right:0.1rem;
    bottom:50%;
    transform:translateY(50%);
    display:flex;
    flex-direction:column;
}
.basi3D .basi3D_Tab a:hover span{
    display:block;
}
.basi3D .basi3D_Tab a.on span{
    display:block;
}
.basi3D .basi3D_Tab .look a.on span{
    margin-top:-0.5rem;
}
.basi3D .basi3D_Tab .look a.on:hover span{
    display:block;
    margin-top:-0.5rem;
}
.basi3D .basi3D_Tab .look a:hover span{
    margin-top:0.5rem;
}
.basi3D .basi3D_Tab .look span{
    top:50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.basi3D .basi3D_Tab .wheel span{
    top:50%;
    right:0;
    transform: translateX(120%) translateY(-50%);
}
.basi3D .basi3D_Tab .pinion span{
    top:50%;
    left:0;
    transform: translateX(-120%) translateY(-50%);
}

@media screen and (max-width:768px){
    .basicBox{
        height:auto;
        min-height:auto;
        background-image:url(../images/basic_bg_m.jpg);
        background-size:100% 100%;
    }
    .basic_content .container{
        box-sizing:border-box;
        padding:0 15px;
    }
    .basic_head{
        padding:0.2rem 0;
    }
    .basic_head h3{
        font-size:0.4rem;
    }
    .basic_cars{
        height:auto;
    }
    .basic_cars .basic_car_plane{
        padding-bottom: 1rem;
    }
    .basicCar_info{
        margin-top:0.2rem;
        display:flex;
        flex-direction:row;
        justify-content:space-between;
    }
    .basicCar_info_item .basicCar_info_name{
        font-size:0.24rem;
    }
    .basicCar_info_counts .count{
        font-size:0.26rem;
    }
    .basicCar_info_counts .sym{
        width:0.1rem;
        height:0.1rem;
        margin:0 0px;
    }
    .basicCar_info_counts .unit{
        font-size:0.16rem;
    }
    .basicCar_refer .refers li{
        line-height:2.3;
    }
    .basicCar_refer .refers li b{
        float:right;
    }
    .basicCars_wrap{
        position:relative;
        left:0;
        bottom:0;
        width:100%;
        height:auto;
        transform:translateX(0);
        padding-top:30px;
    }
    .basicCars_wrap .basicCar_box{
        text-align:center;
    }
    .basicCars_wrap .basicCar_box img{
        width:90%;
    }

    .basic_content .basic_tabs {
        position: static;
        text-align: center;
        flex-direction: row;
        justify-content: center;
    }
    .basic_content .basic_tabs .basic_tab{
        padding:0.05rem;
    }
    .basic_content .basic_tabs .basic_tab .text{
        top:0;
        left:50%;
        transform:translate(-50%, -120%);
    }
}
/* 基本信息 end */

/* 车型鉴赏 start */
.appre-section{
    position:relative;
    width:100%;
    min-height:calc(840px - 120px);
    background-size:cover;
    background-position:center center;
    overflow:hidden;
}
.appre-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}
.appre-body{
    width:4.2rem;
    min-width:300px;
    min-height:inherit;
    height:auto;
    background-color:rgba(0,0,0,.5);
    margin-left:auto;
    margin-right:0;
    box-sizing:border-box;
    padding:0 30px;
    display:flex;
}
.appre-main{
    width:100%;
    margin:auto 0;
    overflow:hidden;
}
.appre-swiper .swiper-wrapper{
    display:flex;
}
.appre-swiper .swiper-slide{
    height:100%;
}
.appre-swiper .swiper-slide img{
    width:100%;
    height:auto;
    display:none;
}
.appre-content{
    min-height:2rem;
    padding-bottom:0.2rem;
    color:#fff;
}
.appre-content br{
    display:none;
}
.appre-content h2{
    position:relative;
    font-size:0.4rem;
    font-weight:normal;
    box-sizing:border-box;
    padding-left:10px;
    line-height:1.1;
    margin:0.2rem 0;
}
.appre-content h2::before{
    content: '';
    display: inline-block;
    width: 2px;
    background-color: #2b81ff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}
.appre-content p{
    font-size:0.16rem;
}

.small-swiper{
    --swiper-navigation-color: #fff;
    --swiper-navigation-size: 20px;
}
.small-swiper .swiper-slide{
    overflow:hidden;
}
.small-swiper{
    position:relative;
    padding-bottom:100px;
}
.small-swiper .swiper-slide{
    position:relative;
    opacity:0.5;
    transition:all 0.4s linear;
}
.small-swiper .swiper-slide.swiper-slide-thumb-active{
    opacity:1;
}

.small-swiper .swiper-slide span{
    position:absolute;
    z-index:10;
    display:block;
    width:20px;
    height:20px;
    text-align:center;
    line-height:20px;
    font-size:14px;
    color:#fff;
}
.small-swiper img{
    width:100%;
    min-height:1rem;
    object-fit: cover;
}
.small-swiper .swiper-scrollbar{
    display:block !important;
    top:auto;
    bottom:50px;
    left:0;
    width:80%;
    height:6px;
    background-color:rgba(255,255,255,0.3);
    border-radius:3px;
    overflow:hidden;
    margin:0 10%;
}
.small-swiper .swiper-scrollbar .swiper-scrollbar-drag{
    background-color:#fff;
    border-radius:3px;
}
.small-swiper .swiper-button-next{
    right:0;
}
.small-swiper .swiper-button-prev{
    left:0;
}
.small-swiper .swiper-button-next, .small-swiper .swiper-button-prev{
    top:auto;
    bottom:53px;
    transform:translateY(50%);
}
.appre-left-share{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    pointer-events:none;
    background-image:url(../images/appre-share.png);
    background-size:auto 100%;
    background-repeat:no-repeat;
}
@media screen and (max-width:768px){
    .appre-section{
        min-height:auto;
        padding:10px 0;
    }
    .appre-content p {
    font-size: .26rem;
    }
    .appre-body{
        width:100%;
        padding:0 20px;
    }
    .appre-content h2{
        font-size:0.46rem;
    }
    .appre-content br{
        display:block;
    }    
    .appre-swiper .swiper-slide img{
        display:block;
        margin-bottom:20px;
    }
    .small-swiper img{
        height:auto;
    }
    
}
/* 车型鉴赏 end */

/* 参数配置 start */
.config{
    width:100%;
    height:auto;
    padding:10px;
    box-sizing:border-box;
    background: linear-gradient(to bottom, #c9ccd0 0%,#ffffff 100%);
}
.config-swiper{
    width:100%;
    height:auto; 
    padding:50px 0; 
    margin:0 auto;
}
.config-swiper .swiper-slide{
    position:relative;
    width:4.5rem;
    border-radius:0.15rem;
    background-color:#fff;
}
.config_content{
    position:relative;
    z-index:5;
    width:100%;
    box-sizing:border-box;
    padding:0 0.2rem;
    color:#000;
    text-align:center;
    margin-top:0.5rem;
}
.config_content h3{
    font-size:0.5rem;
}
.config_content h4{
    font-size:0.32rem;
}
.config_content p{
    font-size:0.16rem;
}
.config_content p span{
    color:#e60112;
}
.config_content p b{
    font-size:0.24rem;
}
.config_btn{
    margin:0.6rem auto;
    width:100%;
}
.config_btn a{
    display:block;
    width:2.6rem;
    height:0.7rem;
    border-radius:0.35rem;
    text-align:center;
    line-height:0.7rem;
    border:1px solid #000;
    color:#000;
    margin:0 auto;
    font-size:0.24rem;
}
.config_car{
    position:relative;
    left:50%;
    transform:translateX(-50%);
    max-width:5rem;
    max-height:3rem;
    height:auto;
    margin-top:0.5rem;
    cursor:pointer;
}
.config .config-hint{
    font-size:0.14rem;
    color:#979191;
    text-align:center;
    display:block;
    padding:0.1rem;
}
.config .config-download{
    text-align:center;
    padding:0.2rem 0;
    font-size:0.16rem;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
}
.config .config-download a{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
    padding: 0 0.1rem;
    margin:0.1rem 0;
}
.config .config-download a img{
    width:0.4rem;
    margin-right:0.1rem;
}
@media screen and (max-width:768px){
    .config{
        padding:0 15px;
    }
    .config-swiper{
        width:100% !important;
        box-sizing: border-box;
    }
    .config-swiper .swiper-slide{
        width:100%;
        max-width:650px;
    }
    .config_content h3{
        font-size:30px;
    }
    .config_content p{
        font-size:14px;
    }
    .config_content p b{
        font-size:16px;
    }
    .config_car{
        max-width:80%;
        max-height:none;
    }
    .config_btn a{
        width:200px;
        height:50px;
        line-height:50px;
        border-radius:25px;
        font-size:18px;
    }
}
/* 参数配置 end */

/* 精彩赏析 start */
.splend{
    position:relative;
    width:100%;
    height:auto;
}
.splend-swiper{
    --swiper-theme-color: #fff;
    --swiper-navigation-color: #fff;
    --swiper-navigation-size: 30px;
}
.splend img{
    width:100%;
    height:auto;
}
/* 精彩赏析 end */

/* 精彩视频 start */
.shiping{
    position:relative;
    width:100%;
    height:auto;
    padding:50px 0;
}
.shiping .shiping-container{
    width:900px;
    height:auto;
    margin:0 auto;
}
.shiping .shiping-container video{
    width:100%;
    height:auto;
}
@media screen and (max-width:768px){
    .shiping{
        padding:0;
    }
    .shiping .shiping-container{
        width:100%;
    }
}
/* 精彩视频 end */

/* 预约试驾 start */
.trial{
    height:auto;
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
}
.trial>div{
    width:50%;
}
.trial_map{
    height:8rem;
}
.trial_map .maps{
    width:100%;
    height:100%;
}

.trial_content{
    height:auto;
    box-sizing:border-box;
    padding:0 10% 0 5%;
}
.trial_content h3{
    font-size:0.4rem;
    line-height:2;
    padding:0.5rem 0;
    font-weight:bold;
}
.trial-form-item{
    width:100%;
    height:0.58rem;
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    margin-bottom:0.35rem;
}
.trial-form-item:last-child{
    margin-bottom:0;
}
.trial-form-item .layui-input-block{
    flex:1;
    margin-left:0;
    min-height:auto;
}
.trial-form-item .layui-input-block.trial-form-name{
    flex:2;
    margin-right:0.1rem;
}
.trial-form-item .layui-input-block.trial-form-tel{
    flex:2.5;
}
.trial-form-item .layui-input-block.trial-form-code{
    flex:1.5;
    margin:0 0.1rem;
}
.trial-form-item .layui-input-block.trial-form-smsSend{
    flex:1.2;
}
.trial-form-item .layui-input-block.trial-form-province{
    margin-right:0.1rem;
}
.trial-form-item input[type='text']{
    height:0.58rem;
    line-height:0.58rem;
    background-color:transparent;
    border:none;
    outline:none;
    color:#000;
    border-radius:0.14rem;
    border:1px solid rgba(43,129,255,0.2);
    box-sizing:border-box;
    padding:0 0.3rem;
    font-size:0.14rem;
    appearance: none;
}
.trial-form-item .layui-input-block.trial-form-code input[type='text']{
    padding:0 0.2rem;
}
.trial-form-item .layui-input-block.trial-form-smsSend button{
    width:100%;
    height:0.58rem;
    line-height:0.58rem !important;
    background-color:#2b81ff;
    border:none;
    text-align:center;
    color:#fff;
    border-radius:0.14rem;
    box-sizing:border-box;
    padding:0;
    font-size:0.14rem;
    cursor:pointer;
}
.trial-form-agreement{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
    margin-bottom:0.25rem;
}
.trial-form-agreement .agreement-icon{
    position:relative;
    width:0.2rem;
    height:0.2rem;
    border:1px solid var(--color2);
    cursor:pointer;
}
.trial-form-agreement .agreement-icon.selected::after{
    content: "";
    display: block;
    width: 70%;
    height: 25%;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%) rotate(-50deg);
    border-bottom-left-radius: 2px;
}
.trial-form-agreement .agreement-text{
    display:flex;
    flex-direction:row;
    align-items:center;
    color:#959595;
    font-size:0.16rem;
    padding-left:0.1rem;
}
.trial-form-agreement .agreement-text .agreementShow{
    cursor:pointer;
}
.trial-form-subimt{
    display: block;
    width: 100%;
    height: 0.4rem;
    line-height: 0.4rem !important;
    box-sizing: border-box;
    border:none;
    background-color:#3f3f3f;
    color: #fff;
    text-align: center;
    font-size: 0.18rem;
    letter-spacing: 0.2em;
}
@media screen and (max-width:768px){
    .trial>div{
        width:100%;
    }
    .trial_map{
        height:100vw;
    }
    .trial_content{
        padding:0 0.2rem;
    }
    .trial_content h3{
        padding:0.2rem 0;
        text-align:center;
        font-size:32px;
    }
    .trial-form-item{
        margin-bottom:0.2rem;
        height:0.8rem;
    }
    .trial-form-item input[type='text']{
        height:0.8rem;
        line-height:0.8rem;
    }
    .trial-form-item .layui-input-block.trial-form-smsSend button{
        font-size:0.12rem;
        height:0.8rem;
        line-height:0.8rem !important;
    }
    .trial-form-subimt{
        font-size:0.28rem;
        height:0.6rem;
        line-height:0.6rem;
    }
}
/* 预约试驾 end */

/* 视频弹出框 start */
.pop-video{
    position:fixed;
    z-index:100;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:none;
}
.pop-video .pop-content{
    position:relative;
    width:100%;
    height:100%;
    background-color:#000;
}
.pop-video .pop-content .pop-close{
    position:absolute;
    z-index:10;
    right:10px;
    top:10px;
    width:40px;
    height:40px;
    cursor:pointer;
    background-image:url(../images/icon-close.png);
    background-size:100% 100%;
}
.pop-video .pop-content .video-wrap{
    width:100%;
    height:100%;
}
.pop-video .pop-content .video-wrap video{
    width:100%;
    height:100%;
}
/* 视频弹出框 end */

/* 配置弹出框 start */
.config-wrapper{
    position:fixed;
    z-index:200;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,0.5);
}
.config-wrapper .config_popBox{
    position:absolute;
    top:8%;
    bottom:8%;
    left:50%;
    transform:translateX(-50%);
    width:98%;
    max-width:1200px;
    background-color:#fff;
}

.config_popBox .config_plane{
    width:100%;
    height:100%;
    display:none;
}
.config_popBox .config_plane.active{
    display:flex;
    flex-direction:column;
}
.config_popBox .config_plane .config_tab_swiper{
    width:100%;
    overflow:hidden;
    background-color:rgb(127, 127, 127);
}
.config_popBox .config_plane .config_tab_content{
    width:100%;
    flex:1;
}

.config_tab_swiper .swiper-slide{
    position:relative;
    text-align:center;
    cursor:pointer;
}
.config_tab_swiper .swiper-slide span{
    color:#000;
    display:block;
    padding:6px 0;
    line-height:1.4em;
    font-size:14px;
}
.config_tab_swiper .swiper-slide.on span{
    background-color:#fff;
}


.config-wrapper .config_tabbox{
    width:100%;
    height:100%;
    overflow:hidden;
    display:flex;
    flex-direction:column;
}
.config_tabbox .tabbox_head{
    width:100%;
    height:auto;
    background-color:#fff;
}
.tabbox_head .config_nav_tabs{
    width:100%;
    text-align:center;
}
.tabbox_head .config_nav_tabs>li{
    font-size:20px;
    display:inline-block;

}
.tabbox_head .config_nav_tabs>li>a{
    line-height:60px;
    color:#000;
    display:flex;
    flex-direction:row;
    align-items:center;
    padding:0 15px;
}
.tabbox_head .config_nav_tabs>li.active>a{
    cursor:default;
}
.tabbox_head .config_nav_tabs>li i{
    display:inline-block;
    width:18px;
    height:18px;
    box-sizing:border-box;
    border:1px solid #000;
    background:transparent;
    margin-right:12px;
}
.config_nav_tabs>li.active i{
    background-image:url(../images/pick.png);
    background-size:100% 100%;
    background-color:#8fe501;
}
.config_head_table{
    width:100%;
    color:#fff;
    text-align:center;
    border-collapse:collapse;
}
.config_head_table>tbody>tr>td{
    padding:8px;
    line-height:1.5;
    border:1px solid #000;
    color:#000;
}
.config_tabbox .tabbox_main{
    width:100%;
    flex:1;
}
.config_close{
    position:absolute;
    z-index:10;
    right:20px;
    top:20px;
    width:40px;
    height:40px;
    cursor:pointer;
    background-image:url(../images/icon-close.png);
    background-size:100% 100%;
}

@media screen and (max-width:768px){
    .tabbox_head .config_nav_tabs>li>a{
      padding:0 0px;
      font-size:12px;
    }
    .tabbox_head .config_nav_tabs>li i{
      width:12px;
      height:12px;
      margin-right:2px;
    }
    .config_tab_swiper .swiper-slide span{
        font-size:12px;
    }
    .config_close{
        top:5px;
    }
}
/* 配置弹出框 end */