@charset "UTF-8";
.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 1.125rem;
  clear: both;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.page dt,
.page dd {
  vertical-align: baseline;
  display: inline-block;
  text-align: center;
}
.page dt a,
.page dd a {
  display: block;
  height: 30px;
  line-height: 30px;
  text-decoration: none;
  color: black;
}
.page dd {
  width: 5.7%;
  position: relative;
  font-weight: 500;
}
.page dd::before {
  content: "";
  width: 31px;
  height: 31px;
  background-color: #44b23a;
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
@media (min-width: 768px) {
  .page dd:hover a {
    color: white;
  }
  .page dd:hover::before {
    opacity: 1;
  }
}
.page dd.active a {
  color: white;
}
.page dd.active::before {
  opacity: 1;
}
.page dt.rtbn a,
.page dt.ltbn a {
  width: 40px;
  height: 40px;
  margin: 0 auto;
}
.page .nopage {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 0.3;
  pointer-events: none;
}
.page dt.ltbn a {
  margin-right: 10px;
  background: url(../images/page_prev.png) center/13px no-repeat;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
@media (min-width: 768px) {
  .page dt.ltbn a:hover {
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
    opacity: 0.3;
  }
}
.page dt.rtbn a {
  margin-left: 10px;
  background: url(../images/page_next.png) center/13px no-repeat;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
@media (min-width: 768px) {
  .page dt.rtbn a:hover {
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
    opacity: 0.3;
  }
}
@media (max-width: 991px) {
  .page dd {
    width: 12%;
  }
}
@media (max-width: 767px) {
  .page {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.list-section {
  margin-top: 80px;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .list-section {
    margin-top: 45px;
    margin-bottom: 50px;
  }
}
.list-section ul {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .list-section ul {
    margin-bottom: 45px;
  }
}
.list-section li {
  -webkit-box-shadow: 0 0 10.5px 2.5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10.5px 2.5px rgba(0, 0, 0, 0.1);
  position: relative;
}
.list-section li:not(:last-child) {
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .list-section li:not(:last-child) {
    margin-bottom: 35px;
  }
}
.list-section li::after, .list-section li::before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  pointer-events: none;
}
.list-section li:before {
  border-left: 1px solid #44b23a;
  border-right: 1px solid #44b23a;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
.list-section li:after {
  border-top: 1px solid #44b23a;
  border-bottom: 1px solid #44b23a;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.list-section a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .list-section a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.list-section .product__image {
  min-width: 34%;
  min-height: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
}
@media (max-width: 991px) {
  .list-section .product__image {
    min-width: 45%;
  }
}
@media (max-width: 767px) {
  .list-section .product__image {
    width: 100%;
    min-height: 0%;
    padding-bottom: 78%;
  }
}
.list-section .product__image::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #44b23a;
  position: absolute;
  mix-blend-mode: multiply;
  opacity: 0;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  pointer-events: none;
}
.list-section .product__info {
  min-width: 66%;
  padding: 50px 50px 25px;
}
@media (max-width: 991px) {
  .list-section .product__info {
    min-width: 55%;
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .list-section .product__info {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 20px;
  }
}
.list-section .product__name {
  font-weight: 700;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .list-section .product__name {
    margin-bottom: 6px;
  }
}
.list-section .product__id {
  color: #44b23a;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #cdcdcd;
}
@media (max-width: 991px) {
  .list-section .product__id {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
.list-section .product__describtion {
  line-height: 1.77;
}
@media (min-width: 992px) {
  .list-section .product__describtion {
    max-height: 5.31em;
    line-height: 1.77;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* 第幾行要顯示點點點 */
    -webkit-box-orient: vertical;
    margin-bottom: 46px;
  }
}
@media (max-width: 991px) {
  .list-section .product__describtion {
    margin-bottom: 35px;
  }
}
.list-section .product__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  padding-right: 18px;
  color: black;
  font-weight: 500;
  background: url(../images/page_next.png) 100%/7px no-repeat;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
@media (min-width: 768px) {
  .list-section li:hover {
    -webkit-box-shadow: 0 0 5px 0px #e2e2e2;
            box-shadow: 0 0 5px 0px #e2e2e2;
  }
  .list-section li:hover::before, .list-section li:hover::after {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  .list-section li:hover .product__image::before {
    opacity: 1;
  }
  .list-section li:hover .product__btn {
    color: #44b23a;
  }
}