.main .section {
  background-color: #fff;
}
.main .section .toolbar .secTitleImg {
  width: 80px;
  margin: 15px;
}
.main .section .toolbar .secTitleImg img {
  width: 100%;
}

.content {
  position: relative;
}
.content .swiperArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
.content .swiperArea .swiper {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.content .swiperArea .swiper.thumb {
  width: 120px;
  height: 400px;
  margin-right: 15px;
}
.content .swiperArea .swiper.thumb .swiper-slide {
  border: 2px #235093 solid;
  border-radius: 5px;
  padding: 5px;
  background-color: #ddd;
  cursor: pointer;
}
.content .swiperArea .swiper.thumb .swiper-slide .imgCnt {
  width: initial;
  height: 100%;
}
.content .swiperArea .swiper.thumb .swiper-prevBtn, .content .swiperArea .swiper.thumb .swiper-nextBtn {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  text-align: center;
  padding: 3px;
  font-size: 25px;
  color: #fff;
  background-color: rgba(102, 102, 102, 0.8);
  z-index: 100;
}
.content .swiperArea .swiper.thumb .swiper-prevBtn {
  top: 0px;
}
.content .swiperArea .swiper.thumb .swiper-nextBtn {
  bottom: 0px;
}
.content .swiperArea .swiper.photoImg {
  width: 400px;
  height: 400px;
}
.content .swiperArea .swiper.photoImg .imgCnt {
  height: 100%;
}
.content .priceArea {
  margin-bottom: 30px;
}
.content .priceArea .title {
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px #aaa solid;
}
.content .priceArea ul {
  padding: 0;
  margin-bottom: 15px;
}
.content .priceArea .pClip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
.content .priceArea .pClip .salePrice {
  font-size: 20px;
  font-weight: bold;
  color: #d12525;
}
.content .priceArea .pClip .originPrice {
  margin: 4px 0 0 10px;
  color: #aaa;
  text-decoration-line: line-through;
}
.content .priceArea .pClip .originPrice span {
  color: #aaa;
  text-decoration-line: line-through;
}
.content .priceArea .pClip .left {
  font-weight: bold;
  margin-right: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.content .priceArea .pClip .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
}
.content .priceArea .pClip .right .pBtn {
  border: 1px #235093 solid;
  padding: 4px 12px;
  margin-right: 5px;
  margin-bottom: 5px;
  cursor: pointer;
}
.content .priceArea .pClip .right .pBtn:hover, .content .priceArea .pClip .right .pBtn.active {
  color: #fff;
  background-color: #40669e;
}
.content .priceArea .pClip .faviBtn, .content .priceArea .pClip .cartBtn {
  color: #fff;
  padding: 5px 20px;
  border-radius: 30px;
}
.content .priceArea .pClip .faviBtn {
  background-color: #ed9bb1;
}
.content .priceArea .pClip .cartBtn {
  background-color: #186dae;
}
.content .editArea {
  width: 100%;
  min-height: 500px;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  background-color: #eee;
}
.content .prodArea .card {
  border: none;
  background-color: transparent;
  margin-bottom: 30px;
}
.content .prodArea .card.hotTip::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  top: 2px;
  right: 2px;
  background: url("../img/icon/hotTip.png") no-repeat;
  background-size: contain;
  z-index: 100;
}
.content .prodArea .card.newTip::after {
  position: absolute;
  content: "";
  width: 88px;
  height: 88px;
  top: 2px;
  right: 2px;
  background: url("../img/icon/newTip.png") no-repeat;
  background-size: contain;
  z-index: 100;
}
.content .prodArea .card .faviBtn {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 25px;
  height: 25px;
  top: 10px;
  left: 10px;
  z-index: 100;
}
.content .prodArea .card .faviBtn .fa-heart:nth-child(1) {
  display: block;
}
.content .prodArea .card .faviBtn .fa-heart:nth-child(2) {
  display: none;
}
.content .prodArea .card .faviBtn.joined {
  color: #d12525;
}
.content .prodArea .card .faviBtn.joined .fa-heart:nth-child(1) {
  display: none;
}
.content .prodArea .card .faviBtn.joined .fa-heart:nth-child(2) {
  display: block;
}
.content .prodArea .card .card-body {
  padding: 8px;
  border-radius: 5px;
  border: 2px #235093 solid;
  background-color: #ddd;
}
.content .prodArea .card .card-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: transparent;
  padding: 10px 0;
}
.content .prodArea .card .card-footer .title {
  font-size: 24px;
  font-weight: bold;
}
.content .prodArea .card .card-footer .normalPrice {
  font-size: 20px;
  font-weight: bold;
  color: #235093;
}
.content .prodArea .card .card-footer .salePrice {
  font-size: 20px;
  font-weight: bold;
  color: #d12525;
}
.content .prodArea .card .card-footer .originPrice, .content .prodArea .card .card-footer .originPrice span {
  color: #aaa;
  text-decoration-line: line-through;
}
.content .prodArea .card .card-footer .goCartBtn {
  padding-right: 0px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.content .prodArea .card .card-footer .goCartBtn span {
  display: none;
}
.content .prodArea .card .card-footer .goCartBtn:hover {
  padding-right: 10px;
}

/* ==============================================  media  ============================================ */
@media (max-width: 992px) {
  .content .swiperArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .content .swiperArea .swiper {
    position: relative;
    width: 100%;
    margin-left: initial;
  }
  .content .swiperArea .swiper.thumb {
    width: 100%;
    height: initial;
    aspect-ratio: 1/0.23;
    margin-right: initial;
  }
  .content .swiperArea .swiper.thumb .swiper-prevBtn, .content .swiperArea .swiper.thumb .swiper-nextBtn {
    top: 0;
    width: initial;
    height: 100%;
    padding: 2px;
    font-size: 20px;
  }
  .content .swiperArea .swiper.thumb .swiper-prevBtn svg, .content .swiperArea .swiper.thumb .swiper-nextBtn svg {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .content .swiperArea .swiper.thumb .swiper-prevBtn {
    left: 0px;
  }
  .content .swiperArea .swiper.thumb .swiper-nextBtn {
    bottom: initial;
    right: 0px;
  }
  .content .swiperArea .swiper.photoImg {
    width: 100%;
    height: initial;
  }
}
@media (max-width: 768px) {
  .content .swiperArea .swiper.thumb {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .content .swiperArea .swiper.thumb {
    aspect-ratio: 1/0.25;
  }
  .content .prodArea .card {
    margin-bottom: 20px;
  }
  .content .prodArea .card.hotTip::after {
    width: 60px;
    height: 60px;
  }
  .content .prodArea .card.newTip::after {
    width: 68px;
    height: 68px;
  }
  .content .prodArea .card .card-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 5px 0;
  }
  .content .prodArea .card .card-footer .title {
    font-size: 18px;
  }
  .content .prodArea .card .card-footer .normalPrice {
    font-size: 16px;
  }
  .content .prodArea .card .card-footer .salePrice, .content .prodArea .card .card-footer .originPrice {
    font-size: 14px;
  }
  .content .prodArea .card .card-footer .goCartBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
    background-color: #0d6fb8;
    padding: 5px 0px 7px;
    border-radius: 5px;
    margin-top: 8px;
  }
  .content .prodArea .card .card-footer .goCartBtn img {
    width: 30px;
  }
  .content .prodArea .card .card-footer .goCartBtn span {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    margin: 2px 5px 0;
  }
  .content .prodArea .card .card-footer .goCartBtn:hover {
    padding: 5px 0px 7px;
    border-radius: 20px;
  }
}