/* card component ---start */
.c-card {
  margin-bottom: 30px;
  border-radius: 2px;
  border: solid 1px #ddd;
}

.c-card:hover {
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.15);
  border: solid 1px #ffad4f;
}

.c-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-card__wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.c-card__img {
  margin: 0 0 10px;
  object-fit: contain;
  border-radius: 2px;
  max-width: 100%;
}

.c-card__content {
  padding: 24px 24px 32px 24px;
  width: 100%;
}

.c-card__tag {
  color: #888;
  margin-bottom: 8px;
}

.c-card__title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}

.c-card__price {
  font-size: 36px;
  line-height: 36px;
  font-weight: bold;
  display: inline-block;
}

.c-card__price:first-letter {
  font-size: 18px;
  line-height: 18px;
}

.c-card__price--discount {
  color: #ee5151;
}

.c-card__deleted-price {
  font-size: 18px;
  line-height: 18px;
  padding: 0 6px 0 0;
  color: #333;
  text-decoration: line-through;
}

.c-card__btns {
  width: 100%;
  display: flex;
}

.c-card__btn-heart {
  height: 48px;
  line-height: 48px;
  vertical-align: middle;
  text-align: center;
  background-color: #222;
  color: white;
  width: 48px;
  font-size: 20px;
}

.c-card__btn-solid-heart {
  height: 48px;
  line-height: 48px;
  vertical-align: middle;
  text-align: center;
  background-color: #222;
  color: #ffad4f;
  width: 48px;
}

.c-card__btn-cart {
  height: 48px;
  line-height: 48px;
  vertical-align: middle;
  text-align: center;
  background-color: #ffad4f;
  width: 100%;
}

.c-card__discount-tag-bg {
  display: inline-block;
  width: 76px;
  height: 34px;
  font-size: 20px;
  line-height: 34px;
  margin-left: 12px;
  color: white;
  border-radius: 2px;
  background: #ee5151;
  text-align: center;
}

@media (max-width: 1200px) {
  .c-card__tag {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .c-card__title {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .c-card__price {
    font-size: 18px;
    line-height: 18px;
  }

  .c-card__deleted-price {
    font-size: 16px;
    line-height: 16px;
  }
}

/* card component ---end */

/* breadcrumb ---start */

.breadcrumb-nav__link {
  display: inline-flex;
  padding: 24px 12px;
}

.breadcrumb-nav__item + .breadcrumb-nav__item::before {
  content: "/";
}

.breadcrumb-nav__item:first-child::before {
  content: "";
}

.breadcrumb-nav__link {
  text-decoration: none;
  color: #111;
}

.breadcrumb-nav__link:hover {
  color: #ffad4f;
  text-decoration: none;
}

/* breadcrumb ---end */

/* 輪播按鈕 */
.c-slide {
  position: relative;
}

.c-slide-btn {
  width: 48px;
  height: 120px;
  line-height: 120px;
  vertical-align: middle;
  text-align: center;
  border-radius: 2px;
  background-color: #111;
  color: white;
  position: absolute;
  font-size: 28px;
}

.c-slide-btn--disable {
  background: rgba(17, 17, 17, 0.2);
}

.c-slide-btn--prev {
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translate(-48px, -50%);
}

.c-slide-btn--next {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translate(48px, -50%);
}

@media (max-width: 1200px) {
  .c-slide-btn {
    display: none;
  }
}

/* 輪播按鈕 ---end */
