@charset "UTF-8";
.title.bxsh {
  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;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 80px;
  /* 熱門標題 */
  -webkit-box-shadow: inset -10px 10px 0px #7ACBDD;
          box-shadow: inset -10px 10px 0px #7ACBDD;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.bxsh h3.svg-star {
  padding: 10px 0px 10px 15px;
}
.bxsh h3.svg-star + span {
  margin-right: -8px;
}
.bxsh h3.svg-star::before {
  content: url(../images/svg/svg-star.svg);
  width: 60px;
  height: 57px;
  background-color: #fff;
  position: relative;
  right: 5px;
  top: 5px;
}

.about-product .product-list {
  margin-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.about-product .txt {
  background-color: rgb(205, 235, 242);
}
.about-product .txt .about {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.about-product ul {
  list-style-type: square;
}

.product-item {
  background-color: rgba(255, 255, 255, 0);
}
.product-item .item-img {
  min-width: 400px;
  max-height: 400px;
  aspect-ratio: 1.3/1;
}
.product-item table {
  background-color: transparent;
}
.product-item table td:first-of-type {
  background-color: rgb(160, 227, 242);
}

.table-wrapper .fixed-column {
  max-width: 300px;
}

.card:has(.table-wrapper) {
  background-color: transparent;
  overflow: hidden;
  border: 0;
}

.table-wrapper .tr:hover .fixed-column {
  background-color: red !important;
}

.table-wrapper {
  overflow-x: auto;
  max-width: 100%;
}
.table-wrapper table {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
}
.table-wrapper thead th {
  position: sticky;
  left: 0;
  background-color: #fff;
  z-index: 1;
}
.table-wrapper tbody td {
  padding: 8px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}
.table-wrapper .fixed-column {
  position: sticky;
  left: 0;
  z-index: 2;
  background-color: rgb(122, 203, 221);
}