.top-menu-ul {
  position: relative;
}
.top-menu-ul::before {
  position: absolute;
  content: "";
  left: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 80px;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(hsla(0deg, 0%, 100%, 0)), to(#fff));
  background: linear-gradient(270deg, hsla(0deg, 0%, 100%, 0), #fff);
  z-index: 5;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  pointer-events: none;
}
.top-menu-ul::after {
  position: absolute;
  content: "";
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 80px;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(hsla(0deg, 0%, 100%, 0)), to(#fff));
  background: linear-gradient(90deg, hsla(0deg, 0%, 100%, 0), #fff);
  z-index: 5;
  pointer-events: none;
}
.top-menu-ul.mleft::before {
  opacity: 0;
}
.top-menu-ul.mleft::after {
  opacity: 1;
}
.top-menu-ul.mright::before {
  opacity: 1;
}
.top-menu-ul.mright::after {
  opacity: 0;
}
.top-menu-ul .item_Menu {
  padding: 0 50px;
}
.top-menu-ul .item_menu_Box {
  text-align: left;
  position: relative;
  margin: 0 auto;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.top-menu-ul .item_menu_Box::-webkit-scrollbar {
  display: none;
}
.top-menu-ul ul.slides {
  white-space: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.top-menu-ul li {
  position: relative;
  display: inline-block;
}
.top-menu-ul li:not(:last-child) {
  margin-right: 10px;
}
.top-menu-ul li.active a {
  background-color: #ffb500;
}
@media (min-width: 768px) {
  .top-menu-ul li:hover a {
    background-color: #ffb500;
  }
}
.top-menu-ul li a {
  position: relative;
  display: block;
  padding: 12px 20px;
  min-width: 104px;
  text-align: center;
}

.open_flexslider .flex-direction-nav {
  display: block;
}

.flex-direction-nav {
  display: none;
}
.flex-direction-nav a {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}
.flex-direction-nav a.flex-prev {
  left: 0px;
  background: url(../images/page_prev.png) center/15px no-repeat;
}
@media (min-width: 768px) {
  .flex-direction-nav a.flex-prev:hover {
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
    opacity: 0.8;
  }
}
.flex-direction-nav a.flex-next {
  right: -10px;
  background: url(../images/page_next.png) center/15px no-repeat;
}
@media (min-width: 768px) {
  .flex-direction-nav a.flex-next:hover {
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
    opacity: 0.8;
  }
}

@media (max-width: 767px) {
  .top-menu-ul::before {
    left: 0px;
  }
  .top-menu-ul::after {
    right: 0px;
  }
  .top-menu-ul .item_Menu {
    padding: 0;
  }

  .flex-direction-nav {
    display: none !important;
  }
}
.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: #ffb500;
  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;
  }
}

.topmenu-section {
  margin-top: 40px;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .topmenu-section {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.content-section {
  margin-bottom: 107px;
}
@media (max-width: 767px) {
  .content-section {
    margin-bottom: 50px;
  }
}
.content-section .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.content-section .sidemenu {
  width: 12%;
  font-size: 1.125rem;
}
@media (max-width: 991px) {
  .content-section .sidemenu {
    width: 20%;
  }
}
@media (max-width: 767px) {
  .content-section .sidemenu {
    width: 100%;
  }
}
.content-section .sidemenu__wrap {
  padding-bottom: 16px;
  margin-bottom: 14px;
}
.content-section .sidemenu__wrap:not(:last-child) {
  border-bottom: 1px solid #818181;
}
.content-section .sidemenu__wrap.active {
  border-bottom: 1px solid #e57701;
}
.content-section .sidemenu__wrap.active .sidemenu__main {
  color: #e57701;
}
.content-section .sidemenu__wrap.active .sidemenu__main::before {
  background-color: #e57701;
}
.content-section .sidemenu__wrap.active .sidemenu__sub {
  display: block;
}
.content-section .sidemenu__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.content-section .sidemenu__main::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: black;
  border-radius: 50%;
  display: inline-block;
  margin-right: 14px;
}
.content-section .sidemenu__sub {
  margin-top: 14px;
  display: none;
}
.content-section .sidemenu__sub li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #949494;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.content-section .sidemenu__sub li:not(:last-child) {
  margin-bottom: 10px;
}
.content-section .sidemenu__sub li::before {
  content: "";
  width: 14px;
  height: 1px;
  background-color: black;
  display: inline-block;
  margin-right: 10px;
  opacity: 0;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
@media (min-width: 768px) {
  .content-section .sidemenu__sub li:hover {
    color: black;
  }
  .content-section .sidemenu__sub li:hover::before {
    opacity: 1;
  }
}
.content-section .sidemenu__sub li.active {
  color: black;
}
.content-section .sidemenu__sub li.active::before {
  opacity: 1;
}
.content-section .sidemenu.mo .main {
  position: relative;
}
.content-section .sidemenu.mo .main::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #e57701;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.content-section .sidemenu.mo .sub {
  position: relative;
  margin-top: 15px;
}
.content-section .sidemenu.mo .sub::before {
  content: "";
  width: 14px;
  height: 1px;
  background-color: black;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.content-section .sidemenu.mo select {
  width: 100%;
  border: none;
  border-bottom: 1px solid black;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/select.png) 100%/20px no-repeat;
  font-size: 1.125rem;
  padding: 15px 20px;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
}
.content-section .profuctlist {
  width: 83%;
}
@media (max-width: 991px) {
  .content-section .profuctlist {
    width: 75%;
  }
}
@media (max-width: 767px) {
  .content-section .profuctlist {
    width: 100%;
    margin-top: 50px;
  }
}
.content-section .profuctlist ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .content-section .profuctlist ul {
    margin-bottom: 5px;
  }
}
.content-section .profuctlist li {
  margin-bottom: 52px;
  width: 31%;
  -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;
  cursor: pointer;
}
@media (min-width: 992px) {
  .content-section .profuctlist li:not(:nth-child(3n)) {
    margin-right: 3.5%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .content-section .profuctlist li {
    width: 48%;
  }
  .content-section .profuctlist li:not(:nth-child(2n)) {
    margin-right: 4%;
  }
}
@media (max-width: 767px) {
  .content-section .profuctlist li {
    width: 100%;
    margin-bottom: 40px;
  }
}
.content-section .profuctlist li::after, .content-section .profuctlist 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;
}
.content-section .profuctlist li:before {
  border-left: 1px solid #e57701;
  border-right: 1px solid #e57701;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
.content-section .profuctlist li:after {
  border-top: 1px solid #e57701;
  border-bottom: 1px solid #e57701;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
@media (min-width: 768px) {
  .content-section .profuctlist li:hover {
    -webkit-box-shadow: 0 0 5px 0px #e2e2e2;
            box-shadow: 0 0 5px 0px #e2e2e2;
  }
  .content-section .profuctlist li:hover::before, .content-section .profuctlist li:hover::after {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  .content-section .profuctlist li:hover .product__image::before {
    opacity: 1;
  }
  .content-section .profuctlist li:hover .product__btn {
    color: #e57701;
  }
}
.content-section .profuctlist a {
  display: block;
}
.content-section .profuctlist .product__image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
}
.content-section .profuctlist .product__image::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ffb500;
  position: absolute;
  mix-blend-mode: multiply;
  opacity: 0;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  pointer-events: none;
}
.content-section .profuctlist .product__detail {
  padding: 10px 12px;
}
@media (max-width: 767px) {
  .content-section .profuctlist .product__detail {
    margin-bottom: 10px 12px 15px;
  }
}
.content-section .profuctlist .product__cate {
  color: #888888;
}
.content-section .profuctlist .product__name {
  font-weight: 500;
  color: #4e4e4e;
  margin-bottom: 4px;
}
.content-section .profuctlist .product__id {
  color: #e57701;
  font-weight: 500;
}
@media (max-width: 767px) {
  .content-section .profuctlist .product__id {
    margin-bottom: 5px;
  }
}
.content-section .profuctlist .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;
}