.detailBox{
  padding: 20px 0;
}
.detailBox .imgBox{
  width: 40%;
  float: left;
}
.detailBox .mainImg{
  height: 25vw;
  border: 1px solid #dddddd;
  margin-bottom: 20px;
}
.detailBox .mainImg img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detailBox .imgList{
  display: flex;
  justify-content: space-between;
}
.detailBox .imgList .imgItem{
  width: 19%;
  height: 5vw;
  border: 1px solid #dddddd;
  box-sizing: border-box;
}
.detailBox .imgList .imgItem.active{
  border-color: #d81e06;
}
.detailBox .imgList .imgItem img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.detailBox .infoBox{
  width: 60%;
  box-sizing: border-box;
  float: right;
  padding: 10px 0 0 40px;
}
.detailBox .infoBox .title{
  font-size: 20px;
  margin-bottom: 10px;
}
.detailBox .infoBox .info{
  line-height: 30px;
}
.detailBox .btnBox{
  padding-top: 20px;
}
.detailBox .btnBox button{
  background-color: #d81e06;
  color: #ffffff;
  width: 200px;
  height: 40px;
  border: none;
  box-shadow: none;
  outline: none;
  font-size: 20px;
  line-height: 32px;
  border-radius: 6px;
}
.detailBox .btnBox button img{
  width: 16px;
  margin-right: 5px;
}

.detailInfo{
  border: 1px solid #dddddd;
  margin-bottom: 20px;
  padding: 20px;
  font-size: 16px;
}
.detailInfo p{
  text-indent: 2em;
  margin-bottom: 1em;
}
.detailInfo img{
  width: 100%;
}

@media screen and (max-width: 800px) {
  .detailBox .imgBox {
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }
  .detailBox .mainImg{
    height: 80vw;
  }
  .detailBox .imgList .imgItem{
    height: 16vw;
  }
  .detailBox .infoBox{
    float: none;
    width: 100%;
    padding: 10px;
  }
}