
.car_list {
 display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 19px;
    box-shadow: 0px 10px 27px rgba(0,0,0,0.5);
}
/*第一个子元素样式*/
.car_list .car_content:first-child{
   margin-top:90px;
}
.car_content {
    width: 100%;
    height: 325px;
    background-color: white;
    /* box-shadow: 1px 1px 5px #ccc; */
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    /* margin-top: 10px; */
    /* padding: 0 20px; */
    /* padding-left: 80px; */
    border-bottom: 5px solid #f2f2f2;
}
.car_img{
      width: 285px;
    height: 247px;
    overflow: hidden;
    border-radius: 10px;
}
.car_list_item_right{
  width: 91%;
    height: 165px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-left: 50px;
}


/*底部导航*/
.car_list .car_content:last-child{
       margin-bottom: 0px;
}
.nav_content{
  display:flex;
  width:100%;
  height:200px;
  justify-content:space-between;
  position:fixed;
  bottom:0px;
  background:#e5e5e5;
  opacity:0.9;
}
.nav_bar{
  width:50%;
  height:200px;
  font-size:45px;
  color:#fff;
  line-height:200px;
  text-align:center;
}
.nav_bar>a{
  font-size:45px;
  color:#333;
}
/*select样式*/
select {
/*清除select默认样式*/
appearance:none;
-moz-appearance:none;
-webkit-appearance:none;
-ms-appearance:none;

border:1px solid #CCC;
border-radius:8px;
width:33%;

/*自定义箭头的样式，记得背景一定要加 白色或其他
background:url("../img/select.png") no-repeat scroll right center #fff;*/

/*ie下,原默认的箭头样式还是会显示，所以这里把自定义的样式给去除了*/

color:#666;
padding:20px;
outline:none;
}
.select_box{
  width:100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position:fixed;
  height:90px;
  cursor: pointer;
}
.select_box_content{
  position:relative;
  box-sizing:border-box;
  display:inline-block;
  max-width:100%;
  width:33%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  word-wrap:normal;
  height:90px;
}
.select_box_options{
  font-size:20px;
}

.van-dropdown-menu{
  height:80px !important;

}

/*选项框的内容fixed
.dropdown_menu_content{
  position:fixed !important;
}*/
/*菜单选项 品牌、型号的字体大小*/
.van-dropdown-menu__title{
  padding:0 15px !important;
  font-size:45px !important;
  line-height:45px !important;

}
.van-dropdown-menu__title--active{

text-decoration:underline !important;
}
.van-dropdown-menu__title::after{
  right:-15px !important;
  margin-top:-13px !important;
  border:8px solid !important;
      border-top-color: transparent !important;
    border-top-style: solid !important;
    border-top-width: 8px !important;
    border-right-color: transparent !important;
    border-right-style: solid !important;
    border-right-width: 8px !important;
    border-bottom-color: currentcolor !important;
    border-bottom-style: solid !important;
    border-bottom-width: 8px !important;
    border-left-color: currentcolor !important;
    border-left-style: solid !important;
    border-left-width: 8px !important;
    border-image-source: initial !important;
    border-image-slice: initial !important;
    border-image-width: initial !important;
    border-image-outset: initial !important;
    border-image-repeat: initial !important;
}
.van-popup{
  max-height:900px !important;
}
.van-cell{
  font-size:45px !important;
  line-height:75px !important;
  border-bottom:1px solid #333333b5 !important;
  padding:15px 16px !important;
}
.dropdown_menu_content{
  width:100%;
  position:fixed !important;
  display:flex;
  justify-content:space-around !important;
}



