@charset "UTF-8";

/*  ===== 斷點變數 ===== */
/*  ===== 往上適應 ===== */
/*  ===== 往下適應 ===== */
/*  ===== 範圍內適應 ===== */
/*  ===== 基本漸層背景設定 ===== */
/*  ===== 以 em 計算font-size, letter-spacing(RWD時方便使用) ===== */
/*  ===== 文字置中時的 letter spacing 偏移修正 ===== */
/*  ===== letter spacing 偏移重設 ===== */
/*  ===== firefox font weight bold 統一設定為 normal (firefox在小字為粗體的時候會過粗) ===== */
/*  ===== a連結清除預設值 ===== */
/*  ===== 字體設定（全域/英文/中文) ===== */
@font-face {
  font-family: "aria";
  font-weight: 400;
  src: url("../fonts/ARIAL.TTF") format("truetype");
}

/*  ===== 排版相關 ===== */
/*  ===== 超過文字省略為...(可設定行數) ===== */
/*  ===== 捲軸樣式設定 ===== */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

@-webkit-keyframes fadeInBottom10 {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

@keyframes fadeInBottom10 {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

@-webkit-keyframes scaleY {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes scaleY {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@-webkit-keyframes scaleY50 {
  0% {
    transform: scaleY(0.5);
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes scaleY50 {
  0% {
    transform: scaleY(0.5);
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@-webkit-keyframes fadeBR {
  0% {
    transform: translate(50px, 50px);
    opacity: 0;
  }

  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}

@keyframes fadeBR {
  0% {
    transform: translate(50px, 50px);
    opacity: 0;
  }

  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}

@-webkit-keyframes switchBlock {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-120%, 0);
  }
}

@keyframes switchBlock {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-120%, 0);
  }
}

@-webkit-keyframes loadingI {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loadingI {
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes bounce {

  0%,
  100% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}

/**
 * * 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.
 * */
.loaded .load-block {
  opacity: 0;
  z-index: -100;
}

.load-block {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  background-color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  transition: all 0.5s ease;
  opacity: 0;
}

.spinner {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  -webkit-animation: loadingI 2s linear infinite;
  animation: loadingI 2s linear infinite;
}

.bubble-1,
.bubble-2 {
  position: absolute;
  top: 0;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: #00AB8E;
  -webkit-animation: bounce 2s ease-in-out infinite;
  animation: bounce 2s ease-in-out infinite;
}

.bubble-2 {
  top: auto;
  bottom: 0;
  bottom-animation-delay: -1s;
}

.load-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #00AB8E;
  margin-bottom: 0;
  margin-top: 20px;
  text-align: center;
}

header {
  padding: 0 32px;
  width: 100%;
  min-height: 85px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  position: fixed;
  z-index: 999;
  background-color: #EDEDED;
  transform: translate(0, 0%);
  transition: all 0.4s ease;
}

@media (max-width: 767px) {
  header {
    min-height: 70px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 25px;
  }
}

header .logo {
  width: 50px;
}

header .logo img {
  max-width: 100%;
}

header.hide-header {
  transform: translate(0, -140%);
}

header .dropdown-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  margin-top: 15px;
  margin-right: 108px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  header .dropdown-list {
    display: none;
  }
}

header .dropdown-list .dropdown-out {
  padding: 0 26px;
}

header .dropdown-list .dropdown-out:last-child {
  padding-right: 0px;
}

header .dropdown-list .out-link {
  color: #00AB8E;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 1.10rem;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 1262px) {
  header .dropdown-list .out-link {
    font-size: 1rem;
  }
}

@media (min-width: 767px) and (max-width: 1199px) {
  header .dropdown-list .dropdown-secondary-out {
    display: none;
  }
}

@media (min-width: 768px) {
  header .dropdown-list .out-link:hover {
    opacity: 0.7;
  }
}

header .dropdown-list .out-link.search {
  font-size: 1.375rem;
}

header .dropdown-out {
  position: relative;
}

header .dropdown-out::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 48px;
  bottom: 0;
  transform: translateY(100%);
}

header .dropdown-out:hover .dropdown-inner-list {
  opacity: 1;
  pointer-events: fill;
}

header .dropdown-inner-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  background-color: #FFF;
  min-width: 168px;
  position: absolute;
  left: 26px;
  bottom: 0;
  transform: translate(0, calc(100% + 7px));
  border-radius: 4px;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}

header .dropdown-inner-list.active {
  opacity: 1;
  pointer-events: fill;
}

header .dropdown-inner-list::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 7px;
  transform: translateY(-100%);
}

header .dropdown-inner-list li {
  padding: 12px 20px;
  border-bottom: 1px solid #EDEDED;
}

header .dropdown-inner-list li:nth-of-type(1) {
  padding: 7px 20px 12px 20px;
}

header .dropdown-inner-list li:nth-last-of-type(1) {
  border-bottom: none;
}

header .inner-link {
  color: #00AB8E;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  transition: all 0.4s ease;
}

header .inner-link:hover {
  opacity: 0.7;
}

header .menu-button-wrap {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: #00AB8E;
  border-bottom-left-radius: 10px;
}

@media (max-width: 767px) {
  header .menu-button-wrap {
    width: 81px;
    height: 81px;
  }
}

header .menu-button-wrap.open .bar.top {
  margin-top: 8px;
  -webkit-animation: topBarForMenuOpen 0.6s ease-in-out forwards;
  animation: topBarForMenuOpen 0.6s ease-in-out forwards;
}

header .menu-button-wrap.open .bar.mid {
  -webkit-animation: midBarForMenuOpen 0.6s ease-in-out forwards;
  animation: midBarForMenuOpen 0.6s ease-in-out forwards;
}

header .menu-button-wrap.open .bar.bot {
  -webkit-animation: botBarForMenuOpen 0.6s ease-in-out forwards;
  animation: botBarForMenuOpen 0.6s ease-in-out forwards;
}

header .menu-button-wrap.close .bar.top {
  -webkit-animation: topBarForMenuClose 0.6s ease-in-out forwards;
  animation: topBarForMenuClose 0.6s ease-in-out forwards;
}

header .menu-button-wrap.close .bar.mid {
  -webkit-animation: midBarForMenuClose 0.6s ease-in-out forwards;
  animation: midBarForMenuClose 0.6s ease-in-out forwards;
}

header .menu-button-wrap.close .bar.bot {
  -webkit-animation: botBarForMenuClose 0.6s ease-in-out forwards;
  animation: botBarForMenuClose 0.6s ease-in-out forwards;
}

header .menu-button-wrap .menu {
  width: 100%;
  height: 100%;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 0.875rem;
  positoin: relative;
}

header .menu-button-wrap .menu::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  transform-origin: top left;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

header .menu-button-wrap .menu:hover {
  color: #FFF;
}

@media (min-width: 1200px) {
  header .menu-button-wrap .menu:hover::before {
    transform: scaleX(1);
    transform-origin: top right;
  }
}

header .menu-button-wrap .hamburger {
  margin-bottom: 8px;
  position: relative;
  display: block;
}

header .menu-button-wrap .menu-bg {
  width: 25px;
  height: 12px;
}

header .menu-button-wrap .bar {
  width: 25px;
  height: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: block;
  margin: auto;
  background-color: #FFF;
}

header .menu-button-wrap .bar.top {
  margin-top: 8px;
}

header .menu-button-wrap .bar.mid {
  transform-origin: left;
}

header .menu-button-wrap .bar.bot {
  margin-bottom: 8px;
}

header .search-bar-wrap {
  display: none;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  z-index: 999;
  padding: 13px 24px;
  background-color: #FFF;
  border-radius: 5px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  min-width: 884px;
}

header .search-bar-inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

header .search-bar-inner-wrap input {
  flex: 1 0 auto;
  margin: 0 16px;
}

header .search-bar-inner-wrap .unstyled-btn:last-child {
  font-size: 1.25rem;
}

.menu-block {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  display: none;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  transition: -webkit-backdrop-filter 2s ease;
  transition: backdrop-filter 2s ease;
  transition: backdrop-filter 2s ease, -webkit-backdrop-filter 2s ease;
}

.menu-block::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #FFF;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.menu-wrap .search-bar-wrap {
  display: none;
  padding: 13px 24px;
  background-color: transparent;
  border: 1px solid #FFF;
  border-radius: 5px;
  margin-bottom: 56px;
  position: relative;
  z-index: 10;
  opacity: 0;
}

@media (max-width: 575px) {
  .menu-wrap .search-bar-wrap {
    display: block;
    width: 80%;
  }
}

.menu-wrap .search-bar-wrap.active {
  opacity: 1;
  -webkit-animation: fadeIn 0.4s ease;
  animation: fadeIn 0.4s ease;
}

.menu-wrap .search-bar-inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.menu-wrap .search-bar-inner-wrap input {
  flex: 1 0 auto;
  background-color: transparent;
  color: #FFF;
  font-size: 0.9375rem;
}

.menu-wrap .search-bar-inner-wrap input::-moz-placeholder {
  color: #FFF;
}

.menu-wrap .search-bar-inner-wrap input:-ms-input-placeholder {
  color: #FFF;
}

.menu-wrap .search-bar-inner-wrap input::placeholder {
  color: #FFF;
}

.menu-wrap .search-bar-inner-wrap .unstyled-btn {
  color: #FFF;
}

.menu-wrap .search-bar-inner-wrap .unstyled-btn:last-child {
  font-size: 1.25rem;
}

.menu-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  height: 100%;
}

@media (max-width: 767px) {
  .menu-wrap .mCSB_inside>.mCSB_container {
    padding-right: 30px;
  }
}

.menu-block-animate {
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: top right;
}

.menu-block-animate.fade-in {
  transform-origin: top fade;
  transform: scaleX(1);
}

.menu-left {
  max-width: 49.9%;
  flex-basis: 49.9%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .menu-left {
    max-width: 20%;
    flex-basis: 20%;
  }
}

@media (max-width: 991px) {
  .menu-left {
    display: none;
  }
}

.menu-right {
  max-width: 50.1%;
  flex-basis: 50.1%;
  background-color: #00AB8E;
  height: 100%;
  border-bottom-left-radius: 20px;
  padding-top: 80px;
  padding-left: 102px;
  position: relative;
  transform: translate(100%, 0);
  transition: all 0.3s ease;
}

@media (max-width: 1199px) {
  .menu-right {
    max-width: 80%;
    flex-basis: 80%;
  }
}

@media (max-width: 991px) {
  .menu-right {
    max-width: 100%;
    flex-basis: 100%;
    border-bottom-left-radius: 0;
  }
}

@media (max-width: 767px) {
  .menu-right {
    padding-top: 13px;
    padding-left: 30px;
  }
}

.menu-right.active {
  transform: translate(0, 0);
  transition: all 0.3s ease;
}

.menu-right-content {
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .menu-right-content {
    padding-bottom: 45px;
  }
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #1C1F87;
}

.menu-link-block {
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .menu-link-block {
    margin-bottom: 32px;
  }
}

.menu-link-block.mb-40 {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .menu-link-block.mb-40 {
    margin-bottom: 32px;
  }
}

.menu-primary-link {
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1.3;
  color: #FFF;
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
}

@media (max-width: 767px) {
  .menu-primary-link {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 8px;
  }
}

.menu-primary-link.active.txt-scale:hover {
  color: #FFF;
  opacity: 0.7;
}

.menu-primary-link.link-bottom-line::before {
  left: 5px;
}

@media (max-width: 767px) {
  .menu-primary-link.link-bottom-line::before {
    left: 0;
  }
}

.menu-primary-link.txt-scale {
  opacity: 0;
  transform-origin: bottom center;
}

.menu-primary-link.txt-scale.active {
  opacity: 1;
  -webkit-animation: scaleY 0.4s ease;
  animation: scaleY 0.4s ease;
}

.icon-scale {
  opacity: 0;
  transform-origin: bottom center;
}

.icon-scale.icon-active {
  opacity: 1;
  -webkit-animation: fadeIn 0.4s ease;
  animation: fadeIn 0.4s ease;
}

.menu-sec-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: -10px;
  max-width: 503px;
}

.menu-sec-list li {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .menu-sec-list li {
    margin-bottom: 20px;
  }
}

.menu-sec-link {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #FFF;
  padding-bottom: 3px;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.menu-sec-link.active.txt-scale:hover {
  color: #FFF;
  opacity: 0.7;
}

.menu-sec-link.txt-scale {
  opacity: 0;
  transform-origin: bottom center;
}

.menu-sec-link.txt-scale.active {
  opacity: 1;
  -webkit-animation: scaleY 0.8s ease;
  animation: scaleY 0.8s ease;
}

.link-bottom-line:hover::before {
  width: 100%;
}

.link-bottom-line.txt-scale.active:hover {
  opacity: 1;
}

.link-bottom-line::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  width: 10px;
  border-bottom: 1px solid #FFF;
  transition: all 0.4s ease;
}

@media (max-width: 767px) {
  .link-bottom-line::before {
    bottom: -8px;
  }
}

.menu-bottom-block {
  margin-top: 30px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  max-width: 486px;
  position: relative;
}

@media (max-width: 767px) {
  .menu-bottom-block {
    margin-top: 26px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
}

.menu-bottom-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  margin: 0 -28px;
}

@media (max-width: 767px) {
  .menu-bottom-wrap {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
  }
}

.menu-bottom-wrap .item {
  padding: 0 28px;
}

@media (max-width: 767px) {
  .menu-bottom-wrap .item {
    padding: 0;
    margin-bottom: 8px;
    max-width: 50%;
    flex-basis: 50%;
  }

  .menu-bottom-wrap .item:nth-last-of-type(1) {
    margin-bottom: 0;
  }
}

.menu-icon-block {
  position: absolute;
  z-index: 1;
  top: 30px;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media (max-width: 575px) {
  .menu-icon-block {
    top: 17px;
    right: 14px;
  }
}

.menu-icon-block a {
  margin-bottom: 12px;
  position: relative;
}

.menu-icon-block .radius-100-btn {
  color: #FFF;
}

.radius-container {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 332px;
  height: 572px;
}

.radius-container.active .radius-block {
  width: 332px;
  height: 572px;
}

.radius-container .radius-block {
  width: 0px;
  height: 0px;
  position: relative;
  transform-origin: top left;
  transition: all 0.8s ease;
  overflow: hidden;
}

.radius-container .radius-bg {
  width: 332px;
  height: 282px;
  background-image: url("../images/radius-group.png");
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.5s ease;
}

.radius-container .radius-bg:nth-of-type(2) {
  margin-top: 8px;
}

.radius-container.white {
  width: 122px;
  height: 182px;
  right: 16px;
  bottom: 111px;
  top: unset;
}

@media (max-width: 767px) {
  .radius-container.white {
    bottom: 35px;
    right: -22px;
  }
}

.radius-container.white.active .radius-block {
  width: 122px;
  height: 182px;
}

.radius-container.white .radius-bg {
  width: 122px;
  height: 182px;
  background-image: url("../images/radius-group-w.png");
  background-size: contain;
}

.link-icon {
  width: 37px;
  height: 42px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border: 1px solid rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.link-icon.lang-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media (min-width: 1200px) {
  .link-icon:hover::after {
    transform-origin: top right;
    transform: scaleX(1);
  }
}

.link-icon::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.4s ease;
}

.link-icon i {
  position: relative;
  z-index: 2;
}

.link-icon span {
  color: #FFF;
}

.js-lang-btn.active .arrow-icon-bg {
  transform: rotate(-180deg);
}

.js-hidden-link {
  display: none;
}

.link-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.cart-icon-bg {
  width: 14px;
  height: 14px;
  display: block;
  background: url("../images/icon/icon-cart.png") no-repeat;
  background-size: contain;
  margin-right: 2px;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5),
all and (-o-min-device-pixel-ratio: 3/2),
all and (min--moz-device-pixel-ratio: 1.5),
all and (min-device-pixel-ratio: 1.5) {
  .cart-icon-bg {
    background: url("../images/icon/icon-cart@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .cart-icon-bg {
    background: url("../images/icon/icon-cart@2x.png") no-repeat;
    background-size: contain;
  }
}

.earth-icon-bg {
  width: 16px;
  height: 16px;
  margin-bottom: 5px;
  display: block;
  background: url("../images/icon/lang-earth.png") no-repeat;
  background-size: contain;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5),
all and (-o-min-device-pixel-ratio: 3/2),
all and (min--moz-device-pixel-ratio: 1.5),
all and (min-device-pixel-ratio: 1.5) {
  .earth-icon-bg {
    background: url("../images/icon/lang-earth@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .earth-icon-bg {
    background: url("../images/icon/lang-earth@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (max-width: 767px) {
  .earth-icon-bg {
    width: 14px;
    height: 14px;
  }
}

.arrow-icon-bg {
  width: 6px;
  height: 4px;
  display: block;
  background-image: url(../images/icon/lang-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.4s ease;
}

body,
html {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  color: #373737;
  background-color: #EDEDED;
  font-family: "Barlow", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  image-rendering: auto;
  touch-action: manipulation;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

body.loading-out {
  opacity: 0;
}

h1 {
  font-size: 3.75rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.75rem;
  }
}

h2 {
  font-size: 2.875rem;
  font-weight: 500;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  h5 {
    font-size: 1.125rem;
  }
}

h6 {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  h6 {
    font-size: 1rem;
  }
}

.primary-color {
  color: #00AB8E;
}

.display-1 {
  font-size: 6.25rem;
  font-weight: 400;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .display-1 {
    font-size: 3.125rem;
  }
}

.display-2 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.3;
}

@media (max-width: 1199px) {
  .display-2 {
    font-size: 2.625rem;
  }
}

@media screen and (max-width: 767px) {
  .display-2 {
    font-size: 2.5rem;
  }
}

.display-3 {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.display-5 {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}

.display-6 {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
}

span {
  font-size: 100%;
}

p,
a,
li,
span {
  font-size: inherit;
}

b,
strong {
  font-weight: bold;
}

.bg-title-radius {
  position: relative;
}

.bg-title-radius::before {
  content: "";
  background: url("../images/title-bg.png") no-repeat;
  background-size: contain;
  width: 152px;
  height: 212px;
  position: absolute;
  left: -48px;
  bottom: 0px;
  transform: translateY(5%);
  pointer-events: none;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5),
all and (-o-min-device-pixel-ratio: 3/2),
all and (min--moz-device-pixel-ratio: 1.5),
all and (min-device-pixel-ratio: 1.5) {
  .bg-title-radius::before {
    background: url("../images/title-bg@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .bg-title-radius::before {
    background: url("../images/title-bg@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (max-width: 1199px) {
  .bg-title-radius::before {
    left: -15px;
  }
}

@media (max-width: 767px) {
  .bg-title-radius::before {
    left: -10px;
    bottom: -65px;
  }
}

@media (max-width: 767px) {
  .mobile-radius-50::before {
    left: -90px;
  }
}

a {
  transition: all 0.5s ease;
}

a:hover {
  text-decoration: none;
}

.btn-standard {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}

.border-btn {
  color: #00AB8E;
  border: 1px solid;
  border-radius: 4px 4px 4px 0px;
  width: 77px;
  display: block;
  padding: 4px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.border-btn::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #1C1F87;
  transform-origin: top left;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

@media (min-width: 1200px) {

  .border-btn:hover,
  .border-btn.active {
    color: #FFF;
  }
}

@media (min-width: 1200px) {

  .border-btn:hover::before,
  .border-btn.active::before {
    transform: scaleX(1);
    transform-origin: top right;
  }
}

@media (max-width: 1199px) {
  .border-btn:hover {
    border: 1px solid;
  }
}

.border-btn.active {
  color: #FFF;
  border: 1px solid #1C1F87;
}

.border-btn.active::before {
  transform: scaleX(1);
}

.border-btn.disable {
  pointer-events: none;
}

.border-btn span {
  font-weight: 400;
  font-size: 0.9375rem;
  height: 27px;
  display: inline-block;
  position: relative;
  z-index: 2;
}

.border-bottom-btn {
  width: 102px;
  padding: 12px 0;
  color: #00AB8E;
  font-weight: 400;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  position: relative;
  z-index: 0;
  transition: all 0.4s ease;
  position: relative;
  z-index: 0;
}

.border-bottom-btn.js-fade-btn span {
  opacity: 0;
}

.border-bottom-btn.js-fade-btn::after {
  transform: scaleX(0);
}

.border-bottom-btn::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #00AB8E;
  transform-origin: top left;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.border-bottom-btn::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: #00AB8E;
  transition: all 0.4s ease 0.2s;
  transform-origin: top left;
}

.border-bottom-btn:hover {
  color: #00AB8E;
}

@media (min-width: 1200px) {
  .border-bottom-btn:hover {
    padding: 12px 7px;
    color: #FFF;
  }

  .border-bottom-btn:hover::before {
    transform: scaleX(1);
    transform-origin: top right;
  }
}

.border-bottom-btn.fadeIn::after {
  transform: scaleX(1);
}

.border-bottom-btn.fadeIn span {
  opacity: 1;
}

.border-bottom-btn i {
  font-size: 12px;
  position: relative;
  z-index: 2;
}

.border-bottom-btn span {
  position: relative;
  z-index: 2;
  transition: opacity 0.4s ease 0.6s;
}

.fill-btn {
  display: block;
  padding: 12px 7px;
  background-color: #00AB8E;
  color: #FFF;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  width: 78px;
  text-align: center;
  position: relative;
  z-index: 0;
}

.fill-btn::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  transform-origin: top left;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.fill-btn:hover {
  color: #FFF;
}

@media (min-width: 1200px) {
  .fill-btn:hover::before {
    transform: scaleX(1);
    transform-origin: top right;
  }
}

.fill-btn.fill-right-btn {
  right: 1px;
}

.control-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 25px 0;
  text-align: center;
  width: 73px;
  background-color: #00AB8E;
  color: #FFF;
  position: relative;
  z-index: 0;
  overflow: hidden;
  outline: 0;
}

@media (max-width: 1439px) {
  .control-btn {
    width: 50px;
    padding: 20px 0;
  }
}

.control-btn::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  transform-origin: top left;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.control-btn:hover {
  color: #FFF;
}

@media (min-width: 1200px) {
  .control-btn:hover::before {
    transform: scaleX(1);
    transform-origin: top right;
  }
}

.control-btn.prev-btn {
  border-top-left-radius: 5px;
}

.control-btn.next-btn {
  border-top-right-radius: 5px;
}

.control-btn i {
  position: relative;
  z-index: 2;
}

.big-prev,
.big-next {
  width: 14px;
  height: 26px;
}

.big-prev {
  background-image: url("../images/icon/big-prev.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.big-next {
  background-image: url("../images/icon/big-next.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.square-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 108px;
  background-color: #1C1F87;
  color: #FFF;
  padding: 21px 0;
  font-weight: 400;
  font-size: 1rem;
  position: relative;
  outline: 0;
  border: 0;
  outline: 0;
}

.square-btn span {
  position: relative;
  z-index: 2;
}

.square-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transform-origin: top left;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.square-btn:hover {
  color: #FFF;
}

@media (min-width: 1200px) {
  .square-btn:hover::before {
    transform: scaleX(1);
    transform-origin: top right;
  }
}

.square-btn:hover .icon-arrow-45 {
  margin-right: 0;
}

.icon-arrow-45 {
  width: 16px;
  height: 17px;
  display: block;
  background-image: url("../images/icon/icon-arrow-45.svg");
  margin-bottom: 8px;
  margin-right: 4px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.retangle-btn {
  width: 196px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  font-size: 1.125rem;
  font-weight: 400;
  overflow: hidden;
  border-radius: 50px;
  position: relative;
  z-index: 0;
  transition: all 0.3s ease;
  padding: 8px 20px 8px 36px;
  background-color: #00AB8E;
  position: relative;
}

@media (max-width: 767px) {
  .retangle-btn {
    padding: 12px 15px 12px 15px;
  }
}

.retangle-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  transform-origin: top left;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.retangle-btn:hover {
  opacity: 1;
}

.retangle-btn:hover .icon-wrap::before {
  left: -150px;
}

@media (min-width: 1200px) {
  .retangle-btn:hover::before {
    transform: scaleX(1);
    transform-origin: top right;
  }
}

.retangle-btn.scale-icon:hover {
  padding: 8px 30px 8px 46px;
}

.retangle-btn span {
  display: block;
  color: #FFF;
  position: relative;
  z-index: 2;
  transition-delay: 0.1s;
  transition: all 0.4s ease;
}

.retangle-btn i {
  display: block;
  width: 59px;
  height: 59px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: #FFF;
  font-size: 22px;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

@media (max-width: 767px) {
  .retangle-btn i {
    width: 18px;
    height: 18px;
  }
}

.retangle-btn .icon-wrap {
  position: relative;
}

.retangle-btn .icon-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #00AB8E;
  border-radius: 50px;
  transition: all 0.5s ease;
}

.radius-100-btn {
  color: #1C1F87;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.radius-100-btn .radius {
  width: 38px;
  height: 38px;
  background-color: #1C1F87;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border-radius: 100%;
  margin-bottom: 8px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.radius-100-btn .radius i {
  position: relative;
  z-index: 2;
}

.radius-100-btn .radius::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #14165F;
  transform-origin: top left;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.radius-100-btn .radius .icon-cancel {
  font-size: 0.75rem;
}

.radius-100-btn:hover {
  color: #1C1F87;
}

@media (min-width: 1200px) {
  .radius-100-btn:hover .radius::before {
    transform: scaleX(1);
    transform-origin: top right;
  }
}

@media (max-width: 767px) {
  .js-menu-cancel {
    font-size: 0.875rem;
  }
}

.filter-btn {
  padding: 5px 13px;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #FFF;
  background-color: #00AB8E;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  width: 105px;
  border-radius: 5px 5px 5px 0;
  display: none;
}

.filter-btn:hover {
  color: #FFF;
}

@media (max-width: 767px) {
  .filter-btn {
    display: flex;
    position: fixed;
    right: 23px;
    bottom: 70px;
    bottom: calc(env(safe-area-inset-bottom));
  }
}

.filter-icon {
  background: url("../images/icon/filter.png") no-repeat;
  background-size: contain;
  width: 18px;
  height: 4px;
  margin-left: 18px;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5),
all and (-o-min-device-pixel-ratio: 3/2),
all and (min--moz-device-pixel-ratio: 1.5),
all and (min-device-pixel-ratio: 1.5) {
  .filter-icon {
    background: url("../images/icon/filter@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .filter-icon {
    background: url("../images/icon/filter@2x.png") no-repeat;
    background-size: contain;
  }
}

.add-cart-btn {
  background-color: #00AB8E;
  width: 37px;
  height: 37px;
  border-radius: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  overflow: hidden;
}

.add-cart-btn .cart-icon-bg {
  width: 22px;
  height: 19px;
  background: url("../images/icon/icon-add-cart.png") no-repeat;
  background-size: contain;
  margin-right: 2px;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5),
all and (-o-min-device-pixel-ratio: 3/2),
all and (min--moz-device-pixel-ratio: 1.5),
all and (min-device-pixel-ratio: 1.5) {
  .add-cart-btn .cart-icon-bg {
    background: url("../images/icon/icon-add-cart@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .add-cart-btn .cart-icon-bg {
    background: url("../images/icon/icon-add-cart@2x.png") no-repeat;
    background-size: contain;
  }
}

.add-cart-btn::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  transform-origin: top left;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  border-radius: 100%;
}

.add-cart-btn:hover {
  color: #FFF;
}

@media (min-width: 1200px) {
  .add-cart-btn:hover::before {
    transform: scaleX(1);
    transform-origin: top right;
  }
}

.unstyled-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 1.375rem;
  border: none;
  background-color: transparent;
  color: #00AB8E;
}

.unstyled-btn:focus {
  outline: none;
}

.delay-2s {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay-4s {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay-6s {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.js-fade-right {
  opacity: 0;
}

.js-fade-right.active {
  opacity: 1;
  -webkit-animation: fadeInRight 1.2s;
  animation: fadeInRight 1.2s;
}

.js-fade-bottom {
  opacity: 0;
}

.js-fade-bottom.active {
  opacity: 1;
  -webkit-animation: fadeInBottom 0.6s;
  animation: fadeInBottom 0.6s;
}

.js-fade-bottom-10 {
  opacity: 0;
}

.js-fade-bottom-10.active {
  opacity: 1;
  -webkit-animation: fadeInBottom10 0.6s;
  animation: fadeInBottom10 0.6s;
}

.js-fade-botom-right {
  opacity: 0;
}

.js-fade-botom-right.active {
  opacity: 1;
  -webkit-animation-name: fadeBR;
  animation-name: fadeBR;
  -webkit-animation-duration: 1.4s;
  animation-duration: 1.4s;
}

@media (max-width: 767px) {
  .js-fade-botom-right.active {
    -webkit-animation-name: fadeInBottom;
    animation-name: fadeInBottom;
    -webkit-animation-duration: 1.4s;
    animation-duration: 1.4s;
  }
}

.animate-timeout .item:nth-of-type(3n+1) {
  transition-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@media (max-width: 767px) {
  .animate-timeout .item:nth-of-type(3n+1) {
    transition-delay: unset;
    -webkit-animation-delay: unset;
    animation-delay: unset;
  }
}

.animate-timeout .item:nth-of-type(3n+2) {
  transition-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

@media (max-width: 767px) {
  .animate-timeout .item:nth-of-type(3n+2) {
    transition-delay: unset;
    -webkit-animation-delay: unset;
    animation-delay: unset;
  }
}

.animate-timeout .item:nth-of-type(3n) {
  transition-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@media (max-width: 767px) {
  .animate-timeout .item:nth-of-type(3n) {
    transition-delay: unset;
    -webkit-animation-delay: unset;
    animation-delay: unset;
  }
}

.body-container {
  padding-top: 85px;
}

.flex-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
}

@media (max-width: 1199px) {
  .flex-wrap {
    flex-wrap: wrap;
  }
}

.sticky-block {
  position: -webkit-sticky;
  position: sticky;
  z-index: 998;
  top: 100px;
}

@media (max-width: 767px) {
  .sticky-block {
    z-index: 1000;
  }
}

.bg-cover {
  background-size: cover;
  background-position: center center;
}

.img-cover {
  position: relative;
  overflow: hidden;
}

.img-cover img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.5s ease;
}

.img-box {
  width: 100%;
  overflow: hidden;
}

.img-overflow-h {
  overflow: hidden;
}

.img-animate-block {
  position: relative;
}

.img-animate-block.active::after {
  -webkit-animation: switchBlock 0.7s forwards;
  animation: switchBlock 0.7s forwards;
  opacity: 1;
}

.img-animate-block.active .img-cover {
  opacity: 1;
}

.img-animate-block::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #00AB8E;
  display: block;
  transform-origin: top right;
  opacity: 0;
}

.img-animate-block.delay.active::after {
  transition: all 0s ease 1s;
  -webkit-animation: switchBlock 0.9s forwards 0.1s;
  animation: switchBlock 0.9s forwards 0.1s;
}

.img-animate-block .img-cover {
  opacity: 0;
  transition: all 0.2s ease;
}

.text-2-line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
  background-color: #C4C4C4;
  opacity: 1;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #00AB8E;
}

@media (max-width: 767px) {
  .edit-block {
    line-height: 1;
  }
}

.edit-block img {
  max-width: 100%;
  border-radius: 10px;
}

.edit-block h1 {
  color: #00AB8E;
}

.edit-block h2,
.edit-block h3,
.edit-block h4,
.edit-block h5,
.edit-block h6 {
  color: #00AB8E;
  margin-bottom: 20px;
}

.edit-block h2 {
  font-weight: 500;
  font-size: 2.875rem;
  line-height: 1.2;
  color: #00AB8E;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .edit-block h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}

.edit-block h3 {
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1.3;
  color: #00AB8E;
}

.edit-block p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #737373;
  margin-bottom: 20px;
  font-family: "aria", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
}

.edit-block ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-family: "aria", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
}

.edit-block ul li {
  padding-left: 30px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #737373;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  position: relative;
}

.edit-block ul li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #00AB8E;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 8px;
}

.edit-block ol {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  counter-reset: li;
  font-family: "aria", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
}

.edit-block ol li {
  padding-left: 30px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #737373;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  position: relative;
  counter-increment: li;
}

.edit-block ol li::before {
  content: "" counter(li) ".";
  font-family: "Barlow", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-weight: 400;
  position: absolute;
  left: 0;
  top: 0px;
  color: #00AB8E;
}

.mCSB_horizontal.mCSB_inside>.mCSB_container {
  margin-bottom: 72px;
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #00AB8E !important;
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  height: 3px;
  background-color: #00AB8E;
}

@media (max-width: 1199px) {
  .table-scroll {
    overflow-x: scroll;
    padding-bottom: 65px;
  }
}

.table-scroll::-webkit-scrollbar {
  width: 0;
  display: none;
}

@media (max-width: 1199px) {
  .row-table {
    width: 1200px;
  }
}

@media (max-width: 767px) {
  .row-table {
    width: 1040px;
  }
}

.row-table tr {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
}

.row-table th {
  background-color: #00AB8E;
  color: #FFF;
  text-align: center;
  font-weight: 400;
  padding: 18px 0;
  font-size: 1.125rem;
  line-height: 1.5;
  max-width: 100%;
  flex-basis: 100%;
}

.row-table th:nth-of-type(1) {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.row-table th:nth-last-of-type(1) {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.row-table td {
  max-width: 100%;
  flex-basis: 100%;
  font-family: "aria", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  line-height: 1.5;
}

.row-table tbody tr {
  border-bottom: 1px solid #C4C4C4;
}

.row-table tbody tr:nth-of-type(1) td {
  padding-top: 55px;
}

@media (max-width: 767px) {
  .row-table tbody tr:nth-of-type(1) td {
    padding-top: 24px;
  }
}

@media (max-width: 1199px) {
  .row-table tbody tr:nth-last-of-type(1) {
    border-bottom: none;
  }
}

@media (max-width: 1199px) {
  .row-table tbody tr:nth-last-of-type(1) td {
    padding-bottom: 0px;
  }
}

.row-table tbody td {
  padding: 40px 20px;
  font-weight: 400;
  color: #737373;
  font-size: 0.9375rem;
}

@media (max-width: 767px) {
  .row-table tbody td {
    padding: 24px 16px;
  }
}

.row-table tbody td:nth-of-type(1) {
  padding: 40px 20px 40px 40px;
}

@media (max-width: 1199px) {
  .row-table tbody td:nth-of-type(1) {
    padding: 40px 20px 40px 30px;
  }
}

@media (max-width: 767px) {
  .row-table tbody td:nth-of-type(1) {
    padding: 24px 16px 24px 20px;
  }
}

.row-table tbody td:nth-last-of-type(1) {
  padding: 40px 40px 40px 20px;
}

@media (max-width: 1199px) {
  .row-table tbody td:nth-last-of-type(1) {
    padding: 40px 30px 40px 20px;
  }
}

@media (max-width: 767px) {
  .row-table tbody td:nth-last-of-type(1) {
    padding: 24px 20px 24px 16px;
  }
}

@media (max-width: 1199px) {
  .col-table {
    width: 1175px;
  }
}

.col-table th {
  padding: 50px 30px 50px 23px;
  background-color: #00AB8E;
  color: #FFF;
  font-size: 1.125rem;
  max-width: 126px;
  flex-basis: 126px;
}

.col-table td {
  font-size: 0.9375rem;
  line-height: 1.5;
  font-weight: 400;
  color: #737373;
  padding: 40px 36px;
  border-bottom: 1px solid #C4C4C4;
  max-width: calc((100% - 126px - 33.333%) / 2);
  flex-basis: calc((100% - 126px - 33.333%) / 2);
}

.col-table td:nth-of-type(1) {
  padding: 40px 36px 40px 44px;
}

.col-table td:nth-last-of-type(1) {
  max-width: calc(33.333% + 112px);
  padding-right: 112px;
}

.col-table tr {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
}

.col-table tr:nth-of-type(1) th {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.col-table tr:nth-last-of-type(1) th {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.flex-table-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.table-item {
  max-width: 50%;
  flex-basis: 50%;
  padding: 0 12px;
}

@media (max-width: 991px) {
  .table-item {
    max-width: 100%;
    flex-basis: 100%;
  }
}

@media (max-width: 991px) {
  .table-item:nth-of-type(1) .flex-table-tr:nth-last-of-type(1) .flex-table-data {
    border-bottom: none;
  }
}

@media (max-width: 991px) {
  .table-item:nth-of-type(2) .flex-table-tr:nth-of-type(1) .flex-table-head {
    padding-top: 15px;
  }
}

.flex-table-tr {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
}

.flex-table-tr:nth-of-type(1) .flex-table-head {
  padding-top: 20px;
}

@media (max-width: 767px) {
  .flex-table-tr:nth-of-type(1) .flex-table-head {
    padding-top: 8px;
  }
}

.flex-table-tr:nth-last-of-type(1) .flex-table-data {
  border-bottom: 1px solid #C4C4C4;
}

.flex-table-tr:nth-last-of-type(1) .flex-table-head {
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .flex-table-tr:nth-last-of-type(1) .flex-table-head {
    padding-bottom: 8px;
  }
}

.flex-table-head {
  max-width: 80px;
  flex-basis: 80px;
  background-color: #00AB8E;
  color: #FFF;
  padding: 15px 0;
  text-align: center;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .flex-table-head {
    font-size: 1rem;
    line-height: 1.5;
    padding: 8px 0;
    max-width: 48px;
    flex-basis: 48px;
    margin-right: 18px;
  }
}

.flex-table-data {
  max-width: calc((100% - 20px - 80px) / 2);
  flex-basis: calc((100% - 20px - 80px) / 2);
  padding: 16px 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: row;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #737373;
  border-top: 1px solid #C4C4C4;
}

@media (max-width: 767px) {
  .flex-table-data {
    padding: 8px 0;
    max-width: calc((100% - 18px - 48px) / 2);
    flex-basis: calc((100% - 18px - 48px) / 2);
  }
}

.flex-table-data p {
  margin-bottom: 0;
}

.nsdi-article-system {
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .nsdi-article-system {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .nsdi-article-system.double-article .nas-article-wrapper:nth-of-type(1) {
    margin-bottom: 30px;
  }
}

.nsdi-article-system.double-article img {
  margin-bottom: 32px;
}

.nsdi-article-system.double-article .row {
  margin: 0 -12px;
}

.nsdi-article-system.double-article .col-md-6 {
  padding: 0 12px;
}

.nsdi-article-system.small-container .nas-article-wrapper {
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .nsdi-article-system.small-container .nas-article-wrapper {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .nas-image-wrapper {
    margin-bottom: 24px;
  }
}

.article-swiper {
  padding-bottom: 65px;
}

@media (max-width: 767px) {
  .article-swiper {
    padding-bottom: 53px;
  }
}

.article-swiper .swiper-pagination {
  bottom: 0;
}

.animate-scale .img-animate {
  transition: all 4.2s ease;
}

.animate-scale .swiper-slide-active .img-animate {
  transform: scale(2.4);
}

.swiper-banner-prev,
.swiper-banner-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: left center;
  width: 60px;
}

@media (max-width: 1199px) {

  .swiper-banner-prev,
  .swiper-banner-next {
    display: none;
  }
}

.swiper-banner-prev {
  left: 0;
  cursor: pointer;
  background-image: url("../images/icon/swiper-prev.svg");
}

.swiper-banner-next {
  right: 0;
  cursor: pointer;
  background-image: url("../images/icon/swiper-next.svg");
}

.swiper-small-prev,
.swiper-small-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
}

@media (max-width: 1199px) {

  .swiper-small-prev,
  .swiper-small-next {
    display: none;
  }
}

.swiper-small-prev {
  left: -40px;
  cursor: pointer;
  background-image: url("../images/icon/swiper-prev.svg");
}

.swiper-small-next {
  right: -40px;
  cursor: pointer;
  background-image: url("../images/icon/swiper-next.svg");
}

.article-img-box {
  padding-top: 44.26910299%;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .article-img-box {
    padding-top: 137.8548895899%;
  }
}

.article-swiper-img {
  width: 100%;
  background-size: cover;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.article-swiper-img p {
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.3;
  color: #FFF;
  margin-bottom: 0;
  position: absolute;
  right: 73px;
  bottom: 102px;
  width: 384px;
}

@media (max-width: 1199px) {
  .article-swiper-img p {
    font-size: 2rem;
    width: 250px;
    right: 7%;
    bottom: 10%;
  }
}

@media (max-width: 767px) {
  .article-swiper-img p {
    right: 35px;
    bottom: 35px;
    width: 212px;
  }
}

.mCSB_inside>.mCSB_container {
  margin-right: 0;
  padding-right: 8px;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #00AB8E;
}

.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #C4C4C4;
}

.filter-block {
  background-color: #FFF;
  border-radius: 10px;
  padding: 40px 25px 25px 25px;
  width: 100%;
}

@media (max-width: 767px) {
  .filter-block {
    background-color: #EDEDED;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow-y: scroll;
    display: none;
    border-radius: 0;
    max-height: unset;
    padding-bottom: calc(env(safe-area-inset-bottom));
  }
}

.filter-block hr {
  margin: 32px 0 15px 0;
  border-top: 1px solid #EDEDED;
}

.filter-block .radius-100-btn {
  display: none;
  position: fixed;
  right: 20px;
  top: 20px;
}

@media (max-width: 767px) {
  .filter-block .radius-100-btn {
    display: flex;
  }
}

.filter-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

@media (max-width: 767px) {
  .filter-wrap {
    height: 100%;
  }
}

.filter-block-content {
  width: 100%;
}

.filter-title {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #2EC3AA;
  margin-bottom: 20px;
}

.filter-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.filter-list li {
  margin-bottom: 16px;
}

.filter-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  color: #373737;
  transition: all 0.4s ease;
}

.filter-link.active .radius::after {
  display: block;
}

.filter-link .radius {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  border: 1px solid #EDEDED;
  margin-right: 22px;
  position: relative;
}

@media (max-width: 767px) {
  .filter-link .radius {
    background-color: #FFF;
  }
}

.filter-link .radius::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: #1C1F87;
  border-radius: 100%;
  display: none;
}

.filter-link .txt {
  font-size: 1rem;
  line-height: 1.5;
  max-width: calc(100% - 50px);
  font-weight: 400;
}

.filter-link:hover {
  color: rgba(55, 55, 55, 0.7);
}

.fill-bottom-block {
  margin-top: 13px;
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
}

.fill-bottom-block .fill-btn:first-child {
  width: calc(100% - 78px - 2px);
}

@media (max-width: 767px) {
  .fill-bottom-block .fill-btn:first-child {
    width: calc(100% - 112px - 2px);
  }
}

@media (max-width: 767px) {
  .fill-bottom-block .fill-btn {
    width: 112px;
  }
}

.pretty {
  white-space: unset;
}

.pretty .state label {
  text-indent: 0;
  padding-left: 38px;
  color: #000;
}

.pretty .state label:before {
  width: 16px;
  height: 16px;
  border-color: #EDEDED;
  background-color: #FFF;
  top: 0;
}

.pretty .state label:after {
  top: 4%;
}

.pretty.p-default input:checked~.state label:after {
  background-color: #00AB8E !important;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 2%;
  left: 2px;
  transform: translate(0%, 16%);
}

.selectric-main-select .selectric {
  border-radius: 5px;
  background-color: #FFF;
  border: 1px solid #EDEDED;
}

.selectric-main-select .selectric::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translate(0, -50%);
  width: 13px;
  height: 13px;
  background: url("../images/icon/dropdown.png") no-repeat;
  background-size: contain;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5),
all and (-o-min-device-pixel-ratio: 3/2),
all and (min--moz-device-pixel-ratio: 1.5),
all and (min-device-pixel-ratio: 1.5) {
  .selectric-main-select .selectric::after {
    background: url("../images/icon/dropdown@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .selectric-main-select .selectric::after {
    background: url("../images/icon/dropdown@2x.png") no-repeat;
    background-size: contain;
  }
}

.selectric-main-select .selectric .button {
  display: none;
}

.selectric-main-select .selectric .label {
  font-weight: 400;
  font-size: 1.125rem;
  margin: 0;
  padding: 9px 24px;
  line-height: unset;
  height: auto;
}

.selectric-main-select .selectric-items li {
  font-size: 1.125rem;
  line-height: 1.5;
}

.selectric-main-select .selectric-items li.highlighted {
  background-color: #1C1F87;
  color: #FFF;
}

.selectric-main-select .selectric-items li:hover {
  background-color: rgba(28, 31, 135, 0.6);
  color: #FFF;
}

.selectric-main-select.selectric-open::after {
  transform: translate(0, -50%) rotate(180deg);
}

.main-label {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #373737;
}

.main-input {
  width: 100%;
  padding: 12px 22px;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #737373;
  border-radius: 5px;
  border: none;
}

.main-input:focus {
  border: 1px solid #1C1F87;
  outline: 0;
}

.main-input.error {
  border: 1px solid red;
}

.main-input.main-area {
  min-height: 200px;
  resize: none;
}

@media (max-width: 767px) {
  .main-input.main-area {
    min-height: 320px;
  }
}

.unstyled-input {
  border: none;
}

.unstyled-input::-moz-placeholder {
  color: #C4C4C4;
}

.unstyled-input:-ms-input-placeholder {
  color: #C4C4C4;
}

.unstyled-input::placeholder {
  color: #C4C4C4;
}

.unstyled-input:focus {
  outline: none;
}

p.error {
  color: red;
  margin-bottom: 0;
}

.other-input {
  border: none;
  border-bottom: 1px solid #C4C4C4;
  outline: 0;
  background-color: #FFF;
  border-radius: 0;
}

.other-input.disable {
  pointer-events: none;
}

.other-input:focus {
  border-bottom: 1px solid #1C1F87;
  outline: 0;
}

.other-input.error {
  border-bottom: 1px solid red;
}

.pagination-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  position: relative;
}

.pagination-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pagination-list li {
  padding: 0 12px;
}

.pagination-btn {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #131313;
  transition: all 0.3s ease;
  border-radius: 5px 5px 5px 0;
  white-space: nowrap;
}

.pagination-btn.order {
  padding: 5px 9px;
}

.pagination-btn.active {
  background-color: #1C1F87;
  color: #FFF;
}

.pagination-btn.active:hover {
  color: #FFF;
}

.pagination-btn.next-btn {
  margin-left: auto;
}

.pagination-btn:hover {
  color: rgba(19, 19, 19, 0.5);
  opacity: 0.8;
}

.bread-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  margin: 0 -10px;
}

@media (max-width: 767px) {
  .bread-list {
    margin: 0 -10px;
  }
}

.bread-list li {
  padding: 0 10px;
  position: relative;
}

.bread-list li:nth-last-of-type(1)::after {
  display: none;
}

.bread-list li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 2px;
  height: 2px;
  background-color: #737373;
}

.bread-link {
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 0.6666666667;
  color: #737373;
  text-transform: uppercase;
  white-space: nowrap;
}

.bread-link:hover,
.bread-link.active {
  color: #00AB8E;
}

.learn-card {
  border-radius: 30px 30px 30px 0px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding-top: 58.1655480984%;
}

@media (max-width: 767px) {
  .learn-card {
    padding-top: 0;
    border-radius: 0;
  }
}

@media (min-width: 1200px) {
  .learn-card:hover .learn-card-bg {
    transform: scale(1.2);
  }
}

.learn-card .stretched-link {
  z-index: 3;
}

.learn-card-bg {
  background-size: cover;
  background-position: center center;
  width: 100%;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .learn-card-bg {
    position: relative;
    padding-top: 58.1655480984%;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 30px 30px 30px 0px;
  }
}

.learn-card-bg::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(19, 19, 19, 0.5);
}

@media (max-width: 767px) {
  .learn-card-bg::before {
    border-radius: 30px 30px 30px 0px;
  }
}

.learn-content-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  position: relative;
  z-index: 2;
  position: absolute;
  left: 40px;
  bottom: 32px;
  transition: all 0.3s ease;
  width: 100%;
}

.learn-content-wrap.pointer-none {
  pointer-events: none;
}

@media (max-width: 767px) {
  .learn-content-wrap {
    display: none;
  }
}

.play-icon {
  width: 72px;
  height: 72px;
  background-color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border-radius: 100%;
}

@media (max-width: 767px) {
  .play-icon {
    width: 38px;
    height: 38px;
    position: absolute;
    z-index: 2;
    left: 18px;
    bottom: 20px;
  }
}

.play-icon.mobile {
  display: none;
}

@media (max-width: 767px) {
  .play-icon.mobile {
    display: flex;
  }
}

.play-icon i {
  width: 18px;
  height: 21px;
  background-image: url("../images/icon/play-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 6px;
}

@media (max-width: 767px) {
  .play-icon i {
    width: 10px;
    height: 11px;
    margin-left: 4px;
  }
}

.learn-txt {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.3;
  color: #FFF;
  max-width: 80%;
  flex-basis: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
  padding-left: 32px;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .learn-txt {
    font-size: 1.625rem;
    max-width: 80%;
    flex-basis: 80%;
  }
}

@media (max-width: 767px) {
  .learn-txt {
    display: none;
    max-width: 100%;
    flex-basis: 100%;
    padding-left: 0;
  }
}

.learn-txt.mobile {
  display: none;
  color: #373737;
  font-size: 1.5rem;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .learn-txt.mobile {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-align: left;
  }
}

.product-list-card {
  padding-bottom: 12px;
  position: relative;
}

@media (max-width: 767px) {
  .product-list-card {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
  }
}

.product-list-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: top right;
  transition: transform 0.6s ease;
  height: 2px;
  background-color: #00AB8E;
}

@media (min-width: 1200px) {
  .product-list-card:hover:after {
    transform-origin: top left;
    transform: scaleX(1);
  }
}

@media (min-width: 1200px) {
  .product-list-card:hover .product-list-bg {
    transform: scale(1.1);
  }
}

.product-list-card .stretched-link::after {
  z-index: 2;
}

.product-list-bg-block {
  width: 100%;
  padding-top: 77.5800711744%;
  position: relative;
  z-index: 0;
  margin-bottom: 12px;
  border-radius: 10px 10px 10px 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .product-list-bg-block {
    padding-top: 38.7%;
    max-width: 38.7%;
    flex-basis: 38.7%;
    margin-bottom: 0;
  }
}

.product-list-bg-block.size-square {
  padding-top: 77.7210884354%;
}

.product-list-bg-block.border-bg {
  border-radius: 10px;
}

.product-list-bg {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  transition: all 0.4s ease;
}

.product-list-badge {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1;
  background-color: #1C1F87;
  color: #FFF;
  padding: 4px 12px;
  border-radius: 5px 5px 5px 0;
}

@media (max-width: 767px) {
  .product-list-content {
    padding-left: 24px;
    max-width: 61.3%;
    flex-basis: 61.3%;
  }
}

.product-list-title {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #373737;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
}

@media (max-width: 767px) {
  .product-list-title {
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 575px) {
  .product-list-title {
    margin-bottom: 5px;
  }
}

.product-list-h6-title {
  color: #00AB8E;
}

.product-list-small-title {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #00AB8E;
  margin-bottom: 0;
}

.product-price-wrap,
.product-list-price {
  text-align: right;
  color: #00AB8E;
  font-weight: 500;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

/* 確保 $ 符號使用 Arial 字體，讓中間直線完全貫穿 */
.product-price-wrap .product-price,
.product-list-price,
h4.product-price {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 500;
}

.product-price-wrap a {
  padding: 10px 30px;
  background-color: #00AB8E;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 25px;
  font-weight: 500;
  font-size: 16px;
}

.product-price-wrap a:hover {
  background-color: #00AB8E;
}


@media (max-width: 767px) {
  .product-list-small-title {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

.product-col-card {
  position: relative;
}

@media (min-width: 1200px) {
  .product-col-card:hover .product-col-bg {
    transform: scale(1.1);
  }
}

.product-col-card .product-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

@media (max-width: 1199px) {
  .product-col-card .product-content {
    flex-wrap: wrap;
  }
}

.product-col-card .border-bottom-btn {
  width: 90px;
  justify-content: center;

}

@media (max-width: 1199px) {
  .product-col-card .border-bottom-btn {
    margin-left: auto;
  }
}

@media (max-width: 575px) {
  .product-col-card .border-bottom-btn {
    width: 102px;
    justify-content: space-between;
  }
}

.product-col-card .border-bottom-btn .icon-arrow_right {
  display: none;
}

@media (max-width: 575px) {
  .product-col-card .border-bottom-btn .icon-arrow_right {
    display: block;
  }
}

.product-col-card .border-bottom-btn.mobile-center {
  display: flex;
  justify-content: flex-start;
  /* 建議使用標準值 flex-start */
  align-items: flex-end;
  /* 建議使用標準值 flex-end */
  flex-direction: row;

  width: 120px;
  /* 防止在極小螢幕縮到變形 */
  transition: width 0.3s ease;
  /* 增加過渡動畫，縮放時更平滑 */
}

.product-col-bg-block {
  position: relative;
  padding-top: 80%;
  /* 正方形比例 1:1 */
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .product-col-bg-block {
    margin-bottom: 12px;
  }
}

.product-col-bg {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all 0.4s ease;
}

.menu-sec-list li {
  max-width: 50%;
  flex-basis: 50%;
  margin-bottom: 10px;
}

.footer-list-item .menu-sec-list li {
  max-width: 100%;
  flex-basis: 100%;
  margin-bottom: 10px;
}

.product-col-title {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.28125;
  color: #737373;
  margin-bottom: 0;
  width: 70%;
  flex-grow: 1;
}

.product-col-title span {
  border-bottom: 1px solid red;
  padding-bottom: 10px;
}

.product-col-title .border-bottom-btn::after {
  background-color: transparent;
}

@media (max-width: 767px) {
  .product-col-title {
    margin-bottom: 8px;
    font-size: 1.5rem;
    line-height: 1.3;
  }
}

.point-container {
  width: 1285px;
  margin: 0 auto -30px auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
}

@media (max-width: 1439px) {
  .point-container {
    width: 90%;
  }
}

@media (max-width: 1199px) {
  .point-container {
    display: none;
  }
}

.point-container::before {
  content: "“";
  font-weight: 400;
  color: #FFF;
  font-size: 6.25rem;
  line-height: 1.2;
}

.point-container::after {
  content: "“";
  font-weight: 400;
  color: #FFF;
  font-size: 6.25rem;
  line-height: 1.2;
}

.count-num-section {
  padding: 78px 0 170px 0;
  background-color: #00AB8E;
  margin-bottom: 120px;
  border-radius: 10px;
}

@media (max-width: 1199px) {
  .count-num-section {
    padding: 80px 0 100px 0;
    margin-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .count-num-section {
    padding: 80px 0 40px 0;
  }
}

.count-num-container {
  padding-left: 50px;
  padding-right: 100px;
}

@media (min-width: 1600px) {
  .count-num-container {
    width: 1285px;
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 1199px) {
  .count-num-container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 767px) {
  .count-num-container {
    padding: 0 20px 0 5px;
  }
}

.count-num-wrap {
  display: flex;
  justify-content: flex-sart;
  align-items: flex-start;
  flex-direction: row;
}

@media (min-width: 1600px) {
  .count-num-wrap {
    justify-content: center;
  }
}

@media (max-width: 1199px) {
  .count-num-wrap {
    flex-wrap: wrap;
    margin: 0;
  }
}

.count-num-wrap .item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 25%;
  flex-basis: 25%;
}

@media (min-width: 1600px) {
  .count-num-wrap .item {
    max-width: 306px;
    flex-basis: 306px;
  }
}

@media (max-width: 1199px) {
  .count-num-wrap .item {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 40px;
    justify-content: flex-start;
    max-width: 50%;
    flex-basis: 50%;
  }
}

@media (max-width: 767px) {
  .count-num-wrap .item:nth-of-type(1) .count-icon {
    width: 24px;
  }
}

@media (max-width: 767px) {
  .count-num-wrap .item:nth-of-type(2) .count-icon {
    width: 18px;
  }
}

@media (max-width: 767px) {
  .count-num-wrap .item:nth-of-type(3) .count-icon {
    width: 12px;
  }
}

.count-num-wrap .item:nth-of-type(4) .count-label {
  align-items: flex-end;
}

.count-num-wrap .item:nth-of-type(4) .count-icon {
  margin-bottom: 7px;
}

@media (max-width: 767px) {
  .count-num-wrap .item:nth-of-type(4) .count-icon {
    width: 18px;
  }
}

.count-num-wrap .count-box {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media (max-width: 1199px) {
  .count-num-wrap .count-box {
    align-items: center;
  }
}

@media (max-width: 767px) {
  .count-num-wrap .count-box {
    align-items: center;
  }
}

.count-label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.count-num {
  font-weight: 400;
  font-size: 6.25rem;
  line-height: 1.2;
  color: #FFF;
  margin-bottom: 48px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  position: relative;
}

.count-num.plus::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  content: "+";
}

@media (max-width: 1439px) {
  .count-num {
    font-size: 5rem;
  }
}

@media (max-width: 767px) {
  .count-num {
    font-size: 3.125rem;
    margin-bottom: 0;
  }
}

.count-label {
  margin-bottom: 0;
}

.count-label-txt {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #FFF;
  margin-bottom: 0;
  margin-left: 12px;
  max-width: 195px;
  text-align: center;
}

@media (max-width: 1439px) {
  .count-label-txt {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .count-label-txt {
    font-size: 1.125rem;
    margin-left: 8px;
  }
}

.video-modal {
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  padding-right: 0 !important;
}

.video-modal .modal-content {
  background-color: transparent;
}

.video-modal .modal-body {
  padding: 0;
}

@media (min-width: 768px) {
  .video-modal .modal-dialog {
    max-width: 90%;
  }
}

@media (min-width: 1200px) {
  .video-modal .modal-dialog {
    max-width: 900px;
  }
}

.modal-cancel-btn {
  position: absolute;
  top: 50px;
  right: 50px;
}

@media (max-width: 767px) {
  .modal-cancel-btn {
    top: 30px;
    right: 30px;
  }
}

.modal-cancel-btn .radius {
  width: 58px;
  height: 58px;
}

.main-modal {
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  padding-right: 0 !important;
}

.main-modal .modal-body {
  padding: 36px 100px 115px 100px;
}

@media (max-width: 1199px) {
  .main-modal .modal-body {
    padding: 45px 25px 120px 25px;
  }
}

.main-modal .modal-content {
  background-color: #EDEDED;
  border: none;
}

@media (min-width: 992px) {
  .main-modal .modal-dialog {
    max-width: 90%;
  }
}

@media (min-width: 1440px) {
  .main-modal .modal-dialog {
    max-width: 1200px;
  }
}

@media (max-width: 767px) {
  .main-modal .modal-dialog {
    margin-top: 70px;
    margin: 70px auto 0 auto;
  }
}

.main-modal .nsdi-article-system {
  margin-bottom: 75px;
}

@media (max-width: 1199px) {
  .main-modal .nsdi-article-system .nas-image-wrapper {
    margin-bottom: 24px;
  }
}

.cancel-main-modal {
  position: absolute;
  z-index: 1;
  top: 30px;
  right: 38px;
}

@media (max-width: 767px) {
  .cancel-main-modal {
    top: 15px;
    right: 26px;
  }
}

.modal-backdrop {
  background-color: transparent;
}

.share-block {
  width: 20px;
  position: fixed;
  z-index: 1;
  top: 50%;
  right: calc((100vw - 1250px) / 2);
  transform: translateX(100%);

  /* 新增 Flex 設定確保直向置中 */
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  /* 關鍵：直式狀態下水平置中 */
  justify-content: center !important;
  gap: 10px;

  /* 隱藏動畫 transition（配合 JS class toggle）、桐機預設隱藏，由 JS 控制顯示 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.share-block.share-block-hidden {
  opacity: 0;
  visibility: hidden;
}

.share-block.share-block-visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1439px) {
  .share-block {
    right: 7.5vw;
    transform: translateX(171%);
  }
}

@media (max-width: 1199px) {
  .share-block {
    position: relative;
    top: auto;
    right: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: row;
    transform: none;
    width: auto;
  }
}

.share-block .share-label {
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  margin: 0 0 24px 0;
  line-height: 1;
  text-align: center;
}

@media (max-width: 1199px) {
  .share-block .share-label {
    margin: 0 14px;
    -ms-writing-mode: initial;
    writing-mode: initial;
    line-height: 1.1;
  }
}

.share-link {
  display: flex;
  margin-bottom: 13px;
  transition: all 0.4s ease;
  text-align: center;
}

.share-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  image-rendering: pixelated;
  /* 讓瀏覽器用最鄰近法渲染，保持硬邊緣 */
}

@media (max-width: 1199px) {
  .share-link {
    margin-bottom: 0px;
    margin-left: 10px;
    margin-right: 10px;
  }
}

.share-link:hover {
  opacity: 0.7;
}

.share-link:nth-last-of-type(1) {
  margin-bottom: 0;
}

.checkbox-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: -20px;
}

.checkbox-wrap .item {
  margin-bottom: 20px;
  margin-right: 36px;
}

@media (max-width: 767px) {
  .checkbox-wrap .item {
    max-width: 100%;
    flex-basis: 100%;
  }
}

.checkbox-wrap .pretty {
  margin-right: 0;
}

html[lang=en-US] .checkbox-wrap .item:nth-of-type(1) {
  margin-right: 40px;
}

@media (min-width: 1200px) and (max-width: 1340px) {
  html[lang=en-US] .checkbox-wrap .item:nth-of-type(1) {
    margin-right: 102px;
  }
}

@media (max-width: 943px) {
  html[lang=en-US] .checkbox-wrap .item:nth-of-type(1) {
    margin-right: 103px;
  }
}

@media (min-width: 1200px) and (max-width: 1340px) {
  html[lang=en-US] .checkbox-wrap .item:nth-of-type(5) {
    margin-right: 52px;
  }
}

@media (min-width: 1000px) and (max-width: 1200px) {
  html[lang=en-US] .checkbox-wrap .item:nth-of-type(5) {
    margin-right: 38px;
  }
}

@media (min-width: 765px) and (max-width: 944px) {
  html[lang=en-US] .checkbox-wrap .item:nth-of-type(5) {
    margin-right: 51px;
  }
}

html[lang=en-US] .checkbox-wrap .item:nth-last-of-type(1) {
  margin-right: 0;
  margin-left: 22px;
}

@media (min-width: 1200px) and (max-width: 1340px) {
  html[lang=en-US] .checkbox-wrap .item:nth-last-of-type(1) {
    margin-left: 0;
  }
}

@media (min-width: 1050px) and (max-width: 1200px) {
  html[lang=en-US] .checkbox-wrap .item:nth-last-of-type(1) {
    margin-left: 9px;
  }
}

@media (max-width: 944px) {
  html[lang=en-US] .checkbox-wrap .item:nth-last-of-type(1) {
    margin-left: 0;
  }
}

html[lang=zh-hans-CN] .checkbox-wrap .item:nth-of-type(5) {
  margin-right: 20px;
}

html[lang=zh-hans-CN] .checkbox-wrap .item:nth-last-of-type(1) {
  margin-right: 0;
}

.copy-msg-block {
  position: fixed;
  z-index: 10000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 40px;
  background-color: #00AB8E;
  border-radius: 10px;
  overflow: hidden;
  color: #FFF;
  display: none;
}

.copy-msg-block p {
  margin-bottom: 0;
  font-weight: 700;
}

.index .body-container {
  padding-top: 85px;
}

@media (max-width: 767px) {
  .index .body-container {
    padding-top: 70px;
  }
}

.index .banner-swiper-section {
  padding-left: 32px;
  padding-right: 32px;
}

@media (max-width: 767px) {
  .index .banner-swiper-section {
    padding-left: 0;
    padding-right: 0;
  }
}

.index .banner-swiper {
  border-radius: 10px;
  transition: all 2.2s ease;
  transform: scale(1);
}

.index .banner-swiper.scale-animate-block {
  transform: scale(2.2);
}

.index .banner-swiper .img-cover {
  padding-top: 34.26%;
  border-radius: 10px;
  transition: all 3.2s ease;
}

@media (max-width: 1199px) {
  .index .banner-swiper .img-cover {
    padding-top: 43%;
  }
}

@media (max-width: 767px) {
  .index .banner-swiper .img-cover {
    padding-top: 85%;
    display: none;
  }
}

.index .banner-swiper .img-cover.mobile {
  display: none;
  padding-top: 85%;
}

@media (max-width: 767px) {
  .index .banner-swiper .img-cover.mobile {
    display: block;
  }
}

.index .banner-swiper .banner-text {
  position: absolute;
  right: 6.32%;
  bottom: 25.78%;
  color: #FFF;
  max-width: 27.8%;
  text-shadow: 0px 4px 20px rgba(48, 48, 48, 0.3);
}

@media (max-width: 1199px) {
  .index .banner-swiper .banner-text {
    max-width: 360px;
    bottom: 15%;
    right: 4%;
  }
}

@media (max-width: 767px) {
  .index .banner-swiper .banner-text {
    max-width: 100%;
    right: unset;
    left: 0;
    bottom: 0;
    padding: 0 22px 40px 22px;
  }
}

.index .banner-pagination {
  position: relative;
  margin-top: 16px;
  bottom: 0px;
}

.index .section-accordion {
  padding-top: 60px;
  padding-bottom: 80px;
  overflow: visible;
  /* Allow swiper slides to overflow */
}

@media (max-width: 1199px) {
  .index .section-accordion {
    padding-top: 85px;
    padding-bottom: 80px;
  }
}

.index .section-accordion .accordion-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  overflow: visible;
  /* Allow swiper slides to overflow */
  padding-left: 2vw;
  padding-right: 2vw;
}

@media (max-width: 1439px) {
  .index .section-accordion .accordion-wrap {
    flex-wrap: wrap;
  }
}

@media (max-width: 1199px) {
  .index .section-accordion .accordion-wrap {
    padding: 0 40px;
  }
}

@media (max-width: 767px) {
  .index .section-accordion .accordion-wrap {
    padding: 0 23px;
  }
}

.index .section-accordion .accordion {
  width: 100%;
  overflow: visible;
  /* Allow swiper slides to overflow */
}

@media (max-width: 1439px) {
  .index .section-accordion .accordion {
    max-width: 100%;
    flex-basis: 100%;
  }
}

@media (max-width: 1199px) {
  .index .section-accordion .accordion {
    max-width: 100%;
    flex-basis: 100%;
    padding-right: 0;
  }
}

.index-banner-swiper {
  width: 100%;
  margin: 0 auto;
  overflow: visible;
  /* Allow 1/4 of next slide to show */
}

.index .section-accordion .swiper-slide .img-wrap img {
  width: 100%;
  border-radius: 10px;
}

.index .section-accordion .swiper-slide {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .index .section-accordion .swiper-slide {
    flex-direction: column;
  }
}

.index .section-accordion .accordion-block {
  width: 50%;
  padding-right: 40px;
}

@media (max-width: 767px) {
  .index .section-accordion .accordion-block {
    width: 100%;
    padding-right: 0;
  }
}

.index .section-accordion .accordion-block:nth-of-type(1) .title {
  padding-top: 10px;
}

.index .section-accordion .title {
  font-size: 2.5rem;
  line-height: 1.3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  color: #737373;
  padding: 18px 36px 18px 0px;
  border-bottom: 1px solid rgba(196, 196, 196, 0.8);
  text-transform: none;
}

@media (max-width: 767px) {
  .index .section-accordion .title {
    font-size: 1.75rem;
    line-height: 1.3;
    padding: 18px 7px 18px 0px;
  }
}

.index .section-accordion .title i {
  font-size: 0.75rem;
  transform: rotate(90deg);
  margin-left: 10px;
}

.index .section-accordion .title[aria-expanded=true] {
  color: #00AB8E;
  border-bottom: 2px solid #00AB8E;
}

.index .section-accordion .title[aria-expanded=true] i {
  font-weight: bold;
  transform: rotate(270deg);
}

@-moz-document url-prefix() {
  .index .section-accordion .title[aria-expanded=true] i {
    font-weight: normal;
  }
}

.index .section-accordion .contents {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(196, 196, 196, 0.8);
  padding-top: 24px;
  padding-bottom: 40px;
  text-transform: none;
}

@media (max-width: 767px) {
  .index .section-accordion .contents {
    padding-top: 24px;
    padding-bottom: 26px;
  }
}

.index .section-accordion .contents>div {
  padding-right: 27px;
  margin-bottom: 12px;
  width: 45%;
}

.index .section-accordion .contents a {
  color: #737373;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .index .section-accordion .contents a {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.index .section-accordion .contents a:hover {
  color: #00AB8E;
}

.index .img-wrap {
  width: 50%;
  max-width: 6400px;
  aspect-ratio: 2 / 1;
}


@media (max-width: 767px) {
  .index .img-wrap {
    width: 100%;
  }
}

.index .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}


.index .img-wrap .img-cover {
  height: 100%;
  ;
  border-radius: 10px;
}

.index .pl-vw-container {
  padding-left: 8.3333333333vw;
}

@media (max-width: 767px) {
  .index .pl-vw-container {
    padding-left: 0vw;
  }
}

.index .pr-vw-container {
  padding-right: 8.3333333333vw;
  background-color: #FFF;
  border-top-left-radius: 10px;
}

@media (max-width: 1439px) {
  .index .pr-vw-container {
    padding-right: 6.9444444444vw;
  }
}

@media (max-width: 575px) {
  .index .pr-vw-container {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.index .index-product-block {
  padding-top: 160px;
  padding-bottom: 160px;
}

@media (max-width: 1199px) {
  .index .index-product-block {
    padding-top: 75px;
    padding-bottom: 125px;
  }
}

@media (max-width: 767px) {
  .index .index-product-block {
    padding-bottom: 85px;
  }
}

.index .index-product-swiper-block {
  max-width: 65%;
  flex-basis: 65%;
  position: relative;
  padding-right: 100px;
}

@media (max-width: 1199px) {
  .index .index-product-swiper-block {
    max-width: 100%;
    flex-basis: 100%;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .index .index-product-swiper-block {
    padding-right: 0;
  }
}

@media (min-width: 1920px) {
  .index .index-product-swiper-block {
    max-width: 65%;
  }
}

@media (max-width: 767px) {
  .index .index-product-swiper {
    padding-bottom: 45px;
  }
}

.index .index-product-swiper .product-content {
  opacity: 0;
  transition: all 0.6s ease 0.3s;
}

.index .index-product-swiper .swiper-slide.swiper-slide-active .product-content {
  opacity: 1;
}

.index .product-swiper-control {
  position: absolute;
  z-index: 1;
  right: 100px;
  bottom: 0;
  transform: translate(50%, -120%);
}

@media (max-width: 1199px) {
  .index .product-swiper-control {
    right: 50px;
    transform: translate(75%, -100%);
  }
}

@media (max-width: 767px) {
  .index .product-swiper-control {
    right: 30px;
    transform: translate(0, -80%);
  }
}

@media (max-width: 575px) {
  .index .product-swiper-control {
    display: none;
  }
}

.index .index-product-title-block {
  max-width: 35%;
  flex-basis: 35%;
}

@media (max-width: 1199px) {
  .index .index-product-title-block {
    max-width: 100%;
    flex-basis: 100%;
    order: -1;
    margin-bottom: 30px;
  }
}

.index .news-block {
  padding-left: 102px;
  padding-bottom: 160px;
}

@media (max-width: 1199px) {
  .index .news-block {
    padding-left: 50px;
    padding-bottom: 63px;
  }
}

.index .index-product-title {
  color: #00AB8E;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0;
}

@media (max-width: 1439px) {
  .index .index-product-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .index .index-product-title {
    width: 304px;
  }
}

.index .index-product-title.mt-120 {
  margin-top: 120px;
}

@media (max-width: 767px) {
  .index .index-product-title.mt-120 {
    margin-top: 0;
  }
}

.index .index-product-title.mb-70 {
  margin-bottom: 70px;
}

@media (max-width: 767px) {
  .index .index-product-title.mb-70 {
    margin-bottom: 30px;
  }
}

@media (max-width: 1199px) {
  .index .index-product-title.pl-xl-50 {
    padding-left: 50px;
  }
}

@media (max-width: 767px) {
  .index .index-product-title.pl-xl-50 {
    padding-left: 0;
  }
}

.index .news-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -17px;
}

@media (max-width: 1199px) {
  .index .news-wrap {
    padding-left: 50px;
  }
}

@media (max-width: 767px) {
  .index .news-wrap {
    padding-left: 0;
  }
}

.index .news-wrap .item {
  max-width: 33.333%;
  flex-basis: 33.333%;
  padding: 0 17px;
}

@media (max-width: 767px) {
  .index .news-wrap .item {
    max-width: 100%;
    flex-basis: 100%;
  }
}

@media (max-width: 575px) {
  .index .index-video-section {
    padding: 0 25px;
  }
}

.index .video-swiper {
  margin-bottom: 180px;
}

@media (max-width: 1199px) {
  .index .video-swiper {
    margin-bottom: 100px;
  }
}

.index .video-swiper .swiper-wrapper {
  align-items: flex-end;
  padding-top: 80px;
  padding-bottom: 125px;
}

@media (max-width: 767px) {
  .index .video-swiper .swiper-wrapper {
    padding-top: 0;
    padding-bottom: 60px;
  }
}

@media (min-width: 768px) {
  .index .video-swiper .swiper-slide {
    transition: all 1s ease;
    transform: translateY(80px);
    opacity: 0.5;
  }
}

@media (min-width: 768px) {
  .index .video-swiper .swiper-slide.swiper-slide-active {
    transform: translateY(0px);
    opacity: 1;
  }
}

.product .product-title {
  color: #00AB8E;
  text-transform: uppercase;
}

.product .body-container {
  background-color: #FFF;
  position: relative;
  padding-top: 110px;
}

@media (max-width: 767px) {
  .product .body-container {
    padding-top: 85px;
  }
}

.product .body-container::after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  background-color: #EDEDED;
  width: 57px;
}

@media (max-width: 1439px) {
  .product .body-container::after {
    width: 3.95vw;
  }
}

@media (max-width: 1199px) {
  .product .body-container::after {
    display: none;
  }
}

.product .product-container {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1439px) {
  .product .product-container {
    width: 85%;
  }
}

@media (max-width: 767px) {
  .product .product-container {
    width: 100%;
    padding: 0 25px;
  }
}

.product .article-small-container {
  position: relative;
  width: 991px;
  margin: 0 auto;
}

@media (max-width: 1439px) {
  .product .article-small-container {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .product .article-small-container {
    width: 100%;
    padding: 0 25px;
  }
}

.product .know-more-section {
  background-color: #EDEDED;
  padding: 120px 0 160px 0;
}

@media (max-width: 767px) {
  .product .know-more-section {
    padding: 60px 0 120px 0;
  }
}

.product .know-swiper {
  padding-bottom: 81px;
}

@media (max-width: 767px) {
  .product .know-swiper {
    padding-bottom: 73px;
  }
}

@media (max-width: 767px) {
  .product .know-swiper.desktop {
    display: none;
  }
}

.product .know-swiper.mobile {
  display: none;
}

@media (max-width: 767px) {
  .product .know-swiper.mobile {
    display: block;
  }
}

.product .know-card {
  position: relative;
}

@media (max-width: 767px) {
  .product .know-card {
    margin-bottom: 40px;
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .product .know-card:nth-last-of-type(1) {
    margin-bottom: 0;
  }
}

.product .product-list-bg.know-bg {
  width: 100%;
  padding-top: 77.7777777778%;
  margin-bottom: 16px;
}

.product .product-list-small-title {
  margin-bottom: 4px;
}

.inner-page .inner-h1-title {
  color: #00AB8E;
  text-transform: uppercase;
  margin-bottom: 40px;
  margin-top: 82px;
  min-height: 144px;
}

@media (max-width: 767px) {
  .inner-page .inner-h1-title {
    margin: 62px 0;
  }
}

.inner-page .checkbox-title {
  color: #00AB8E;
  margin-bottom: 20px;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
}

[data-page=index] .product-pagination {
  display: none;
  bottom: 0;
}

@media (max-width: 767px) {
  [data-page=index] .product-pagination {
    display: block;
  }
}

[data-page=product].product .body-container,
[data-page=search].product .body-container {
  background-color: transparent;
  padding-top: 100px;
}

@media (max-width: 767px) {

  [data-page=product].product .body-container,
  [data-page=search].product .body-container {
    padding-top: 85px;
  }
}

[data-page=product] .product-top-section,
[data-page=search] .product-top-section {
  margin-bottom: 100px;
}

@media (max-width: 767px) {

  [data-page=product] .product-top-section,
  [data-page=search] .product-top-section {
    margin-bottom: 120px;
  }
}

[data-page=product] .product-top-container,
[data-page=search] .product-top-container {
  padding-left: calc((100vw - 1200px) / 2);
  padding-right: 1.25vw;
}

@media (min-width: 1600px) {

  [data-page=product] .product-top-container,
  [data-page=search] .product-top-container {
    width: calc(1284px + (100vw - 1200px) / 2);
  }
}

@media (max-width: 1439px) {

  [data-page=product] .product-top-container,
  [data-page=search] .product-top-container {
    width: 95%;
    margin: 0 auto;
  }
}

@media (max-width: 1199px) {

  [data-page=product] .product-top-container,
  [data-page=search] .product-top-container {
    width: 90%;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 767px) {

  [data-page=product] .product-top-container,
  [data-page=search] .product-top-container {
    width: 100%;
  }
}

[data-page=product] .product-title-block,
[data-page=search] .product-title-block {
  max-width: 28.35%;
  flex-basis: 28.35%;
}

@media (max-width: 1439px) {

  [data-page=product] .product-title-block,
  [data-page=search] .product-title-block {
    max-width: 30%;
    flex-basis: 30%;
  }
}

@media (max-width: 1199px) {

  [data-page=product] .product-title-block,
  [data-page=search] .product-title-block {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {

  [data-page=product] .product-title-block,
  [data-page=search] .product-title-block {
    margin-bottom: 25px;
    padding: 0 25px;
  }
}

[data-page=product] .product-swiper-block,
[data-page=search] .product-swiper-block {
  padding-left: 33px;
  max-width: 71.65%;
  flex-basis: 71.65%;
  position: relative;
}

@media (max-width: 1439px) {

  [data-page=product] .product-swiper-block,
  [data-page=search] .product-swiper-block {
    max-width: 70%;
    flex-basis: 70%;
  }
}

@media (max-width: 1199px) {

  [data-page=product] .product-swiper-block,
  [data-page=search] .product-swiper-block {
    max-width: 100%;
    flex-basis: 100%;
    padding-left: 0;
  }
}

[data-page=product] .product-swiper-block .swiper-pagination-bullets.swiper-pagination-horizontal,
[data-page=search] .product-swiper-block .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -27px;
  left: unset;
  right: 0;
  text-align: right;
  padding-right: 13px;
  transform: translateY(80%);
}

@media (max-width: 767px) {

  [data-page=product] .product-swiper-block .swiper-pagination-bullets.swiper-pagination-horizontal,
  [data-page=search] .product-swiper-block .swiper-pagination-bullets.swiper-pagination-horizontal {
    padding-right: 0;
    text-align: center;
  }
}

[data-page=product] .product-swiper-bg,
[data-page=search] .product-swiper-bg {
  width: 100%;
  padding-top: 55.5555555556%;
}

@media (max-width: 767px) {

  [data-page=product] .product-swiper-bg,
  [data-page=search] .product-swiper-bg {
    padding-top: 69.4444444444%;
  }
}

[data-page=product] .product-swiper,
[data-page=search] .product-swiper {
  border-radius: 10px;
}

[data-page=product] .bread-list,
[data-page=search] .bread-list {
  margin-bottom: 188px;
}

@media (max-width: 1439px) {

  [data-page=product] .bread-list,
  [data-page=search] .bread-list {
    margin-bottom: 110px;
    flex-wrap: wrap;
  }
}

@media (max-width: 1199px) {

  [data-page=product] .bread-list,
  [data-page=search] .bread-list {
    flex-wrap: unset;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {

  [data-page=product] .bread-list,
  [data-page=search] .bread-list {
    margin-bottom: 32px;
  }
}

[data-page=product] .product-title,
[data-page=search] .product-title {
  margin-bottom: 15px;
}

@media (max-width: 1199px) {

  [data-page=product] .product-title,
  [data-page=search] .product-title {
    white-space: unset;
  }
}

@media (max-width: 767px) {

  [data-page=product] .product-title,
  [data-page=search] .product-title {
    margin-bottom: 13px;
  }
}

[data-page=product] .product-small-title,
[data-page=search] .product-small-title {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #00AB8E;
  margin-bottom: 17px;
}

@media (max-width: 767px) {

  [data-page=product] .product-small-title,
  [data-page=search] .product-small-title {
    margin-bottom: 3px;
  }
}

[data-page=product] .product-des,
[data-page=search] .product-des {
  line-height: 1.5;
  font-size: 1rem;
  margin-bottom: 0;
}

@media (min-width: 1200px) {

  [data-page=product] .product-des,
  [data-page=search] .product-des {
    max-width: 74.5%;
  }
}

[data-page=product] .product-list-container,
[data-page=search] .product-list-container {
  width: 1195px;
  margin: 0 auto;
  padding-bottom: 160px;
}

@media (max-width: 1439px) {

  [data-page=product] .product-list-container,
  [data-page=search] .product-list-container {
    width: 90%;
  }
}

@media (max-width: 575px) {

  [data-page=product] .product-list-container,
  [data-page=search] .product-list-container {
    width: 100%;
    padding: 0 25px 120px 25px;
  }
}

[data-page=product] .filter-container,
[data-page=search] .filter-container {
  max-width: 25.02%;
  flex-basis: 25.02%;
  padding-right: 25px;
}

@media (max-width: 1199px) {

  [data-page=product] .filter-container,
  [data-page=search] .filter-container {
    max-width: 35%;
    flex-basis: 35%;
  }
}

@media (max-width: 767px) {

  [data-page=product] .filter-container,
  [data-page=search] .filter-container {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 0;
  }
}

[data-page=product] .filter-container.pb-115,
[data-page=search] .filter-container.pb-115 {
  padding-bottom: 97px;
}

@media (max-width: 767px) {

  [data-page=product] .filter-container.pb-115,
  [data-page=search] .filter-container.pb-115 {
    padding-bottom: 0;
  }
}

[data-page=product] .product-list-block,
[data-page=search] .product-list-block {
  max-width: 74.98%;
  flex-basis: 74.98%;
}

@media (max-width: 1199px) {

  [data-page=product] .product-list-block,
  [data-page=search] .product-list-block {
    max-width: 65%;
    flex-basis: 65%;
  }
}

@media (max-width: 767px) {

  [data-page=product] .product-list-block,
  [data-page=search] .product-list-block {
    max-width: 100%;
    flex-basis: 100%;
  }
}

[data-page=product] .product-list-wrap,
[data-page=search] .product-list-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -11px 15px -11px;
}

@media (max-width: 767px) {

  [data-page=product] .product-list-wrap,
  [data-page=search] .product-list-wrap {
    margin: 0 0px 35px 0px;
  }
}

[data-page=product] .product-list-wrap .item,
[data-page=search] .product-list-wrap .item {
  max-width: 33.333%;
  flex-basis: 33.333%;
  padding: 0 11px;
  margin-bottom: 60px;
}

@media (max-width: 1199px) {

  [data-page=product] .product-list-wrap .item,
  [data-page=search] .product-list-wrap .item {
    max-width: 50%;
    flex-basis: 50%;
  }
}

@media (max-width: 767px) {

  [data-page=product] .product-list-wrap .item,
  [data-page=search] .product-list-wrap .item {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 27px;
    padding: 0;
  }
}

[data-page=product] .pagination-wrap,
[data-page=search] .pagination-wrap {
  width: 590px;
}

@media (max-width: 1199px) {

  [data-page=product] .pagination-wrap,
  [data-page=search] .pagination-wrap {
    width: 100%;
  }
}

[data-page=product-content] .mb-25 {
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  [data-page=product-content] .mb-25 {
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  [data-page=product-content] .mb-lg-25 {
    margin-bottom: 25px !important;
  }
}

@media (max-width: 767px) {
  [data-page=product-content] .mb-lg-25 {
    margin-bottom: 15px !important;
  }
}

[data-page=product-content] .mb-35 {
  margin-bottom: 35px;
}

[data-page=product-content] .pt-25 {
  padding-top: 25px;
}

[data-page=product-content] .pb-53 {
  padding-bottom: 53px;
}

@media (max-width: 767px) {
  [data-page=product-content] .pb-53 {
    padding-bottom: 32px;
  }
}

[data-page=product-content] .control-btn {
  width: 56px;
  height: 56px;
}

[data-page=product-content] .product-h2-title {
  margin-bottom: 36px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  [data-page=product-content] .product-h2-title {
    margin-bottom: 24px;
  }
}

[data-page=product-content] .edit-block img {
  border-radius: 0;
  margin-bottom: 0;
}

[data-page=product-content] .border-top {
  border-top: 1px solid #EDEDED;
}

[data-page=product-content] .border-bottom {
  border-bottom: 1px solid #EDEDED;
}

[data-page=product-content] .product-banner-section {
  margin-bottom: 110px;
}

@media (max-width: 767px) {
  [data-page=product-content] .product-banner-section {
    margin-bottom: 80px;
  }
}

[data-page=product-content] .product-view-section {
  margin-bottom: 120px;
}

@media (max-width: 767px) {
  [data-page=product-content] .product-view-section {
    margin-bottom: 80px;
  }
}

[data-page=product-content] .bread-list {
  margin-bottom: 35px;
}

@media (max-width: 767px) {
  [data-page=product-content] .bread-list {
    margin-bottom: 50px;
  }
}

[data-page=product-content] .product-banner {
  width: 100%;
  padding-top: 35%;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 767px) {
  [data-page=product-content] .product-banner {
    padding-top: 97.7419354839%;
    display: none;
  }
}

[data-page=product-content] .product-banner.mobile {
  display: none;
}

@media (max-width: 767px) {
  [data-page=product-content] .product-banner.mobile {
    display: block;
  }
}

[data-page=product-content] .product-view-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
}

@media (max-width: 991px) {
  [data-page=product-content] .product-view-wrap {
    flex-wrap: wrap;
  }
}

[data-page=product-content] .product-view-img-block {
  max-width: 42.333%;
  flex-basis: 42.333%;
}

@media (max-width: 991px) {
  [data-page=product-content] .product-view-img-block {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  [data-page=product-content] .product-view-img-block {
    margin-bottom: 20px;
  }
}

[data-page=product-content] .product-view-img-block>div {
  position: relative;
}

[data-page=product-content] .zoom-bg {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

[data-page=product-content] .img-zoom-lens {
  position: absolute;
  z-index: 1;
  border: 1px solid #d4d4d4;
  width: 120px;
  height: 120px;
  opacity: 0;
}

@media (max-width: 1199px) {
  [data-page=product-content] .img-zoom-lens {
    display: none;
  }
}

[data-page=product-content] .img-zoom-lens.active {
  opacity: 1;
}

[data-page=product-content] .product-view-img {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 0.001px);
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 1px #EDEDED solid;
  border-radius: 10px;
}

[data-page=product-content] .img-zoom-result-position {
  position: absolute;
}

[data-page=product-content] .img-zoom-result-cover {
  position: relative;
  width: 400px;
  height: 400px;
  overflow: hidden;
}

@media (max-width: 575px) {
  [data-page=product-content] .img-zoom-result-cover {
    width: 320px;
    height: 320px;
  }
}

[data-page=product-content] .img-zoom-result {
  position: absolute;
  pointer-events: none;
  z-index: 100;
  top: 0;
  left: 0;
  opacity: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

[data-page=product-content] .img-zoom-result.active {
  opacity: 1;
}

[data-page=product-content] .zoomImg {
  width: 200% !important;
  height: 200% !important;
  -o-object-fit: cover;
  object-fit: cover;
}

[data-page=product-content] .view-btn {
  display: none;
  width: 46px;
  height: 46px;
  background: url("../images/icon/view-icon.png") no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5),
all and (-o-min-device-pixel-ratio: 3/2),
all and (min--moz-device-pixel-ratio: 1.5),
all and (min-device-pixel-ratio: 1.5) {
  [data-page=product-content] .view-btn {
    background: url("../images/icon/view-icon@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  [data-page=product-content] .view-btn {
    background: url("../images/icon/view-icon@2x.png") no-repeat;
    background-size: contain;
  }
}

[data-page=product-content] .product-view-small-img {
  width: 100%;
  padding-top: 100%;
  border: 1px solid #EDEDED;
  border-radius: 2px;
}

[data-page=product-content] .swiper-view {
  margin-bottom: 17px;
  border-radius: 10px;
}

[data-page=product-content] .product-view-size-block {
  max-width: 57.667%;
  flex-basis: 57.667%;
  padding-left: 11.1111111111vw;
  position: relative;
}

@media (min-width: 1600px) {
  [data-page=product-content] .product-view-size-block {
    padding-left: 160px;
  }
}

@media (max-width: 1199px) {
  [data-page=product-content] .product-view-size-block {
    padding-left: 5.5555555556vw;
  }
}

@media (max-width: 991px) {
  [data-page=product-content] .product-view-size-block {
    max-width: 100%;
    flex-basis: 100%;
    padding-left: 0;
  }
}

[data-page=product-content] .swiper-view-small .swiper-slide {
  opacity: 0.6;
  cursor: pointer;
  padding: 5px;
}

[data-page=product-content] .swiper-view-small .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

[data-page=product-content] .swiper-view-small .swiper-scrollbar {
  height: 3px;
  background-color: #EDEDED;
  bottom: 0;
}

[data-page=product-content] .swiper-view-small .swiper-scrollbar-drag {
  background-color: #00AB8E;
  height: 3px;
}

[data-page=product-content] .view-badge {
  display: block;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: #00AB8E;
  margin-bottom: 12px;
}

[data-page=product-content] .view-flex-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding-bottom: 8px;
  border-bottom: 1px solid #EDEDED;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  [data-page=product-content] .view-flex-wrap {
    margin-bottom: 12px;
  }
}

[data-page=product-content] .view-size-title {
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: #00AB8E;
  margin-bottom: 12px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  [data-page=product-content] .view-size-title {
    margin-bottom: 8px;
  }
}

[data-page=product-content] .view-small-title {
  line-height: 1.5;
  color: #373737;
  margin-bottom: 0;
}

[data-page=product-content] .view-size-box {
  width: 380px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

@media (max-width: 991px) {
  [data-page=product-content] .view-size-box {
    width: 80%;
  }
}

@media (max-width: 767px) {
  [data-page=product-content] .view-size-box {
    width: 100%;
  }
}

[data-page=product-content] .view-size-flex {
  width: 100%;
  justify-content: space-between;
}

[data-page=product-content] .size-label {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #373737;
  padding-right: 15px;
  margin-bottom: 0;
}

[data-page=product-content] .size-badge-btn {
  padding: 4px 20px;
  background-color: #737373;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #FFF;
  border-radius: 4px 4px 4px 0px;
  transition: all 0.4s ease;
  position: relative;
  margin: 0 0 0 auto;
}

[data-page=product-content] .size-badge-btn::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  transform-origin: top left;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

[data-page=product-content] .size-badge-btn:hover {
  color: #FFF;
}

@media (min-width: 1200px) {
  [data-page=product-content] .size-badge-btn:hover::before {
    transform: scaleX(1);
    transform-origin: top right;
  }
}

[data-page=product-content] .view-size-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -11px;
  margin-bottom: -20px;
  width: 302px;
}

@media (max-width: 991px) {
  [data-page=product-content] .view-size-wrap {
    width: calc(100% + 22px);
  }
}

@media (max-width: 767px) {
  [data-page=product-content] .view-size-wrap {
    width: calc(100% + 32px);
  }
}

[data-page=product-content] .view-size-wrap.ml-autos {
  margin-left: auto;
}

@media (max-width: 991px) {
  [data-page=product-content] .view-size-wrap.ml-autos {
    margin-left: -11px;
  }
}

@media (max-width: 767px) {
  [data-page=product-content] .view-size-wrap.ml-autos {
    margin-left: -16px;
    margin-right: -16px;
  }
}

[data-page=product-content] .view-size-wrap .item {
  padding: 0 11px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  [data-page=product-content] .view-size-wrap .item {
    padding: 0 16px;
    margin-bottom: 12px;
  }
}

[data-page=product-content] .view-size-wrap .border-btn {
  width: auto;
  padding: 1px 20px;
}

[data-page=product-content] .view-size-wrap .border-btn span {
  height: auto;
  line-height: 1.4333333333;
}

[data-page=product-content] .share-box {
  display: flex !important;
  flex-direction: row !important;
  /* 確保橫向排列不換行 */
  justify-content: flex-end;
  align-items: flex-end !important;
  /* 關鍵：橫式狀態下垂直置底（齊底） */
  padding-right: 28px;
  gap: 10px;
}

[data-page=product-content] .share-box a img {
  width: 20px !important;
  /* 強制鎖定寬度 */
  height: 20px !important;
  /* 強制鎖定高度 */
  flex-shrink: 0;
  /* 核心修正：禁止 Safari 壓縮圖片尺寸 */
  object-fit: contain;
  /* 確保圖片比例不變形 */
  display: block;
  image-rendering: pixelated;
  /* 讓瀏覽器用最鄰近法渲染，保持硬邊緣 */
}

@media (max-width: 767px) {
  [data-page=product-content] .share-box {
    padding-right: 0;
  }
}

[data-page=product-content] .share-box .share-label {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.1 !important;
  /* 縮小行高，移除文字下方多餘間隙 */
  margin-bottom: 0;
  color: #737373;
  margin-right: 14px;
  transform: translateY(1px);
  /* 視覺微調：補償基準線落差 */
}

[data-page=product-content] .share-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: row;
}

@media (min-width: 1200px) {
  [data-page=product-content] .share-wrap .item {
    margin: 0 10px;
  }
}

[data-page=product-content] .share-wrap .item:last-child {
  margin-left: 10px;
}

[data-page=product-content] .share-wrap a:hover {
  transition: all 0.7s ease;
}

@media (min-width: 1200px) {
  [data-page=product-content] .share-wrap a:hover {
    opacity: 0.7;
  }
}

[data-page=product-content] .des-card-section {
  margin-top: 120px;
  margin-bottom: 120px;
}

@media (max-width: 767px) {
  [data-page=product-content] .des-card-section {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

[data-page=product-content] .des-card-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -27px;
}

@media (max-width: 767px) {
  [data-page=product-content] .des-card-wrap {
    margin: 0;
  }
}

[data-page=product-content] .des-card-wrap .item {
  max-width: 50%;
  flex-basis: 50%;
  padding: 0 27px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  [data-page=product-content] .des-card-wrap .item {
    padding: 0;
    max-width: 100%;
    flex-basis: 100%;
  }
}

[data-page=product-content] .des-small-card-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

@media (max-width: 767px) {
  [data-page=product-content] .des-small-card-box {
    flex-wrap: wrap;
  }
}

[data-page=product-content] .des-small-bg {
  max-width: 175px;
  flex-basis: 175px;
  padding-top: 152px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  [data-page=product-content] .des-small-bg {
    max-width: 100%;
    flex-basis: 100%;
    padding-top: 100%;
    margin-bottom: 20px;
  }
}

[data-page=product-content] .des-content {
  max-width: calc(100% - 175px);
  flex-basis: calc(100% - 175px);
  padding-left: 24px;
}

@media (max-width: 767px) {
  [data-page=product-content] .des-content {
    max-width: 100%;
    flex-basis: 100%;
    padding-left: 0;
  }
}

[data-page=product-content] .des-small-title {
  color: #00AB8E;
  margin-bottom: 16px;
  font-size: 0.9375rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  [data-page=product-content] .des-small-title {
    font-size: 1.125rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 8px;
  }
}

[data-page=product-content] .des-txt {
  color: #737373;
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 0.9375rem;
  font-family: "aria", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
}

[data-page=product-content] .mid-edit-section {
  margin-bottom: 102px;
}

@media (max-width: 767px) {
  [data-page=product-content] .mid-edit-section {
    margin-bottom: 60px;
  }
}

[data-page=product-content] .mid-edit-section .edit-block .nsdi-article-system {
  margin-bottom: 0;
}

[data-page=product-content] .video-section {
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  [data-page=product-content] .video-section {
    padding-bottom: 60px;
  }
}

[data-page=product-content] .video-container {
  width: 83.33333%;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  [data-page=product-content] .video-container {
    width: 100%;
  }
}

[data-page=product-content] .similar-section {
  background-color: #EDEDED;
  padding: 120px 0;
}

@media (max-width: 767px) {
  [data-page=product-content] .similar-section {
    padding: 60px 0;
  }
}

@media (max-width: 1199px) {
  [data-page=product-content] .share-block {
    display: none;
  }
}

[data-page=product-content] .similar-swiper-box {
  position: relative;
}

[data-page=product-content] .similar-swiper-box .similar-button-prev {
  position: absolute;
  left: 0;
  top: calc(50% - 26px);
  transform: translateY(-50%);
}

@media (max-width: 1199px) {
  [data-page=product-content] .similar-swiper-box .similar-button-prev {
    display: none;
  }
}

[data-page=product-content] .similar-swiper-box .similar-button-next {
  position: absolute;
  right: 0;
  top: calc(50% - 26px);
  transform: translateY(-50%);
}

@media (max-width: 1199px) {
  [data-page=product-content] .similar-swiper-box .similar-button-next {
    display: none;
  }
}

[data-page=product-content] .similar-swiper {
  width: 996px;
  margin: 0 auto;
}

@media (max-width: 1439px) {
  [data-page=product-content] .similar-swiper {
    width: 875px;
  }
}

@media (max-width: 1199px) {
  [data-page=product-content] .similar-swiper {
    padding-bottom: 54px;
    width: 100%;
  }
}

@media (max-width: 575px) {
  [data-page=product-content] .similar-swiper {
    padding-bottom: 49px;
  }
}

@media (max-width: 767px) {
  [data-page=product-content] .product-list-card.similar-card {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  [data-page=product-content] .product-list-card.similar-card .product-list-bg-block {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 12px;
  }
}

@media (max-width: 767px) {
  [data-page=product-content] .product-list-card.similar-card .product-list-content {
    max-width: 100%;
    flex-basis: 100%;
    width: 100%;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  [data-page=product-content] .product-list-card.know-card .product-list-bg-block {
    max-width: 28.06%;
    flex-basis: 28.06%;
  }
}

@media (max-width: 767px) {
  [data-page=product-content] .product-list-card.know-card .product-list-bg-block {
    padding-top: 21.931954023%;
  }
}

[data-page=product-content] .product-list-card.know-card .product-list-content {
  max-width: 71.94%;
  flex-basis: 71.94%;
}

[data-page=product-content] .similar-pagination {
  display: none;
}

@media (max-width: 1199px) {
  [data-page=product-content] .similar-pagination {
    display: block;
  }
}

[data-page=product-content] .product-des-card-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -11px 0 -11px;
}

[data-page=product-content] .product-des-card-wrap .item {
  max-width: 33.333%;
  flex-basis: 33.333%;
  padding: 0 11px;
  margin-bottom: 120px;
}

@media (max-width: 991px) {
  [data-page=product-content] .product-des-card-wrap .item {
    max-width: 50%;
    flex-basis: 50%;
  }
}

@media (max-width: 767px) {
  [data-page=product-content] .product-des-card-wrap .item {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 80px;
  }
}

[data-page=product-content] .product-des-title {
  text-transform: uppercase;
  color: #00AB8E;
  margin-bottom: 22px;
}

@media (max-width: 575px) {
  [data-page=product-content] .product-des-title {
    text-align: center;
  }
}

[data-page=product-content] .product-des-bg {
  width: 100%;
  padding-top: 100%;
  margin-bottom: 32px;
}

[data-page=product-content] .product-des-h4-title {
  color: #00AB8E;
  margin-bottom: 9px;
}

[data-page=product-content] .product-des-h6-title {
  color: #00AB8E;
  margin-bottom: 16px;
}

[data-page=product-content] .product-des-txt {
  margin-bottom: 16px;
  color: #737373;
}

[data-page=product-content] .product-des-card-section {
  padding-top: 120px;
  margin-bottom: 120px;
  border-bottom: 1px solid #C4C4C4;
}

@media (max-width: 767px) {
  [data-page=product-content] .product-des-card-section {
    padding-top: 80px;
    margin-bottom: 0;
    border-bottom: none;
  }
}

[data-page=product-content] .product-des-card-section .edit-block ul {
  margin-bottom: 37px;
}

[data-page=product-content] .product-des-card-section .edit-block ul li {
  padding-left: 20px;
}

[data-page=product-content] .product-des-card-section .edit-block ol li {
  padding-left: 20px;
}

[data-page=product-content] .download-section {
  padding-bottom: 90px;
}

@media (max-width: 767px) {
  [data-page=product-content] .download-section {
    padding-bottom: 36px;
  }
}

[data-page=product-content] .download-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -14px;
}

@media (max-width: 767px) {
  [data-page=product-content] .download-wrap {
    margin: 0 -7px;
  }
}

[data-page=product-content] .download-wrap .item {
  max-width: 25%;
  flex-basis: 25%;
  padding: 0 14px;
  margin-bottom: 24px;
}

@media (max-width: 1199px) {
  [data-page=product-content] .download-wrap .item {
    max-width: 50%;
    flex-basis: 50%;
  }
}

@media (max-width: 767px) {
  [data-page=product-content] .download-wrap .item {
    padding: 0 7px;
  }
}

[data-page=product-content] .retangle-btn {
  width: 100%;
}

[data-page=disease] .disease-h1-title {
  color: #00AB8E;
  text-transform: uppercase;
  margin-top: 82px;
  margin-bottom: 40px;
}

[data-page=disease] .article-section {
  padding-bottom: 60px;
}

@media (max-width: 1199px) {
  [data-page=disease] .article-section {
    padding-bottom: 30px;
  }
}

[data-page=disease] .nsdi-article-system {
  margin-bottom: 120px;
}

@media (max-width: 1199px) {
  [data-page=disease] .nsdi-article-system {
    margin-bottom: 60px;
  }
}

[data-page=disease] .nsdi-article-system .square img {
  height: auto !important;
}

[data-page=disease] .product-list-bg-block {
  padding-top: 100%;
}

@media (max-width: 767px) {
  [data-page=disease] .product-list-bg-block {
    padding-top: 38.7%;
    max-width: 38.7%;
    flex-basis: 38.7%;
  }
}

@media (max-width: 767px) {
  [data-page=disease] .product-list-content {
    padding-left: 24px;
    max-width: 61.3%;
    flex-basis: 61.3%;
  }
}

[data-page=disease] .product-h2-title {
  text-transform: uppercase;
  margin-bottom: 56px;
}

@media (max-width: 767px) {
  [data-page=disease] .product-h2-title {
    margin-bottom: 35px;
  }
}

[data-page=disease] .product-container.know-container {
  width: 987px;
}

@media (max-width: 1199px) {
  [data-page=disease] .product-container.know-container {
    width: 85%;
  }
}

@media (max-width: 767px) {
  [data-page=disease] .product-container.know-container {
    width: 100%;
  }
}

@media (max-width: 767px) {
  [data-page=disease].product .know-card {
    margin-bottom: 35px;
  }
}

@media (max-width: 767px) {
  [data-page=disease].product .know-card:nth-last-of-type(1) {
    margin-bottom: 0;
  }
}

[data-page=download] .mb-40 {
  margin-bottom: 40px !important;
}

@media (max-width: 991px) {
  [data-page=download] .mb-40 {
    margin-bottom: 30px !important;
  }
}

[data-page=download] .download-section {
  margin-bottom: 240px;
}

@media (max-width: 767px) {
  [data-page=download] .download-section {
    margin-bottom: 120px;
  }
}

@media (max-width: 767px) {
  [data-page=download].inner-page .inner-h1-title {
    min-height: 106px;
  }
}

[data-page=download] .main-modal .modal-body {
  padding: 0;
}

@media (max-width: 1199px) {
  [data-page=download] .main-modal .modal-body {
    padding: 0;
  }
}

@media (max-width: 767px) {
  [data-page=download] .main-modal .modal-body {
    padding: 0;
  }
}

[data-page=download] .modal-container {
  padding: 90px 230px 0 100px;
}

@media (max-width: 1199px) {
  [data-page=download] .modal-container {
    padding: 45px 25px 0 25px;
  }
}

@media (max-width: 767px) {
  [data-page=download] .modal-container {
    padding: 45px 25px 0 25px;
  }
}

[data-page=download] .pretty.p-default input:checked~.state label:after {
  top: 4%;
  left: 3px;
  width: 11px;
  height: 11px;
}

[data-page=download] .download-container {
  width: 952px;
  margin: 0 auto;
  padding-bottom: 120px;
}

@media (max-width: 1199px) {
  [data-page=download] .download-container {
    width: 80%;
  }
}

@media (max-width: 767px) {
  [data-page=download] .download-container {
    width: 100%;
    padding: 0 40px 100px 40px;
  }
}

[data-page=download] .download-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -57px -80px -57px;
}

@media (max-width: 1199px) {
  [data-page=download] .download-wrap {
    margin: 0 -25px -80px -25px;
  }
}

@media (max-width: 767px) {
  [data-page=download] .download-wrap {
    margin: 0 0 -40px 0;
  }
}

[data-page=download] .download-wrap .item {
  padding: 0 57px;
  max-width: 33.333%;
  flex-basis: 33.333%;
  margin-bottom: 80px;
}

@media (max-width: 991px) {
  [data-page=download] .download-wrap .item {
    max-width: 50%;
    flex-basis: 50%;
    padding: 0 25px;
  }
}

@media (max-width: 767px) {
  [data-page=download] .download-wrap .item {
    max-width: 100%;
    flex-basis: 100%;
    padding: 0;
  }
}

[data-page=download] .download-card {
  position: relative;
}

[data-page=download] .download-card:hover .download-bg {
  transform: scale(1.1);
}

[data-page=download] .download-card .retangle-btn {
  margin-left: auto;
}

[data-page=download] .download-bg-block {
  width: 100%;
  padding-top: 130.2521008403%;
  overflow: hidden;
  position: relative;
  z-index: 0;
  margin-bottom: 16px;
  border-radius: 4px;
}

[data-page=download] .download-bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all 0.4s ease;
}

[data-page=download] .download-content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
}

[data-page=download] .download-content .retangle-btn {
  flex-shrink: 0;
  width: 27px;
  height: 27px;
  padding: 8px;
  margin-top: 8px;
  justify-content: center;
  align-items: center;
}

[data-page=download] .download-content .retangle-btn i {
  width: 8px;
  height: 8px;
  font-size: 12px;
}

[data-page=download] .download-content .retangle-btn .icon-small-download {
  width: 8px;
  height: 8px;
  display: block;
  background: url("../images/icon/icon-download.png?=v2") no-repeat;
  background-size: contain;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5),
all and (-o-min-device-pixel-ratio: 3/2),
all and (min--moz-device-pixel-ratio: 1.5),
all and (min-device-pixel-ratio: 1.5) {
  [data-page=download] .download-content .retangle-btn .icon-small-download {
    background: url("../images/icon/icon-download@2x.png?=v2") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  [data-page=download] .download-content .retangle-btn .icon-small-download {
    background: url("../images/icon/icon-download@2x.png?=v2") no-repeat;
    background-size: contain;
  }
}

[data-page=download] .download-txt {
  padding-right: 10px;
  margin-top: 8px;
  margin-bottom: 0;
}

[data-page=download] .download-modal-title {
  font-size: 2.5rem;
  width: 412px;
  margin-bottom: 48px;
  font-weight: 400;
}

@media (max-width: 767px) {
  [data-page=download] .download-modal-title {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 32px;
    width: 281px;
  }
}

@media (max-width: 575px) {
  [data-page=download] .download-modal-title {
    width: 85%;
  }
}

[data-page=download] .modal-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -50px;
}

@media (max-width: 1199px) {
  [data-page=download] .modal-wrap {
    margin: 0 -25px;
  }
}

@media (max-width: 991px) {
  [data-page=download] .modal-wrap {
    margin: 0;
  }
}

[data-page=download] .main-input-group {
  max-width: 50%;
  flex-basis: 50%;
  padding: 0 50px;
}

@media (max-width: 1199px) {
  [data-page=download] .main-input-group {
    padding: 0 25px;
  }
}

@media (max-width: 991px) {
  [data-page=download] .main-input-group {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 25px;
    padding: 0;
  }
}

@media (max-width: 991px) {
  [data-page=download] .main-input-group:nth-last-of-type(1) {
    margin-bottom: 0;
  }
}

[data-page=download] .square-btn-box {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  flex-direction: row;
  margin-top: 50px;
}

@media (max-width: 767px) {
  [data-page=download] .square-btn-box {
    margin-top: 20px;
  }
}

[data-page=download] .square-btn {
  padding: 19px 22px;
  width: auto;
  transform: translate;
  outline: 0;
}

@media (max-width: 1199px) {
  [data-page=download] .square-btn {
    bottom: 0;
    position: relative;
    margin-top: 20px;
  }
}

[data-page=contact] .mt-35 {
  margin-top: 35px;
}

@media (max-width: 767px) {
  [data-page=contact] .mt-35 {
    margin-top: 0;
  }
}

[data-page=contact] .mt-40 {
  margin-top: 40px;
}

@media (max-width: 767px) {
  [data-page=contact] .mt-40 {
    margin-top: 20px;
  }
}

[data-page=contact] .mt-47 {
  margin-top: 47px;
}

@media (max-width: 767px) {
  [data-page=contact] .mt-47 {
    margin-top: 0;
  }
}

[data-page=contact] .mt-55 {
  margin-top: 55px;
}

[data-page=contact] .mb-sm-20 {
  margin-bottom: 0 !important;
}

@media (max-width: 767px) {
  [data-page=contact] .mb-sm-20 {
    margin-bottom: 20px !important;
  }
}

[data-page=contact] .pretty.p-default input:checked~.state label:after {
  background-color: #00AB8E !important;
}

[data-page=contact] .pretty .state label {
  color: #373737;
}

[data-page=contact] .checkbox-wrap {
  justify-content: flex-start;
}

[data-page=contact] .contact-section {
  margin-bottom: 160px;
}

@media (max-width: 767px) {
  [data-page=contact] .contact-section {
    margin-bottom: 120px;
  }
}

[data-page=contact] .contact-container {
  padding-left: 8.3333333333vw;
  padding-right: 4.5138888889vw;
}

[data-page=contact] .contact-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
}

@media (max-width: 1199px) {
  [data-page=contact] .contact-wrap {
    flex-wrap: wrap;
  }
}

[data-page=contact] .title-block {
  max-width: 281px;
  flex-basis: 281px;
}

@media (max-width: 1199px) {
  [data-page=contact] .title-block {
    max-width: 100%;
    flex-basis: 100%;
  }
}

[data-page=contact] .form-block {
  max-width: calc(100% - 281px);
  flex-basis: calc(100% - 281px);
  padding-left: 8.75vw;
  padding-top: 82px;
}

@media (min-width: 1440px) {
  [data-page=contact] .form-block {
    padding-left: 126px;
  }
}

@media (max-width: 1199px) {
  [data-page=contact] .form-block {
    max-width: 100%;
    flex-basis: 100%;
    padding-top: 0;
    padding-left: 0;
  }
}

[data-page=contact] .inner-h1-title {
  color: #00AB8E;
}

@media (max-width: 767px) {
  [data-page=contact] .inner-h1-title {
    margin: 62px 0 40px 0;
    min-height: unset;
  }
}

[data-page=contact] .main-label {
  color: #000;
}

[data-page=contact] .main-input {
  border: 1px solid #C4C4C4;
}

[data-page=contact] .main-input:focus {
  border: 1px solid #1C1F87;
  outline: 0;
}

[data-page=contact] .main-input.error {
  border: 1px solid red;
}

[data-page=contact] .form-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -13px;
}

[data-page=contact] .main-input-group {
  max-width: 50%;
  flex-basis: 50%;
  padding: 0 13px;
  margin-bottom: 20px;
  position: relative;
}

@media (max-width: 767px) {
  [data-page=contact] .main-input-group {
    max-width: 100%;
    flex-basis: 100%;
  }
}

[data-page=contact] .main-input-group.w-100 {
  max-width: 100%;
  flex-basis: 100%;
}

[data-page=contact] .pretty.dark .state label:before {
  background-color: #EDEDED;
}

[data-page=contact] .square-btn {
  display: inline-flex;
  text-align: center;
  width: auto;
  padding: 21px 22px;
  outline: 0;
}

@media (max-width: 767px) {
  [data-page=contact] .square-btn {
    position: relative;
    left: 20px;
  }
}

[data-page=rule] .rule-section {
  margin-bottom: 160px;
}

@media (max-width: 767px) {
  [data-page=rule] .rule-section {
    marign-bottom: 120px;
  }
}

@media (max-width: 767px) {
  [data-page=rule] .inner-h1-title {
    min-height: unset;
  }
}

[data-page=about] .content-section {
  margin-bottom: 120px;
}

@media (max-width: 767px) {
  [data-page=about] .content-section {
    margin-bottom: 60px;
  }
}

[data-page=about] .content-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
}

[data-page=about] .title-block {
  max-width: 305px;
  flex-basis: 305px;
}

@media (max-width: 575px) {
  [data-page=about] .title-block {
    max-width: 200px;
    flex-basis: 200px;
  }
}

[data-page=about] .content-block {
  max-width: calc(100% - 305px);
  flex-basis: calc(100% - 305px);
  margin-top: 85px;
}

@media (max-width: 1199px) {
  [data-page=about] .content-block {
    max-width: 100%;
    flex-basis: 100%;
    margin-top: 0;
  }
}

[data-page=about] .award-section {
  margin-bottom: 120px;
}

@media (max-width: 767px) {
  [data-page=about] .award-section {
    margin-bottom: 40px;
  }
}

[data-page=about] .award-container {
  width: 995px;
  margin: 0 auto;
}

@media (max-width: 1439px) {
  [data-page=about] .award-container {
    width: 85%;
  }
}

@media (max-width: 767px) {
  [data-page=about] .inner-h1-title {
    margin: 62px 0 33px;
    min-height: unset;
  }
}

[data-page=about] .inner-h2-title {
  color: #00AB8E;
  text-align: center;
  margin-bottom: 36px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  [data-page=about] .inner-h2-title {
    margin-bottom: 25px;
  }
}

[data-page=about] .inner-h2-title.mb-60 {
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  [data-page=about] .inner-h2-title.mb-60 {
    margin-bottom: 25px;
  }
}

[data-page=about] .award-wrap {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -22px;
}

@media (max-width: 1199px) {
  [data-page=about] .award-wrap {
    justify-content: flex-start;
  }
}

[data-page=about] .award-wrap .item {
  max-width: 16.666%;
  flex-basis: 16.666%;
  padding: 0 22px;
}

@media (max-width: 1199px) {
  [data-page=about] .award-wrap .item {
    max-width: 20%;
    flex-basis: 20%;
  }
}

@media (max-width: 767px) {
  [data-page=about] .award-wrap .item {
    max-width: 33.333%;
    flex-basis: 33.333%;
  }
}

[data-page=about] .award-bg {
  width: 100%;
  padding-top: 100%;
}

[data-page=about] .count-num-section {
  position: relative;
  z-index: 1;
  width: 1370px;
  width: 95.9%;
  margin-bottom: 120px;
}

@media (min-width: 1600px) {
  [data-page=about] .count-num-section {
    width: 97%;
  }
}

@media (min-width: 1920px) {
  [data-page=about] .count-num-section {
    width: 98%;
  }
}

@media (max-width: 1199px) {
  [data-page=about] .count-num-section {
    width: 100%;
  }
}

@media (max-width: 767px) {
  [data-page=about] .count-num-section {
    margin-bottom: 60px;
  }
}

@media (max-width: 1199px) {
  [data-page=about] .world-map {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }
}

@media (max-width: 1439px) {
  [data-page=about] .world-map .list-group {
    transform: translateX(10%);
  }
}

@media (max-width: 1199px) {
  [data-page=about] .world-map .list-group {
    position: relative;
    order: 2;
    transform: unset;
    right: unset;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 60px;
  }
}

@media (max-width: 1199px) {
  [data-page=about] .world-map .list-item {
    max-width: 50%;
    flex-basis: 50%;
  }
}

[data-page=about] .world-map .list-item p {
  max-width: 150px;
  word-break: keep-all;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #000;
}

[data-page=about] .world-section {
  margin-bottom: 150px;
}

@media (max-width: 767px) {
  [data-page=about] .world-section {
    margin-bottom: 60px;
  }
}

[data-page=about] .earth-img {
  width: 656px;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  [data-page=about] .earth-img {
    width: 60%;
  }
}

@media (max-width: 767px) {
  [data-page=about] .earth-img {
    width: 75%;
  }
}

@media (max-width: 767px) {
  [data-page=about] .world-map {
    width: 100%;
    padding: 0 40px;
  }
}

[data-page=about] .world-map-wrapper {
  height: auto;
}

[data-page=about] .shining-swiper .swiper-wrapper {
  align-items: center;
}

[data-page=about] .shining-swiper .swiper-slide-active .shining-bg-block {
  transform: scale(1);
}

[data-page=about] .shining-swiper .swiper-slide-active .shining-content {
  opacity: 1;
}

[data-page=about] .shining-bg-block {
  width: 100%;
  padding-top: 77.7210884354%;
  position: relative;
  transform: scale(0.8);
  transition: all 0.8s ease;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 17px;
}

@media (max-width: 767px) {
  [data-page=about] .shining-bg-block {
    transform: scale(0.9);
    transition: all 0.8s ease;
  }
}

[data-page=about] .position-icon {
  width: 12px;
  height: 14px;
  background: url("../images/icon/position.png") no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 8px;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5),
all and (-o-min-device-pixel-ratio: 3/2),
all and (min--moz-device-pixel-ratio: 1.5),
all and (min-device-pixel-ratio: 1.5) {
  [data-page=about] .position-icon {
    background: url("../images/icon/position@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  [data-page=about] .position-icon {
    background: url("../images/icon/position@2x.png") no-repeat;
    background-size: contain;
  }
}

[data-page=about] .shining-section {
  margin-bottom: 213px;
  position: relative;
}

@media (max-width: 767px) {
  [data-page=about] .shining-section {
    padding: 0 30px;
    margin-bottom: 165px;
  }
}

[data-page=about] .shining-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 53px;
  background-color: #EDEDED;
}

@media (max-width: 767px) {
  [data-page=about] .shining-section::after {
    height: 43px;
  }
}

[data-page=about] .shining-bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

[data-page=about] .shining-control {
  position: absolute;
  z-index: 1;
  right: 24%;
  bottom: 53px;
}

@media (max-width: 1439px) {
  [data-page=about] .shining-control {
    right: 26%;
  }
}

[data-page=about] .shining-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  opacity: 0;
  transition: all 0.8s ease;
}

[data-page=about] .shining-txt-block {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

[data-page=about] .shining-title {
  color: #00AB8E;
  margin-bottom: 0;
}

[data-page=about] .shining-txt {
  margin-bottom: 0;
  font-size: 0.9375rem;
  font-family: "aria", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  color: #737373;
}

[data-page=about] .shining-pagination {
  display: none;
  bottom: -30px;
  transform: translate(0, 100%);
}

@media (max-width: 1199px) {
  [data-page=about] .shining-pagination {
    display: block;
  }
}

[data-page=page-404] .page-404-container {
  padding: 192px 0 145px 63px;
}

@media (max-width: 1199px) {
  [data-page=page-404] .page-404-container {
    padding: 192px 0 145px 0;
  }
}

@media (max-width: 767px) {
  [data-page=page-404] .page-404-container {
    padding: 102px 0 120px 0;
  }
}

[data-page=page-404] .inner-h1-title {
  font-size: 6.25rem;
  line-height: 1.2;
  margin: 0 0 16px 0;
  min-height: unset;
  font-weight: 400;
}

@media (max-width: 767px) {
  [data-page=page-404] .inner-h1-title {
    font-size: 3.125rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }
}

[data-page=page-404] .bg-title-radius {
  display: inline-block;
}

[data-page=page-404] .bg-title-radius::before {
  left: unset;
  right: -108px;
  bottom: -4px;
}

@media (max-width: 767px) {
  [data-page=page-404] .bg-title-radius::before {
    bottom: -11px;
    transform: translate(0, 50%);
  }
}

[data-page=page-404] .inner-h4-title {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 500;
  color: #00AB8E;
  margin-bottom: 42px;
}

@media (max-width: 767px) {
  [data-page=page-404] .inner-h4-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}

[data-page=page-404] .border-bottom-btn {
  width: 107px;
}

[data-page=page-404] .page-404-section {
  margin-bottom: 160px;
}

@media (max-width: 767px) {
  [data-page=page-404] .page-404-section {
    margin-bottom: 120px;
  }
}

[data-page=page-404] .page-404-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: row;
}

[data-page=page-404] .page-404-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

[data-page=search] .body-container {
  background-color: #FFF !important;
}

@media (max-width: 1199px) {
  [data-page=search] .product-container {
    padding: 0 25px;
  }
}

[data-page=search] .bread-list {
  margin-bottom: 153px;
}

@media (max-width: 1199px) {
  [data-page=search] .bread-list {
    margin-bottom: 33px;
  }
}

[data-page=search] .product-list-block {
  max-width: 100%;
  flex-basis: 100%;
}

[data-page=search] .search-title {
  font-weight: 500;
  font-size: 2.875rem;
  line-height: 1.2;
  color: #00AB8E;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  [data-page=search] .search-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}

[data-page=search] .search-input-wrap {
  max-width: 793px;
  margin: 0 auto 65px;
}

@media (max-width: 767px) {
  [data-page=search] .search-input-wrap {
    margin: 0 auto 56px;
  }
}

[data-page=search] .search-input-wrap form {
  width: 100%;
}

[data-page=search] .page-search-section {
  position: relative;
  width: 1004px;
  margin: 0 auto 160px;
}

@media (max-width: 1199px) {
  [data-page=search] .page-search-section {
    margin: 0 auto 102px;
  }
}

@media screen and (max-width: 1024px) {
  [data-page=search] .page-search-section {
    width: 100%;
  }
}

[data-page=search] .search-input-inner-phone {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  border: 1px solid #C4C4C4;
  border-radius: 5px;
  display: none;
}

@media (max-width: 575px) {
  [data-page=search] .search-input-inner-phone {
    display: block;
  }
}

[data-page=search] .search-input-inner-phone .main-input {
  width: 85%;
}

[data-page=search] .search-input-inner-phone .main-input:focus,
[data-page=search] .search-input-inner-phone .main-input:active {
  border: none !important;
}

[data-page=search] .search-input-inner-phone .search-btn {
  border: none;
  width: 22px;
  height: 22px;
  background-image: url(../images/icon/search.svg);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 5px;
  background-color: unset;
}

[data-page=search] .search-input-inner-phone .search-btn:focus,
[data-page=search] .search-input-inner-phone .search-btn:active {
  outline: none;
}

[data-page=search] .search-input-inner {
  width: 100%;
  display: block;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

@media (max-width: 575px) {
  [data-page=search] .search-input-inner {
    display: none;
  }
}

[data-page=search] .search-input-inner .main-input {
  border: 1px solid #C4C4C4;
  max-width: 77.43%;
}

@media (max-width: 575px) {
  [data-page=search] .search-input-inner .main-input {
    max-width: 73%;
  }
}

[data-page=search] .search-input-inner .fill-btn {
  margin-left: 25px;
  border: none;
  width: calc(100% - 25px - 77.43%);
  height: 53px;
  border-radius: 5px;
}

@media (max-width: 575px) {
  [data-page=search] .search-input-inner .fill-btn {
    margin-left: 5px;
    width: calc(100% - 5px - 73%);
  }
}

[data-page=search] .search-input-inner .fill-btn:focus,
[data-page=search] .search-input-inner .fill-btn:active {
  outline: none;
}

[data-page=search] .result-text {
  font-size: 1.5rem;
  color: #00AB8E;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 56px;
}

@media (max-width: 767px) {
  [data-page=search] .result-text {
    font-size: 1.125rem;
    margin-bottom: 27px;
  }
}

[data-page=search] .result-text.noresult {
  padding-bottom: 202px;
}

[data-page=search] .pagination-wrap {
  margin: 0 auto;
  padding-bottom: 136px;
}

@media (max-width: 1199px) {
  [data-page=search] .pagination-wrap {
    padding-bottom: 68px;
  }
}

[data-page=search] .pagination-list {
  top: 0px;
  transform: translate(-50%, 0%);
}

footer {
  background-color: #FFF;
  min-height: 289px;
  position: relative;
  padding: 0px 100px 50px 100px
}

@media (max-width: 767px) {
  footer {
    padding: 70px 25px 0 25px;
  }
}

footer::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-color: #00AB8E;
  width: 100%;
  height: 18px;
}

@media (max-width: 767px) {
  footer {
    padding: 40px 0 0 10px;
  }

}

footer .display-5 a {
  color: #000;
}

footer .footer-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}


@media (max-width: 1024px) {
  footer .footer-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 0;
  }

}

@media (max-width: 767px) {
  footer .footer-list {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 0;
    gap: 20px 10px;
  }

  footer .footer-list-item {
    margin-top: 0;
    padding-bottom: 0 !important;
  }

  footer .footer-list-item ul {
    margin-bottom: 20px !important;
  }

  footer .footer-list>div:not(:last-child) {
    padding-bottom: 0 !important;
  }

  footer .footer-text {
    margin-top: 30px;
    padding-bottom: 30px;
    padding-left: 10px;
  }
}

footer .footer-list-title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  color: #00AB8E;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 10px;
  padding-top: 50px;
}

footer .footer-list-item .out-link {
  color: #00AB8E;

  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

footer .footer-list-item ul {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

footer .footer-list-item ul li {
  line-height: 2;
}

footer .footer-list>div:not(:last-child) {
  padding-bottom: 12px;
}

footer .footer-list>div a {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #000;
}

footer .footer-text {
  color: #000;
  text-align: end;
}

@media (max-width: 767px) {
  footer .footer-list-title {
    padding-top: 0;
  }

  footer .footer-text {
    max-width: 100%;
    flex-basis: 100%;
  }
}

@media (max-width: 575px) {
  footer .footer-text {
    text-align: unset;
  }
}

footer .copyright {
  color: #00AB8E;
  padding-top: 20px;
  font-weight: 600;
}

@media (max-width: 767px) {
  footer .copyright {
    padding-top: 8px;
  }
}

footer .copyright:before {
  width: 12px;
  content: url("../images/copyright_logo.svg");
  margin: 0 4px 0 0;
  display: inline-block;
  top: 2px;
  position: relative;
}

/* no support backdrop-filter */
@supports not ((-webkit-backdrop-filter: blur(15px)) or (backdrop-filter: blur(15px))) {
  .menu-block::after {
    background: rgba(255, 255, 255, 0.9);
  }

  .main-modal {
    background: rgba(255, 255, 255, 0.9);
  }
}

.know-list-block {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -20px;
  margin: 0 auto;
  height: 357px;
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  padding: 30px 0;
  position: relative;
}

.know-list-block:last-of-type::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #00AB8E;
  transition: width 0.3s ease-in-out;
  margin: 0;
  padding: 0;
}

.know-list-block:hover {
  border: none;
}

.know-list-block:hover::after {
  width: 100%;
}

.know-list-block .img-block {
  max-width: 33.333%;
  flex-basis: 33.333%;
  padding: 0 20px;
  margin-bottom: 40px;
  background-size: cover;
  height: 100%;
  border-radius: 12px;
}

.know-list-block .content-block {
  padding: 0 20px;
  max-width: 66.666%;
  flex-basis: 66.666%;
  margin-bottom: 40px;
  padding: 10px;
}

.know-list-block .title {
  font-size: 1.3rem;
  font-weight: 400;
  color: #00AB8E;
  margin-bottom: 16px;
}

.know-list-block .text {
  font-size: 1em;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
}

.know-pagination-wrap {
  margin: 30px auto;
}

.know-content-container h3 {
  font-size: 1.3rem;
  line-height: 1.5;
}

.know-content-container p {
  font-size: 1rem;
  line-height: 1.5;
}

@media screen and (max-width: 1199px) {
  .know-list-block {
    height: auto;
    display: block;
  }

  .know-list-block .img-block {
    max-width: 100%;
    flex-basis: 100%;
    height: 300px;
    margin: 0 auto;
  }

  .know-list-block .content-block {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }

  .know-list-block .content-block .title {
    font-size: 1.3rem;
  }

  .know-list-block .content-block .text {
    font-size: 1rem;
  }
}

/* 1. Set the wrapper as the positioning context */
.swiper-and-controls-wrapper {
  position: relative;
  overflow: visible;
  /* Allow slides to overflow to show 1/4 of next slide */

  /* The wrapper needs a defined width/height if the content inside doesn't provide it, 
       but typically the swiper will define the necessary dimensions. */
}

/* 2. Position the controls absolutely within the wrapper */
.banner-swiper-control {
  position: absolute;
  bottom: 0;
  left: 45.8%;
  z-index: 10;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .banner-swiper-control {
    right: 0;
    left: unset;
  }

  .accordion-block {
    height: 300px;
  }

  .index .section-accordion .contents>div {
    width: 50%;
  }

  .index .section-accordion .contents {
    border-bottom: none;
  }
}

/* Menu Arrow Navigation Styles */
header .menu-arrow {
  display: none;
  top: 50%;
  color: rgba(0, 171, 142, 0.8);
  border: none;
  width: 32px;
  height: 32px;
  background: none;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  padding: 0;
  font-size: 30px;
  align-items: center;
  justify-content: center;
  margin-top: -5px;
}

header .menu-arrow-prev {
  margin-right: 30px;
}

header .menu-arrow-next {
  margin-left: 30px;
}


header .menu-arrow-next {
  margin-left: 30px;
}

header .menu-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}


header .menu-arrow i::before {
  font-size: 14px;
}

/* 只在 768px~1199px 顯示箭頭 */
@media (min-width: 768px) and (max-width: 1199px) {
  header .dropdown-list {
    position: relative;
    padding: 0 45px;
  }

  .dropdown-list {
    width: 650px;
  }

  header .menu-arrow {
    display: flex;
  }

  header .main-menu-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  header .main-menu-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
  }

  header .main-menu-container .dropdown-out {
    flex-shrink: 0;
    white-space: nowrap;
  }

  /* Fix dropdown visibility despite overflow-y: hidden */
  header .main-menu-container .dropdown-out {
    position: static;
    /* Make dropdown-inner-list position relative to header */
  }

  header .main-menu-container .dropdown-inner-list {
    position: fixed;
    /* Escape the overflow clipping context */
    bottom: auto;
    top: 70px;
    /* Header height */
    transform: none;
    margin-top: 7px;
    /* Add gap like the original design */
    transition: opacity 0.2s ease, left 0s;
    /* Only transition opacity, not position */
  }

  /* Add invisible bridge for smooth hover transition */
  header .main-menu-container .dropdown-inner-list::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 7px;
    top: -7px;
    background: transparent;
  }

  /* Override default hover behavior in tablet view */
  header .main-menu-container .dropdown-out:hover .dropdown-inner-list {
    opacity: 0;
    /* Disable default CSS hover */
    pointer-events: none;
  }

  /* JavaScript will add .active class to show dropdown */
  header .main-menu-container .dropdown-inner-list.active {
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 1000;
  }
}

@media (max-width:1100px) {
  header .search-bar-wrap {
    min-width: 784px;
  }
}

@media (max-width:1000px) {
  header .search-bar-wrap {
    min-width: 684px;
  }
}

@media (max-width:900px) {
  header .search-bar-wrap {
    min-width: 584px;
  }
}

@media (max-width:800px) {
  header .search-bar-wrap {
    min-width: 534px;
  }
}

/* 在更大的螢幕上，確保容器正常顯示 */
@media (min-width: 1200px) {
  header .main-menu-container {
    display: flex;
    flex-wrap: nowrap;
  }
}


@media (max-width:1411px) {
  header .dropdown-list .out-link {
    font-size: 1.03rem;
  }
}

@media (max-width:1354px) {
  header .dropdown-list .out-link {
    font-size: 0.80rem;
  }
}