@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@200;300;400;500;600;700;900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

.containers {
  max-width: 1210px;
  width: 100%;
  padding-right: 24px;
  padding-left: 24px;
  margin-right: auto;
  margin-left: auto;
}

.pcOnly {
  display: block;
}
@media (max-width: 768px) {
  .pcOnly {
    display: none;
  }
}

.pad-pcOnly {
  display: block;
}
@media (max-width: 992px) {
  .pad-pcOnly {
    display: none;
  }
}

.padOnly {
  display: none;
}
@media (max-width: 992px) {
  .padOnly {
    display: block;
  }
}

.mobileOnly {
  display: none;
}
@media (max-width: 768px) {
  .mobileOnly {
    display: block;
  }
}

@keyframes updown {
  0% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes godown {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
nav.nav-horizontal {
  z-index: 99;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  transition: 0.3s;
}
nav.nav-horizontal .nav-list {
  color: unset;
  background: #fff;
  padding: 10px 14px 0px 14px;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  border-radius: 60px;
  margin-top: -20px;
  gap: 4px;
}
nav.nav-horizontal .nav-list * {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  nav.nav-horizontal .nav-list * {
    font-size: 18px;
    font-weight: 500;
  }
}
@media (max-width: 576px) {
  nav.nav-horizontal .nav-list {
    flex-wrap: nowrap;
    justify-content: left;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    overflow-x: scroll;
    margin-left: 0%;
    margin: 0px auto;
    padding: 10px 14px 8px 14px;
  }
}
nav.nav-horizontal .nav-list .nav-tab {
  cursor: pointer;
  text-align: center;
  position: relative;
  padding: 16px;
  white-space: nowrap;
  border-radius: 60px;
  color: #808080;
  background: #fff;
}
nav.nav-horizontal .nav-list .nav-tab a {
  color: #808080;
  background: #fff;
}
nav.nav-horizontal .nav-list .nav-tab a div {
  color: #808080;
  background: #fff;
}
nav.nav-horizontal .nav-list .nav-tab:hover {
  color: #FF6E30;
  background: #FFFA80;
}
nav.nav-horizontal .nav-list .nav-tab:hover a {
  color: #FF6E30;
  background: #FFFA80;
}
nav.nav-horizontal .nav-list .nav-tab:hover a div {
  color: #FF6E30;
  background: #FFFA80;
}
@media (max-width: 576px) {
  nav.nav-horizontal .nav-list .nav-tab:hover {
    color: #808080;
    background: #fff;
  }
}
nav.nav-horizontal .nav-list .nav-tab:hover .nav-sec {
  display: flex;
  transition: 0.3s;
}
nav.nav-horizontal .nav-list .nav-tab:hover .nav-sec a:hover {
  color: #fffa80;
}
nav.nav-horizontal .nav-list .nav-tab.on {
  box-shadow: 1.556px 3.111px 0px 0px #FFAC30;
  color: #FF6E30;
  background: #FFFA80;
}
nav.nav-horizontal .nav-list .nav-tab.on a {
  color: #FF6E30;
  background: #FFFA80;
}
nav.nav-horizontal .nav-list .nav-tab.on a div {
  color: #FF6E30;
  background: #FFFA80;
}
@media (max-width: 576px) {
  nav.nav-horizontal .nav-list .nav-tab {
    padding: 8px 16px;
  }
}
nav.nav-horizontal .nav-list .nav-tab .nav-sec {
  display: none;
  position: absolute;
  flex-wrap: wrap;
  background: #ffac30;
  gap: 4px;
  top: 60px;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 0;
  border-radius: 28px;
  width: 100%;
}
nav.nav-horizontal .nav-list .nav-tab .nav-sec a {
  border-radius: 20px;
  color: #ffffff;
  background: unset;
  font-size: 20px;
  width: 100%;
  padding: 8px 0px;
  display: block;
}
@media (max-width: 768px) {
  nav.nav-horizontal .nav-list .nav-tab .nav-sec a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  nav.nav-horizontal .nav-list .nav-tab .nav-sec {
    transform: unset;
    top: 52px;
    left: 4px;
  }
}
@media (max-width: 576px) {
  nav.nav-horizontal .nav-list .nav-tab .nav-sec {
    left: 0;
    top: 36px;
  }
}

.poi-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: end;
  justify-content: center;
  gap: 32px;
  margin: 80px auto;
  z-index: 49;
  position: relative;
  background: #FFF;
  transition: 0.3s;
  /*黏*/
}
@media (max-width: 1200px) {
  .poi-list {
    margin: 30px auto;
    gap: 8px;
  }
}
.poi-list.sticky {
  position: sticky;
  top: 0;
  left: 0;
  gap: 0;
  margin: 0px auto;
}
.poi-list.sticky .poi-tab:nth-of-type(2) {
  margin-left: 0;
}
.poi-list.sticky .poi-tab:hover {
  transform: unset;
}
.poi-list.sticky .poi-tab img.default {
  display: none;
}
.poi-list.sticky .poi-tab img.default-m {
  display: none;
}
.poi-list.sticky .poi-tab img.fixed {
  display: block;
}
.poi-list .poi-tab {
  transition: 0.3s;
}
.poi-list .poi-tab:nth-of-type(2) {
  margin-left: -16px;
}
@media (max-width: 992px) {
  .poi-list .poi-tab:nth-of-type(2) {
    margin-left: -12px;
  }
}
@media (max-width: 768px) {
  .poi-list .poi-tab:nth-of-type(2) {
    margin-left: 0px;
  }
}
.poi-list .poi-tab:hover {
  transform: scale(0.95);
}
.poi-list .poi-tab img {
  width: 100%;
}
.poi-list .poi-tab img.fixed {
  display: none;
}
.poi-list .poi-tab img.default {
  display: block;
}
@media (max-width: 768px) {
  .poi-list .poi-tab img.default {
    display: none;
  }
}
.poi-list .poi-tab img.default-m {
  display: none;
}
@media (max-width: 768px) {
  .poi-list .poi-tab img.default-m {
    display: block;
  }
}

.poi {
  padding: 0px 0;
  background-position: 0px 0;
}
.poi-goods {
  padding: 0px 0;
  position: relative;
  z-index: 0;
  text-align: center;
  /*三個一排*/
  /*切換*/
  /*一般的樣式*/
  /*poi選單*/
  /*1大2小*/
}
.poi-goods .ph {
  margin: 28px auto 16px auto;
}
@media (max-width: 992px) {
  .poi-goods .ph {
    margin: 16px auto 16px auto;
  }
}
.poi-goods.poi-3 .ph-group-content {
  width: calc(33.3333333333% - 11px);
}
@media (max-width: 992px) {
  .poi-goods.poi-3 .ph-group-content {
    width: calc(50% - 8px);
  }
}
@media (max-width: 576px) {
  .poi-goods.poi-3 .ph-group-content {
    width: 100%;
    flex-shrink: 0;
  }
}
.poi-goods.poi-2 .ph-group-content {
  width: 45%;
  flex-grow: 1;
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 16px;
  max-width: 573px;
}
@media (max-width: 992px) {
  .poi-goods.poi-2 .ph-group-content {
    flex-wrap: wrap;
    display: block;
  }
}
@media (max-width: 576px) {
  .poi-goods.poi-2 .ph-group-content {
    width: 100%;
    flex-shrink: 0;
  }
}
.poi-goods.poi-2 .ph-group-content .ph-group-content-photo {
  width: 55%;
  display: inline-flex;
}
@media (max-width: 992px) {
  .poi-goods.poi-2 .ph-group-content .ph-group-content-photo {
    width: 100%;
    flex-shrink: 0;
  }
}
.poi-goods.poi-2 .ph-group-content .ph-group-content-photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .poi-goods.poi-2 .ph-group-content .ph-group-content-photo img {
    height: auto;
    -o-object-fit: unset;
       object-fit: unset;
  }
}
.poi-goods.poi-2 .ph-group-content .ph-group-content-text {
  width: calc(45% - 16px);
  display: inline-block;
  padding: 0 0 29px 0;
}
@media (max-width: 992px) {
  .poi-goods.poi-2 .ph-group-content .ph-group-content-text {
    flex-shrink: 0;
    width: 100%;
  }
}
.poi-goods.poi-change .ph-group {
  display: none;
}
.poi-goods.poi-change .ph-group.on {
  display: flex;
}
.poi-goods.poi-change .ph-group-title {
  display: none;
}
.poi-goods .ph-title {
  display: none;
  flex-wrap: nowrap;
  font-size: 48px;
  font-weight: 700;
  color: #FF5136;
  background: unset;
  justify-content: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .poi-goods .ph-title {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  .poi-goods .ph-title {
    margin-bottom: 24px;
  }
}
.poi-goods .ph-title div {
  position: relative;
  background: url(../images/title_bg_yellow.svg) top center no-repeat;
  padding: 12px 0;
  min-width: 412px;
  background-size: 100%;
}
@media (max-width: 768px) {
  .poi-goods .ph-title div {
    min-width: 296px;
  }
}
.poi-goods .ph-title div::before {
  content: "";
  position: absolute;
  left: -78px;
  top: 16px;
  width: 57px;
  height: 48px;
  background: url(../images/title_left.svg) top center no-repeat;
}
@media (max-width: 768px) {
  .poi-goods .ph-title div::before {
    width: 45px;
    left: -59px;
    top: 5px;
    background: url(../images/title_left.svg) top center no-repeat;
    background-size: 100%;
  }
}
@media (max-width: 576px) {
  .poi-goods .ph-title div::before {
    content: none;
  }
}
.poi-goods .ph-title div::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 13px;
  width: 65px;
  height: 56px;
  background: url(../images/title_right.svg) top center no-repeat;
}
@media (max-width: 768px) {
  .poi-goods .ph-title div::after {
    width: 47px;
    right: -61px;
    top: 3px;
    background: url(../images/title_right.svg) top center no-repeat;
    background-size: 100%;
  }
}
@media (max-width: 576px) {
  .poi-goods .ph-title div::after {
    content: none;
  }
}
.poi-goods .ph-group-title {
  display: block;
  padding: 24px 0;
  color: #FF5136;
  background: unset;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .poi-goods .ph-group-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
  }
}
.poi-goods .ph-group {
  display: flex;
  margin: 140px auto 60px auto;
  position: relative;
  justify-content: center;
  flex-wrap: wrap;
  text-align: left;
  width: 100%;
  gap: 220px 16px;
  padding: 16px 0;
}
@media (max-width: 1200px) {
  .poi-goods .ph-group {
    margin: 12vw auto 60px auto;
    gap: 17vw 16px;
  }
}
@media (max-width: 992px) {
  .poi-goods .ph-group {
    gap: 26vw 16px;
    margin: 22vw auto 60px auto;
  }
}
@media (max-width: 576px) {
  .poi-goods .ph-group {
    margin: 46vw auto 60px auto;
    justify-content: center;
    gap: 55vw 0px;
  }
}
@media (max-width: 420px) {
  .poi-goods .ph-group {
    gap: 53vw 0px;
  }
}
.poi-goods .ph-group-content {
  border-radius: 10px;
  padding: 24px 24px 24px 24px;
  position: relative;
  width: calc(25% - 12px);
  transition: 0.3s;
  border: 2px dashed #FF9F10;
  border-radius: 20px;
  color: unset;
  background: #FFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 992px) {
  .poi-goods .ph-group-content {
    width: calc(50% - 8px);
    padding: 14px 14px 43px 14px;
  }
}
@media (max-width: 576px) {
  .poi-goods .ph-group-content {
    width: 100%;
    flex-shrink: 0;
  }
}
.poi-goods .ph-group-content:hover {
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.1));
  border-style: solid;
}
.poi-goods .ph-group-content:hover .ph-group-content-otherlink a {
  color: #FFF;
  background: #5AC4F1;
}
@media (max-width: 768px) {
  .poi-goods .ph-group-content {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
  }
}
.poi-goods .ph-group-content.box1 {
  width: 51.2%;
  gap: 16px;
  display: flex;
  flex-wrap: nowrap;
  padding: 16px;
  margin-left: 173px;
  margin-top: -150px;
}
@media (max-width: 992px) {
  .poi-goods .ph-group-content.box1 {
    width: 100%;
    margin-left: 27vw;
    margin-top: -24vw;
  }
}
.poi-goods .ph-group-content.box1 .ph-group-content-photo {
  width: 60%;
  position: absolute;
  left: 0;
  transform: translate(-175px, -50%);
  padding: 0;
  top: 50%;
  height: 80%;
}
@media (max-width: 992px) {
  .poi-goods .ph-group-content.box1 .ph-group-content-photo {
    transform: translate(-27vw, -50%);
  }
}
.poi-goods .ph-group-content.box1 .ph-group-content-photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.poi-goods .ph-group-content.box1 .ph-group-content-text {
  width: 100%;
  display: inline-block;
  padding: 24px 0 92px 200px;
}
@media (max-width: 992px) {
  .poi-goods .ph-group-content.box1 .ph-group-content-text {
    padding: 40px 0 120px 14vw;
  }
}
.poi-goods .ph-group-content.box1 .ph-group-content-text .ph-group-content-text-price {
  left: 64%;
}
.poi-goods .ph-group-content.box2 {
  width: 45%;
  flex-grow: 1;
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 16px;
}
.poi-goods .ph-group-content.box2 .ph-group-content-photo {
  width: 55%;
  display: inline-block;
}
.poi-goods .ph-group-content.box2 .ph-group-content-photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.poi-goods .ph-group-content.box2 .ph-group-content-text {
  width: calc(45% - 16px);
  display: inline-block;
  padding: 0 0 29px 0;
}
.poi-goods .ph-group-content.box3 {
  width: 30%;
  flex-grow: 1;
}
.poi-goods .ph-group-content-photo {
  display: block;
  overflow: hidden;
  position: absolute;
  padding: 0 24px;
  left: 50%;
  transform: translateX(-50%);
  top: -160px;
  width: 100%;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .poi-goods .ph-group-content-photo {
    top: -13vw;
  }
}
@media (max-width: 992px) {
  .poi-goods .ph-group-content-photo {
    top: -24vw;
  }
}
@media (max-width: 768px) {
  .poi-goods .ph-group-content-photo {
    top: -21vw;
  }
}
@media (max-width: 576px) {
  .poi-goods .ph-group-content-photo {
    top: -49vw;
  }
}
@media (max-width: 420px) {
  .poi-goods .ph-group-content-photo {
    top: -47vw;
  }
}
.poi-goods .ph-group-content-photo img {
  width: 100%;
  border-radius: 12px;
}
.poi-goods .ph-group-content-photo .ph-group-content-tag {
  top: 13px;
  left: 24px;
  position: absolute;
  border-radius: 10px 20px 20px 0px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #FF5C00;
  background: #F9FFAE;
}
@media (max-width: 768px) {
  .poi-goods .ph-group-content-photo .ph-group-content-tag {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
  }
}
.poi-goods .ph-group-content-text {
  padding: 46px 0px 42px 0px;
}
@media (max-width: 1200px) {
  .poi-goods .ph-group-content-text {
    padding: 2vw 0px 42px 0px;
  }
}
.poi-goods .ph-group-content-text-name {
  padding: 0;
  margin: 8px auto;
  color: #555;
  background: unset;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  display: block;
}
@media (max-width: 768px) {
  .poi-goods .ph-group-content-text-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
  }
}
.poi-goods .ph-group-content-text-detail {
  display: none;
  margin: 8px auto;
  color: #515151;
  background: unset;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .poi-goods .ph-group-content-text-detail {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
  }
}
.poi-goods .ph-group-content-text-detail a {
  color: #515151;
  background: unset;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .poi-goods .ph-group-content-text-detail a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
  }
}
.poi-goods .ph-group-content-text-price {
  position: absolute;
  bottom: 16px;
  letter-spacing: 0.2px;
  font-family: "Montserrat", "Noto Sans TC";
  padding: 0 24px;
  width: calc(100% - 48px);
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  color: #FF5C00;
  background: unset;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .poi-goods .ph-group-content-text-price {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
  }
}
@media (max-width: 768px) {
  .poi-goods .ph-group-content-text-price {
    bottom: 50px;
  }
}
.poi-goods .ph-group-content-text-price span {
  color: #555;
  vertical-align: baseline !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .poi-goods .ph-group-content-text-price span {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
  }
}
.poi-goods .ph-group-content-text-sale {
  color: #FF5A37;
  background: #F9FFB2;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .poi-goods .ph-group-content-text-sale {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
  }
}
.poi-goods .ph-group-content-text-sale a {
  padding: 8px;
  display: block;
  color: #FF5A37;
  background: #F9FFB2;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .poi-goods .ph-group-content-text-sale a {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
  }
}
.poi-goods .ph-group-content-otherlink {
  display: inline-block;
  text-align: center;
  position: absolute;
  bottom: 16px;
  right: 16px;
}
@media (max-width: 992px) {
  .poi-goods .ph-group-content-otherlink {
    bottom: 14px;
    right: 14px;
  }
}
.poi-goods .ph-group-content-otherlink a:empty {
  display: none;
}
.poi-goods .ph-group-content-otherlink a {
  color: #5AC4F1;
  background: unset;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  padding: 4px 16px;
  border: 2px solid #B1382F;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .poi-goods .ph-group-content-otherlink a {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
  }
}
.poi-goods.poi-hide-menu .ph-menu {
  display: none;
}
.poi-goods .ph-menu {
  display: inline-flex;
  justify-content: center;
}
@media (max-width: 576px) {
  .poi-goods .ph-menu {
    flex-wrap: nowrap;
    justify-content: center;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    overflow-x: scroll;
    margin-left: 0%;
  }
}
.poi-goods .ph-menu .slidecontain {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0px;
  width: 100%;
}
@media (max-width: 576px) {
  .poi-goods .ph-menu .slidecontain {
    flex-wrap: nowrap;
    justify-content: flex-start;
    display: inline-flex;
  }
}
@media (max-width: 576px) {
  .poi-goods .ph-menu .slidecontain li {
    flex-shrink: 0;
    width: auto;
    flex-grow: 0;
  }
}
.poi-goods .ph-menu .slidecontain li a {
  padding: 8px 16px;
  display: block;
  color: #333;
  background: unset;
  font-size: 16px;
  font-weight: 400px;
  line-height: 1;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .poi-goods .ph-menu .slidecontain li a {
    font-size: 14px;
    font-weight: 400px;
    line-height: 1;
  }
}
@media (max-width: 576px) {
  .poi-goods .ph-menu .slidecontain li a {
    padding: 5px 10px;
  }
}
.poi-goods .ph-menu .slidecontain li:hover a, .poi-goods .ph-menu .slidecontain li.on a {
  color: #fff;
  background: #FF5136;
  font-weight: 700;
}
.poi-goods.poi-hide-price .ph-group-content {
  padding: 16px;
}
@media (max-width: 992px) {
  .poi-goods.poi-hide-price .ph-group-content {
    padding: 14px;
  }
}
.poi-goods.poi-hide-price .ph-group-content .ph-group-content-text-price {
  display: none;
}
.poi-goods.hide-ph-group-title .ph-group-title {
  display: none;
}
.poi-goods.poi-pic-onlytext .ph-group-content {
  /*除了第一和第二個*/
  display: inline-flex;
  flex-wrap: nowrap;
  width: 100%;
  flex-grow: 1;
  padding: 16px;
}
.poi-goods.poi-pic-onlytext .ph-group-content:nth-of-type(1), .poi-goods.poi-pic-onlytext .ph-group-content:nth-of-type(2) {
  width: 45%;
  flex-grow: 1;
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 16px;
}
@media (max-width: 992px) {
  .poi-goods.poi-pic-onlytext .ph-group-content:nth-of-type(1), .poi-goods.poi-pic-onlytext .ph-group-content:nth-of-type(2) {
    width: calc(50% - 16px);
    padding: 14px 14px 43px 14px;
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .poi-goods.poi-pic-onlytext .ph-group-content:nth-of-type(1), .poi-goods.poi-pic-onlytext .ph-group-content:nth-of-type(2) {
    width: 85%;
    flex-shrink: 0;
  }
}
.poi-goods.poi-pic-onlytext .ph-group-content:nth-of-type(1) .ph-group-content-photo, .poi-goods.poi-pic-onlytext .ph-group-content:nth-of-type(2) .ph-group-content-photo {
  width: 55%;
  display: inline-block;
}
@media (max-width: 992px) {
  .poi-goods.poi-pic-onlytext .ph-group-content:nth-of-type(1) .ph-group-content-photo, .poi-goods.poi-pic-onlytext .ph-group-content:nth-of-type(2) .ph-group-content-photo {
    display: block;
    width: 100%;
  }
}
.poi-goods.poi-pic-onlytext .ph-group-content:nth-of-type(1) .ph-group-content-photo .ph-group-content-tag, .poi-goods.poi-pic-onlytext .ph-group-content:nth-of-type(2) .ph-group-content-photo .ph-group-content-tag {
  top: 0px;
  left: 0px;
  position: absolute;
  border-radius: 10px 20px 20px 0px;
}
.poi-goods.poi-pic-onlytext .ph-group-content:nth-of-type(1) .ph-group-content-photo img, .poi-goods.poi-pic-onlytext .ph-group-content:nth-of-type(2) .ph-group-content-photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  display: block;
}
.poi-goods.poi-pic-onlytext .ph-group-content:nth-of-type(1) .ph-group-content-text, .poi-goods.poi-pic-onlytext .ph-group-content:nth-of-type(2) .ph-group-content-text {
  width: calc(45% - 16px);
  display: inline-block;
  padding: 0 0 29px 0;
}
@media (max-width: 992px) {
  .poi-goods.poi-pic-onlytext .ph-group-content:nth-of-type(1) .ph-group-content-text, .poi-goods.poi-pic-onlytext .ph-group-content:nth-of-type(2) .ph-group-content-text {
    display: block;
    width: 100%;
  }
}
.poi-goods.poi-pic-onlytext .ph-group-content:nth-of-type(1) .ph-group-content-text .ph-group-content-text-sale, .poi-goods.poi-pic-onlytext .ph-group-content:nth-of-type(2) .ph-group-content-text .ph-group-content-text-sale {
  color: #FF5A37;
  background: #F9FFB2;
}
.poi-goods.poi-pic-onlytext .ph-group-content:nth-of-type(1) .ph-group-content-text .ph-group-content-text-sale a, .poi-goods.poi-pic-onlytext .ph-group-content:nth-of-type(2) .ph-group-content-text .ph-group-content-text-sale a {
  padding: 8px;
  color: #FF5A37;
  background: #F9FFB2;
}
@media (max-width: 992px) {
  .poi-goods.poi-pic-onlytext .ph-group-content {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .poi-goods.poi-pic-onlytext .ph-group-content {
    width: 85%;
  }
}
.poi-goods.poi-pic-onlytext .ph-group-content .ph-group-content-photo {
  display: inline-block;
  overflow: unset;
  flex-shrink: 0;
}
.poi-goods.poi-pic-onlytext .ph-group-content .ph-group-content-photo img {
  display: none;
}
.poi-goods.poi-pic-onlytext .ph-group-content .ph-group-content-photo .ph-group-content-tag {
  position: relative;
  top: 16px;
  left: -16px;
  border-radius: 0px 20px 20px 0px;
}
.poi-goods.poi-pic-onlytext .ph-group-content .ph-group-content-text {
  display: inline-block;
  flex-shrink: 1;
}
.poi-goods.poi-pic-onlytext .ph-group-content .ph-group-content-text .ph-group-content-text-sale {
  color: #F9FFAE;
  background: unset;
}
.poi-goods.poi-pic-onlytext .ph-group-content .ph-group-content-text .ph-group-content-text-sale a {
  padding: 0px;
  color: #F9FFAE;
  background: unset;
}
.poi-goods.poi-1large-2small .ph-group-content {
  width: 45%;
  flex-grow: 1;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
}
.poi-goods.poi-1large-2small .ph-group-content:nth-of-type(1) {
  width: 100%;
  gap: 16px;
  display: flex;
  flex-wrap: nowrap;
  padding: 16px;
}
@media (max-width: 992px) {
  .poi-goods.poi-1large-2small .ph-group-content:nth-of-type(1) {
    display: block;
  }
}
@media (max-width: 576px) {
  .poi-goods.poi-1large-2small .ph-group-content:nth-of-type(1) {
    width: 90%;
    flex-shrink: 0;
  }
}
.poi-goods.poi-1large-2small .ph-group-content:nth-of-type(1) .ph-group-content-photo {
  width: 45%;
  display: inline-block;
}
@media (max-width: 992px) {
  .poi-goods.poi-1large-2small .ph-group-content:nth-of-type(1) .ph-group-content-photo {
    width: 100%;
  }
}
.poi-goods.poi-1large-2small .ph-group-content:nth-of-type(1) .ph-group-content-photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.poi-goods.poi-1large-2small .ph-group-content:nth-of-type(1) .ph-group-content-text {
  width: 53%;
  display: inline-block;
  padding: 0 0 29px 0;
}
@media (max-width: 992px) {
  .poi-goods.poi-1large-2small .ph-group-content:nth-of-type(1) .ph-group-content-text {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .poi-goods.poi-1large-2small .ph-group-content {
    flex-wrap: wrap;
    display: block;
  }
}
@media (max-width: 576px) {
  .poi-goods.poi-1large-2small .ph-group-content {
    width: 90%;
    flex-shrink: 0;
  }
}
.poi-goods.poi-1large-2small .ph-group-content .ph-group-content-photo {
  width: 55%;
  display: inline-flex;
}
@media (max-width: 992px) {
  .poi-goods.poi-1large-2small .ph-group-content .ph-group-content-photo {
    width: 100%;
    flex-shrink: 0;
  }
}
.poi-goods.poi-1large-2small .ph-group-content .ph-group-content-photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .poi-goods.poi-1large-2small .ph-group-content .ph-group-content-photo img {
    height: auto;
    -o-object-fit: unset;
       object-fit: unset;
  }
}
.poi-goods.poi-1large-2small .ph-group-content .ph-group-content-text {
  width: calc(45% - 16px);
  display: inline-block;
  padding: 0 0 29px 0;
}
@media (max-width: 992px) {
  .poi-goods.poi-1large-2small .ph-group-content .ph-group-content-text {
    flex-shrink: 0;
    width: 100%;
  }
}
.poi-goods.poi-baby .ph .ph-group-content.poi-sec::before {
  background: #FCFF7D;
}
.poi-goods.poi-baby .ph .ph-group-content.poi-sec::after {
  background: url(../images/poi-bottom-02.svg) top center no-repeat;
  width: 187px;
  height: 52px;
}
.poi-goods.poi-child .ph .ph-group-content {
  border: 2px dashed #FFC1B2;
}
.poi-goods.poi-child .ph .ph-group-content:hover {
  border-style: solid;
}
.poi-goods.poi-child .ph .ph-group-content .ph-group-content-photo .ph-group-content-tag {
  background: #F9FFB2;
}
.poi-goods.poi-child .ph .ph-group-content .ph-group-content-text .ph-group-content-text-price {
  color: #FF37A3;
  background: unset;
}
.poi-goods.poi-child .ph .ph-group-content::before {
  background: #FFDC99;
}
.poi-goods.poi-child .ph .ph-group-content::after {
  background: url(../images/poi-bottom-03.svg) top center no-repeat;
  width: 187px;
  height: 75px;
}
.poi-goods.poi-young .ph .ph-group-content {
  border: 2px dashed #00A7B4;
}
.poi-goods.poi-young .ph .ph-group-content:hover {
  border-style: solid;
}
.poi-goods.poi-young .ph .ph-group-content .ph-group-content-photo .ph-group-content-tag {
  color: #376FFF;
  background: #FCFF74;
}
.poi-goods.poi-young .ph .ph-group-content .ph-group-content-text .ph-group-content-text-price {
  color: #AA40CF;
  background: unset;
}
.poi-goods.poi-young .ph .ph-group-content::before {
  background: #B9F6FB;
}
.poi-goods.poi-young .ph .ph-group-content::after {
  background: url(../images/poi-bottom-04.svg) top center no-repeat;
  width: 192px;
  height: 77px;
}
.poi-goods.poi-young .ph .ph-group-content.poi-sec::before {
  background: #74D5FF;
}
.poi-goods.poi-young .ph .ph-group-content.poi-sec::after {
  background: url(../images/poi-bottom-05.svg) top center no-repeat;
  width: 194px;
  height: 81px;
}

body {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: url(../images/bg_grid.png) top center repeat-y, url(../images/bg_01.png) top center repeat-y;
}

#mtkContainer {
  overflow-x: hidden;
}

#mtkContainer * {
  box-sizing: border-box;
  font-family: "Noto Sans TC";
  vertical-align: top;
}

.kv-banner {
  height: 600px;
  background: url(../images/kv2025_pc.webp) top center no-repeat;
}
@media (max-width: 1200px) {
  .kv-banner {
    background: none;
    height: auto;
  }
}
.kv-banner h1 {
  top: 53px;
}
@media (max-width: 1200px) {
  .kv-banner h1 {
    top: 31px;
  }
}
@media (max-width: 1200px) {
  .kv-banner h1 img {
    width: 58vw;
  }
}

.nav {
  top: 50px;
  right: 0px;
  font-size: 22px;
  z-index: 999;
  display: none;
}
.nav.on {
  display: flex;
}
.nav .nav-title {
  background: #6cd2ff;
  color: #ffffff;
  font-weight: 700;
  border-bottom: 1px solid #ededed;
}
@media (max-width: 992px) {
  .nav .nav-title {
    border-bottom: none;
  }
}
.nav .nav-title.on {
  background: #ff7171;
}
@media (max-width: 992px) {
  .nav .nav-title.nav-right-border {
    border-right: 1px solid #d0c8c3;
    border-bottom: none;
  }
}
.nav .anchorLink {
  color: #555555;
  font-weight: 500;
  padding: 10px 20px;
  background: #f3f3f3;
  border-bottom: 1px solid #d0c8c3;
}
@media (max-width: 992px) {
  .nav .anchorLink {
    background: #fff3f8;
    border-bottom: 1px solid #ffc6c4;
    color: #000;
  }
}
.nav .anchorLink img {
  display: none;
}
.nav .anchorLink:nth-last-of-type(1) {
  border-bottom: none;
}
.nav .anchorLink:hover {
  background: #ffffff;
}
.nav .anchorLink.on {
  background: #ffffff;
}
.nav .nav-title, .nav .anchorLink {
  padding: 10px 20px;
  flex-grow: 1;
}
@media (max-width: 992px) {
  .nav .nav-title, .nav .anchorLink {
    font-size: 16px;
    padding: 10px 0px;
    width: 21%;
    white-space: nowrap;
  }
}
@media (max-width: 992px) {
  .nav {
    top: unset;
    bottom: 0;
    right: unset;
    left: 0;
    width: 100%;
  }
}

.intro {
  background: url(../images/bg1.jpg) top center no-repeat;
  background-size: cover;
  padding: 60px 0;
}
@media (max-width: 992px) {
  .intro {
    background: url(../images/bg1-m.jpg) top center no-repeat;
    background-size: 100%;
    padding: 50px 0;
  }
}
.intro .intro-img-m {
  width: 80vw;
}/*# sourceMappingURL=style.css.map */