/* CSS Document */
.shareBox {
  float: right;
}

.carListArea {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.carItem {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.carItem .carImg {
  flex: 0 0 50%;
  padding: 10px;
}

.carItem .carImg img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.carItem .carTxt {
  flex: 0 0 50%;
  padding: 10px;
}

.carItem .carTxt h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #333;
}

.carItem .carTxt p {
  font-size: 1.3em;
  color: #666;
  line-height: 1.7;
}

/* 左圖右文 */
.rowLeft {
  flex-direction: row;
}

/* 右圖左文 */
.rowRight {
  flex-direction: row-reverse;
}

/* RWD */
@media screen and (max-width: 1180px) {
  .carItem {
    flex-direction: column !important;
    text-align: center;
  }

  .carItem .carImg,
  .carItem .carTxt {
    flex: 0 0 100%;
    padding: 10px 0;
  }
}
