
.product-detail-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 5rem;
  padding-bottom: 3rem;
  border-bottom: .125rem solid rgb(233, 233, 233);
}

.product-detail-img {
  width: 48%;
  border: .0625rem solid rgb(233, 233, 233);
}

.product-detail-img-box {
  width: 100%;
  height: 30rem;
}

.product-detail-img-box > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-detail-img-list {
  border-top: .0625rem solid rgb(233, 233, 233);
}

.detailSwiper {
  height: 7.5rem;
}

.product-detail-list-item-img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-right: .0625rem solid rgb(200, 200, 200);
}

.product-detail-list-item-img-active {
  background-color: rgb(97, 171, 228);
}

.product-detail-list-item-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper-button-next, .swiper-button-prev {
  color: rgb(253, 115, 32);
}

.product-detail-text {
  width: 48%;
}

.product-detail-title {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "SourceHanSansSC";
  color: #444;
}

.product-detail-line {
  background-color: rgb(253, 115, 32);
  width: 1.625rem;
  height: .25rem;
  margin-bottom: 1.25rem;
  margin-top: 1.75rem;
}

.product-detail-desc {
  font-size: 1rem;
  font-family: "SourceHanSansSC";
  color: rgb(120, 120, 120);
}

.product-detail-content {
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 5rem;
  padding-bottom: 3rem;
}

@media screen and (max-width: 1300px) {
  .product-detail-title {
    font-size: 3.5rem;
  }
  
  .product-detail-desc {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 996px) {
  .product-detail-container {
    flex-wrap: wrap;
  }
  
  .product-detail-img {
    width: 100%;
  }

  .product-detail-img-box {
    height: 50rem;
  }

  .detailSwiper {
    height: 12.5rem;
  }

  .product-detail-text {
    width: 100%;
  }
}

