body{
    font-family: -apple-system-font,Helvetica Neue,sans-serif;
}
a {
    color: #333;
    outline: none;
    text-decoration: none;
}
.d_n{
    display:none !important;
}
.container{
    width:1200px;
    margin:0 auto;
}
.full-container{
    width:100%;
    min-width:1200px;
}
.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:70px;
    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:35px;
    width:auto;
}
.header .navbar .nav-list{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
}
.nav-list li{
    padding:0 20px;
}
.nav-list li a{
    font-size:14px;
    color:#fff;
    padding:5px 0;
    border-bottom:1px solid transparent;
}
.nav-list li.active a{
    border-color:#fff;
}
.header .rests .btn{
    display:inline-block;
    width:auto;
    height:30px;
    line-height:30px;
    padding:0 25px;
    border-radius:30px;
    border:1px solid #fff;
    color:#fff;
    font-size:14px;
}
@media screen and (max-width:768px){
    .header{
        background-color:#fff;
        height:60px;
        display:block !important;
    }
    .header .container{
        box-sizing: border-box;
        padding:0 15px;
    }
    .header .logo img{
        height:15px;
    }
    .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:99;
    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:34px;
    margin:20px 0;
    padding-left:20px;
    cursor:pointer;
}
.suspend-side-navber ul li.active::after{
    content:'';
    display:block;
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:4px;
    height:100%;
    border-radius:4px;
    background-color:#fff;
}
.suspend-side-navber ul li a{
    font-size:16px;
    color:#fff;
}
/* 侧边导航栏 end */


/* 底部悬浮 strat */
.suspend-base{
    position:fixed;
    z-index:99;
    bottom:0;
    background-color:rgba(0,0,0,.5);
}
.suspend-base-main{
    position:relative;
    height:60px;
}
.suspend-base-form{
    height:100%;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
}
.base_form_item{
    position:relative;
    padding:0 20px;
}
.base_form_name{
    color:#fff;
    font-size:16px;
}
.base_form_input, .base_item_clause{
    background-color:transparent;
    border:none;
    border-bottom:1px solid #fff;
    font-size:16px;
    line-height:1.5;
    width:180px;
    text-align:center;
    color:#fff;
}
.base_form_select {
    background-color: transparent;
    color: #fff;
    font-size: 16px;
    outline: none;
    border: none;
    border-bottom: 1px solid #fff;
    text-align: center;
    width: 180px;
}
.base_form_select option{
    background-color:#000;
}
.base_form_check{
    display:none;
}
.base_form_label{
    position:absolute;
    top:50%;
    left:20px;
    transform:translate(0,-50%);
    display:inline-block;
    width:16px;
    height:16px;
    border-radius:50%;
    border:1px solid #fff;
    padding:0;
}
.base_form_check:checked + .base_form_label{
    background-color:#fff;
}
.base_form_check:checked + .base_form_label::after{
    content:'\2714';
    width:100%;
    height:100%;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
    color:#000;
    font-size:12px;
}
.base_item_clause{
    margin-left:25px;
    color:#fff;
}
.base_form_subimt{
    background-color:#2b81ff;
    width:140px;
    height:36px;
    line-height:36px;
    border-radius:18px;
    display:inline-block;
    text-align:center;
    font-size:16px;
    color:#fff;
    margin-left:20px;
}
.suspend-base-main .suspend-base-close{
    position:absolute;
    right:0;
    top:50%;
    width:20px;
    height:20px;
    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:15px;
    height:15px;
    margin-right:65px;
}
.base-trial-wrap p{
    color:#fff;
    font-size:12px;
}
.base-trial-button{
    width:80px;
    height:28px;
    display:inline-block;
    background-color: #2b81ff;
    border-radius:15px;
    line-height:28px;
    text-align:center;
    color:#fff;
    font-size:12px;
}
/* 底部悬浮 end */


.full-main{    
    overflow:hidden;
}

/* banner start */
.banner-swiper{
    --swiper-theme-color: #fff;
}
.banner{
    width:100%;
    height:100vh;
}
.banner-swiper{
    width:100%;
    height:100%;
    position:relative;
}
.banner-swiper .swiper-slide{
    position:relative;
    overflow:hidden;
}
.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;
        height:80vh;
    }
}
/* banner end */

/* 震撼上市 start */
.market{
    width:100%;
    height:auto;
}
.market>img{
    width:100%;
    height:100%;
    object-fit:cover;
}
@media screen and (max-width:768px) {
    .market{
        height:auto !important;
    }
}
/* 震撼上市 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:36px;
    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:300px;
    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:18px;
}
.basicCar_info_counts .count{
    font-size:34px;
    font-weight:bold;
}
.basicCar_info_counts .sym{
    width:20px;
    height:20px;
    display:inline-block;
    background-image:url(../images/sym.png);
    background-size:100% 100%;
    margin:0 10px;
}
.basicCar_info_counts .unit{
    font-size:20px;
    align-self:flex-end;
    margin-bottom:5px;
    padding-left:2px;
}
.basicCar_refer{
    margin-top:3%;
}
.basicCar_refer .refers{
    font-size:12px;
    padding-left:15px;
    line-height:2;
}
.basicCar_refer .refers li{
    list-style-type:disc;
}
.basicCar_refer .refers li b{
    margin-left:20px;
}
.basicCar_refer .hint{
    color:rgba(0,0,0,0.5);
    font-size:12px;
}
.basicCars_wrap{
    position:absolute;
    left:50%;
    bottom:5%;
    transform:translateX(-50%);
}
.basicCars_wrap .basicCar_box{
    display:none;
}
.basicCars_wrap .basicCar_box img{
    width:900px;
    height:auto;
}
.basic_content .basic_tabs{
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
}
.basic_content .basic_tabs .basic_tab{
    position:relative;
    width:60px;
    height:60px;
    border-radius:50%;
    box-sizing:border-box;
    padding:5px;
    border:2px solid transparent;
    margin:10px 0;
    cursor:pointer;
}
.basic_content .basic_tabs .basic_tab.on{
    border-color:#fff;
}
.basic_content .basic_tabs .basic_tab .text{
    position:absolute;
    left:0;
    top:50%;
    transform:translate(-120%,-50%);
    color:rgba(0,0,0,.5);
    font-size:14px;
    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:22px;
    height:58px;
    line-height:58px;
    width:240px;
    text-align:center;
    display:block;
    margin:0 auto;
    border:1px solid #000;
    border-radius:29px;
    margin-top:30px;
    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: 30px;
    height: 30px;
    border-radius: 50%;
    background: #d9d9d9;
    margin:5px;
    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: -3px;
    top: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
}
.basi3D .basi3D_Tab a span{
    display: none;
    position: absolute;
    width: auto;
    height: 2em;
    padding:0 10px;
    text-align: center;
    line-height: 2em;
    color: #fff;
    font-size:12px;
    white-space:nowrap;
    pointer-events:none;
    background: linear-gradient(180deg,rgba(0,0,0,.5) 40%,transparent);
}
.basi3D .basi3D_Tab .wheel{
    position:absolute;
    left:10px;
    bottom:50%;
    transform:translateY(50%);
    display:flex;
    flex-direction:column;
}
.basi3D .basi3D_Tab .pinion{
    position:absolute;
    right:10px;
    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:-40px;
}
.basi3D .basi3D_Tab .look a.on:hover span{
    display:block;
    margin-top:-40px;
}
.basi3D .basi3D_Tab .look a:hover span{
    margin-top:40px;
}
.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:20px 0;
    }
    .basic_head h3{
        font-size:24px;
    }
    .basic_cars{
        height:auto;
    }
    .basic_cars .basic_car_plane{
        padding-bottom: 100px;
    }
    .basicCar_info{
        margin-top:20px;
        display:flex;
        flex-direction:row;
        justify-content:space-between;
    }
    .basicCar_info_item .basicCar_info_name{
        font-size:14px;
    }
    .basicCar_info_counts .count{
        font-size:18px;
    }
    .basicCar_info_counts .sym{
        width:10px;
        height:10px;
        margin:0 0px;
    }
    .basicCar_info_counts .unit{
        font-size:12px;
    }
    .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{
        width:40px;
        height:40px;
        padding:4px;
    }
    .basic_content .basic_tabs .basic_tab .text{
        top:0;
        left:50%;
        transform:translate(-50%, -120%);
    }
    .basicCar_footer .basicCar_btn{
        font-size:14px;
        width:150px;
        height:40px;
        line-height:40px;
        border-radius:30px;
    }
}
/* 基本信息 end */

/* 车型鉴赏 start */
.appre-section{
    position:relative;
    width:100%;
    min-height:900px;
    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:400px;
    min-height:900px;
    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:200px;
    padding-bottom:20px;
    color:#fff;
}
.appre-content br{
    display:none;
}
.appre-content h2{
    position:relative;
    font-size:40px;
    font-weight:normal;
    box-sizing:border-box;
    padding-left:10px;
    line-height:1;
    margin:20px 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:14px;
}

.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%;
    height:100px;
    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:100px 0;
    }
    .appre-body{
        width:100%;
        min-height:auto;
        padding:0 20px;
    }
    .appre-content h2{
        font-size:32px;
    }
    .appre-content br{
        display:block;
    }    
    .appre-swiper .swiper-slide img{
        display:block;
        margin-bottom:20px;
    }
    
}
/* 车型鉴赏 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:450px;
    height:700px;
    border-radius:15px;
    background-color:#fff;
}
.config_content{
    position:relative;
    z-index:5;
    width:100%;
    box-sizing:border-box;
    padding:0 20px;
    color:#000;
    text-align:center;
    margin-top:50px;
}
.config_content h3{
    font-size:48px;
}
.config_content h4{
    font-size:32px;
}
.config_content p{
    font-size:16px;
}
.config_content p span{
    color:#e60112;
}
.config_content p b{
    font-size:24px;
}
.config_btn{
    margin:60px auto;
    width:100%;
}
.config_btn a{
    display:block;
    width:260px;
    height:70px;
    border-radius:35px;
    text-align:center;
    line-height:70px;
    border:1px solid #000;
    color:#000;
    margin:0 auto;
    font-size:24px;
}
.config_car{
    position:relative;
    left:50%;
    transform:translateX(-50%);
    max-width:500px;
    max-height:300px;
    height:auto;
    margin-top:50px;
    cursor:pointer;
}
.config .config-hint{
    font-size:12px;
    color:#979191;
    text-align:center;
    display:block;
    padding:10px;
}
.config .config-download{
    text-align:center;
    padding:0.2rem 0;
    font-size:14px;
    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 10px;
    margin:10px 0;
}
.config .config-download a img{
    width:40px;
    margin-right:10px;
}
@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%;
        height:auto;
        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%;
    }
    .config_btn a{
        width:200px;
        height:50px;
        line-height:50px;
        font-size:20px;
    }
}
/* 参数配置 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 */
.trial{
    height:auto;
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
}
.trial>div{
    width:50%;
}
.trial_map{
    height:800px;
}
.trial_map .maps{
    width:100%;
    height:100%;
}
.trial_from{
    height:auto;
    box-sizing:border-box;
    padding:0 10% 0 5%;
}
.trial_from h3{
    font-size:36px;
    line-height:2;
    padding:50px 0;
}
.trial_form_item{
    width:100%;
    height:auto;
    margin-bottom:30px;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
}
.trial_form_item input[type="text"], .trial_form_select{
    display:inline-block;
    height:58px;
    line-height:58px;
    border-radius:20px;
    border:1px solid rgba(43,129,255,0.2);
    box-sizing:border-box;
    padding:0 30px;
    font-size:14px;
    color:rgba(0,0,0,0.5);
    outline:none;
    background-color:#fff;
}
.trial_form_item input[name="name"]{
    width:70%;
}
.trial_form_item select[name="sex"]{
    width:25%;
}
.trial_form_item input[name="tel"]{
    width:49%;
}
.trial_form_item input[name="code"]{
    width:28%;
    margin-left:2%;
}
.trial_form_item .trial_form_button{
    width:18%;
    cursor:pointer;
    margin-left:2%;
    height:58px;
    line-height:58px;
    border-radius:20px;
    text-align:center;
    font-size:14px;
    color:#fff;
    background-color:#2b81ff;
    border:none;
    overflow:hidden;
}
.trial_form_item select[name="province"]{
    width:49%;
}
.trial_form_item select[name="city"]{
    width:49%;
}
.trial_form_item select[name="dealer_id"]{
    width:100%;
}
.trial_form_item select[name="car_type"]{
    width:100%;
}
.trial_form_subimt{
    display:block;
    width:240px;
    height:58px;
    line-height:58px;
    font-size:20px;
    border-radius:29px;
    text-align:center;
    border:1px solid #000;
    margin-bottom:30px;
}
@media screen and (max-width:768px){
    .trial>div{
        width:100%;
    }
    .trial_map{
        height:100vw;
    }
    .trial_from{
        padding:0 20px;
    }
    .trial_from h3{
        padding:20px 0;
        text-align:center;
        font-size:32px;
    }
    .trial_form_item{
        margin-bottom:20px;
    }
    .trial_form_item input[type="text"], .trial_form_select{
        height:40px;
        line-height:40px;
        border-radius:15px;
        padding:0 15px;
        font-size:12px;
    }
    .trial_form_item .trial_form_button{
        font-size:12px;
        height:40px;
        line-height:40px;
        border-radius:15px;
    }
    .trial_form_subimt{
        margin:0 auto;
        width:150px;
        height:34px;
        line-height:34px;
        border-radius:20px;
    }
    .trial_form_subimt span{
        font-size:16px;
    }
}
/* 预约试驾 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 */