@import "../../var";
/*car-body-type-list:start*/
.car-body-type-list{
  padding-top: 20px;
  .container{
      padding-left: 0;
  }
  .car-body-type-card{
      padding: 5px 20px;
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
      height: 158px;
      margin-top: 17px;
      position: relative;
      opacity: 0.5;
      .car-body-type-img{
          height: 90px;
          margin-top: 15px;
      }
      .car-body-type-check{
          position: absolute;
          right: 10px;
          bottom: 10px;
          display: none;
      }
      &.active{
          opacity: 1;
          .car-body-type-check{
              display: block;
          }
      }
      &:first-child{
          margin-top: 0;
      }
  }
}
/*car-body-type-list:end*/