body {
  font-family: Arial, "Noto Sans TC", sans-serif;
  background-image: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
  line-height: 1.4;
}
body.overflow-hidden {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

:root {
  --swiper-navigation-size: 70px;
}
@media screen and (max-width: 480px) {
  :root {
    --swiper-navigation-size: 50px;
  }
}

a {
  color: inherit;
}

:focus {
  outline: none;
}

h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 480px) {
  h2 {
    font-size: 30px;
  }
}

.logo_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 0;
}
.logo_wrapper img {
  width: 80%;
  max-width: 350px;
}

@media screen and (max-width: 480px) {
  .kv_wrapper {
    width: 96%;
    margin: 0 auto;
  }
}
.kv_swiper {
  overflow-x: hidden;
}
.kv_swiper .swiper-slide {
  width: 50%;
  position: relative;
}
.kv_swiper .swiper-slide img {
  width: 100%;
  border-radius: 20px;
}
@media screen and (max-width: 480px) {
  .kv_swiper .swiper-slide img {
    border-radius: 12px;
  }
}
.kv_swiper .swiper-slide a {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.kv_swiper .swiper-slide a.pc_mode {
  display: none;
}
@media (hover: hover) {
  .kv_swiper .swiper-slide a {
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  .kv_swiper .swiper-slide {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .kv_swiper .swiper-slide {
    width: 100%;
  }
}
.kv_swiper .swiper-button-wrapper {
  display: flex;
  justify-content: center;
}
.kv_swiper .swiper-button-next {
  width: var(--swiper-navigation-size);
  background-image: url(../images/swiper_arr_next.png);
  background-size: contain;
  left: auto;
  right: inherit;
  margin-left: 50%;
}
.kv_swiper .swiper-button-next::after {
  content: none;
}
@media screen and (max-width: 768px) {
  .kv_swiper .swiper-button-next {
    margin-left: 70%;
  }
}
@media screen and (max-width: 480px) {
  .kv_swiper .swiper-button-next {
    margin-left: inherit;
    right: -4%;
  }
}
.kv_swiper .swiper-button-prev {
  width: var(--swiper-navigation-size);
  background-image: url(../images/swiper_arr_prev.png);
  background-size: contain;
  right: auto;
  left: inherit;
  margin-right: 50%;
}
.kv_swiper .swiper-button-prev::after {
  content: none;
}
@media screen and (max-width: 768px) {
  .kv_swiper .swiper-button-prev {
    margin-right: 70%;
  }
}
@media screen and (max-width: 480px) {
  .kv_swiper .swiper-button-prev {
    margin-right: inherit;
    left: -4%;
  }
}

.icon_wrapper {
  padding: 20px 0;
}
@media screen and (max-width: 480px) {
  .icon_wrapper {
    padding: 10px 0;
  }
}
.icon_container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1em;
}
@media screen and (max-width: 480px) {
  .icon_container {
    grid-template-columns: repeat(4, 1fr);
    grid-row-gap: 0.5em;
  }
}
.icon_item {
  position: relative;
}
.icon_item a {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.icon_item a.pc_mode {
  display: none;
}
@media (hover: hover) {
  .icon_item a {
    cursor: pointer;
  }
}
.icon_item img {
  width: 100%;
}

.latest_wrapper {
  padding: 60px 0;
  background-color: #FFF2EB;
}
@media screen and (max-width: 768px) {
  .latest_wrapper {
    padding: 30px 0;
  }
}
.latest_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  position: relative;
}
.latest_container .swiper {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .latest_container .swiper {
    width: 96%;
    margin: 0 auto;
  }
}
.latest_container .swiper-slide {
  position: relative;
  background-color: #fff;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 16px;
  width: 16.6%;
  height: auto;
}
.latest_container .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/label_new.png);
  background-repeat: no-repeat;
  width: 46px;
  height: 29px;
}
@media screen and (max-width: 480px) {
  .latest_container .swiper-slide {
    border-radius: 12px;
    width: 33.3%;
  }
}
.latest_container .swiper-slide a {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.latest_container .swiper-slide a.pc_mode {
  display: none;
}
@media (hover: hover) {
  .latest_container .swiper-slide a {
    cursor: pointer;
  }
}
.latest_container .swiper-slide img {
  width: 100%;
  border-radius: 16px;
}
.latest_container .swiper-slide .store_name {
  font-size: 18px;
  font-weight: 700;
  padding: 0 10px;
  text-align: center;
}
.latest_container .swiper-slide .store_content {
  padding-top: 5px;
  color: #555;
  font-size: 14px;
  padding: 0 10px;
}
.latest_container .swiper-button-wrapper {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
  margin-bottom: -50px;
}
.latest_container .swiper-button-next {
  width: var(--swiper-navigation-size);
  background-image: url(../images/swiper_arr_next.png);
  background-size: contain;
  right: var(--swiper-navigation-sides-offset, 0);
}
.latest_container .swiper-button-next::after {
  content: none;
}
@media screen and (max-width: 480px) {
  .latest_container .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, -6px);
  }
}
.latest_container .swiper-button-prev {
  width: var(--swiper-navigation-size);
  background-image: url(../images/swiper_arr_prev.png);
  background-size: contain;
  left: var(--swiper-navigation-sides-offset, 0);
}
.latest_container .swiper-button-prev::after {
  content: none;
}
@media screen and (max-width: 480px) {
  .latest_container .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, -6px);
  }
}

.catagory_wrapper {
  padding: 80px 0;
  position: relative;
}
.catagory_wrapper h2 {
  position: relative;
  z-index: 1;
}
.catagory_wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  z-index: -1;
}
.catagory_wrapper[data-tab=tab1]::after {
  background-image: url(../images/bg_catagoryTab1.jpg);
}
.catagory_wrapper[data-tab=tab1] .catagory_group_1 {
  display: grid;
}
.catagory_wrapper[data-tab=tab2]::after {
  background-image: url(../images/bg_catagoryTab2.jpg);
}
.catagory_wrapper[data-tab=tab2] .catagory_group_2 {
  display: grid;
}
.catagory_wrapper[data-tab=tab3]::after {
  background-image: url(../images/bg_catagoryTab3.jpg);
}
.catagory_wrapper[data-tab=tab3] .catagory_group_3 {
  display: grid;
}
.catagory_wrapper[data-tab=tab4]::after {
  background-image: url(../images/bg_catagoryTab4.jpg);
}
.catagory_wrapper[data-tab=tab4] .catagory_group_4 {
  display: grid;
}
.catagory_wrapper[data-tab=tab5]::after {
  background-image: url(../images/bg_catagoryTab5.jpg);
}
.catagory_wrapper[data-tab=tab5] .catagory_group_5 {
  display: grid;
}
.catagory_wrapper[data-tab=tab6]::after {
  background-image: url(../images/bg_catagoryTab6.jpg);
}
.catagory_wrapper[data-tab=tab6] .catagory_group_6 {
  display: grid;
}
.catagory_wrapper[data-tab=tab7]::after {
  background-image: url(../images/bg_catagoryTab7.jpg);
}
.catagory_wrapper[data-tab=tab7] .catagory_group_7 {
  display: grid;
}
.catagory_wrapper[data-tab=tab8]::after {
  background-image: url(../images/bg_catagoryTab8.jpg);
}
.catagory_wrapper[data-tab=tab8] .catagory_group_8 {
  display: grid;
}
.catagory_wrapper h2 a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #EC7946;
  font-size: 0.5em;
  border-radius: 30px;
  padding: 0.2em 1em;
  cursor: pointer;
}
.catagory_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .catagory_container {
    padding: 0 3%;
    gap: 20px;
  }
}
@media screen and (max-width: 480px) {
  .catagory_container {
    padding: 0 6%;
  }
}
.catagory_container::after {
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  position: absolute;
  top: -2em;
  right: -2em;
  bottom: -2em;
  left: -2em;
  z-index: 0;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .catagory_container::after {
    right: 0.8em;
    left: 0.8em;
  }
}
.catagoryTab_wrapper {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-column-gap: 0.8em;
  grid-row-gap: 0.8em;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .catagoryTab_wrapper {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .catagoryTab_wrapper {
    grid-column-gap: 0.4em;
  }
}
@media screen and (max-width: 480px) {
  .catagoryTab_wrapper {
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 0.2em;
  }
}
.catagoryTab_item {
  text-align: center;
  flex: 1;
  font-size: 18px;
  padding: 0.4em;
  background-color: #EFEFEF;
  border-radius: 30px;
  position: relative;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .catagoryTab_item {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .catagoryTab_item {
    font-size: 14px;
    padding: 0.4em 0.3em;
  }
}
.catagoryTab_item.active {
  background-color: #EC7946;
  color: #fff;
  cursor: default;
}
.catagoryTab_item.active::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7.5px 0;
  border-color: #EC7946 transparent transparent;
  position: absolute;
  bottom: -7.5px;
}
@media screen and (max-width: 768px) {
  .catagoryTab_item.active::after {
    content: none;
  }
}
.catagory_content > div {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(4, 1fr);
  gap: 1em;
  display: none;
}
@media screen and (max-width: 768px) {
  .catagory_content > div {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6em;
  }
}
.catagory_item {
  border-radius: 1em;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 480px) {
  .catagory_item {
    flex-direction: column;
    border-radius: 0.6em;
  }
}
.catagory_item a {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .catagory_item a {
    cursor: pointer;
  }
}
.catagory_item img {
  width: 45%;
}
@media screen and (max-width: 480px) {
  .catagory_item img {
    width: 100%;
  }
}
.catagory_item .store_info {
  padding: 0 0.4em;
}
@media screen and (max-width: 480px) {
  .catagory_item .store_info {
    display: flex;
    padding: 0.6em;
    flex-direction: column;
  }
}
.catagory_item .store_name {
  font-size: 18px;
  font-weight: 700;
}
.catagory_item .store_content {
  font-size: 14px;
  color: #555;
}

.hot_wrapper {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .hot_wrapper {
    padding: 30px 0;
  }
}
.hot_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  position: relative;
}
.hot_container .swiper {
  width: 100%;
  --swiper-scrollbar-drag-bg-color: rgb(236, 121, 70);
  padding-bottom: 2em;
}
@media screen and (max-width: 1024px) {
  .hot_container .swiper {
    width: 96%;
    margin: 0 auto;
  }
}
.hot_container .swiper-slide {
  border-radius: 1em;
  overflow: hidden;
  background-color: #EC7946;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hot_container .swiper-slide {
    flex-direction: column;
    border-radius: 0.6em;
  }
}
.hot_container .swiper-slide a {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.hot_container .swiper-slide a.pc_mode {
  display: none;
}
@media (hover: hover) {
  .hot_container .swiper-slide a {
    cursor: pointer;
  }
}
.hot_container .swiper-slide img {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .hot_container .swiper-slide img {
    width: 100%;
  }
}
.hot_container .swiper-slide .store_info {
  padding: 0 0.4em;
  color: #fff;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .hot_container .swiper-slide .store_info {
    display: flex;
    padding: 0.6em;
    flex-direction: column;
  }
}
.hot_container .swiper-slide .store_name {
  font-size: 18px;
  font-weight: 700;
}
.hot_container .swiper-slide .store_content {
  font-size: 14px;
}
.hot_container .swiper-button-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.hot_container .swiper-button-next {
  width: var(--swiper-navigation-size);
  background-image: url(../images/swiper_arr_next.png);
  background-size: contain;
  right: var(--swiper-navigation-sides-offset, -35px);
}
.hot_container .swiper-button-next::after {
  content: none;
}
@media screen and (max-width: 1024px) {
  .hot_container .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, -10px);
  }
}
@media screen and (max-width: 480px) {
  .hot_container .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, -6px);
  }
}
.hot_container .swiper-button-prev {
  width: var(--swiper-navigation-size);
  background-image: url(../images/swiper_arr_prev.png);
  background-size: contain;
  left: var(--swiper-navigation-sides-offset, -35px);
}
.hot_container .swiper-button-prev::after {
  content: none;
}
@media screen and (max-width: 1024px) {
  .hot_container .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, -10px);
  }
}
@media screen and (max-width: 480px) {
  .hot_container .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, -6px);
  }
}

.step_wrapper {
  padding: 60px 0;
  background-color: #F6F6F6;
}
@media screen and (max-width: 768px) {
  .step_wrapper {
    padding: 30px 0;
  }
}
.step_container {
  max-width: 1200px;
  width: 96%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  position: relative;
}
.step_content {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 480px) {
  .step_content {
    flex-wrap: wrap;
  }
}
.step_content > div {
  flex: 1;
}
@media screen and (max-width: 480px) {
  .step_content > div {
    width: calc(50% - 10px);
    flex: inherit;
  }
}
.step_content img {
  width: 100%;
}

.lightbox_appDownload {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  opacity: 0;
  z-index: 999;
}
.lightbox_appDownload.open {
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: 0.5s opacity;
}

.btn_nav_locatStore {
  position: fixed;
  bottom: 60px;
  right: 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7882352941);
  color: #fff;
  height: 60px;
  width: 60px;
  text-align: center;
  font-size: 14px;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .footer {
    display: none;
  }
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bgfadeIn {
  0% {
    background: transparent;
  }
  100% {
    background: inherit;
  }
}
/**NavArea**/
@media screen and (min-width: 1025px) {
  /** float **/
  .NavArea {
    display: none;
    width: 140px;
    position: fixed;
    top: 100px;
    right: 0;
    z-index: 999;
    animation: slideLeft 1s ease-in-out 1;
  }
  @keyframes slideLeft {
    0% {
      transform: translateX(150%);
    }
    50% {
      transform: translateX(-8%);
    }
    65% {
      transform: translateX(4%);
    }
    80% {
      transform: translateX(-4%);
    }
    95% {
      transform: translateX(2%);
    }
    100% {
      transform: translateX(0%);
    }
  }
  /**active**/
  .Nav-slide.active {
    background-color: #050a22;
  }
  .Nav-slide.active a {
    color: #ffdbae;
  }
  .float_tit {
    position: absolute;
  }
  .go_top {
    display: block;
    cursor: pointer;
  }
  .Nav {
    display: flex;
    justify-content: center;
  }
  .Nav-wrapper {
    background: repeating-linear-gradient(120deg, rgb(142, 124, 252) -1%, rgb(78, 65, 171) 101%);
    width: 120px;
    margin: 0px auto 0;
    padding-top: 120px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
  }
  .Nav-wrapper li {
    font-size: 15px;
    text-align: center;
    background: transparent;
    margin: auto;
    padding: 2px 0 2px;
    position: relative;
  }
  .NavArea .Nav li span {
    display: block;
  }
  /**TOP**/
  .Nav-wrapper li.highlight1 {
    background-color: #EC7946;
    margin-top: 0.5em;
    border-radius: 20px;
  }
  .Nav-wrapper li.highlight1 a {
    color: #fff;
  }
  .Nav-wrapper li.highlight2 {
    font-size: 24px;
    border-radius: 0 0 20px 20px;
    padding-bottom: 8px;
    padding-left: 2px;
  }
  .Nav-wrapper li a {
    color: #cccccc;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
  }
}
@media screen and (min-width: 1025px) and (hover: hover) {
  .Nav-wrapper li a:hover {
    color: #fff;
  }
}
@media screen and (min-width: 1025px) {
  .Nav-wrapper li:after {
    background: #fff;
    height: 2px;
    position: absolute;
    right: 51%;
    left: 51%;
    bottom: 0;
    z-index: 1;
    content: "";
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: left, right;
    transition-property: left, right;
  }
  .Nav-wrapper li:hover:after {
    right: 10%;
    left: 10%;
  }
  .Nav-wrapper li.highlight0:after {
    background: transparent;
  }
}
/**NavArea_M**/
@media screen and (max-width: 1024px) {
  .NavArea {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: none;
  }
  .NavArea .Nav {
    position: relative;
    margin: 0;
    padding: 0;
    overflow-x: scroll;
    background-color: #000;
  }
  .NavArea .Nav ul {
    white-space: nowrap;
  }
  .NavArea .Nav li {
    z-index: 10;
    position: relative;
    display: inline-block;
    padding: 0;
    overflow: hidden;
    width: auto;
    font-weight: inherit;
    text-align: center;
  }
  .NavArea .Nav li span {
    display: inline-block;
  }
  .NavArea .Nav li:nth-child(odd) {
    background-color: #131313;
  }
  .NavArea .Nav a {
    color: #fff;
    text-decoration: none;
    position: relative;
    padding: 0 12px;
    height: 44px;
    line-height: 44px;
  }
  .Nav-slide.active a {
    color: salmon;
  }
  .float_tit,
  .float_tit_02 {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */