@charset "UTF-8";
/**
 * * Allows you to use retina images at various pixel densities.
 * * Examples:
 * *
 * *   +retina(/images/mypic.jpg, 2);
 * *   +retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent);
 * *
 * * @param  {Value}  $path               The path to the file name minus extension.
 * * @param  {Number} $cap:    2          The highest pixel density level images exist for.
 * * @param  {Value}  $size:   auto auto  The intended width of the rendered image.
 * * @param  {Value}  $extras: null       Any other `background` values to be added.
 * */
/**
 * * 往上適應
 * * 引用方式: +media-up($breakpoint-value)
 * */
/**
 * * 往上適應
 * * 引用方式: +media-up-num(自訂數值)
 * */
/**
 * * 往下適應
 * * 引用方式: +media-down($breakpoint-value)
 * */
/**
 * * 往下適應
 * * 引用方式: +media-up-num(自訂數值)
 * */
/**
 * * 範圍內適應
 * * 引用方式: +media-between($lower-breakpoint, $upper-breakpoint)
 * */
/**
 * * 引用方式: +lh(15,22) 前面放 line-height 的 px 值, 後面放 font-size 的 px 值（計算）
 * */
/**
 * * 引用方式: +ls(15,22) 前面放 letter-spacing 的 px 值, 後面放 font-size 的 px 值（計算）
 * */
/*  ===== firefox font weight bold 統一設定為 normal (firefox 在小字為粗體的時候會過粗) ===== */
/**
 * * 引用方式: +gradient(180deg,#fff,4%,#eee,92%)
 * */
/**
 * * margin
 * * 引用方式: +mb(15,22) 前面放 margin 的 px 值, 後面放 font-size 的 px 值
 * */
/**
 * * padding
 * * 引用方式: +pb(15,22) 前面放 padding 的 px 值, 後面放 font-size 的 px 值
 * */
.nas-article h1 {
  font-size: 2.375rem;
  letter-spacing: 0.01em;
  line-height: normal;
}

.nas-article h2 {
  font-size: 2rem;
  letter-spacing: 0.01em;
}

.nas-article h3 {
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}

.nas-article h4 {
  font-size: 1.375rem;
  line-height: 170%;
  letter-spacing: 0.01em;
}

.nas-article h5 {
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}

.nas-article h6 {
  font-size: 1.125rem;
  letter-spacing: 0.01em;
}

.nas-article p {
  font-size: 1rem;
  line-height: 170%;
  letter-spacing: 0.01em;
}

.container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 100%;
    padding-right: 80px;
    padding-left: 80px;
  }
}

.row {
  margin-left: -5px;
  margin-right: -5px;
}
@media (min-width: 768px) {
  .row {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.row > * {
  padding-right: 5px;
  padding-left: 5px;
}
@media (min-width: 768px) {
  .row > * {
    padding-right: 15px;
    padding-left: 15px;
  }
}

*:focus, *:active, *:visited,
*::before:focus,
*::before:active,
*::before:visited,
*::after:focus,
*::after:active,
*::after:visited {
  outline: none !important;
  box-shadow: none !important;
}

noscript {
  position: absolute;
  top: 0;
  z-index: 1045;
}

body {
  color: #1E1E1E;
  line-height: normal;
  font-family: "Noto Sans TC", sans-serif;
  letter-spacing: 0.04em;
  overflow-x: hidden;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  image-rendering: auto;
  touch-action: manipulation;
  -moz-osx-font-smoothing: grayscale;
}
body.is-hidden {
  overflow: hidden;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: #1E1E1E;
  text-decoration: none;
  transition: all linear 300ms;
}
a:hover {
  color: currentColor;
}
a:active, a:hover, a:visited, a:focus {
  text-decoration: none;
  outline: 0;
  transition: all linear 300ms;
}

button {
  background-color: transparent;
  border: none;
  padding: 0;
  outline: 0;
  cursor: pointer;
  transition: all linear 300ms;
}
button:active, button:hover, button:visited, button:focus {
  outline: 0;
  transition: all linear 300ms;
}

ul, ol {
  padding: 0;
  margin-bottom: 0;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}

p, label {
  margin-bottom: 0;
}

input, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  background-color: transparent;
  border: none;
  outline: 0;
}
input:active, input:hover, input:visited, input:focus, select:active, select:hover, select:visited, select:focus, textarea:active, textarea:hover, textarea:visited, textarea:focus {
  outline: 0;
}

input[type=submit], [type=date], [type=checkbox] {
  cursor: pointer;
  transition: all linear 300ms;
}

::-moz-placeholder {
  color: #999999;
}

::placeholder {
  color: #999999;
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

[fade-in] {
  opacity: 0;
  transition: all ease 400ms;
}
[fade-in].has-animate {
  opacity: 1;
  transition: all ease 400ms;
}

.u-link-range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.u-pointer {
  cursor: pointer;
}

.u-pointer-none {
  pointer-events: none;
}

.u-hidden {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.u-img-cover {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.u-img-contain {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}

.u-bg-cover {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.u-flex-1 {
  flex: 1;
}

.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after {
  display: none;
}
.swiper .swiper-button-next:hover,
.swiper .swiper-button-prev:hover {
  transition: all linear 300ms;
}
.swiper .swiper-button-next:focus, .swiper .swiper-button-next:focus-visible,
.swiper .swiper-button-prev:focus,
.swiper .swiper-button-prev:focus-visible {
  outline: none;
  border: none;
}
.swiper .swiper-button-next .icon,
.swiper .swiper-button-prev .icon {
  color: #7F908F;
}
.swiper .swiper-pagination-bullet:focus, .swiper .swiper-pagination-bullet:focus-visible {
  outline: none;
  border: none;
}

.c-input, .c-input-file, .c-select .selectric {
  border-radius: 8px;
  border: 1px solid #999999;
  padding: 12px 18px;
  transition: all ease 400ms;
}
@media (hover: hover) {
  .c-input:hover, .c-input-file:hover, .c-select .selectric:hover {
    background-color: #F0F0F0;
    transition: all ease 400ms;
  }
  .c-input:hover .icon, .c-input-file:hover .icon, .c-select .selectric:hover .icon {
    transition: all ease 400ms;
  }
}

.selectric {
  background: transparent;
}
.selectric .label {
  height: inhert;
}

.selectric-scroll {
  max-height: 250px;
}

.selectric-items {
  cursor: auto;
}

.c-select {
  width: 100%;
  transition: all ease 400ms;
}
.c-select .selectric-wrapper {
  width: 100%;
  cursor: pointer;
}
.c-select .selectric {
  position: relative;
  height: initial;
  transition: all ease 400ms;
}
.c-select .selectric::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  border: 1px solid #1FA809;
  transition: all ease 400ms;
}
.c-select .selectric .button {
  background-color: transparent;
  display: none;
}
.c-select .selectric .label {
  font-size: 1rem;
  color: black;
  height: initial;
  font-weight: 400;
  line-height: 145%;
  margin: 0 16px 0 0;
}
.c-select .selectric-items {
  width: 100% !important;
  background-color: #ffffff;
  border: 1px solid #999999;
  box-shadow: none;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 6px;
}
.c-select .selectric-items li {
  position: relative;
  font-size: 1rem;
  color: #1E1E1E;
  line-height: 145%;
  font-weight: 300;
  padding: 10px 22px;
  transition: all ease 400ms;
}
.c-select .selectric-items li:last-child {
  margin-bottom: 0;
}
.c-select .selectric-items li.selected, .c-select .selectric-items li.highlighted {
  background-color: transparent;
}
.c-select .selectric-items li:hover {
  background: #7F908F;
  color: #ffffff;
  transition: all ease 400ms;
}
.c-select .selectric-scroll {
  overflow: hidden;
  border-radius: 8px;
}
.c-select .selectric-open {
  z-index: 1020;
}
.c-select .selectric-open .selectric {
  border-color: #7F908F;
}
.c-select .selectric-open .selectric::after {
  transform: rotate(180deg);
  transition: all ease 400ms;
}
.c-select .selectric-open .selectric-items {
  z-index: 1030;
}

.os-custom > .os-scrollbar-horizontal {
  right: 14px;
  height: 14px;
  padding: 0px 6px;
}

.os-custom > .os-scrollbar-vertical {
  bottom: 14px;
  width: 14px;
}

.os-custom.os-host-rtl > .os-scrollbar-horizontal {
  left: 14px;
  right: 0;
}

.os-custom > .os-scrollbar-corner {
  height: 14px;
  width: 14px;
  background-color: transparent;
}

.os-custom > .os-scrollbar > .os-scrollbar-track {
  background: transparent;
}

.os-custom > .os-scrollbar-horizontal > .os-scrollbar-track:before,
.os-custom > .os-scrollbar-vertical > .os-scrollbar-track:before {
  content: "";
  display: block;
  position: absolute;
  background: #F0F0F0;
  border-radius: 50px;
}

.os-custom > .os-scrollbar-horizontal > .os-scrollbar-track:before,
.os-custom > .os-scrollbar-horizontal > .os-scrollbar-track > .os-scrollbar-handle:before {
  left: 0;
  right: 0;
  height: 2px;
  top: 50%;
  margin-top: -1px;
}

.os-custom > .os-scrollbar-vertical > .os-scrollbar-track:before,
.os-custom > .os-scrollbar-vertical > .os-scrollbar-track > .os-scrollbar-handle:before {
  top: 0;
  bottom: 0;
  width: 6px;
  left: 50%;
  margin-left: -1px;
}

.os-custom > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle:before {
  content: "";
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50px;
}

.os-custom > .os-scrollbar-horizontal > .os-scrollbar-track > .os-scrollbar-handle:hover:before,
.os-custom > .os-scrollbar-horizontal > .os-scrollbar-track > .os-scrollbar-handle.active:before {
  height: 6px;
  margin-top: -2px;
}

.os-custom > .os-scrollbar-horizontal > .os-scrollbar-track > .os-scrollbar-handle:hover:before,
.os-custom > .os-scrollbar-vertical > .os-scrollbar-track > .os-scrollbar-handle:hover:before {
  background: rgba(0, 0, 0, 0.7);
}

.os-custom > .os-scrollbar-horizontal > .os-scrollbar-track > .os-scrollbar-handle.active:before,
.os-custom > .os-scrollbar-vertical > .os-scrollbar-track > .os-scrollbar-handle.active:before {
  background: rgba(0, 0, 0, 0.7);
}

.os-custom > .os-scrollbar-horizontal > .os-scrollbar-track > .os-scrollbar-handle {
  height: 100%;
  min-width: 30px;
}

.os-custom > .os-scrollbar-vertical > .os-scrollbar-track > .os-scrollbar-handle {
  width: 100%;
  min-height: 30px;
}

.os-custom.os-host-transition > .os-scrollbar-horizontal > .os-scrollbar-track > .os-scrollbar-handle:before {
  transition: height 0.3s, margin-top 0.3s, background 0.2s;
}

.os-custom.os-host-transition > .os-scrollbar-vertical > .os-scrollbar-track > .os-scrollbar-handle:before {
  transition: width 0.3s, margin-left 0.3s, background 0.2s;
}

.air-datepicker-global-container {
  z-index: 1055;
}

.air-datepicker {
  box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.1);
}

.air-datepicker-nav--action path {
  stroke: #7F908F;
  stroke-width: 1px;
}

.air-datepicker-nav--action:hover {
  background-color: transparent;
}

.air-datepicker-nav--title {
  color: #7F908F;
}
.air-datepicker-nav--title i {
  color: #7F908F;
}
.air-datepicker-nav--title:hover {
  background-color: transparent;
}

.air-datepicker-body--day-names,
.air-datepicker-body--cells {
  justify-items: center;
  align-items: center;
}

.air-datepicker-body--day-name {
  color: #7F908F;
  width: 30px;
  height: 30px;
}

.air-datepicker-cell {
  transition: all ease 400ms;
}
.air-datepicker-cell.-focus- {
  transition: all ease 400ms;
}

.air-datepicker-body.-days- .air-datepicker-cell {
  width: 30px;
  height: 30px;
  border-radius: 50px;
}
.air-datepicker-body.-days- .air-datepicker-cell.-focus- {
  background-color: #7F908F;
  color: #ffffff;
}
.air-datepicker-body.-days- .air-datepicker-cell.-current- {
  color: #7F908F;
}
.air-datepicker-body.-days- .air-datepicker-cell.-current-.-focus- {
  color: #ffffff;
}
.air-datepicker-body.-days- .air-datepicker-cell.-selected- {
  background-color: #7F908F;
  color: #ffffff;
}

.air-datepicker-body--cells.-months- .air-datepicker-cell.-focus- {
  background-color: transparent;
}
.air-datepicker-body--cells.-months- .air-datepicker-cell.-current- {
  color: #7F908F;
}
.air-datepicker-body--cells.-months- .air-datepicker-cell.-selected- {
  background-color: transparent;
  color: #7F908F;
}

.air-datepicker-body--cells.-years- .air-datepicker-cell.-focus- {
  background-color: transparent;
}
.air-datepicker-body--cells.-years- .air-datepicker-cell.-current- {
  color: #7F908F;
}
.air-datepicker-body--cells.-years- .air-datepicker-cell.-selected {
  background-color: transparent;
  color: #7F908F;
}

.modal {
  overflow-y: hidden;
}

.modal-dialog {
  width: calc(100% - 60px);
  max-width: 100%;
  height: 100%;
  max-height: calc(100% - 50px);
  min-height: initial;
  margin: 25px auto;
}
@media (min-width: 768px) {
  .modal-dialog {
    max-width: 500px;
  }
}

.modal-dialog-scrollable .modal-content {
  overflow: initial;
}
.modal-dialog-scrollable .modal-content .os-host {
  overflow: hidden !important;
}

.modal-body {
  position: relative;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 768px) {
  .modal-title {
    font-size: 1.5rem;
  }
}

.btn-close:focus {
  box-shadow: none;
}

.spinner {
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: all ease 400ms;
}
.spinner.is-active {
  opacity: 1;
  transition: all ease 400ms;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button:not(.collapsed) {
  color: currentColor;
  background-color: transparent;
  box-shadow: none;
}

.accordion-button {
  background-color: transparent;
  padding: 0;
}
.accordion-button::after {
  display: none;
}

.accordion-body {
  padding: 0;
}

.accordion-item {
  background-color: transparent;
  border: none;
}

.c-accordion * {
  line-height: normal;
}
.c-accordion-num {
  color: #b45e0e;
  font-weight: 700;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  flex-shrink: 0;
  margin-right: 20px;
}
@media (min-width: 576px) {
  .c-accordion-num {
    margin-right: 40px;
  }
}
@media (min-width: 1200px) {
  .c-accordion-num {
    margin-right: 80px;
  }
}
.c-accordion-title {
  width: 100%;
  font-weight: 700;
}
.c-accordion-icon {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../images/icon/symbol-defs.svg#icon-open");
  flex-shrink: 0;
  margin-left: 20px;
  transition: all linear 300ms;
}
@media (min-width: 576px) {
  .c-accordion-icon {
    margin-left: 40px;
  }
}
@media (min-width: 1200px) {
  .c-accordion-icon {
    margin-left: 80px;
  }
}
.c-accordion .accordion-button {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted #b45e0e;
  padding: 20px 0;
}
@media (min-width: 576px) {
  .c-accordion .accordion-button {
    padding: 20px 22px;
  }
}
@media (min-width: 1200px) {
  .c-accordion .accordion-button {
    padding: 20px 44px;
  }
}
.c-accordion .accordion-button:not(.collapsed) .c-accordion-icon {
  background-image: url("../images/icon/symbol-defs.svg#icon-close");
  transform: rotate(180deg);
  transition: all ease 400ms;
}
.c-accordion .accordion-body {
  padding: 26px 44px;
}

.c-breadcrumb {
  position: relative;
  z-index: 1030;
}
.c-breadcrumb .c-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.c-breadcrumb .c-breadcrumb-item {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 145%;
  font-size: 0.8125rem;
}
@media (min-width: 768px) {
  .c-breadcrumb .c-breadcrumb-item {
    font-size: 1rem;
  }
}
.c-breadcrumb .c-breadcrumb-item .c-breadcrumb-link {
  display: block;
  color: #7F908F;
}
.c-breadcrumb .c-breadcrumb-item .c-breadcrumb-link:hover {
  color: #7F908F;
}

.c-breadcrumb-item + .c-breadcrumb-item {
  padding-left: 8px;
}
.c-breadcrumb-item + .c-breadcrumb-item::before {
  content: "/";
  vertical-align: middle;
  margin-right: 8px;
}

.c-pagination {
  display: flex;
  justify-content: center;
}
.c-pagination .c-pagination-item {
  width: 36px;
  height: 36px;
}
.c-pagination .c-pagination-item.is-active .c-pagination-link {
  background-color: #7F908F;
  color: #ffffff;
}
.c-pagination .c-pagination-link {
  color: #1E1E1E;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: none;
}
@media (hover: hover) {
  .c-pagination .c-pagination-link:hover {
    color: #1E1E1E;
    background-color: transparent;
  }
}

.c-gotop {
  width: 44px;
  height: 44px;
  border-radius: 50px;
  background-color: #F0F0F0;
  position: fixed;
  bottom: 50px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 400ms;
}
@media (min-width: 768px) {
  .c-gotop {
    right: 30px;
  }
}

.c-btn-pill, .c-btn {
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  transition: all ease 400ms;
}
@media (hover: hover) {
  .c-btn-pill:hover, .c-btn:hover {
    color: #7F908F;
  }
}

.c-btn-pill {
  border-radius: 50px;
  border: 1px solid #7F908F;
}

.c-btn-count {
  display: inline-flex;
  align-items: center;
  border: 1px solid #999999;
  background-color: #ffffff;
  border-radius: 3px;
}
.c-btn-count.is-disabled {
  pointer-events: none;
}
.c-btn-count.is-disabled .c-btn-del {
  opacity: 0.2;
}
.c-btn-count.is-disabled .c-btn-count-num {
  opacity: 0.2;
}
.c-btn-count.is-disabled .c-btn-add {
  opacity: 0.2;
}
.c-btn-count button {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}
.c-btn-count button.is-disabled {
  opacity: 0.2;
  pointer-events: none;
}
.c-btn-count .c-btn-del, .c-btn-count .c-btn-add {
  color: #1E1E1E;
}
.c-btn-count .c-btn-del::after, .c-btn-count .c-btn-add::after {
  color: #1E1E1E;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.c-btn-count .c-btn-num {
  width: 100%;
  height: 42px;
  text-align: center;
  border-left: 1px solid #999999;
  border-right: 1px solid #999999;
}

.c-title {
  display: inline-flex;
  flex-direction: column;
}
.c-title > * {
  display: block;
}

.c-title-en {
  font-size: 2rem;
  color: #7F908F;
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 768px) {
  .c-title-en {
    font-size: 4.6875rem;
  }
}

.c-title-cn {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 768px) {
  .c-title-cn {
    font-size: 2.375rem;
  }
}

.c-tag {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -2.5px;
  margin-right: -2.5px;
  margin-bottom: -5px;
}

.c-tag-item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  background-color: #F0F0F0;
  border-radius: 50px;
  height: -moz-max-content;
  height: max-content;
  padding: 6px 12px;
  margin-right: 2.5px;
  margin-left: 2.5px;
  margin-bottom: 5px;
}

.c-tag-text {
  position: relative;
  color: #7F908F;
  white-space: nowrap;
}

.c-card {
  position: relative;
  cursor: pointer;
  transition: all ease 400ms;
}
@media (hover: hover) {
  .c-card:hover {
    transition: all ease 400ms;
  }
  .c-card:hover .c-card-img img {
    transform: translate(-50%, -50%) scale(1.1);
    transition: all ease 400ms;
  }
}
.c-card .c-card-head {
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .c-card .c-card-head {
    margin-bottom: 16px;
  }
}
.c-card .c-card-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1px;
}
.c-card .c-card-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.c-card .c-card-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.2162162162%;
}
.c-card .c-card-img img, .c-card .c-card-img video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all ease 400ms;
}
.c-card .c-card-img video {
  z-index: -1;
}
.c-card .c-card-img .c-tag {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 10;
}
.c-card .c-card-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
  font-weight: 700;
}
.c-card .c-card-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
}
.c-card .c-card-text-sm {
  font-size: 0.875rem;
}
.c-card .c-card-icon-group {
  display: flex;
  align-items: center;
}
.c-card .c-card-icon-group .icon {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  margin-right: 6px;
}

.c-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 17px;
}
@media (min-width: 992px) {
  .c-form-group {
    flex-direction: row;
    margin-bottom: 30px;
  }
}
.c-form-group:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .c-form-group.c-form-group-column {
    flex-direction: column;
  }
}
.c-form-group.c-form-group-column .c-form-start {
  margin-bottom: 8px;
}

.c-form-start {
  width: 30%;
}

.c-form-end {
  width: 100%;
}

.c-label {
  width: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-weight: 500;
  line-height: 100%;
  transition: all ease 400ms;
}

.c-input {
  width: 100%;
  display: flex;
  align-items: center;
}
.c-input input {
  width: 100%;
  transition: all ease 400ms;
}
.c-input input:-webkit-autofill {
  box-shadow: inset 0 0 0 2000px #ffffff;
}
.c-input input:autofill {
  box-shadow: inset 0 0 0 2000px #ffffff;
}

.c-input-file {
  cursor: pointer;
}
.c-input-file * {
  cursor: pointer;
}
.c-input-file input[type=file] {
  width: 0;
  height: 0;
  display: inline-block;
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.c-input-file .c-input-text {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-input-file .c-input-text .icon {
  width: 16px;
  height: 16px;
  border: 1px solid #1FA809;
  margin-left: 8px;
}

.c-file-group {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-left: -20px;
  margin-right: -20px;
}
.c-file-group > * {
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}
.c-file-group > *:last-child {
  margin-bottom: 0;
}
.c-file-group .icon-clear {
  cursor: pointer;
  width: 25px;
  height: 25px;
  position: absolute;
  top: -10px;
  right: -10px;
  border: 1px solid #1FA809;
}

.c-file-img {
  height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #F0F0F0;
  border-radius: 8px;
  position: relative;
  padding: 30px;
}
.c-file-img img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}

.c-file-text {
  position: relative;
  display: inline-flex;
  font-size: 0.875rem;
  margin-top: 4px;
}

.c-textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #999999;
  transition: all ease 400ms;
}
.c-textarea textarea {
  width: 100%;
  height: 100%;
  height: 128px !important;
  min-height: 128px !important;
  padding: 12px 22px !important;
}

.c-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -20px;
}
.c-checkbox-group > * {
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
}

.c-checkbox, .c-radio {
  display: flex;
  align-items: center;
}
.c-checkbox label, .c-radio label {
  cursor: pointer;
}
.c-checkbox input[type=checkbox], .c-checkbox input[type=radio], .c-radio input[type=checkbox], .c-radio input[type=radio] {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
  margin-right: 10px;
  border: 1px solid #1FA809;
}
.c-checkbox input[type=checkbox]::before, .c-checkbox input[type=radio]::before, .c-radio input[type=checkbox]::before, .c-radio input[type=radio]::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.c-checkbox input[type=checkbox]:checked::before, .c-checkbox input[type=radio]:checked::before, .c-radio input[type=checkbox]:checked::before, .c-radio input[type=radio]:checked::before {
  content: "";
}

.c-input-clear {
  background-image: url(../images/icon/symbol-defs.svg#icon-cancel);
  border: 1px solid #1FA809;
  width: 15px;
  height: 15px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: all ease 400ms;
}

.c-hint {
  font-size: 0.75rem;
  color: #999999;
  margin-top: 4px;
  transition: all ease 400ms;
}
@media (min-width: 992px) {
  .c-hint {
    font-size: 0.875rem;
  }
}
.c-hint.is-error {
  color: #FE2828;
}

[form-state] {
  transition: all ease 400ms;
}
[form-state] .c-hint.is-error {
  display: none;
}
[form-state].is-focus .c-input {
  border-color: #7F908F;
}
[form-state].is-typing .c-input-clear {
  opacity: 1;
  visibility: visible;
  transition: all ease 400ms;
}
[form-state].is-disabled {
  opacity: 0.5;
  pointer-events: none;
}
[form-state].is-error .c-label {
  color: #FE2828;
}
[form-state].is-error .c-input, [form-state].is-error .c-textarea {
  border: 1px solid #FE2828;
}
[form-state].is-error .c-input-clear {
  background-image: url(../images/icon/symbol-defs.svg#icon-cancel-error);
  transition: all ease 400ms;
}
[form-state].is-error .c-select .selectric {
  border-color: #FE2828;
}
[form-state].is-error .c-hint.is-error {
  display: block;
}

.c-toast {
  min-width: 214px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  border-radius: 8px;
  line-height: 145%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  padding: 27px 42px;
  opacity: 0;
  pointer-events: none;
  z-index: 1080;
  transition: all ease 400ms;
}
.c-toast.is-show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition: all ease 400ms;
}
.c-toast .c-toast-icon {
  width: 56px;
  height: 56px;
  border-radius: 50px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}
.c-toast .c-toast-icon .icon {
  width: 28px;
  height: 28px;
  color: #7F908F;
}
.c-toast .c-toast-text {
  text-align: center;
}

.c-share {
  display: flex;
  align-items: center;
}
.c-share-icon {
  display: flex;
  align-items: center;
}
.c-share-icon-item {
  margin-right: 6px;
}
@media (min-width: 992px) {
  .c-share-icon-item {
    margin-right: 12px;
  }
}
.c-share-icon-item:last-child {
  margin-right: 0;
}
@media (min-width: 992px) {
  .c-share-icon-item:last-child {
    margin-right: 0;
  }
}
.c-share-icon-item img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
@media (min-width: 992px) {
  .c-share-icon-item img {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 991.98px) {
  .c-tab.is-swipeable.swiper::after {
    display: block;
  }
}
.c-tab.is-swipeable .swiper-wrapper {
  justify-content: flex-start;
}
.c-tab.swiper {
  position: relative;
  margin-bottom: 40px;
}
.c-tab.swiper::before, .c-tab.swiper::after {
  content: "";
  width: 105px;
  height: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: none;
}
.c-tab.swiper::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0.68) 63.55%, rgba(255, 255, 255, 0) 100%);
  transform: translateY(-50%);
}
.c-tab .swiper-wrapper {
  justify-content: center;
}
.c-tab .swiper-slide {
  width: auto;
}
.c-tab .swiper-slide:last-child {
  margin-right: 0 !important;
}
.c-tab .swiper-button-next {
  width: 10px;
  height: 10px;
}
@media (min-width: 992px) {
  .c-tab .swiper-button-next {
    display: none;
  }
}
.c-tab .swiper-button-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.c-tab .c-btn-rounded {
  color: #999999;
  padding: 16px;
  min-width: 147px;
}
@media (max-width: 767.98px) {
  .c-tab .c-btn-rounded {
    border: 1px solid #999999;
  }
}
.c-tab .c-btn-rounded.is-active {
  color: #ffffff;
  border: none;
}

.m-header {
  position: relative;
  overflow: hidden;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 29.1666666667%;
}
.m-header img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.m-tabs {
  position: relative;
}
.m-tabs__content {
  position: relative;
}
.m-tabs__content__pane {
  width: 100%;
  opacity: 0;
  display: none;
  transition: all ease 400ms;
}
.m-tabs__content__pane.is-active {
  display: block;
}
.m-tabs__content__pane.is-show {
  opacity: 1;
  transition: all ease 400ms;
}

.m-cards {
  margin-bottom: -36px;
}
@media (min-width: 1200px) {
  .m-cards {
    margin-bottom: -96px;
  }
}
.m-cards > * {
  margin-bottom: 36px;
}
@media (min-width: 1200px) {
  .m-cards > * {
    margin-bottom: 96px;
  }
}

.l-nav {
  background-color: transparent;
  position: absolute;
  width: 100%;
  bottom: 36px;
  left: 0;
  z-index: 1040;
  transition: all ease 400ms;
}
@media (max-width: 991.98px) {
  .l-nav {
    bottom: 15px;
  }
}
@media screen and (max-height: 375px) {
  .l-nav {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .l-nav {
    display: none;
  }
}
.l-nav .nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}
@media (max-width: 991.98px) {
  .l-nav .nav-wrap {
    flex-direction: column;
    align-items: center;
  }
}
.l-nav__logo {
  position: relative;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 1200px) {
  .l-nav__logo {
    width: 130px;
    height: 23.5px;
  }
}
@media (max-width: 991.98px) {
  .l-nav__logo {
    position: relative;
    left: 0;
    transform: none;
    width: 121px;
    height: 21px;
  }
}
.l-nav__logo.white {
  opacity: 1;
  visibility: visible;
  white-space: nowrap;
  overflow: hidden;
  text-indent: 101%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 130px;
  height: 23.5px;
  background-image: url("../images/layout/logo_white.svg");
}
@media only screen and (-o-min-device-pixel-ratio: 5/4) {
  .l-nav__logo.white {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 130px;
    height: 23.5px;
    background-image: url("../images/layout/logo_white@2x.png");
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.25) {
  .l-nav__logo.white {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 130px;
    height: 23.5px;
    background-image: url("../images/layout/logo_white@2x.png");
  }
}
@media only screen and (min--moz-device-pixel-ratio: 1.25) {
  .l-nav__logo.white {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 130px;
    height: 23.5px;
    background-image: url("../images/layout/logo_white@2x.png");
  }
}
@media only screen and (min-device-pixel-ratio: 1.25) {
  .l-nav__logo.white {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 130px;
    height: 23.5px;
    background-image: url("../images/layout/logo_white@2x.png");
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.25), only screen and (min-resolution: 1.25dppx) {
  .l-nav__logo.white {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 130px;
    height: 23.5px;
    background-image: url("../images/layout/logo_white@2x.png");
  }
}
@media (max-width: 991.98px) {
  .l-nav__logo.white {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 121px;
    height: 21px;
    background-image: url("../images/layout/logo_white.svg");
  }
}
@media only screen and (max-width: 991.98px) and (-o-min-device-pixel-ratio: 5/4) {
  .l-nav__logo.white {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 121px;
    height: 21px;
    background-image: url("../images/layout/logo_white@2x.png");
  }
}
@media only screen and (max-width: 991.98px) and (-webkit-min-device-pixel-ratio: 1.25) {
  .l-nav__logo.white {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 121px;
    height: 21px;
    background-image: url("../images/layout/logo_white@2x.png");
  }
}
@media only screen and (max-width: 991.98px) and (min--moz-device-pixel-ratio: 1.25) {
  .l-nav__logo.white {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 121px;
    height: 21px;
    background-image: url("../images/layout/logo_white@2x.png");
  }
}
@media only screen and (max-width: 991.98px) and (min-device-pixel-ratio: 1.25) {
  .l-nav__logo.white {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 121px;
    height: 21px;
    background-image: url("../images/layout/logo_white@2x.png");
  }
}
@media only screen and (max-width: 991.98px) and (-webkit-min-device-pixel-ratio: 1.25), only screen and (max-width: 991.98px) and (min-resolution: 1.25dppx) {
  .l-nav__logo.white {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 121px;
    height: 21px;
    background-image: url("../images/layout/logo_white@2x.png");
  }
}
.l-nav__logo.black {
  opacity: 1;
  visibility: visible;
  white-space: nowrap;
  overflow: hidden;
  text-indent: 101%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 130px;
  height: 23.5px;
  background-image: url("../images/layout/logo_black.svg");
}
@media only screen and (-o-min-device-pixel-ratio: 5/4) {
  .l-nav__logo.black {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 130px;
    height: 23.5px;
    background-image: url("../images/layout/logo_black@2x.png");
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.25) {
  .l-nav__logo.black {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 130px;
    height: 23.5px;
    background-image: url("../images/layout/logo_black@2x.png");
  }
}
@media only screen and (min--moz-device-pixel-ratio: 1.25) {
  .l-nav__logo.black {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 130px;
    height: 23.5px;
    background-image: url("../images/layout/logo_black@2x.png");
  }
}
@media only screen and (min-device-pixel-ratio: 1.25) {
  .l-nav__logo.black {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 130px;
    height: 23.5px;
    background-image: url("../images/layout/logo_black@2x.png");
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.25), only screen and (min-resolution: 1.25dppx) {
  .l-nav__logo.black {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 130px;
    height: 23.5px;
    background-image: url("../images/layout/logo_black@2x.png");
  }
}
@media (max-width: 991.98px) {
  .l-nav__logo.black {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 121px;
    height: 21px;
    background-image: url("../images/layout/logo_black.svg");
  }
}
@media only screen and (max-width: 991.98px) and (-o-min-device-pixel-ratio: 5/4) {
  .l-nav__logo.black {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 121px;
    height: 21px;
    background-image: url("../images/layout/logo_black@2x.png");
  }
}
@media only screen and (max-width: 991.98px) and (-webkit-min-device-pixel-ratio: 1.25) {
  .l-nav__logo.black {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 121px;
    height: 21px;
    background-image: url("../images/layout/logo_black@2x.png");
  }
}
@media only screen and (max-width: 991.98px) and (min--moz-device-pixel-ratio: 1.25) {
  .l-nav__logo.black {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 121px;
    height: 21px;
    background-image: url("../images/layout/logo_black@2x.png");
  }
}
@media only screen and (max-width: 991.98px) and (min-device-pixel-ratio: 1.25) {
  .l-nav__logo.black {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 121px;
    height: 21px;
    background-image: url("../images/layout/logo_black@2x.png");
  }
}
@media only screen and (max-width: 991.98px) and (-webkit-min-device-pixel-ratio: 1.25), only screen and (max-width: 991.98px) and (min-resolution: 1.25dppx) {
  .l-nav__logo.black {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 121px;
    height: 21px;
    background-image: url("../images/layout/logo_black@2x.png");
  }
}
.l-nav__visit {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  color: transparent;
  transition: all ease 400ms;
}
.l-nav__visit.white {
  color: #fff;
}
.l-nav__visit.black {
  color: #151515;
}
@media (max-width: 991.98px) {
  .l-nav__visit {
    display: none;
  }
}
.l-nav__visit.disappear {
  opacity: 0;
  visibility: hidden;
}
@media (hover: hover) {
  .l-nav__visit:hover {
    opacity: 0.5;
  }
}
.l-nav__link {
  display: flex;
}
@media (max-width: 991.98px) {
  .l-nav__link {
    display: none;
  }
}
.l-nav__link.white li a {
  color: #fff;
}
.l-nav__link.black li a {
  color: #151515;
}
.l-nav__link li {
  margin-right: 24px;
}
.l-nav__link li:last-child {
  margin-right: 0;
}
@media (max-width: 991.98px) {
  .l-nav__link li {
    margin-right: 12px;
  }
}
.l-nav__link li a {
  font-size: 1rem;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
}
@media (hover: hover) {
  .l-nav__link li a:hover {
    opacity: 0.5;
  }
}
@media (max-width: 991.98px) {
  .l-nav__link li a {
    font-size: 1rem;
  }
}

.mobile-menu__wrap {
  position: fixed;
  z-index: 10000;
  top: 0;
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .mobile-menu__wrap {
    display: none;
  }
}
.mobile-menu__wrap.active {
  background-color: #fff;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
}
.mobile-menu__wrap.on-dropdown {
  background-color: #fff;
  box-shadow: none;
}
.mobile-menu__wrap .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu .hamburger {
  width: 34px;
  height: 34px;
  position: relative;
  z-index: 100000;
}
.mobile-menu .hamburger span {
  display: block;
  margin-bottom: 6px;
  width: 100%;
  height: 2px;
  border-radius: 5px;
  transform-origin: 25%;
  transition: all ease 400ms;
}
.mobile-menu .hamburger span:nth-child(2) {
  transform-origin: 50%;
}
.mobile-menu .hamburger span:last-child {
  width: 70%;
  margin-left: auto;
  margin-bottom: 0;
}
.mobile-menu .hamburger.white span {
  background-color: #fff;
}
.mobile-menu .hamburger.black span {
  background-color: #151515;
}
.mobile-menu .hamburger.is-opened span:first-child {
  transform: translateY(3px) rotate(25deg);
}
.mobile-menu .hamburger.is-opened span:nth-child(2) {
  transform: scaleX(0);
}
.mobile-menu .hamburger.is-opened span:last-child {
  width: 100%;
  transform: translateY(-6px) rotate(-25deg);
}
.mobile-menu__list {
  position: absolute;
  top: 48px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 400ms;
}
.mobile-menu__list.is-opened {
  opacity: 1;
  visibility: visible;
}
.mobile-menu__list li {
  text-align: end;
  margin-bottom: 16px;
}
.mobile-menu__list li:last-child {
  margin-bottom: 0;
}
.mobile-menu__list li a {
  font-size: 1.25rem;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
}
.mobile-menu__list.white li a {
  color: #fff;
}
.mobile-menu__list.black li a {
  color: #151515;
}

.dropdown {
  position: fixed;
  z-index: 9999;
  background-color: #fff;
  top: calc(var(--vh, 1vh) * -100);
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  transition: all ease 400ms;
}
.dropdown.on-dropdown {
  top: 0px;
}
.dropdown-window {
  position: relative;
  width: 100%;
  height: 100%;
}
.dropdown-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.dropdown-link li {
  margin-bottom: 46px;
  font-size: 1rem;
  line-height: normal;
  color: #151515;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
}
.dropdown-link li:last-child {
  margin-bottom: 0;
}
@media screen and (max-height: 375px) {
  .dropdown-link li {
    margin-bottom: 25px;
  }
}

.l-loading {
  background-color: #ffffff;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-loading.is-hidden {
  opacity: 0;
  z-index: -99;
  transition: all ease 400ms;
}
.l-loading .loading-img {
  position: relative;
}
.l-loading .loading-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: scale(0, 1);
  transform-origin: left;
  animation: loading 2s infinite;
}
@media (max-width: 991.98px) {
  .l-loading .loading-img svg {
    width: 150px;
  }
}
@keyframes loading {
  0% {
    transform: scale(0, 1);
    transform-origin: left;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: left;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: right;
  }
  100% {
    transform: scale(0, 1);
    transform-origin: right;
  }
}

.l-editor__content > div:last-child .nsdi-article-system {
  margin-bottom: 0;
}

.article-system-wrap {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .article-system-wrap {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

.nsdi-article-system {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .nsdi-article-system {
    margin-bottom: 50px;
  }
}
.nsdi-article-system .row {
  align-items: center;
}

.nas-image-wrapper img {
  width: 100%;
}

#T6 {
  margin-bottom: -24px;
}
#T6 .nas-image-wrapper {
  margin-bottom: 24px;
}

.nas-article {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .nas-article {
    margin-top: 0;
  }
}
.nas-article h1, .nas-article h2, .nas-article h3, .nas-article h4, .nas-article h5, .nas-article h6 {
  font-weight: 700;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .nas-article h1, .nas-article h2, .nas-article h3, .nas-article h4, .nas-article h5, .nas-article h6 {
    margin-bottom: 20px;
  }
}
.nas-article a {
  color: #7F908F;
}
.nas-article img {
  width: 100%;
}
.nas-article ul, .nas-article ol {
  padding-left: 1.5rem;
}
.nas-article ul {
  list-style: initial;
}
.nas-article ul ul {
  list-style-type: circle;
}
.nas-article ul ul ul {
  list-style-type: square;
}
.nas-article ol {
  list-style: auto;
}
.nas-article ol ul {
  list-style-type: circle;
}
.nas-article ol ul ul {
  list-style-type: square;
}
.nas-article table {
  caption-side: initial;
  border-collapse: initial;
}
.nas-article tbody, .nas-article td, .nas-article tfoot, .nas-article th, .nas-article thead, .nas-article tr {
  border-style: inherit;
  border-width: inherit;
}

@media (max-width: 991.98px) {
  [data-page=index] .desktop {
    display: none;
  }
}
[data-page=index] .desktop .swiper-button-disabled {
  opacity: 0.3;
}
[data-page=index] .desktop .swiper-slide {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}
[data-page=index] .desktop .slideIndex .img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
[data-page=index] .desktop .slideIndex .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
[data-page=index] .desktop .slideOneImg {
  display: flex;
  justify-content: center;
  align-items: center;
}
[data-page=index] .desktop .slideOneImg .container {
  max-height: 80%;
  min-height: 80%;
  height: 80%;
  overflow: hidden;
  transform: translateY(-5%);
}
[data-page=index] .desktop .slideOneImg .img {
  width: 100%;
  height: 100%;
}
[data-page=index] .desktop .slideOneImg .img .img-wrap {
  width: 100%;
  height: 100%;
}
[data-page=index] .desktop .slideOneImg .img .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
[data-page=index] .desktop .slideAuthor, [data-page=index] .desktop .slideContent {
  display: flex;
  justify-content: center;
  align-items: center;
}
[data-page=index] .desktop .slideAuthor .container, [data-page=index] .desktop .slideContent .container {
  max-height: 80%;
  min-height: 80%;
  height: 80%;
  overflow: hidden;
  transform: translateY(-5%);
}
[data-page=index] .desktop .slideAuthor .container .row, [data-page=index] .desktop .slideContent .container .row {
  min-width: calc(100% + 30px);
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}
[data-page=index] .desktop .slideAuthor .container .row .authorText, [data-page=index] .desktop .slideAuthor .container .row .authorImg, [data-page=index] .desktop .slideAuthor .container .row .contentText, [data-page=index] .desktop .slideAuthor .container .row .contentImg, [data-page=index] .desktop .slideContent .container .row .authorText, [data-page=index] .desktop .slideContent .container .row .authorImg, [data-page=index] .desktop .slideContent .container .row .contentText, [data-page=index] .desktop .slideContent .container .row .contentImg {
  height: 100%;
}
[data-page=index] .desktop .slideAuthor .img, [data-page=index] .desktop .slideContent .img {
  width: 100%;
  height: 100%;
}
[data-page=index] .desktop .slideAuthor .img .img-wrap, [data-page=index] .desktop .slideContent .img .img-wrap {
  width: 100%;
  height: 100%;
}
[data-page=index] .desktop .slideAuthor .img .img-wrap img, [data-page=index] .desktop .slideContent .img .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
[data-page=index] .desktop .slideAuthor .authorText {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 65px;
}
[data-page=index] .desktop .slideAuthor .authorText .text {
  width: 100%;
  max-height: 100%;
  max-height: calc(100% - 117px);
  padding-right: 20px;
  overflow-y: auto;
}
[data-page=index] .desktop .slideAuthor .authorText .text .name-section {
  margin-bottom: 39px;
}
[data-page=index] .desktop .slideAuthor .authorText .text .name-section .cn-name {
  font-size: 1.375rem;
  line-height: normal;
  font-weight: 500;
  color: #151515;
  margin-bottom: 2px;
  font-family: "Noto Serif TC", serif;
}
[data-page=index] .desktop .slideAuthor .authorText .text .name-section .en-name {
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  font-size: 1.375rem;
  line-height: normal;
  color: #151515;
}
[data-page=index] .desktop .slideAuthor .authorText .text .product-name {
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  font-size: 0.875rem;
  line-height: normal;
  color: #151515;
  margin-bottom: 20px;
}
[data-page=index] .desktop .slideAuthor .authorText .text .description {
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  font-size: 0.8125rem;
  line-height: 2.1538461538;
  color: #585858;
}
[data-page=index] .desktop .slideAuthor .authorText .button-section {
  padding-left: 15px;
  padding-right: 35px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  padding-left: 65px;
  padding-right: 15px;
}
[data-page=index] .desktop .slideAuthor .authorText .button-section .horizon-line {
  display: flex;
  align-items: center;
  margin-top: 35px;
  margin-bottom: 35px;
}
[data-page=index] .desktop .slideAuthor .authorText .button-section .enquire {
  font-size: 1rem;
  line-height: normal;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  color: #151515;
  transition: all ease 400ms;
}
@media (hover: hover) {
  [data-page=index] .desktop .slideAuthor .authorText .button-section .enquire:hover {
    opacity: 0.5;
  }
}
[data-page=index] .desktop .slideContent .contentText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  padding-left: 65px;
}
[data-page=index] .desktop .slideContent .contentText .text {
  max-height: 100%;
  padding-right: 32px;
  color: #151515;
  font-size: 0.875rem;
  line-height: 2;
}
@media (max-width: 1619.98px) {
  [data-page=index] .desktop .slideContent .contentText .text {
    padding-right: 20px;
  }
}
@media (max-width: 1399.98px) {
  [data-page=index] .desktop .slideContent .contentText .text {
    padding-right: 0px;
  }
}
@media (min-width: 992px) {
  [data-page=index] .mobile {
    display: none;
  }
}
[data-page=index] .mobile .mobile-section-1 {
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  min-height: 375px;
  transition: margin-top 1s;
}
[data-page=index] .mobile .mobile-section-1 .l-nav {
  display: none;
}
@media screen and (max-height: 375px) {
  [data-page=index] .mobile .mobile-section-1 .l-nav {
    display: block;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] .mobile .mobile-section-1 .l-nav {
    display: block;
  }
}
[data-page=index] .mobile .mobile-section-1 .img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%;
}
[data-page=index] .mobile .mobile-section-1 .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
[data-page=index] .mobile .mobile-section-1.active {
  margin-top: calc(-1 * var(--vh, 1vh) * 100);
}
[data-page=index] .mobile-section-1__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
[data-page=index] .mobile-section-1__content .title, [data-page=index] .mobile-section-1__content .sub-title, [data-page=index] .mobile-section-1__content .date {
  text-align: center;
}
[data-page=index] .mobile-section-1__content .title.white, [data-page=index] .mobile-section-1__content .sub-title.white, [data-page=index] .mobile-section-1__content .date.white {
  color: #fff;
}
[data-page=index] .mobile-section-1__content .title.black, [data-page=index] .mobile-section-1__content .sub-title.black, [data-page=index] .mobile-section-1__content .date.black {
  color: #151515;
}
[data-page=index] .mobile-section-1__content .title {
  font-size: 4.375rem;
  font-family: "Tenor Sans", "Noto Sans TC", sans-serif;
}
@media (max-width: 991.98px) {
  [data-page=index] .mobile-section-1__content .title {
    font-size: 4rem;
  }
}
[data-page=index] .mobile-section-1__content .sub-title {
  font-size: 2.375rem;
  font-family: "Tenor Sans", "Noto Sans TC", sans-serif;
  font-style: italic;
}
@media (max-width: 991.98px) {
  [data-page=index] .mobile-section-1__content .sub-title {
    font-size: 2.125rem;
    margin-top: 0px;
  }
}
[data-page=index] .mobile-section-1__content .date {
  margin-top: 28px;
  font-size: 1.5rem;
  font-family: "Tenor Sans", "Noto Sans TC", sans-serif;
}
@media (max-width: 991.98px) {
  [data-page=index] .mobile-section-1__content .date {
    margin-top: 16px;
  }
}
[data-page=index] .mobile-section-2 {
  background-color: #ffffff;
  padding-top: 44px;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}
[data-page=index] .mobile-section-2 .fp-tableCell {
  display: flex;
  justify-content: center;
}
[data-page=index] .mobile-section-2 .fp-scrollable .container {
  padding-top: 50px;
}
[data-page=index] .mobile-section-2 .iScrollVerticalScrollbar {
  display: none;
}
[data-page=index] .mobile-section-2 .img {
  width: 100%;
  height: 82%;
  max-height: 82%;
}
[data-page=index] .mobile-section-2 .img .img-wrap {
  width: 100%;
  height: 100%;
}
[data-page=index] .mobile-section-2 .img .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
[data-page=index] .mobile-section-2 .slideOneImg__mobile, [data-page=index] .mobile-section-2 .slideAuthor__mobile, [data-page=index] .mobile-section-2 .slideContent__mobile {
  margin-bottom: 40px;
}
[data-page=index] .mobile-section-2 .slideAuthor__mobile .img {
  margin-bottom: 30px;
}
[data-page=index] .mobile-section-2 .slideAuthor__mobile .text .name-section {
  margin-bottom: 16px;
}
[data-page=index] .mobile-section-2 .slideAuthor__mobile .text .name-section .cn-name {
  font-size: 1.375rem;
  line-height: normal;
  font-weight: 500;
  color: #151515;
  margin-bottom: 2px;
  font-family: "Noto Serif TC", serif;
}
[data-page=index] .mobile-section-2 .slideAuthor__mobile .text .name-section .en-name {
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  font-size: 1.375rem;
  line-height: normal;
  color: #151515;
}
[data-page=index] .mobile-section-2 .slideAuthor__mobile .text .product-name {
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  font-size: 0.84375rem;
  line-height: normal;
  color: #151515;
  margin-bottom: 16px;
}
[data-page=index] .mobile-section-2 .slideAuthor__mobile .text .description {
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  font-size: 0.875rem;
  line-height: 2;
  color: #585858;
}
[data-page=index] .mobile-section-2 .slideAuthor__mobile .button-section .horizon-line {
  display: flex;
  margin-top: 15px;
  margin-bottom: 15px;
}
[data-page=index] .mobile-section-2 .slideAuthor__mobile .button-section .enquire {
  border-radius: 3px;
  font-size: 1rem;
  line-height: normal;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  color: #151515;
}
[data-page=index] .mobile-section-2 .slideContent__mobile .img {
  margin-bottom: 30px;
}
[data-page=index] .mobile-section-2 .slideContent__mobile .text {
  color: #151515;
  font-size: 0.875rem;
  line-height: 2;
}

.body-freeze {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  position: relative;
}

/* prevent pull-to-refresh for Safari 16+ */
@media screen and (pointer: coarse) {
  @supports (-webkit-backdrop-filter: blur(1px)) and (overscroll-behavior-y: none) {
    html {
      min-height: 100.3%;
      overscroll-behavior-y: none;
    }
  }
}
/* prevent pull-to-refresh for Safari 9~15 */
@media screen and (pointer: coarse) {
  @supports (-webkit-backdrop-filter: blur(1px)) and (not (overscroll-behavior-y: none)) {
    html {
      height: 100%;
      overflow: hidden;
    }
    body {
      margin: 0px;
      max-height: 100%;
      /* or `height: calc(100% - 16px);` if body has default margin */
      overflow: auto;
      -webkit-overflow-scrolling: touch;
    }
    /* in this case to disable pinch-zoom, set `touch-action: pan-x pan-y;` on `body` instead of `html` */
  }
}
/* prevent pull-to-refresh for Chrome 63+ */
body {
  overscroll-behavior-y: none;
}

.body-lock {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}/*# sourceMappingURL=main.css.map */