@charset "UTF-8";
/*
    自定義在最下面
*/
/* Font Weight */
/* Width */
/* Height */
/* Display */
/* Margin */
/* Padding */
/* Cursor */
/* Background Color */
/* Color */
/* Text Limit */
/* 毛玻璃 */
/******************  自定義  ******************/
/* Color */
/* Background Color */
/* Font Size */
/* Heading Desktop */
/* Heading Mobile */
/* Extra Large */
/* Large */
/* Medium */
/* Regular */
/* Small */
/* Small */
/* Button */
.banner-health {
  background: url(/images/product/img-01.jpg) no-repeat center top;
}
@media (max-width: 768px) {
  .banner-health {
    background: url(/images/product/img-02.jpg) no-repeat center top;
  }
}

.product-wrap {
  width: 100%;
  display: flex;
  gap: var(--spacing-16);
}
.product-wrap .left {
  width: 256px;
}
.product-wrap .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-16);
}
@media (max-width: 768px) {
  .product-wrap .right {
    overflow: scroll;
  }
  .product-wrap .left {
    display: none;
  }
}

.type-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-16);
  padding: var(--spacing-24);
  border: 1px solid var(--nc-200);
  border-radius: var(--spacing-8);
}
.type-wrap.mobile {
  display: none;
}
.type-wrap .title {
  font-size: var(--text-hd-h6) !important;
  line-height: var(--text-hd-h6--line-height);
  font-weight: bold;
  color: var(--nc-900) !important;
}
.type-wrap .content-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-16);
}
.type-wrap .content-wrap .content {
  font-size: var(--text-base) !important;
  line-height: var(--text-base--line-height);
  color: var(--nc-500) !important;
  cursor: pointer;
}
.type-wrap .content-wrap .content:hover {
  color: var(--pc-500) !important;
}
.type-wrap .content-wrap .content.active {
  font-size: var(--text-base) !important;
  line-height: var(--text-base--line-height);
  font-weight: bold;
  color: var(--pc-500) !important;
}
@media (max-width: 768px) {
  .type-wrap {
    border: none;
    padding: 0;
  }
  .type-wrap.desktop {
    display: none;
  }
  .type-wrap.mobile {
    display: flex;
  }
  .type-wrap .content-wrap {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: scroll;
  }
  .type-wrap .content-wrap .content {
    width: auto;
    flex-shrink: 0;
    padding: var(--spacing-8) 0;
  }
}

.card {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-16);
  cursor: pointer;
}
.card .img {
  width: 220px;
  height: 220px;
  border-radius: var(--spacing-8);
  overflow: auto;
  background-size: contain !important;
  background-color: var(--pc-100) !important;
}
.card .text-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-8);
}
.card .text-wrap .title {
  font-size: var(--text-hm-h5) !important;
  line-height: var(--text-hm-h5--line-height);
  font-weight: bold;
  color: var(--pc-800) !important;
  display: -webkit-box;
  word-break: break-all;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card .text-wrap .price-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}
.card .text-wrap .price-wrap .original-price {
  font-size: var(--text-base) !important;
  line-height: var(--text-base--line-height);
  color: var(--nc-500) !important;
  text-decoration: line-through;
}
.card .text-wrap .price-wrap .special-price {
  font-size: var(--text-md) !important;
  line-height: var(--text-md--line-height);
  font-weight: bold;
  color: var(--pc-500) !important;
}
@media (max-width: 768px) {
  .card {
    gap: var(--spacing-8);
  }
  .card .img {
    width: 260px;
    height: 260px;
  }
}
@media (max-width: 576px) {
  .card .img {
    width: 165px;
    height: 165px;
  }
}/*# sourceMappingURL=product-type.css.map */