/*字体大小*/
/*.text-xs{ font-size: .24rem;}
.text-sm{ font-size: .26rem;}
.text-base{ font-size: .32rem;}*/
/*字体颜色*/
.text-color0 {
  color: #ffffff;
}

.text-color1 {
  color: #c30705;
}

/*红色*/
.text-color2 {
  color: #efefef;
}

/*灰色*/
.text-color3 {
  color: #848484;
}

/*加深灰色*/
.text-color4 {
  color: #2d2d2d;
}

/*加深灰色*/
.text-color5 {
  color: #120c06;
}

/*加深灰色*/
.text-color6 {
  color: #000000;
}

/*黑色*/

/*背景颜色*/
.bg-color0 {
  background-color: #ffffff;
}

.bg-color1 {
  background-color: #000000;
}

.bg-color2 {
  background-color: #efefef;
}

/*灰色*/
.bg-color3 {
  background-color: #f0f1f2;
}

/*灰蓝色*/



.bg-color4 {
  background-color: #7a5ee2;
}

/*紫色*/
.bg-color5 {
  background-color: #fc9203;
}

/*橙色*/
.bg-color6 {
  background-color: #00b043;
}

/*绿色*/
.bg-color7 {
  background-color: #e7663f;
}

/*红色*/
.bg-color8 {
  background-color: #979797;
}

/*深灰色*/

.bg-opacity-75 {
  background: rgba(-255, -255, -255, 0.75)
}

/*背景size*/
.bg-width-auto {
  background-size: 100% auto;
}

.bg-height-auto {
  background-size: auto 100%
}

/*背景是否重复*/
.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-repeat-x {
  background-repeat: repeat-x;
}

.bg-repeat-y {
  background-repeat: repeat-y;
}

.bg-right {
  background-position: right;
}

.bg-left {
  background-position: left;
}

.bg-right-center {
  background-position: center right;
}

.bg-right-bottom {
  background-position: bottom right;
}

.bg-right-bottom1 {
  background-position: right 1rem;
}


/*边框圆角*/
.rounded-sm {
  border-radius: 0.18rem;
}

.rounded {
  border-radius: 0.46rem;
}

.rounded-50 {
  border-radius: 50%;
}

/*边框线*/
.border-b-0 {
  border-bottom: #cccccc 1px solid;
}

/*下边线*/
.border-b-1 {
  border-bottom: #cf2527 0.04rem solid;
}

/*下边线*/
.border-0 {
  border-width: 0px;
}

.border-color0 {
  border: #2d2d2d 1px solid;
}

.border-color1 {
  border: #b1b0b0 1px solid;
}

/*overflow*/
.overflow-hidden {
  overflow: hidden;
}


/*宽度*/
.w-full {
  width: 100%;
}

.w-96 {
  width: 96%;
}

.h-full {
  height: 100%;
}

.margin-auto {
  margin: 0 auto;
}

/*弹性格子*/
.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.flex-wrap {
  flex-wrap: wrap;
}

/*内边距*/
.px-30 {
  padding-left: 0.3rem;
  padding-right: 0.3rem;
}

.px-32 {
  padding-left: 0.32rem;
  padding-right: 0.32rem;
}

.py-30 {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}

.py-40 {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.pt-30 {
  padding-top: 0.3rem;
}

.pt-20 {
  padding-top: 0.2rem;
}

.pb-10 {
  padding-bottom: 0.1rem;
}

.pb-20 {
  padding-bottom: 0.1rem;
}

.pl-10 {
  padding-left: 0.1rem;
}

/*外边距*/
.mx-30 {
  margin-left: 0.3rem;
  margin-right: 0.3rem;
}

.my-30 {
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
}

.mb-30 {
  margin-bottom: 0.3rem;
}

.mb-20 {
  margin-bottom: 0.2rem;
}

.mt-20 {
  margin-top: 0.2rem;
}

.mr-92 {
  margin-right: 0.92rem;
}

.mr-20 {
  margin-right: 0.2rem;
}

.mt-30 {
  margin-top: 0.3rem;
}

/*字粗*/
.font-bold {
  font-weight: bold;
}

/*字高和行高*/
.height-90 {
  height: 0.9rem;
}

.leading-90 {
  line-height: 0.9rem;
}

.height-72 {
  height: 0.72rem;
}

.leading-72 {
  line-height: 0.72rem;
}

.height-60 {
  height: 0.6rem;
}

.leading-60 {
  line-height: 0.6rem;
}

.height-64 {
  height: 0.64rem;
}

.leading-64 {
  line-height: 0.64rem;
}

.height-68 {
  height: 0.68rem;
}

.leading-68 {
  line-height: 0.68rem;
}

.height-50 {
  height: 0.50rem;
}

.leading-50 {
  line-height: 0.50rem;
}

.height-44 {
  height: 0.44rem;
}


.leading-44 {
  line-height: 0.44rem;
}

.height-30 {
  height: 0.3rem;
}

.leading-30 {
  line-height: 0.3rem;
}

.height-34 {
  height: 0.34rem;
}

.leading-34 {
  line-height: 0.34rem;
}

.leading-24 {
  line-height: 0.24rem;
}

/*display*/
.block {
  display: block;
}

.inline-block {
  display: inline-block;
}


/*背景*/
.bg-enterImg {
  background-image: url(../images/icon5.png);
  background-size: 0.24rem 0.26rem;
}

.bg-arrowImg {
  background-image: url(../images/icon6.png);
  background-size: 0.24rem 0.26rem;
}

.bg-opacity-0 {
  background: none;
}

/*字对齐*/
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

/*透明度*/
.opacity-50 {
  opacity: 0.5;
}

.opacity-70 {
  opacity: 0.7;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.top-70 {}

.top-center {
  top: 50%;
  transform: translateY(-50%);
}

.left-center {
  left: 50%;
  transform: translateX(-50%);
}

.center-center {
  top: 50%;
  left: 50%;
  transform: translate(125%, -75%)
}

.left-136 {
  left: 1.36rem;
}

.right-136 {
  left: 1.36rem;
}


/*overflow*/
.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.z-index-10 {
  z-index: 10;
}

.z-index-20 {
  z-index: 20;
}

.z-index-30 {
  z-index: 30;
}

.cursor-pointer {
  cursor: pointer
}

.display-block {
  display: block;
}

/*对口样式*/
/*@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .full-height {
    min-height: 100vh !important;
  }
  .carModel .section2{padding-bottom: 1rem;}
  
}*/

/*carModel*/
.carModel {
  width: 100%;
  overflow-x: hidden;
}

/*section1*/
.carModel .section1 {
  height: 9.62rem;
}

.carModel .section1>div {
  margin-top: 0.72rem;
  position: relative;
}

/*section2*/
.carModel .section2 {
height: auto;
	padding:0px 0 50px 0;
	background-color: #fff;
	display: block;
	overflow: hidden;
}

.carModel .section2 .title {
  font-size: 2.12rem;
  top: 0.2rem;
}
.carModel .section2 .title img
{width:3.5rem}
.carModel .section2 .color {
  top: 6.58rem;
  height: 0.34rem;
  z-index: 10;
}

.carModel .section2 .color a {
  width: 0.24rem;
  height: 0.24rem;
  padding: 0.04rem;
  border: #FFFFFF 1px solid;
  border-radius: 50%;
}

.carModel .section2 .color a img {
  width: 100%;
  height: 100%;
}

.carModel .section2 .color a.on {
  border: #bebebe 1px solid;
}

.carModel .section2 .model {
 
}

.carModel .section2 .model span {
  margin-right: 0.12rem;
  font-size: .26rem;
  color: #313131;
  font-weight: bold;
}

.carModel .section2 .pic {
  width: 5.5rem;
  height: 3.8rem;
  /* top: 1.5rem;*/
}

.carModel .section2 .pic_con {
 
}

.carModel .section2 .price {
 top: 0;
  margin-top: 0.5rem;
}
.carModel .section2 .price  img{width:100%}
.carModel .section2 .btn, .carModel .section5_pop .btn {
  width: 1.9rem;
  height: 0.38rem;
}

.carModel .section2 .btn img, .carModel .section5_pop .btn img {
  height: 0.19rem;
  margin-right: 0.16rem;
}

.carModel .section2 .button-next .pc_version, .carModel .section2 .button-prev .pc_version {
  width: auto;
}

.carModel .section2 .swiper-button-next:after, .carModel .section2 .swiper-container-rtl .swiper-button-prev:after {
  font-size: 0.6rem;
  font-weight: 300;
}

.carModel .section2 .swiper-button-prev:after, .carModel .section2 .swiper-container-rtl .swiper-button-next:after {
  font-size: 0.6rem;
  font-weight: 300;
}

.carModel .section2 .btn_container {
  top: 8.7rem;
  height: 0.38rem;
  z-index: 10;
  left: calc(50% - 0.95rem);
}


.carModel .section3 {
  height: 9.56rem;
}

.carModel .section3 .btn-box ul {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: .4rem;
  transform: translateX(-50%);
  z-index: 10;
}

.carModel .section3 .btn-box ul li {
  cursor: pointer;
  width: 1.6rem;
  height: .4rem;
  line-height: .4rem;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: .16rem;
  color: #fff;
  text-align: center;
  margin: .11rem;
}

.carModel .section3 .btn-box ul li.on {
  background: #C30705;
}

.carModel .section3 .audio-btn {
  right: 5.36rem;
  bottom: 2.77rem;
  width: 1.6rem;
  height: 1.6rem;
}

.carModel .section3 .audio-btn .audio-icon-box {
  width: 0.3rem;
}

.carModel .section3 .audio-btn .audio-icon-box .audio-icon.active {
  animation: audio-icon-animation 1s linear infinite forwards;
}

.carModel .section3 .audio-btn .audio-icon-box .audio-icon.pause {
  animation-play-state: paused;
}

.carModel .section3 .message {
  position: absolute;
  right: 5.3rem;
  bottom: 2.3rem;
  z-index: 10;
}

@keyframes audio-icon-animation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/*section4*/
.carModel .section4 {
  padding-left: 1.38rem;
  height: auto;
}

.carModel .section4 .tips {
  margin-top: -.7rem;
}

.carModel .section4 .general_title {
  padding-top: 0.5rem;
}

.carModel .section4 .features {
  height: 7.4rem;
}

.carModel .section4 .swiper-slide, .carModel .section4 .box {
  /* width: 6.14rem; height: 7rem;*/
  width: 10rem;
  height: 6.5rem;
}

.carModel .section4 .swiper-slide {
  margin-right: 0.44rem;
}

.carModel .section4 .box .pic {
  /*height: 5.1rem;*/
  height: auto;
}

.carModel .section4 .box .title:before, .carModel .section4 .section4_pop .title:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.02rem;
  width: 0.6rem;
  background: #c30705;
}

.carModel .section4 .box .btn {
  margin-top: -0.3rem;
}

.carModel .section4 .box .btn img {
  width: 0.29rem;
}

/*section4弹窗*/
.carModel .section4 .section4_pop{
	position: fixed;
	left: 0;
	top: .72rem;
}
.carModel .section4 .section4_pop, .carModel .section5 .section5_pop {
  display: none;
}

.carModel .section4 .section4_pop .leftBox, .carModel .section5 .section5_pop .leftBox {
  width: 14.18rem;
  right: -100%;
  transition: all 0.5s;
}

.carModel .section4 .section4_pop .leftBox.on, .carModel .section5 .section5_pop .leftBox.on {
  right: 0;
  transition: all 0.5s;
}

.carModel .section4 .section4_pop .close, .carModel .section5 .section5_pop .close {
  right: 0.3rem;
  top: 0.3rem;
  width: 0.24rem;
  height: 0.18rem;
}

.carModel .section4 .section4_pop .close img, .carModel .section5 .section5_pop .close img {
  width: 100%;
}

.carModel .section4 .section4_pop .content {
  margin: 0.5rem 0.84rem 0.92rem 0.84rem;
}

.carModel .section4 .section4_pop .content li {
  display: none;
}
.carModel .section4 .section4_pop .content li .title{
  font-size: .23rem;
}

.carModel .section4 .section4_pop .content .word {
  height: 7.8rem;
}

.carModel .section4 .section4_pop .content .word img {
  margin-right: 0.5rem;
  width: 49%;
}

/*section5*/
.carModel .section5 {
  height: 7.9rem;
}

.carModel .section5 .title {
  padding-top: 1.52rem;
}

.carModel .section5 .number_con {
  width: 12.5rem;
  height: 1.94rem;
  margin: 0.68rem auto;
}

.carModel .section5 .number_con li {
  flex-direction: column;
  border-right: 1px solid #a19e9e;
  box-sizing: border-box;
  width: 25%;
}

.carModel .section5 .number_con li:last-child {
  border-right: none;
}

.carModel .section5 .number_con li .num {
  font-size: 0.5rem;
  font-family: "DINCOND-BOLDEXPERT,Arial";
}

.carModel .section5 .btn {
  width: 1.9rem;
  height: 0.38rem;
  margin: 0 auto;
}

.carModel .section5 .btn a {
  width: 1.9rem;
  height: 0.38rem;
}

.carModel .section5 .section5_pop .leftBox {
  width: 13.18rem;
}

.carModel .section5 .section5_pop .content {
  margin: 0.38rem 0.6rem 0 0.6rem;
}

.carModel .section5 .section5_pop .tip {
  margin: 0;
  margin-top: 0.3rem;
  /*width:9.36rem;*/
  height: 0.5rem;
  padding-bottom: 0.1rem;
}
.carModel .section5 .section5_pop .tip .swiper-scrollbar{
	bottom: 0;
}
.carModel .section5 .section5_pop .tip .swiper-slide {
  display: flex;
  width: auto;
  height: 100%;
}

.carModel .section5 .section5_pop .tip .swiper-slide a {
  padding: 0 0.4rem 0 0;
  color: #bbbbbb;
  width: auto;
  display: block;
}

.carModel .section5 .section5_pop .tip .swiper-slide a.on {
  color: #c30705;
}

.carModel .section5 .section5_pop .content .word li {
  /*width: 9.36rem;*/
  display: none;
  height: 5.52rem;
  padding-right: 0.2rem;
}

.carModel .section5 .section5_pop .content .word li>div {
  /*width: 9.36rem;*/
  height: 5.3rem;
}

.carModel .section5 .section5_pop .content .word li>div>div {
  min-height: 0.60rem;
  width: 48%;
  padding: 0.04rem 0;
}

.carModel .section5 .section5_pop .content .word li>div>div .r {
  width: 70%;
  text-align: right;
  font-size: .16rem;
}

.carModel .section5 .section5_pop .content .word .btn_container {
  top: inherit;
  bottom: 0rem;
  right: 1rem;
  width: auto;
  height: auto;
}

.carModel .section5 .section5_pop .content .word li .btn_c {
  width: 100%;
  height: 0.4rem;
  justify-content: flex-end;
}

/* .section6{ overflow: hidden;} */

/*section6*/
.carModel .section6 .swiper-pic {
  margin-left: 1.14rem;
  width: 18.04rem;
  margin-top: 0.4rem;
}

.carModel .section6 {
  width: 100%;
  height: 9.2rem;
  position: relative;
}

.carModel .section6 .title {
  padding-top: 0.58rem;
}

.carModel .section6 .swiper-pic .swiper-slide {
  /*width:11.54rem;height: 7.42rem;*/
  width: 10.8rem;
  height: 6.48rem;
}

.carModel .section6 .swiper-pic .swiper-slide>div {
  position: absolute;
  top: 0;
  left: 0;
  /*width:9.68rem; height: 6.22rem;*/
  width: 8.46rem;
  height: 5.44rem;
  transition: all 0.4s;
  overflow: hidden;
}

.carModel .section6 .swiper-pic .swiper-slide .pic_btn {
  width: 0.59rem;
  height: 0.59rem;
  position: absolute;
  bottom: 0.26rem;
  right: 0.34rem;
}

.carModel .section6 .swiper-pic .swiper-slide .pic_btn img {
  width: 100%;
}

.carModel .section6 .swiper-pic .swiper-slide-active>div {
  position: absolute;
  top: 0;
  left: initial;
  right: 0;
  /*width:11.54rem; height: 7.42rem; */
  width: 10.8rem;
  height: 6.48rem;
  transition: all 0.4s;
}

.carModel .section6 .swiper-pic .pic-pagination {
  position: absolute;
  text-align: left;
  bottom: 6%;
  margin-left: 68%;
  z-index: 90;
}

.carModel .section6 .swiper-pagination-bullet, .carModel .section7 .swiper-pagination .swiper-pagination-bullet {
  width: 0.36rem;
  height: 0.04rem;
  border-radius: 0;
}

.carModel .section6 .swiper-pagination-bullet-active, .carModel .section7 .swiper-pagination .swiper-pagination-bullet-active {
  width: 0.56rem;
  background: #c30705;
}

.carModel .section6 .video-box {
  position: relative;
  width: 100%;
  height: 0;
  /*padding-top: 64%;*/
  background: #000;
}

.carModel .section6 .video-box video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}

.carModel .section6 .video-box .btn_play {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  /*transform: translate(-50%, -50%);*/
  cursor: pointer;
}

.carModel .section6 .pic-next {
  position: absolute;
  top: 45%;
  right: 0.36rem;
  width: 0.6rem;
  height: 1.12rem;
  background: url(../images/next.png)no-repeat;
  background-size: 100% auto;
  z-index: 60;
  cursor: pointer;
}

.carModel .section6 .swiper-pic-small {
  position: absolute;
  right: .1rem;
  bottom: 1.05rem;
  width: 36%;
}

.carModel .section6 .swiper-pic-small .swiper-slide {
  cursor: pointer;
  width: 9%;
  margin-right: 1%;
}

.carModel .section6 .swiper-pic-small .swiper-slide:hover {
  width: 18%;
}

/* .carModel .section6 .swiper-pic-small .swiper-slide-thumb-active {
  width: 18%;
} */

.carModel .section6 .swiper-pic-small .swiper-wrapper {
  align-items: flex-end
}

.carModel .section6 .swiper-pic-small img {
  width: 100%;
}

.carModel .section7 {
  height: 6.04rem;
}

.carModel .section7 .title {
  padding-top: 0.82rem;
}

.carModel .section7 .car_type, .carModel .section7 .car_type_pc {
  width: 12.48rem;
  margin-top: 0.72rem;
  height: 3.02rem;
}

.carModel .section7 .car_type .swiper-slide, .carModel .section7 .car_type_pc .swiper-slide .con {
  width: 4.16rem;
}

.carModel .section7 .car_type_pc .swiper-slide .con {
  height: 2rem;
}

.carModel .section7 .car_type .swiper-slide .p, .carModel .section7 .car_type_pc .swiper-slide .con .p {
  width: 3.06rem;
}

.carModel .section7 .car_type .swiper-slide .word, .carModel .section7 .car_type_pc .swiper-slide .con .word {
  margin-top: 0.32rem;
}
/*.carModel .section_arrow{
  position: relative;
}*/
.carModel .section_arrow:after{
  content: '';
  display: block;
  width: 100%;
  height: .21rem;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  bottom: -.3rem;
}
.carModel .section_arrow.section_arrow_l:after{
  background-image: url(../images/section2_left.png);
}
.carModel .section_arrow.section_arrow_r:after{
  background-image: url(../images/section2_right.png);
}

@media (min-width: 900px) {
  .carModel .section2 .swiper-button-next:after, .carModel .section2 .swiper-container-rtl .swiper-button-prev:after {
    content: '';
  }

  .carModel .section2 .swiper-button-prev:after, .carModel .section2 .swiper-container-rtl .swiper-button-next:after {
    content: '';
  }

  .carModel .section2 .swiper-button-next, .carModel .section2 .swiper-container-rtl .swiper-button-prev {
    right: 1.36rem;
    width: 200px;
  }

  .carModel .section2 .swiper-button-prev, .carModel .section2 .swiper-container-rtl .swiper-button-next {
    left: 1.36rem;
    width: 200px;
  }

  .carModel .section2 .swiper-button-next.swiper-button-disabled, .carModel .section2 .swiper-button-prev.swiper-button-disabled {
    opacity: 0
  }
}

@media (max-width: 900px) {
	
	.carModel .section2 .button-next .pc_version, .carModel .section2 .button-prev .pc_version {
  width: auto;
  display: none;
}

  .height-50 {
    height: 0.88rem;
  }

  .leading-50 {
    line-height: 0.88rem;
  }

  .leading-34 {
    line-height: 0.48rem;
  }

  .carModel .section1 {
    height: 12.09rem;
  }

  .carModel .section1>div {
    margin-top: 1.2rem;
    position: relative;
  }

  .carModel .section2 {
    /*height: 13.55rem;*/
	padding:0px 0 20px 0
  }

  /*section2*/
  .carModel .section2 .title {
    font-size: 1.2rem;
    top: 0.4rem;
  }
.center-center {
  top: 50%;
  left: 50%;
  transform: translate(25%, -50%);
}
    .carModel .section2 .title img {
   width:3rem;
  }
  .carModel .section2 .color {
    top: 8.16rem;
  }

  .carModel .section2 .pic {
    width: 70%;
  }
.center-center {
  top: 50%;
  left: 55%;
}
  .carModel .section2 .model {
    top: 7.5rem;
  }

  .carModel .section2 .model span {
    margin-right: 0.2rem;
    font-size: .3rem;
    font-weight: bold;
  }

  .carModel .section2 .price {
    top: 8.4rem;
    font-size: 1rem;
  }

  .carModel .section2 .color a {
    width: 0.4rem;
    height: 0.4rem;
  }

  .carModel .section2 .btn, .carModel .section5_pop .btn_container .btn {
    width: 3.12rem;
    height: 0.64rem;
  }

  .carModel .section2 .btn img, .carModel .section5_pop .btn_container .btn img {
    height: 0.329rem;
    margin-right: 0.24rem;
  }

  .carModel .section2 .btn_container {
    top: 11.65rem;
    height: 0.64rem;
    left: calc(50% - 1.56rem);
  }

  .carModel .section2 .swiper-button-next, .carModel .section2 .swiper-container-rtl .swiper-button-prev {
    top: 5.37rem;
    width: 0.24rem;
  }

  .carModel .section2 .swiper-button-prev, .carModel .section2 .swiper-container-rtl .swiper-button-next {
    top: 5.37rem;
    width: 0.24rem;
  }


  .carModel .section3 {
    height: 14.38rem;
  }

  .carModel .section3 .audio-btn {
    right: 1rem;
    bottom: 2.36rem;
  }

  .carModel .section3 .message {
    right: 0.6rem;
    bottom: 1.8rem;
  }

  .carModel .section4 {
    padding-left: 0.3rem;
    height: auto;
  }

  .carModel .section4 .tips {
    margin-top: .1rem;
  }

  .carModel .section4 .general_title {
    padding-top: 1.14rem;
  }

  .carModel .section4 .con {
    height: 1.88rem;
  }

  .carModel .section4 .features {
    height: auto;
				padding-bottom:0.5rem
  }

  .carModel .section4 .swiper-slide, .carModel .section4 .box {
    width: 6.2rem;
    height: auto;
  }

  .carModel .section4 .swiper-slide {
    padding-right: 0.3rem;
  }

  .carModel .section4 .swiper-slide .btn {
    margin-top: 0.86rem;
  }
  
  .carModel .section4 .section4_pop{
		top: 1.2rem;
	}
	
	.carModel .section4 .section4_pop .close, .carModel .section5 .section5_pop .close {
	  width: 0.28rem;
	}

  .carModel .section4 .section4_pop .leftBox {
    width: 100%;
  }

  .carModel .section4 .section4_pop .content {
    margin: 0.34rem 0.3rem;
  }
	.carModel .section4 .section4_pop .content li .title{
	  font-size: .26rem;
	}
  .carModel .section4 .section4_pop .content .word {
    height: 12.6rem;
  }

  .carModel .section4 .section4_pop .content .word img {
    margin-right: 0;
    width: 100%;
  }

  .carModel .section5 {
    height: 14.5rem;
  }

  .carModel .section5 .title {
    padding-top: 0.9rem
  }

  .carModel .section5 .number_con {
    width: 7rem;
    margin-top: 1.2rem;
    height: 8rem;
  }

  .carModel .section5 .number_con li {
    width: 50%;
    height: 50%;
  }

  .carModel .section5 .number_con li:nth-child(even) {
    border-right: none;
  }

  .carModel .section5 .number_con li:nth-child(1), .carModel .section5 .number_con li:nth-child(2) {
    border-bottom: 1px solid #a19e9e;
  }

  .carModel .section5 .number_con li .num {
    font-size: 0.6rem;
  }

  .carModel .section5 .btn {
    width: 3.12rem;
    height: 0.64rem;
  }

  .carModel .section5 .btn a {
    width: 3.12rem;
    height: 0.64rem;
  }

  .carModel .section5 .section5_pop .leftBox {
    width: 100%;
  }

  .carModel .section5 .section5_pop .content {
    margin: 0.3rem 0.3rem 0 0.3rem
  }

  .carModel .section5 .section5_pop .content .word li {
    width: 100%;
    height: auto;
  }

  .carModel .section5 .section5_pop .content .word li>div {
    width: 100%;
    height: 10.6rem;
  }

  .carModel .section5 .section5_pop .content .word li>div>div {
    width: 98%;
    min-height: 0.8rem;
  }

  .carModel .section5 .section5_pop .content .word li>div>div .r {
    font-size: 0.26rem;
  }

  .carModel .section5 .section5_pop .tip {
    height: 0.88rem;
    width: 100%;
  }

  /*.carModel .section5 .section5_pop .content .word .btn_container{    bottom: inherit;  right: inherit; position: inherit;}*/
  .carModel .section5 .section5_pop .content .word li .btn_c {
    width: 100%;
    height: 0.4rem;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .carModel .section6 {
    height: 7.46rem;
  }

  .carModel .section6 .title {
    padding-top: 1.04rem;
  }

  .carModel .section6 .swiper-pic {
    margin-top: 0.48rem;
    margin-left: 0;
    width: 100%;
  }

  .carModel .section6 .swiper-pic .swiper-slide {
    width: 6.4rem;
    height: 4.12rem;
  }

  .carModel .section6 .swiper-pic .swiper-slide>div {
    width: 5.38rem;
    height: 3.46rem;
  }
  
  .carModel .section6 .swiper-pic .swiper-slide-active>div {
    width: 6.4rem;
    height: 4.12rem;
  }

  .carModel .section6 .pic-next {
    width: 0.48rem;
    height: 0.84rem;
    top: 50%;
    right: 0.3rem;
  }

  .carModel .section6 .swiper-pic-small {
    position: absolute;
    bottom: 0;
    right: 0;
    display: none;
  }

  .carModel .section7 {
    height: 7rem;
  }

  .carModel .section7 .title {
    padding-top: 0;
  }

  .carModel .section7 .car_type {
    margin-top: 0.8rem;
    height: 4.6rem;
  }

  .carModel .section7 .car_type .swiper-slide {
    width: 5.68rem;
  }

  .carModel .section7 .car_type .swiper-slide .p {
    width: 100%;
  }

  .carModel .section7 .car_type .swiper-slide .word {
    margin-top: 0.54rem;
  }

  /*.section7 .car_type_pc{margin-top:0.8rem; height: 4.6rem;}
, .carModel .section7 .car_type_pc .swiper-slide .con*/

  .carModel .section3 .btn-box ul {
    flex-wrap: wrap;
    width: 70%;
    justify-content: space-between;
    bottom: 1rem;
  }

  .carModel .section3 .btn-box ul li {
    width: 45%;
    height: .6rem;
    line-height: .6rem;
    font-size: .26rem;
  }
}