@charset "UTF-8";
/* 字體（Google Fonts 最好在 HTML 載入，而不是 SCSS @import） */
/* 全域 */
/* ---- external (若一定要用 @import url，放最上方) ---- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap" rel="stylesheet');
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Serif+TC:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Voces&display=swap");
/* ---- foundation ---- */
/* ---------------------------

            GSAP

--------------------------- */
/* ---- base ---- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Noto Sans TC", "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.125rem;
  background-color: #FEFEFE;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* iOS 更流暢 */
  color: #333333;
}

a {
  text-decoration: none;
  color: black;
  transition: color 0.3s ease-in-out, font-weight 0.3s ease-in-out;
}
a:hover, a.active {
  font-weight: bold;
  color: #007880;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media screen and (min-width: 344px) and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

/* 共用元件 */
#gototop {
  display: none; /* 預設隱藏 */
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: 50px;
  height: 50px;
  z-index: 9;
  background-color: white;
  color: #fff;
  font-weight: bolder;
  text-align: center;
  line-height: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s;
  border: #CCCCCC 1px solid;
  color: #007880;
  transition: all 0.3s ease-in-out;
}

#gototop:hover {
  color: white;
  background: #007880;
  transform: translateY(-8px);
}

/* === 基本設定 === */
.custom-toggler {
  position: absolute;
  width: 34px;
  height: 26px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 1051;
  opacity: 1;
  transition: opacity 0.35s ease;
}

@media screen and (max-width: 1200px) {
  .custom-toggler {
    top: 33px;
    right: 33px;
  }
}
@media screen and (max-width: 576px) {
  .custom-toggler {
    top: 3rem;
    right: 1rem;
  }
}

@media screen and (max-width: 576px) {
  .sticky-navbar.shrink .custom-toggler {
    top: 2rem;
    right: 1rem;
  }
  .sticky-navbar.shrink .custom-toggler .toggler-bar {
    background: black;
  }
}

.custom-toggler:focus,
.custom-toggler:active,
.custom-toggler:focus-visible {
  outline: none;
  box-shadow: none;
}

/* 三條線 */
.toggler-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transition: transform 0.35s ease-in-out, top 0.35s ease-in-out, opacity 0.35s ease-in-out;
}
@media screen and (max-width: 576px) {
  .toggler-bar {
    background: white;
  }
}

/* 初始 */
.top-bar {
  top: 0;
  transform: rotate(0);
}

.middle-bar {
  top: 50%;
  transform: translateY(-50%);
}

.bottom-bar {
  top: 100%;
  transform: translateY(-100%) rotate(0);
}

/* active */
.custom-toggler.active .top-bar {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background-color: #231815;
}

.custom-toggler.active .middle-bar {
  opacity: 0;
}

.custom-toggler.active .bottom-bar {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  background-color: #231815;
}

@media screen and (max-width: 1200px) {
  .offcanvas.offcanvas-end {
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
  }
  /* 開啟時（淡入） */
  .offcanvas.show {
    opacity: 1;
  }
  /* 關閉時（淡出） */
  .offcanvas.hiding {
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
  }
}
.scrolldown-block {
  position: absolute;
  bottom: 3%;
  width: 100%;
  height: auto;
  color: white;
  display: flex;
  justify-content: center;
  flex-direction: row;
}

.scrolldown {
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 50px;
  border: 3px solid white;
  border-radius: 50px;
  box-sizing: border-box;
  margin-bottom: 16px;
  z-index: 9;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: white;
  border-radius: 100%;
  animation: scrolldown-anim 2s infinite;
  box-sizing: border-box;
}
.scrolldown:hover {
  transform: translateY(-8px);
}

@keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: 6px;
  }
  40% {
    opacity: 1;
    height: 10px;
  }
  80% {
    transform: translate(0, 20px);
    height: 10px;
    opacity: 0;
  }
  100% {
    height: 3px;
    opacity: 0;
  }
}
.chevrons {
  padding: 6px 0 0 0;
  margin-left: -3px;
  margin-top: 48px;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.chevrons .chevrondown {
  margin-top: -6px;
  position: relative;
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}
.chevrons .chevrondown:nth-child(odd) {
  animation: pulse 500ms ease infinite alternate;
}
.chevrons .chevrondown:nth-child(even) {
  animation: pulse 500ms ease infinite alternate 250ms;
}

@keyframes pulse {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.5;
  }
}
/* ===== Toggle Button ===== */
.dropdown-toggle {
  width: 100%;
  padding: 14px 16px;
  background-color: #007880;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.dropdown-toggle::after {
  display: none;
}

/* 箭頭 */
.dropdown-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

/* ===== Menu ===== */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  z-index: 10;
  /* 初始隱藏 */
  display: none;
}

.dropdown-menu li {
  padding: 12px 16px;
  cursor: pointer;
  color: #333;
}

.dropdown-menu li:hover {
  background-color: rgba(0, 120, 128, 0.08);
}

.dropdown-menu li.active {
  color: #007880;
  font-weight: 500;
}

.navbar {
  padding-top: 34px;
  transition: flex-direction 0.3s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, color 0.3s ease-in-out, padding 0.3s ease-in-out, margin-bottom 0.3s ease-in-out;
}
@media screen and (max-width: 576px) {
  .navbar {
    padding-top: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .navbar .logo-block {
    margin-bottom: 0;
  }
  .navbar .custom-toggler {
    top: 50%;
    transform: translateY(calc(-50% - 0.25rem));
  }
  .navbar .offcanvas-header {
    padding: 1rem 1rem 0 1rem;
  }
}
.navbar .container-fluid {
  display: flex;
  flex-direction: column;
}
.navbar .logo-block {
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.navbar .logo-block .logo-text {
  color: white;
}
@media screen and (max-width: 576px) {
  .navbar .logo-block {
    align-self: flex-start;
    transform: scale(0.8);
    transform-origin: top left;
  }
}
.navbar .logo-block .logo:hover {
  font-weight: inherit;
}
.navbar .offcanvas .logo-block .logo-text {
  color: #231815;
}
@media screen and (max-width: 576px) {
  .navbar .offcanvas nav {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 576px) {
  .navbar .offcanvas nav .navbar-nav {
    margin-top: 2.25rem;
    font-size: 1.5rem;
  }
}
.navbar .offcanvas nav .navbar-nav .nav-item {
  padding: 0 1rem;
}
@media screen and (max-width: 576px) {
  .navbar .offcanvas nav .navbar-nav .nav-item {
    padding: 0.75rem 0;
  }
}
.navbar .offcanvas nav .navbar-nav .nav-item a {
  padding: 0;
  position: relative;
  color: white;
}
@media screen and (max-width: 576px) {
  .navbar .offcanvas nav .navbar-nav .nav-item a {
    color: #333333;
    text-align: center;
  }
}
.navbar .offcanvas nav .navbar-nav .nav-item a::after {
  transition: width 0.3s ease-in-out;
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 1px;
  background-color: white;
}
@media screen and (max-width: 576px) {
  .navbar .offcanvas nav .navbar-nav .nav-item a::after {
    background-color: #333333;
  }
}
.navbar .offcanvas nav .navbar-nav .nav-item a:hover, .navbar .offcanvas nav .navbar-nav .nav-item a.active {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.navbar .offcanvas nav .navbar-nav .nav-item a:hover::after, .navbar .offcanvas nav .navbar-nav .nav-item a.active::after {
  width: 100%;
}
.sticky-navbar.shrink {
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding-top: 16px;
  padding-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.sticky-navbar.shrink .logo-block {
  margin-bottom: 0;
  /* sticky 狀態 */
}
.sticky-navbar.shrink .logo-block .header.is-sticky .site-logo {
  content: url("../logo-color.svg");
}
.sticky-navbar.shrink .logo-block .logo-text {
  color: #231815;
}
.sticky-navbar.shrink .logo-block .logo {
  font-weight: inherit;
}
.sticky-navbar.shrink .logo-block .logo:hover .logo-text {
  color: #007880;
}
.sticky-navbar.shrink nav .navbar-nav .nav-item a {
  color: #333333;
}
.sticky-navbar.shrink nav .navbar-nav .nav-item a:hover, .sticky-navbar.shrink nav .navbar-nav .nav-item a.active {
  color: #007880;
}
.sticky-navbar.shrink nav .navbar-nav .nav-item a:hover::after, .sticky-navbar.shrink nav .navbar-nav .nav-item a.active::after {
  background-color: #007880;
}
@media screen and (min-width: 576px) {
  .sticky-navbar.shrink .container-fluid {
    flex-direction: row;
  }
  .sticky-navbar.shrink nav {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 576px) {
  .sticky-navbar.shrink {
    padding-bottom: 0;
  }
  .sticky-navbar.shrink .custom-toggler {
    top: 50%;
    transform: translateY(-50%);
  }
}

.offcanvas.offcanvas-end {
  width: 100%;
}

.breadcrumb-section {
  padding: 20px 60px 0 60px;
}
@media screen and (max-width: 576px) {
  .breadcrumb-section {
    padding: 20px 1rem 0 1rem;
  }
}
.breadcrumb-section .breadcrumb {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 576px) {
  .breadcrumb-section .breadcrumb {
    justify-content: flex-start;
  }
}
.breadcrumb-section .breadcrumb ul li {
  position: relative;
  display: inline-block;
  margin-right: 30px;
}
.breadcrumb-section .breadcrumb ul li.active {
  color: #007880;
  font-weight: bolder;
}
.breadcrumb-section .breadcrumb ul li::after {
  content: "";
  position: absolute;
  right: -21px;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 12px;
  background-color: #cccccc;
}
.breadcrumb-section .breadcrumb ul li:last-child {
  margin-right: 0;
}
.breadcrumb-section .breadcrumb ul li:last-child::after {
  display: none;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: none;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}

footer {
  overflow: hidden;
  border-top: #bebebe 1px solid;
}
footer .inner-block {
  padding-top: 80px;
  padding-bottom: 130px;
  max-height: auto;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  footer .inner-block {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
footer .inner-block .company-block {
  min-height: 420px;
}
footer .inner-block .company-block .logo-block {
  margin-bottom: 70px;
}
@media screen and (max-width: 992px) {
  footer .inner-block .company-block .logo-block {
    margin-bottom: 30px;
  }
}
footer .inner-block .company-block ul {
  padding: 0;
  margin: 0;
}
footer .inner-block .company-block ul li {
  list-style: none;
  margin-bottom: 1.5rem;
}
footer .inner-block .company-block ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  footer .inner-block .company-block ul li:last-child {
    margin-top: 40px;
  }
}
footer .inner-block .company-block .line-btn {
  background: #007880;
  border-radius: 36px;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.5rem 1rem;
  transition: transform 0.3s ease-in-out, padding 0.3s ease-in-out;
  margin-top: 1rem;
}
footer .inner-block .company-block .line-btn:hover {
  padding: 0.5rem 2rem;
}
footer .inner-block .company-block .line-btn .icon-line {
  transform-origin: center bottom;
  transition: transform 0.3s ease-in-out;
}
footer .inner-block .company-block .line-btn:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
footer .inner-block .company-block .line-btn:hover .icon-line {
  animation: swing30 0.4s ease-in-out;
}
@keyframes swing30 {
  0% {
    transform: rotate(0deg) translateY(-0.3rem) scale(1.2);
  }
  20% {
    transform: rotate(-30deg) translateY(-0.3rem) scale(1.2);
  }
  40% {
    transform: rotate(30deg) translateY(-0.3rem) scale(1.2);
  }
  60% {
    transform: rotate(-20deg) translateY(-0.3rem) scale(1.2);
  }
  80% {
    transform: rotate(20deg) translateY(-0.3rem) scale(1.2);
  }
  100% {
    transform: rotate(0deg) translateY(-0.3rem) scale(1.2);
  }
}
@media screen and (max-width: 992px) {
  footer .inner-block .company-block {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 992px) {
  footer .inner-block .menu-block-group .menu-block.products-menu-block ul {
    border-bottom: 1px #007880 solid;
    padding-bottom: 1rem;
    width: 100%;
  }
}
footer .inner-block .menu-block-group .menu-block ul {
  justify-self: flex-end;
  margin: 0;
  padding: 0;
  display: block;
  width: fit-content;
}
@media screen and (max-width: 992px) {
  footer .inner-block .menu-block-group .menu-block ul {
    justify-self: flex-start;
    margin-bottom: 1rem;
  }
}
footer .inner-block .menu-block-group .menu-block ul li {
  display: block;
  width: fit-content;
  font-size: 1.3125rem;
  margin-bottom: 30px;
}
footer .inner-block .menu-block-group .menu-block ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  footer .inner-block .menu-block-group .menu-block ul li {
    margin-bottom: 1rem;
  }
}
footer .copyright {
  text-align: center;
  padding: 21px 0;
  background-color: #007880;
  color: white;
}
footer .copyright p {
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  footer .copyright {
    font-size: 1rem;
  }
}
footer li > div, footer li > a {
  display: flex;
  column-gap: 0.5rem;
  align-items: center;
}
footer .icon-phone,
footer .icon-fax,
footer .icon-address,
footer .icon-email,
footer .icon-code,
footer .icon-chat,
footer .icon-line {
  width: 30px;
  height: 30px;
  background-color: #333333;
  -webkit-mask-size: contain;
  mask-size: contain;
}
@media screen and (max-width: 992px) {
  footer .icon-phone,
  footer .icon-fax,
  footer .icon-address,
  footer .icon-email,
  footer .icon-code,
  footer .icon-chat,
  footer .icon-line {
    -webkit-mask-size: cover;
    mask-size: cover;
  }
}
@media screen and (max-width: 992px) {
  footer .icon-phone,
  footer .icon-fax,
  footer .icon-address,
  footer .icon-email,
  footer .icon-code,
  footer .icon-chat,
  footer .icon-line {
    -webkit-mask-size: contain;
    mask-size: contain;
  }
}
footer .icon-phone {
  -webkit-mask: url("../../assets/img/icon/icon_phone.svg") no-repeat center;
  mask: url("../../assets/img/icon/icon_phone.svg") no-repeat center;
}
footer .icon-fax {
  -webkit-mask: url("../../assets/img/icon/icon_fax.svg") no-repeat center;
  mask: url("../../assets/img/icon/icon_fax.svg") no-repeat center;
}
footer .icon-address {
  -webkit-mask: url("../../assets/img/icon/icon_address.svg") no-repeat center;
  mask: url("../../assets/img/icon/icon_address.svg") no-repeat center;
}
footer .icon-email {
  -webkit-mask: url("../../assets/img/icon/icon_email.svg") no-repeat center;
  mask: url("../../assets/img/icon/icon_email.svg") no-repeat center;
}
footer .icon-code {
  -webkit-mask: url("../../assets/img/icon/icon_code.svg") no-repeat center;
  mask: url("../../assets/img/icon/icon_code.svg") no-repeat center;
}
footer .icon-chat {
  -webkit-mask: url("../../assets/img/icon/icon_chat.svg") no-repeat center;
  mask: url("../../assets/img/icon/icon_chat.svg") no-repeat center;
}
footer .icon-line {
  background-color: white;
  -webkit-mask: url("../../assets/img/icon/icon-sns-line.svg") no-repeat center;
  mask: url("../../assets/img/icon/icon-sns-line.svg") no-repeat center;
}
footer a {
  width: fit-content;
}
footer a:hover {
  font-weight: inherit;
}
footer a:hover .icon-phone,
footer a:hover .icon-fax,
footer a:hover .icon-address,
footer a:hover .icon-email,
footer a:hover .icon-code,
footer a:hover .icon-chat {
  background-color: #007880;
}

header .hero-swiper {
  position: relative;
}
header .hero-swiper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
  pointer-events: none;
}
header .hero-swiper .hero-text {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: "Noto Serif TC", serif;
  color: white;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  pointer-events: none;
}
header .hero-swiper .hero-text .title {
  font-size: 6rem;
}
header .hero-swiper .hero-text .sub-title {
  white-space: nowrap;
  font-size: 2rem;
  letter-spacing: 0.45em;
  text-indent: 0.45em;
  line-height: 1.75;
}
header .hero-swiper .hero-text .sub-title.sp {
  margin-top: 1rem;
}
header .hero-swiper .hero-text::after {
  content: "";
  position: absolute;
  width: 329px;
  height: 255px;
  object-fit: cover;
  background: url(../../assets/img/home/img-deco-home-hero.png);
  background-size: cover;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 992px) {
  header .hero-swiper .hero-text {
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.7));
  }
  header .hero-swiper .hero-text .sub-title {
    white-space: wrap;
    width: 540px;
  }
}
@media screen and (max-width: 576px) {
  header .hero-swiper .hero-text {
    white-space: nowrap;
  }
  header .hero-swiper .hero-text .title {
    font-size: 3rem;
  }
  header .hero-swiper .hero-text .sub-title {
    white-space: nowrap;
    font-size: 1.5rem;
  }
}
header .hero-swiper .swiper-wrapper {
  height: 100dvh;
}
header .hero-swiper .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
header .hero-swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   Hero Swiper Pagination - Line Style
================================ */
.hero-swiper .swiper-pagination {
  position: absolute;
  bottom: 17.5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0;
  z-index: 20;
  width: auto;
}

.hero-swiper .swiper-pagination-bullet {
  width: 36px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  border-radius: 2px;
  transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.hero-swiper .swiper-pagination-bullet-active {
  background-color: #fff;
  width: 72px;
}

/* ===============================
   Home Products Swiper Pagination - Line Style
================================ */
.home-products-swiper .home-products-swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}
.home-products-swiper .swiper-pagination-bullet {
  position: relative;
  width: 30px;
  height: 4px;
  background-color: #ccc;
  border-radius: 0;
  opacity: 1; /* 關掉 Swiper 預設透明 */
  overflow: hidden;
  cursor: pointer;
  transform-origin: center;
  transition: width 0.35s ease-in-out;
}
.home-products-swiper .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #007880;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease-in-out;
}
.home-products-swiper .swiper-pagination-bullet:hover::after, .home-products-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  transform: scaleX(3);
}
.home-products-swiper .swiper-pagination-bullet-closing {
  width: 30px;
}
.home-products-swiper .swiper-pagination-bullet-closing::after {
  transform: scaleX(0);
}

@media (min-width: 1366px) and (max-width: 1599px) {
  .home-products .home-products-swiper {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
.home-products .home-products-swiper .swiper-wrapper .product-card {
  position: relative;
  height: 420px;
}
.home-products .home-products-swiper .swiper-wrapper .product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: all 0.3s ease-in-out;
  background-color: white;
}
.home-products .home-products-swiper .swiper-wrapper .product-card .product-name {
  position: absolute;
  z-index: 9;
  width: 100%;
  padding: 0 33px;
  bottom: 0;
}
.home-products .home-products-swiper .swiper-wrapper .product-card p {
  width: 100%;
  justify-self: center;
  text-align: center;
  margin-bottom: 0;
  padding: 24px;
  border-radius: 16px;
  transition: font-size 0.3s ease-in-out, background-color 0.3s ease-in-out, width 0.3s ease-in-out;
}
.home-products .home-products-swiper .swiper-wrapper .product-card:hover, .home-products .home-products-swiper .swiper-wrapper .product-card.swiper-slide-active {
  border-radius: 16px;
}
.home-products .home-products-swiper .swiper-wrapper .product-card:hover img, .home-products .home-products-swiper .swiper-wrapper .product-card.swiper-slide-active img {
  height: 90%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
}
.home-products .home-products-swiper .swiper-wrapper .product-card:hover p, .home-products .home-products-swiper .swiper-wrapper .product-card.swiper-slide-active p {
  font-size: 24px;
  font-weight: bold;
  width: 100%;
  background-color: white;
  border: 2px solid #007880;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
  color: #007880;
}
@media screen and (max-width: 960px) {
  .home-products .home-products-swiper .swiper-wrapper .product-card img {
    width: 80%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
  }
  .home-products .home-products-swiper .swiper-wrapper .product-card .product-name {
    padding: 0 16%;
  }
}
@media screen and (max-width: 576px) {
  .home-products .home-products-swiper .swiper-wrapper .product-card {
    border-radius: 16px;
  }
  .home-products .home-products-swiper .swiper-wrapper .product-card img {
    width: auto;
    height: 80%;
  }
}

/* 頁面 */
.home {
  overflow-x: hidden;
}
.home h2 {
  color: #007880;
  position: relative;
  margin-bottom: calc(80px + 1rem);
  display: inline-block;
  width: fit-content;
  margin-left: 10%;
}
@media screen and (max-width: 992px) {
  .home h2 {
    margin-left: 0;
    margin-bottom: var(--section-sp-padding-top-bottom);
  }
}
.home h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  background-color: #DDDDDD;
  width: calc(100% + 86px);
  height: 1px;
}
.home .home-products,
.home .home-aboutus,
.home .home-projects,
.home .home-news {
  overflow: hidden;
}
.home .home-products, .home .home-aboutus {
  padding-top: var(--section-pc-padding-top-bottom);
}
.home .home-products {
  padding-bottom: var(--section-pc-padding-top-bottom);
}
.home .home-products, .home .home-projects {
  background: url(../../assets/img/pages/img-page-bg-1.webp);
  background-size: cover;
}
@media screen and (max-width: 992px) {
  .home .home-products, .home .home-aboutus {
    padding: var(--section-sp-padding-top-bottom) 2rem;
  }
}
.home .home-aboutus h2, .home .home-projects h2 {
  align-self: flex-start;
  margin-left: 0;
  margin-bottom: 80px;
}
@media screen and (max-width: 992px) {
  .home .home-aboutus {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
}
.home .home-aboutus .row > div {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.home .home-aboutus .row h3 {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.home .home-aboutus .row .text-block {
  flex-direction: column;
  padding-left: calc(132px + 3.125%);
  padding-right: 132px;
}
@media screen and (max-width: 1599px) {
  .home .home-aboutus .row .text-block {
    padding-left: 132px;
  }
}
.home .home-aboutus .row .img-block {
  height: 468px;
}
@media screen and (max-width: 992px) {
  .home .home-aboutus .row .text-block {
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 1rem;
  }
  .home .home-aboutus .row .img-block {
    height: 320px;
  }
}
@media screen and (max-width: 576px) {
  .home .home-aboutus .row .img-block {
    height: 260px;
  }
}
.home .home-aboutus .row:last-child {
  margin-bottom: 0;
}
.home .home-aboutus .row:last-child .text-block {
  padding-right: calc(132px + 3.125%);
  padding-left: 132px;
}
@media screen and (max-width: 1599px) {
  .home .home-aboutus .row:last-child .text-block {
    padding-right: 132px;
  }
}
@media screen and (max-width: 992px) {
  .home .home-aboutus .row:last-child .text-block {
    padding: 2rem;
  }
}
.home .home-aboutus .row:last-child .text-block .feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 一列 4 個 */
  gap: 0.75rem 24px; /* row-gap / column-gap */
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .home .home-aboutus .row:last-child .text-block .feature-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .home .home-aboutus .row:last-child .text-block .feature-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 0;
  }
}
.home .home-aboutus .row:last-child .text-block .feature-list li {
  position: relative;
  padding-left: 24px;
  white-space: nowrap; /* 單項不斷行 */
  font-size: 1rem;
}
@media screen and (max-width: 576px) {
  .home .home-aboutus .row:last-child .text-block .feature-list li span {
    display: block;
  }
}
.home .home-aboutus .row:last-child .text-block .feature-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: #007880; /* 跟你圖中接近的綠色 */
}
.home .home-aboutus .row:last-child .img-block {
  gap: 30px;
}
.home .home-aboutus .row:last-child .img-block .img-set {
  width: 33.333%;
  height: 526px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home .home-aboutus .row:last-child .img-block .img-set img {
  height: 100%;
}
@media screen and (max-width: 576px) {
  .home .home-aboutus .row:last-child .img-block {
    gap: 0.5rem;
  }
  .home .home-aboutus .row:last-child .img-block .img-set {
    height: 260px;
  }
}
.home .home-projects {
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .home .home-projects h2 {
    margin-bottom: var(--section-sp-padding-top-bottom);
  }
}
.home .home-projects .text-block {
  align-self: center;
  padding-left: calc(132px + 3.125%);
  padding-right: 132px;
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (max-width: 1599px) {
  .home .home-projects .text-block {
    padding-left: 132px;
  }
}
@media screen and (max-width: 992px) {
  .home .home-projects .text-block {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media screen and (max-width: 576px) {
  .home .home-projects .text-block {
    padding-top: var(--section-sp-padding-top-bottom);
    padding-bottom: 2rem;
  }
}
.home .home-projects .text-block ul {
  padding: 0;
}
.home .home-projects .text-block ul li {
  position: relative;
  overflow: hidden;
  border-top: #DDDDDD 1px solid;
  list-style: none;
  color: #333333;
  transition: color 0.3s ease-in-out;
}
.home .home-projects .text-block ul li a {
  display: block;
  padding: 56px 0;
  transition: padding-left 0.3s ease-in-out;
}
@media screen and (max-width: 1599px) {
  .home .home-projects .text-block ul li a {
    padding: 2.5rem 0;
  }
}
@media screen and (max-width: 992px) {
  .home .home-projects .text-block ul li a {
    padding: 1.5rem 0;
  }
}
.home .home-projects .text-block ul li:last-child {
  border-bottom: #DDDDDD 1px solid;
}
.home .home-projects .text-block ul li::after {
  content: "→";
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  transition: left 0.3s ease-in-out;
}
.home .home-projects .text-block ul li:hover {
  color: #007880;
}
.home .home-projects .text-block ul li:hover a {
  padding-left: 1.5rem;
}
.home .home-projects .text-block ul li:hover::after {
  left: 0%;
}
.home .home-projects .more-btn {
  justify-self: flex-end;
  margin-top: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  height: auto;
  transition: all 0.3s ease-in-out;
}
.home .home-projects .more-btn::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 10%;
  opacity: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.home .home-projects .more-btn:hover {
  color: #007880;
  padding-right: 1.5rem;
}
.home .home-projects .more-btn:hover::after {
  right: 0%;
  opacity: 1;
}
.home .home-projects .img-block {
  justify-self: flex-end;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.home .home-projects .img-block img {
  width: fit-content;
  height: 100%; /* ⭐ 統一高度 */
  object-fit: cover; /* ⭐ 裁切但不變形 */
}
@media screen and (max-width: 992px) {
  .home .home-projects .img-block {
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 260px;
  }
  .home .home-projects .img-block img {
    width: 100%;
    height: fit-content;
  }
}
.home .home-news {
  padding-top: 120px;
  padding-bottom: 150px;
}
@media screen and (max-width: 992px) {
  .home .home-news {
    padding: var(--section-sp-padding-top-bottom) 2rem;
  }
}
.home .home-news .home-news-swiper {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 1440px) {
  .home .home-news .home-news-swiper {
    max-width: 1140px;
  }
}
.home .home-news .news-card a {
  color: #333333;
}
.home .home-news .news-card .news-card-img {
  height: 190px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home .home-news .news-card .news-card-img img {
  width: 100%;
}
.home .home-news .news-card .news-card-content {
  padding-top: 10px;
}
.home .home-news .news-card .news-card-content .news-title {
  padding-top: 10px;
  padding-bottom: 1rem;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}
.home .home-news .news-card .news-card-content .news-content {
  position: relative;
  padding-bottom: 2rem;
}
.home .home-news .news-card .news-card-content .news-content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: rgba(0, 120, 128, 0.3);
  transition: width 0.3s ease-in-out;
}
.home .home-news .news-card:hover a {
  color: #333333;
  font-weight: inherit;
}
.home .home-news .news-card:hover .news-card-content .news-title {
  color: #007880;
}
.home .home-news .news-card:hover .news-card-content .news-content::after {
  width: 100%;
}

.aboutus .aboutus-section {
  padding: var(--section-pc-padding-top-bottom) 0;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .aboutus .aboutus-section {
    padding: var(--section-sp-padding-top-bottom) 0;
  }
}
.aboutus .aboutus-section .container-fluid .row > div {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.aboutus .aboutus-section .container-fluid .row h3 {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.aboutus .aboutus-section .container-fluid .row:first-child {
  margin-bottom: 60px;
}
.aboutus .aboutus-section .container-fluid .row:first-child .text-block {
  flex-direction: column;
  padding-left: calc(132px + 3.125%);
  padding-right: 132px;
}
@media screen and (max-width: 1599px) {
  .aboutus .aboutus-section .container-fluid .row:first-child .text-block {
    padding-left: 132px;
  }
}
@media screen and (max-width: 992px) {
  .aboutus .aboutus-section .container-fluid .row:first-child .text-block {
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 576px) {
  .aboutus .aboutus-section .container-fluid .row:first-child .text-block {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 1rem;
  }
}
.aboutus .aboutus-section .container-fluid .row:first-child .text-block h2 {
  align-self: flex-start;
  margin-left: 0;
  margin-bottom: 80px;
}
.aboutus .aboutus-section .container-fluid .row:first-child .img-block {
  height: 468px;
}
@media screen and (max-width: 576px) {
  .aboutus .aboutus-section .container-fluid .row:first-child .img-block {
    height: 260px;
  }
}
.aboutus .aboutus-section .container-fluid .row:last-child .text-block {
  flex-direction: column;
  padding-left: calc(132px + 3.125%);
  padding-right: 132px;
}
@media screen and (max-width: 1599px) {
  .aboutus .aboutus-section .container-fluid .row:last-child .text-block {
    padding-left: 132px;
  }
}
@media screen and (max-width: 992px) {
  .aboutus .aboutus-section .container-fluid .row:last-child .text-block {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
  }
}
.aboutus .aboutus-section .container-fluid .row:last-child .text-block .feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 一列 4 個 */
  gap: 0.75rem 24px; /* row-gap / column-gap */
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
}
@media screen and (max-width: 1599px) {
  .aboutus .aboutus-section .container-fluid .row:last-child .text-block .feature-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .aboutus .aboutus-section .container-fluid .row:last-child .text-block .feature-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 0;
  }
}
.aboutus .aboutus-section .container-fluid .row:last-child .text-block .feature-list li {
  position: relative;
  padding-left: 24px;
  white-space: nowrap; /* 單項不斷行 */
  font-size: 1rem;
}
@media screen and (max-width: 576px) {
  .aboutus .aboutus-section .container-fluid .row:last-child .text-block .feature-list li span {
    display: block;
  }
}
.aboutus .aboutus-section .container-fluid .row:last-child .text-block .feature-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: #007880; /* 跟你圖中接近的綠色 */
}
.aboutus .aboutus-section .container-fluid .row:last-child .img-block {
  gap: 30px;
}
.aboutus .aboutus-section .container-fluid .row:last-child .img-block .img-set {
  width: 33.333%;
  height: 526px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.aboutus .aboutus-section .container-fluid .row:last-child .img-block .img-set img {
  height: 100%;
}
@media screen and (max-width: 576px) {
  .aboutus .aboutus-section .container-fluid .row:last-child .img-block {
    gap: 0.5rem;
  }
  .aboutus .aboutus-section .container-fluid .row:last-child .img-block .img-set {
    height: 260px;
  }
}

.products .products-section {
  padding-top: var(--section-pc-padding-top-bottom);
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .products .products-section {
    padding-top: var(--section-sp-padding-top-bottom);
  }
}
.products .products-section .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 576px) {
  .products .products-section .container-fluid a:hover {
    color: #333333;
    font-weight: 500;
  }
}
.products .products-section .container-fluid a:first-child .img-block:first-child {
  padding: 0;
}
.products .products-section .container-fluid .row .aso-animation {
  padding: 0;
}
.products .products-section .container-fluid .row .img-block {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 100%;
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 576px) {
  .products .products-section .container-fluid .row .img-block {
    padding-top: 120px;
    height: auto;
  }
}
.products .products-section .container-fluid .row .img-block img {
  width: fit-content;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 1600px) {
  .products .products-section .container-fluid .row .img-block img {
    width: 100%;
  }
}
.products .products-section .container-fluid .row .img-block .inner-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 三欄等分 */
  gap: 36px; /* 圖片間距 */
  padding: 60px;
}
@media screen and (max-width: 576px) {
  .products .products-section .container-fluid .row .img-block .inner-block {
    gap: 1rem;
    padding: 30px 30px 1rem 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.products .products-section .container-fluid .row .img-block .inner-block .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.products .products-section .container-fluid .row .img-block .inner-block .item .img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 1px solid #ddd;
}
.products .products-section .container-fluid .row .img-block .inner-block .item img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10; /* 統一圖片比例 */
  object-fit: cover;
  border: #dddddd 1px solid;
}
.products .products-section .container-fluid .row .img-block .inner-block .item p {
  font-size: 1rem;
  margin-bottom: 0;
  margin-top: 0.25rem;
  display: block;
}
.products .products-section .container-fluid .row .text-block {
  background-color: #e0f2f1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  transition: background-color 0.3s ease-in-out;
}
@media (max-width: 576px) {
  .products .products-section .container-fluid .row .text-block {
    padding-top: 30px;
    flex-direction: column;
  }
  .products .products-section .container-fluid .row .text-block.wood, .products .products-section .container-fluid .row .text-block.self {
    flex-direction: column-reverse;
  }
}
.products .products-section .container-fluid .row .text-block .inner-block {
  padding: 0 60px;
  flex: 1;
  min-width: 0;
}
@media (max-width: 576px) {
  .products .products-section .container-fluid .row .text-block .inner-block {
    padding: 0 2rem;
    margin-bottom: 20px;
  }
}
.products .products-section .container-fluid .row .text-block .inner-block a, .products .products-section .container-fluid .row .text-block .inner-block h2, .products .products-section .container-fluid .row .text-block .inner-block p, .products .products-section .container-fluid .row .text-block .inner-block span, .products .products-section .container-fluid .row .text-block .inner-block li {
  transition: color 0.3s ease-out, transform 0.3s ease-in-out;
}
.products .products-section .container-fluid .row .text-block .inner-block h2 {
  font-size: 36px;
  font-weight: bold;
  color: #007880;
  margin-bottom: 30px;
}
.products .products-section .container-fluid .row .text-block .inner-block p, .products .products-section .container-fluid .row .text-block .inner-block span {
  font-size: 1rem;
}
.products .products-section .container-fluid .row .text-block .inner-block p {
  margin-bottom: 30px;
}
.products .products-section .container-fluid .row .text-block .inner-block .upper-greek {
  list-style-type: upper-greek;
  padding-left: 1.5rem;
}
.products .products-section .container-fluid .row .text-block .inner-block .upper-greek li {
  padding-left: 0.25rem;
}
.products .products-section .container-fluid .row .text-block .inner-img-block {
  height: 560px;
  width: 288px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products .products-section .container-fluid .row .text-block .inner-img-block img {
  width: auto;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 576px) {
  .products .products-section .container-fluid .row .text-block .inner-img-block {
    height: 180px;
    width: 100%;
  }
  .products .products-section .container-fluid .row .text-block .inner-img-block.waterproof img {
    height: inherit;
  }
  .products .products-section .container-fluid .row .text-block .inner-img-block img {
    width: 100%;
    height: auto;
  }
}
.products .products-section .container-fluid .other-products li {
  margin: 1rem 0;
}
.products .products-section .container-fluid .product-series {
  display: block;
}
.products .products-section .container-fluid .product-series:hover .text-block a, .products .products-section .container-fluid .product-series:hover .text-block h2, .products .products-section .container-fluid .product-series:hover .text-block p, .products .products-section .container-fluid .product-series:hover .text-block span, .products .products-section .container-fluid .product-series:hover .text-block li, .products .products-section .container-fluid .product-series:hover .text-block .item, .products .products-section .container-fluid .product-series:hover .img-block a, .products .products-section .container-fluid .product-series:hover .img-block h2, .products .products-section .container-fluid .product-series:hover .img-block p, .products .products-section .container-fluid .product-series:hover .img-block span, .products .products-section .container-fluid .product-series:hover .img-block li, .products .products-section .container-fluid .product-series:hover .img-block .item {
  color: white;
}
.products .products-section .container-fluid .product-series:hover .img-block {
  background-color: #007880;
}
.products .products-section .container-fluid .product-series:hover .img-block img {
  transform: scale(1.1);
}
.products .products-section .container-fluid .product-series:hover .text-block {
  background-color: #007880;
}
.products .products-section .container-fluid .product-series .feature-grid .icon img {
  display: block;
  opacity: 1;
  transition: opacity 0.25s ease;
  will-change: opacity;
  width: fit-content;
  height: 1.25rem;
}
.products .products-section .feature-grid {
  width: fit-content;
  display: grid;
  /* 強制只有 2 列（Row），這樣第 3 個元素就會自動被推到下一欄 */
  grid-template-rows: repeat(2, auto);
  /* 關鍵屬性：讓內容按「欄（Column）」的方向排列 */
  grid-auto-flow: column;
  /* 間距調整 */
  gap: 1rem 30px;
  /* 圖標基礎樣式（這裡用圓形簡化，可用 SVG 或 Icon Font 替換） */
}
@media screen and (max-width: 1599px) {
  .products .products-section .feature-grid {
    grid-auto-flow: row; /* 改方向 */
    grid-template-columns: repeat(3, auto);
    grid-template-rows: auto; /* 交給內容 */
  }
}
@media screen and (max-width: 576px) {
  .products .products-section .feature-grid {
    grid-template-rows: repeat(3, auto);
  }
}
.products .products-section .feature-grid.rows-1 {
  grid-template-rows: repeat(1, auto);
}
.products .products-section .feature-grid .item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap; /* 單項不斷行 */
}
.products .products-section .feature-grid .icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  display: flex;
  align-items: center;
}

.products .products-detail-section {
  padding: var(--section-pc-padding-top-bottom) 0;
  overflow: hidden;
  /* 縮圖分頁樣式 */
}
@media screen and (max-width: 576px) {
  .products .products-detail-section {
    padding: var(--section-sp-padding-top-bottom) 1rem;
  }
}
.products .products-detail-section .title {
  color: #007880;
}
.products .products-detail-section h2.title {
  color: #007880;
}
.products .products-detail-section h3.title {
  padding-left: 14px;
  position: relative;
  color: #007880;
  padding-bottom: 1rem;
  border-bottom: #DDDDDD 1px solid;
}
.products .products-detail-section h3.title::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 32px;
  left: 0;
  top: 0;
  background-color: #007880;
}
.products .products-detail-section .left-block {
  padding: 0 56px 0 0;
}
@media screen and (max-width: 576px) {
  .products .products-detail-section .left-block {
    padding: 0 1rem;
  }
}
.products .products-detail-section .right-block {
  padding: 0 0 0 56px;
}
@media screen and (max-width: 576px) {
  .products .products-detail-section .right-block {
    padding: 0 1rem;
  }
}
.products .products-detail-section .product-img-block .title {
  font-size: 48px;
  margin-bottom: 46px;
}
.products .products-detail-section .product-img-block .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.products .products-detail-section .product-img-block .swiper-slide .caption {
  text-align: center;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.products .products-detail-section .product-img-block .swiper-slide-active .caption {
  opacity: 1;
  transform: translateY(0);
}
.products .products-detail-section .application, .products .products-detail-section .spec {
  margin-bottom: 120px;
}
@media (max-width: 576px) {
  .products .products-detail-section .application, .products .products-detail-section .spec {
    margin-bottom: var(--section-sp-padding-top-bottom);
  }
}
.products .products-detail-section .product-info-block {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 576px) {
  .products .products-detail-section .product-info-block .btn-group {
    order: 3;
  }
  .products .products-detail-section .product-info-block .content {
    order: 2;
  }
  .products .products-detail-section .product-info-block .swiper-pagination-block {
    order: 1;
  }
}
.products .products-detail-section .product-info-block .btn-group {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-bottom: 54px;
}
@media screen and (max-width: 576px) {
  .products .products-detail-section .product-info-block .btn-group {
    justify-content: center;
    margin-bottom: 0;
  }
}
.products .products-detail-section .product-info-block .btn-group .process-btn, .products .products-detail-section .product-info-block .btn-group .catalog-btn {
  width: 156px;
  height: 42px;
  border-radius: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: #DDDDDD 1px solid;
  color: white;
  background-color: #007880;
  gap: 6px;
  transition: all 0.3s ease-in-out;
}
.products .products-detail-section .product-info-block .btn-group .process-btn .icon, .products .products-detail-section .product-info-block .btn-group .catalog-btn .icon {
  width: 16px;
  height: 16px;
  border-radius: 16px;
  background-color: #B6BF4E;
}
.products .products-detail-section .product-info-block .btn-group .process-btn:hover, .products .products-detail-section .product-info-block .btn-group .catalog-btn:hover {
  background-color: white;
  color: #666666;
  transform: translateY(-0.15rem);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}
.products .products-detail-section .product-info-block .btn-group .process-btn:hover .icon, .products .products-detail-section .product-info-block .btn-group .catalog-btn:hover .icon {
  background-color: #EA5550;
}
@media (max-width: 576px) {
  .products .products-detail-section .product-info-block .content {
    margin-bottom: 2rem;
  }
}
.products .products-detail-section .product-info-block .content p {
  margin: 1rem 0 2rem 0;
}
.products .products-detail-section .product-info-block .content ul {
  font-weight: 500;
  color: #007880;
  margin-bottom: 0;
}
.products .products-detail-section .product-info-list {
  margin-top: 120px;
}
@media (max-width: 576px) {
  .products .products-detail-section .product-info-list {
    margin-top: var(--section-sp-padding-top-bottom);
  }
}
.products .products-detail-section .product-thumb-swiper {
  box-sizing: border-box;
  padding: calc(2rem + 10px) 0 10px 0;
  /* 選中後的樣式 (對應圖片 Pagination 的 Active) */
}
.products .products-detail-section .product-thumb-swiper .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  row-gap: 1rem;
  overflow: hidden;
}
.products .products-detail-section .product-thumb-swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  min-width: 0;
}
.products .products-detail-section .product-thumb-swiper .swiper-slide {
  width: 20%; /* 根據縮圖數量調整 */
  cursor: pointer;
  filter: grayscale(100%); /* 未選中時灰階 */
  opacity: 0.5;
  transition: 0.3s;
}
.products .products-detail-section .product-thumb-swiper .swiper-slide .img-thumbnail {
  border: 2px solid #DDDDDD;
}
.products .products-detail-section .product-thumb-swiper .swiper-slide-thumb-active {
  filter: grayscale(0%);
  opacity: 1;
}
.products .products-detail-section .product-thumb-swiper .swiper-slide-thumb-active .img-thumbnail {
  border-color: #007880;
}
@media (max-width: 576px) {
  .products .products-detail-section .product-thumb-swiper {
    margin-bottom: 4rem;
  }
  .products .products-detail-section .product-thumb-swiper .swiper-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.products .products-detail-section .application p {
  padding: 24px 0;
  border-bottom: 1px #DDDDDD solid;
}
.products .products-detail-section .application .application-list .application-list-row {
  display: flex;
  margin-top: 1.5rem;
  gap: 24px;
}
@media (max-width: 576px) {
  .products .products-detail-section .application .application-list .application-list-row {
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
  }
}
.products .products-detail-section .application .application-list .application-list-row .title {
  font-weight: 500;
  width: 105px;
  flex: 0 0 auto;
  white-space: nowrap;
}
.products .products-detail-section .application .application-list .application-list-row .title span {
  display: block;
}
@media (max-width: 576px) {
  .products .products-detail-section .application .application-list .application-list-row .title span {
    display: inline-block;
  }
}
.products .products-detail-section .application .application-list .application-list-row .img-block {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  justify-content: space-between;
  row-gap: 1rem;
}
.products .products-detail-section .application .application-list .application-list-row .img-block img {
  width: 31%;
  height: auto;
  aspect-ratio: 10/6; /* 統一圖片比例 */
  object-fit: cover;
  border: #DDDDDD 1px solid;
}
.products .products-detail-section .application .more-btn {
  margin-top: 2rem;
  justify-self: flex-end;
}
.products .products-detail-section .feature .inner-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  margin-top: 32px;
}
.products .products-detail-section .feature .inner-block .item-block {
  width: auto;
}
.products .products-detail-section .feature .inner-block .item-block .item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.products .products-detail-section .feature .inner-block .item-block .item .icon img {
  width: 30px;
  height: 30px;
}
.products .products-detail-section .feature .inner-block .item-block .item h5 {
  margin-bottom: 0;
}
.products .products-detail-section .feature .inner-block .item-block p {
  font-size: 1rem;
  text-align: left;
}
@media (max-width: 576px) {
  .products .products-detail-section .feature .inner-block {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .products .products-detail-section .feature {
    margin-bottom: var(--section-sp-padding-top-bottom);
  }
}
.products .products-detail-section .spec .table-list {
  margin-top: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.products .products-detail-section .spec .table-list table {
  table-layout: fixed;
  width: max-content;
  min-width: 100%;
}
.products .products-detail-section .spec .table-list table tr {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.products .products-detail-section .spec .table-list table tr:hover {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.products .products-detail-section .spec .table-list table tr:hover th, .products .products-detail-section .spec .table-list table tr:hover td {
  background-color: rgba(26, 166, 146, 0.3);
  color: #007880;
}
.products .products-detail-section .spec .table-list table th, .products .products-detail-section .spec .table-list table td {
  box-sizing: border-box;
  padding: 12px 4%;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}
.products .products-detail-section .spec .table-list table th {
  width: 24%;
  background-color: #007880;
  color: white;
  font-weight: 500;
}
@media (max-width: 576px) {
  .products .products-detail-section .spec .table-list table th {
    width: 30%;
  }
}
.products .products-detail-section .spec .table-list table td {
  width: 76%;
  color: #333333;
  text-align: center;
  background-color: rgba(170, 202, 194, 0.3);
}
@media (max-width: 576px) {
  .products .products-detail-section .spec .table-list table td {
    width: 70%;
  }
}
.products .products-detail-section .color-swatch {
  overflow: hidden;
}
.products .products-detail-section .color-swatch .swatch {
  width: 100%;
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 576px) {
  .products .products-detail-section .color-swatch .swatch {
    grid-template-columns: repeat(3, 1fr);
  }
}
.products .products-detail-section .color-swatch .swatch .item {
  width: auto;
  color: #333333;
}
.products .products-detail-section .color-swatch .swatch .item .img-square {
  width: 100%;
  aspect-ratio: 1/1; /* 統一圖片比例 */
  overflow: hidden;
  margin-bottom: 0.25rem;
}
.products .products-detail-section .color-swatch .swatch .item .img-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.products .products-detail-section .color-swatch .swatch .item p {
  position: relative;
  display: flex;
  gap: 0.5rem;
  font-size: 1rem;
  margin-bottom: 0;
  padding-left: 1.25rem;
}
.products .products-detail-section .color-swatch .swatch .item p img {
  width: 1rem;
}
.products .products-detail-section .color-swatch .swatch .item p::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: #007880;
}

.products .products-detail-section {
  width: 100%;
  overflow: hidden;
}
.products .products-detail-section #process {
  scroll-margin-top: 100px;
}
.products .products-detail-section .process {
  margin-top: 160px;
}
.products .products-detail-section .performance {
  margin-top: 80px;
}
.products .products-detail-section .process, .products .products-detail-section .performance {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 576px) {
  .products .products-detail-section .process, .products .products-detail-section .performance {
    margin-top: var(--section-sp-padding-top-bottom);
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.products .products-detail-section .process h2, .products .products-detail-section .performance h2 {
  padding: 1rem;
}
.products .products-detail-section .process h2.title, .products .products-detail-section .performance h2.title {
  background-color: #007880;
  color: white;
}
.products .products-detail-section .process .item-group, .products .products-detail-section .performance .item-group {
  margin-top: 1.5rem;
}
.products .products-detail-section .process .item-group .item, .products .products-detail-section .performance .item-group .item {
  min-width: 0;
}
.products .products-detail-section .process .item-group .item .item-img, .products .products-detail-section .performance .item-group .item .item-img {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px #007880 solid;
}
.products .products-detail-section .process .item-group .item .item-img img, .products .products-detail-section .performance .item-group .item .item-img img {
  display: block;
  max-width: 100%;
  height: auto;
}
.products .products-detail-section .process .item-group .item p, .products .products-detail-section .performance .item-group .item p {
  margin-top: 0.25rem;
  text-align: center;
}
.products .products-detail-section .process .preparation, .products .products-detail-section .performance .preparation {
  margin-top: 2rem;
}
.products .products-detail-section .process .preparation .item-group, .products .products-detail-section .performance .preparation .item-group {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 576px) {
  .products .products-detail-section .process .preparation .item-group, .products .products-detail-section .performance .preparation .item-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.products .products-detail-section .process .step, .products .products-detail-section .performance .step {
  margin-top: 120px;
}
@media screen and (max-width: 576px) {
  .products .products-detail-section .process .step, .products .products-detail-section .performance .step {
    margin-top: var(--section-sp-padding-top-bottom);
  }
}
.products .products-detail-section .process .step .item-group, .products .products-detail-section .performance .step .item-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 576px) {
  .products .products-detail-section .process .step .item-group, .products .products-detail-section .performance .step .item-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.products .products-detail-section .process .step .item-group img, .products .products-detail-section .performance .step .item-group img {
  width: 100%;
}
.products .products-detail-section .process .content, .products .products-detail-section .performance .content {
  margin-top: 3rem;
}
@media (max-width: 576px) {
  .products .products-detail-section .process .content, .products .products-detail-section .performance .content {
    display: block;
  }
}
.products .products-detail-section .process .content img, .products .products-detail-section .performance .content img {
  width: 100%;
}
.products .products-detail-section .process .content ul, .products .products-detail-section .performance .content ul {
  padding: 0 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .products .products-detail-section .process .content ul, .products .products-detail-section .performance .content ul {
    padding: 0;
  }
}
.products .products-detail-section .process .content ul li, .products .products-detail-section .performance .content ul li {
  margin-bottom: 3rem;
}
.products .products-detail-section .process .content ul li h5, .products .products-detail-section .performance .content ul li h5 {
  font-size: 1.5rem;
}
@media (max-width: 576px) {
  .products .products-detail-section .process .content ul img, .products .products-detail-section .performance .content ul img {
    display: block;
    width: 100%;
    margin: 2rem 0 0 0;
  }
}
.products .products-detail-section .process .content ul .table-list, .products .products-detail-section .performance .content ul .table-list {
  margin-top: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.products .products-detail-section .process .content ul .table-list table, .products .products-detail-section .performance .content ul .table-list table {
  width: 100%;
}
.products .products-detail-section .process .content ul .table-list table tr, .products .products-detail-section .performance .content ul .table-list table tr {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.products .products-detail-section .process .content ul .table-list table tr:hover, .products .products-detail-section .performance .content ul .table-list table tr:hover {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.products .products-detail-section .process .content ul .table-list table tr:hover th, .products .products-detail-section .process .content ul .table-list table tr:hover td, .products .products-detail-section .performance .content ul .table-list table tr:hover th, .products .products-detail-section .performance .content ul .table-list table tr:hover td {
  background-color: rgba(26, 166, 146, 0.3);
  color: #007880;
}
.products .products-detail-section .process .content ul .table-list table th, .products .products-detail-section .process .content ul .table-list table td, .products .products-detail-section .performance .content ul .table-list table th, .products .products-detail-section .performance .content ul .table-list table td {
  box-sizing: border-box;
  padding: 12px;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  text-align: center;
}
.products .products-detail-section .process .content ul .table-list table th, .products .products-detail-section .performance .content ul .table-list table th {
  width: 18%;
  background-color: #007880;
  color: white;
  font-weight: 500;
}
@media (max-width: 576px) {
  .products .products-detail-section .process .content ul .table-list table th, .products .products-detail-section .performance .content ul .table-list table th {
    width: 30%;
  }
}
.products .products-detail-section .process .content ul .table-list table td, .products .products-detail-section .performance .content ul .table-list table td {
  width: 11.7142857143%;
  color: #333333;
  background-color: rgba(170, 202, 194, 0.3);
}

.products {
  /* 桌面：變成正常橫排選單 */
}
.products .other-products-content {
  border-top: #DDDDDD 1px solid;
  margin-top: 90px;
  padding-top: 30px;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  overflow: hidden;
}
.products .other-products-content h3 {
  color: #007880;
}
.products .other-products-content .products-navmenu {
  margin-top: 1rem;
  padding: 1rem;
}
.products .other-products-content .products-navmenu .swiper-slide {
  width: auto;
  transition: transform 0.3s ease-in-out;
}
.products .other-products-content .products-navmenu .swiper-slide a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.products .other-products-content .products-navmenu .swiper-slide a .title {
  white-space: nowrap;
  transition: color 0.3s ease-in-out;
}
.products .other-products-content .products-navmenu .swiper-slide a .img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.products .other-products-content .products-navmenu .swiper-slide a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products .other-products-content .products-navmenu .swiper-slide:hover {
  transform: translateY(-0.25rem);
}
.products .other-products-content .products-navmenu .swiper-slide:hover a {
  background: #007880;
  box-shadow: 0 4px 4px 1px rgba(0, 0, 0, 0.15);
}
.products .other-products-content .products-navmenu .swiper-slide:hover a .title {
  color: white;
}
.products .other-products-content .swiper-products-navmenu-pagination {
  margin-top: 1.5rem;
  text-align: center;
}
.products .other-products-content .swiper-products-navmenu-pagination .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
}
.products .other-products-content .swiper-products-navmenu-pagination .swiper-pagination-bullet-active {
  background: #007880;
}

.projects {
  /* Projects list fade transition */
}
.projects .projects-section {
  padding: var(--section-pc-padding-top-bottom) 0;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .projects .projects-section {
    padding: var(--section-sp-padding-top-bottom) 0;
  }
}
.projects .projects-section .container-fluid {
  padding-left: 10%;
  padding-right: 10%;
}
@media screen and (max-width: 1400px) {
  .projects .projects-section .container-fluid {
    padding-left: 8%;
    padding-right: 8%;
  }
}
@media screen and (max-width: 1200px) {
  .projects .projects-section .container-fluid {
    padding-left: 6%;
    padding-right: 6%;
  }
}
@media screen and (max-width: 576px) {
  .projects .projects-section .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.projects .projects-section .projects-menu {
  margin-bottom: 80px;
  /* 手機 / 平板 */
}
@media (max-width: 992px) {
  .projects .projects-section .projects-menu {
    position: relative;
    z-index: 50;
  }
}
.projects .projects-section .projects-menu .filter-tabs {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #DDDDDD;
  width: 100%;
}
.projects .projects-section .projects-menu .filter-tabs li {
  position: relative;
  width: 16.666%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease-in-out;
}
.projects .projects-section .projects-menu .filter-tabs li:hover, .projects .projects-section .projects-menu .filter-tabs li.active {
  color: #007880;
  border-bottom: 3px solid #007880;
  font-size: 1.35rem;
}
@media screen and (max-width: 1200px) {
  .projects .projects-section .projects-menu .filter-tabs li:hover, .projects .projects-section .projects-menu .filter-tabs li.active {
    font-size: 1rem;
  }
}
.projects .projects-section .projects-menu .filter-tabs li::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-color: #DDDDDD;
}
.projects .projects-section .projects-menu .filter-tabs li:last-child::after {
  display: none;
}
@media (max-width: 992px) {
  .projects .projects-section .projects-menu .filter-tabs {
    display: none;
  }
}
.projects .projects-section .projects-list {
  will-change: height;
  transform-origin: top;
}
.projects .projects-section .projects-list .case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
}
@media (max-width: 992px) {
  .projects .projects-section .projects-list .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .projects .projects-section .projects-list .case-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.projects .projects-section .projects-list .case-grid .case-card {
  cursor: pointer;
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.projects .projects-section .projects-list .case-grid .case-card .card-photo {
  overflow: hidden;
  width: 100%;
}
.projects .projects-section .projects-list .case-grid .case-card .card-photo img {
  width: 100%;
  height: fit-content;
  max-height: 270px; /* ⭐ 統一高度 */
  object-fit: cover; /* ⭐ 裁切但不變形 */
}
.projects .projects-section .projects-list .case-grid .case-card h3 {
  font-size: 1.3125rem;
  margin-top: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px #666666 solid;
}
.projects .projects-section .projects-list .case-grid .case-card .category {
  color: #666;
  margin-bottom: 0.5rem;
}
.projects .projects-section .projects-list .case-grid .case-card .category h5 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}
.projects .projects-section .projects-list .case-grid .case-card:hover {
  transform: translateY(-0.5rem);
}
.projects .projects-section .projects-list .case-grid .case-card.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.projects .projects-section .projects-list .case-grid .case-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.projects .projects-section .case-empty {
  width: 100%;
  text-align: center;
  padding: 80px 20px;
  font-size: 1.25rem;
  color: #999;
}
.projects .projects-list {
  opacity: 1;
  transition: opacity 0.35s ease;
}
.projects .projects-list.is-fading {
  opacity: 0;
  pointer-events: none;
}

/* ===== Dropdown 外層 ===== */
.projects-filter-dropdown {
  display: none;
  position: relative;
  width: 100%;
  max-width: 100%;
}

/* RWD 顯示 */
@media (max-width: 992px) {
  .projects-filter-dropdown {
    display: block;
  }
  .filter-tabs {
    display: none;
  }
}
.projects .pagination-wrapper {
  width: 100%;
  margin-top: 80px;
  display: flex;
  justify-content: center;
}
.projects .pagination-wrapper .pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  border-top: none;
}
.projects .pagination-wrapper .page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.projects .pagination-wrapper .page-btn:hover {
  background: #007880;
  color: #fff;
}
.projects .pagination-wrapper .page-btn.active {
  background: #007880;
  color: #fff;
  border-color: #007880;
  cursor: default;
}
.projects .pagination-wrapper .page-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.projects .pagination-wrapper .page-dots {
  padding: 0 6px;
  color: #999;
  user-select: none;
}
.projects #pagination {
  overflow-anchor: none;
}
.projects .pagination,
.projects #pagination,
.projects .page-btn {
  overflow-anchor: none;
}

.case-grid.animate {
  animation: fadeUp 0.8s ease-out both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.projects .projects-detail-section {
  padding: var(--section-pc-padding-top-bottom) 0;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .projects .projects-detail-section {
    padding: var(--section-sp-padding-top-bottom) 0;
  }
}
.projects .projects-detail-section .title {
  font-size: 36px;
  font-weight: bold;
  color: #007880;
  margin-bottom: 21px;
}
.projects .projects-detail-section h5 {
  color: #666666;
  font-size: 1rem;
  font-weight: bolder;
  margin-bottom: 6px;
}
.projects .projects-detail-section .project-content {
  color: #333333;
  padding-top: 60px;
  padding-bottom: 60px;
}
.projects .projects-detail-section .project-article {
  margin-bottom: 30px;
  line-height: 2rem;
}
.projects .projects-detail-section .project-article .description {
  font-size: 1.25rem;
  font-weight: 500;
}
.projects .projects-detail-section .project-article h5 {
  font-size: 1.5rem;
  color: #007880;
}
.projects .projects-detail-section .project-article ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.projects .projects-detail-section .project-article ul li {
  margin-bottom: 2rem;
}
.projects .projects-detail-section .project-article > img {
  max-width: 100%;
  min-width: 0;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.projects .projects-detail-section .project-article .image-list {
  padding: 2rem 0;
}
.projects .projects-detail-section .project-article .image-list:last-child {
  padding-bottom: 0;
}
.projects .projects-detail-section .project-article .image-list.h-style {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.projects .projects-detail-section .project-article .image-list.h-style img {
  width: 100%;
  height: 200px; /* ⭐ 統一高度 */
  object-fit: cover; /* ⭐ 裁切但不變形 */
  border-radius: 4px;
  background: #f5f5f5;
}
.projects .projects-detail-section .project-article .image-list.v-style {
  column-count: 3;
  column-gap: 20px;
}
.projects .projects-detail-section .project-article .image-list.v-style img {
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid;
  border-radius: 4px;
}
.projects .projects-detail-section .main-img {
  margin-bottom: 30px;
}
.projects .projects-detail-section .main-img img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.projects .projects-detail-section .text-muted span {
  display: block;
  margin-bottom: 1rem;
}
.projects .projects-detail-section .project-pagenav {
  display: flex;
  justify-content: space-between;
  margin-top: 120px;
}
.projects .project-nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 48px;
  border-top: #dddddd 1px solid;
}
.projects .project-nav .btn-back {
  padding: 0.25rem 10%;
  border: #dddddd 1px solid;
  border-radius: 1rem;
  height: 38px;
  transition: color 0.3s ease-in-out, border 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.projects .project-nav .btn-back:hover {
  color: white;
  background-color: #AACAC2;
  border-color: transparent;
}
.projects .project-nav .prev-project, .projects .project-nav .next-project {
  display: flex;
  align-items: flex-start;
  padding-top: 0.25rem;
}
.projects .project-nav .prev-project span, .projects .project-nav .next-project span {
  display: inline-block;
  white-space: normal;
  word-break: break-word; /* 長字也會自動斷行 */
  overflow-wrap: break-word; /* 兼容新版瀏覽器 */
  max-width: 300px;
  min-width: 200px;
}
@media screen and (max-width: 576px) {
  .projects .project-nav .prev-project span, .projects .project-nav .next-project span {
    display: none;
  }
}
.projects .project-nav .prev-project span {
  padding-left: 1rem;
}
.projects .project-nav .next-project span {
  padding-right: 1rem;
}

.news .breadcrumb {
  margin-bottom: 0;
}
.news .news-section {
  padding: var(--section-pc-padding-top-bottom) 0;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .news .news-section {
    padding: var(--section-sp-padding-top-bottom) 0;
  }
}
.news .perpage {
  margin-bottom: 2rem;
  padding: 0 1.125rem;
}
.news .perpage form {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.news .news-list {
  padding-bottom: 100px;
}
.news .news-list a {
  margin-bottom: 80px;
}
.news .news-list .card-block {
  padding: 0 18px;
}
.news .news-list .news-card {
  border: none;
  transition: all 0.3s ease-in-out;
  font-size: 1rem;
}
.news .news-list .news-card .news-date {
  margin: 0.5rem 0;
  font-weight: 400;
  font-size: 0.8rem;
}
.news .news-list .news-card .news-card-body {
  min-height: auto;
  font-weight: 400;
}
.news .news-list .news-card .news-card-body .news-title {
  margin: 0.25rem 0 1rem 0;
  font-size: 21px;
  font-weight: bold;
}
.news .news-list .news-card .news-card-body .news-excerpt {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
.news .news-list .news-card .news-card-body .news-excerpt p {
  margin-bottom: 0;
}
.news .news-list .news-card:hover .news-date {
  font-weight: 400;
}
.news .news-list .news-card:hover .news-card-body {
  font-weight: inherit;
}
.news .news-list .news-card:hover .news-card-body .news-title {
  color: #007880;
}
.news .news-list .news-card:hover .news-card-body .news-excerpt {
  font-weight: inherit;
  font-weight: 400;
}
.news .news-detail-section {
  margin-top: 110px;
  margin-bottom: 60px;
}
.news .news-detail-section h1 {
  margin-bottom: 2rem;
}
.news .news-detail-section .news-content {
  margin-top: 60px;
  margin-bottom: 60px;
  min-height: 20dvh;
}
.news .news-detail-section .news-content p {
  font-size: 1.25rem;
}
@media screen and (max-width: 992px) {
  .news .news-detail-section .news-content p {
    font-size: 1rem;
  }
}
.news .btn-outline-secondary:hover {
  background-color: #007880;
}
@media screen and (max-width: 992px) {
  .news main {
    padding: 0 1rem;
  }
}

.faq-section {
  padding: var(--section-pc-padding-top-bottom) 0;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .faq-section {
    padding: var(--section-sp-padding-top-bottom) 0;
  }
}
.faq-section .container {
  /* FAQ – Accordion 樣式 */
  /* ⭐ 初始展開的 Q1：依照 Bootstrap → show + 非 collapsed */
  /* 展開 */
}
.faq-section .container .perpage {
  font-size: 1rem;
}
@media screen and (max-width: 992px) {
  .faq-section .container .perpage {
    align-self: flex-end;
  }
}
.faq-section .container .perpage .faq-select {
  width: auto;
}
@media screen and (max-width: 576px) {
  .faq-section .container .perpage {
    font-size: 0.8rem;
  }
}
.faq-section .container .form-select:focus {
  border-color: #AACAC2;
  box-shadow: none;
}
.faq-section .container .menu-tabs-block {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 992px) {
  .faq-section .container .menu-tabs-block {
    flex-direction: column-reverse;
  }
}
.faq-section .container .menu-tabs-block .menu-tabs-group {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.faq-section .container .menu-tabs-block .menu-tab.btn {
  min-width: 180px;
  height: 60px;
  white-space: nowrap;
  color: #007880;
  display: flex;
  justify-content: center;
  align-items: center;
  border-color: #007880;
  border-radius: 8px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.faq-section .container .menu-tabs-block .menu-tab.btn:hover, .faq-section .container .menu-tabs-block .menu-tab.btn.active {
  color: white;
  background: linear-gradient(90deg, #007880 0%, #1AA692 100%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 576px) {
  .faq-section .container .menu-tabs-block .menu-tab.btn {
    min-width: calc(30% - 0.3333333333rem);
    height: auto;
  }
}
.faq-section .container .accordion-item {
  border-radius: 8px;
  margin-bottom: 30px;
  border: transparent 1px solid;
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out;
  /* Hover 時加上陰影 */
  /* 展開時（內容顯示 show）也要加上陰影 */
  /* 需要 SCSS 允許 @at-root，使用這個更相容的版本 */
  /* 展開時陰影（內容 show） */
  /* 內容區塊 */
}
.faq-section .container .accordion-item:hover {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.faq-section .container .accordion-item:has(.accordion-collapse.show) {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-color: #007880;
  border-radius: 8px;
}
.faq-section .container .accordion-item .accordion-button.faq-header {
  border: 1px solid #007880;
  border-radius: 8px;
  background: linear-gradient(90deg, white 0%, white 100%);
  color: #007880;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.125rem;
  /* 預設箭頭（收合時） */
  /* 滑過收合項目（變藍底白字） */
  /* 展開狀態 */
}
.faq-section .container .accordion-item .accordion-button.faq-header .faq-a-title {
  font-size: 24px;
  font-weight: 700;
  margin-right: 20px;
}
.faq-section .container .accordion-item .accordion-button.faq-header .faq-title-text {
  margin-right: 1rem;
}
.faq-section .container .accordion-item .accordion-button.faq-header:after {
  filter: invert(0);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23063E7F' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 16 16'%3e%3cpath d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}
.faq-section .container .accordion-item .accordion-button.faq-header.collapsed {
  background: linear-gradient(90deg, white 0%, white 100%);
  transition: background 0.3s ease-in-out;
}
.faq-section .container .accordion-item .accordion-button.faq-header.collapsed:hover {
  background: linear-gradient(90deg, #007880 0%, #1AA692 100%);
  color: white;
  /* 箭頭 */
}
.faq-section .container .accordion-item .accordion-button.faq-header.collapsed:hover:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 16 16'%3e%3cpath d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}
.faq-section .container .accordion-item .accordion-button.faq-header:not(.collapsed) {
  background: linear-gradient(90deg, #007880 0%, #1AA692 100%);
  color: white;
  border-radius: 8px 8px 0 0;
}
.faq-section .container .accordion-item .accordion-button.faq-header:not(.collapsed):after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 16 16'%3e%3cpath d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}
.faq-section .container .accordion-item .accordion-body {
  border: 1px solid #007880;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 24px 30px 25px 30px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #007880;
}
.faq-section .container .accordion-item .accordion-body .faq-a-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.faq-section .container .accordion-item .accordion-body small {
  line-height: 1;
}
.faq-section .container .accordion-item:first-child .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #007880 0%, #1AA692 100%);
  color: white;
}
.faq-section .container .accordion-item:first-child .accordion-button:not(.collapsed):after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 16 16'%3e%3cpath d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}
.faq-section .container .accordion-item .accordion-collapse.show {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.catalog .breadcrumb {
  margin-bottom: 0;
}
.catalog .catalog-section {
  padding: var(--section-pc-padding-top-bottom) 0;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .catalog .catalog-section {
    padding: var(--section-sp-padding-top-bottom) 0;
  }
}
.catalog .catalog-section .section .card {
  border: none;
  margin-bottom: 7.55rem;
  background: none;
}
.catalog .catalog-section .section .card .card-title {
  font-size: 1.25rem;
  font-weight: bolder;
}
.catalog .catalog-section .section .card .card-img {
  border: #cccccc 1px solid;
}
.catalog .catalog-section .section .card .card-body {
  display: flex;
  justify-content: flex-end;
  padding-left: 0;
  padding-right: 0;
  column-gap: 1rem;
}
.catalog .catalog-section .section .card .card-body .review,
.catalog .catalog-section .section .card .card-body .download {
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
  color: #333333;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.catalog .catalog-section .section .card .card-body .review .icon-review,
.catalog .catalog-section .section .card .card-body .review .icon-download,
.catalog .catalog-section .section .card .card-body .download .icon-review,
.catalog .catalog-section .section .card .card-body .download .icon-download {
  background-color: #333333;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.catalog .catalog-section .section .card .card-body .review:hover,
.catalog .catalog-section .section .card .card-body .download:hover {
  transform: translateY(-4px);
  color: #007880;
}
.catalog .catalog-section .section .card .card-body .review:hover .icon-review,
.catalog .catalog-section .section .card .card-body .review:hover .icon-download,
.catalog .catalog-section .section .card .card-body .download:hover .icon-review,
.catalog .catalog-section .section .card .card-body .download:hover .icon-download {
  background-color: #007880;
}
.catalog .catalog-section .section .card .card-body .review .icon-review,
.catalog .catalog-section .section .card .card-body .download .icon-review {
  width: 24px;
  height: 16px;
  background-color: #333333;
  -webkit-mask: url("../../assets/img/icon/icon-review.svg") no-repeat center;
  mask: url("../../assets/img/icon/icon-review.svg") no-repeat center;
}
.catalog .catalog-section .section .card .card-body .review .icon-download,
.catalog .catalog-section .section .card .card-body .download .icon-download {
  width: 19px;
  height: 16px;
  background-color: #333333;
  -webkit-mask: url("../../assets/img/icon/icon-download.svg") no-repeat center;
  mask: url("../../assets/img/icon/icon-download.svg") no-repeat center;
}
@media screen and (max-width: 992px) {
  .catalog .catalog-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.contact .contact-section {
  background: url(../../assets/img/contact/img-contactList-block-bg.webp) center top;
  background-size: cover;
  overflow: hidden;
}
.contact .contact-section .section .conpamy-block {
  background-color: white;
  padding-top: var(--section-pc-padding-top-bottom);
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .contact .contact-section .section .conpamy-block {
    padding-top: var(--section-sp-padding-top-bottom);
  }
}
.contact .contact-section .section .info-block {
  padding: 50px 60px 50px 260px;
  background-color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 1599px) {
  .contact .contact-section .section .info-block {
    padding-left: 60px;
  }
}
@media screen and (max-width: 992px) {
  .contact .contact-section .section .info-block {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media screen and (max-width: 576px) {
  .contact .contact-section .section .info-block {
    padding: 2rem 2rem;
  }
}
@media screen and (max-width: 576px) {
  .contact .contact-section .section .info-block .content {
    margin-bottom: 3rem;
  }
}
.contact .contact-section .section .info-block .content h2 {
  font-size: 54px;
  font-weight: bolder;
  color: #007880;
  margin-bottom: 16px;
}
@media screen and (max-width: 576px) {
  .contact .contact-section .section .info-block .content h2 {
    font-size: 3rem;
  }
}
.contact .contact-section .section .info-block .content h3 {
  font-size: 2rem;
  font-weight: 500;
  color: #007880;
  margin-bottom: 30px;
}
.contact .contact-section .section .info-block .company-info ul {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.contact .contact-section .section .info-block .company-info ul li {
  display: flex;
  column-gap: 1rem;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.contact .contact-section .section .info-block .company-info ul li .iconblock {
  border-radius: 0.3rem;
  height: 30px;
}
.contact .contact-section .section .info-block .company-info ul li a:hover .icon-phone,
.contact .contact-section .section .info-block .company-info ul li a:hover .icon-fax,
.contact .contact-section .section .info-block .company-info ul li a:hover .icon-address,
.contact .contact-section .section .info-block .company-info ul li a:hover .icon-email {
  background-color: #007880;
}
.contact .contact-section .section .info-block .company-info ul li .icon-phone,
.contact .contact-section .section .info-block .company-info ul li .icon-fax,
.contact .contact-section .section .info-block .company-info ul li .icon-address,
.contact .contact-section .section .info-block .company-info ul li .icon-email {
  width: 30px;
  height: 30px;
  background-color: #007880;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.contact .contact-section .section .info-block .company-info ul li > div, .contact .contact-section .section .info-block .company-info ul li > a {
  display: flex;
  column-gap: 0.25rem;
  align-items: center;
}
.contact .contact-section .section .info-block .company-info ul li .icon-phone {
  -webkit-mask: url("../../assets/img/icon/icon_phone.svg") no-repeat center;
  mask: url("../../assets/img/icon/icon_phone.svg") no-repeat center;
}
.contact .contact-section .section .info-block .company-info ul li .icon-fax {
  -webkit-mask: url("../../assets/img/icon/icon_fax.svg") no-repeat center;
  mask: url("../../assets/img/icon/icon_fax.svg") no-repeat center;
}
.contact .contact-section .section .info-block .company-info ul li .icon-address {
  -webkit-mask: url("../../assets/img/icon/icon_address.svg") no-repeat center;
  mask: url("../../assets/img/icon/icon_address.svg") no-repeat center;
}
.contact .contact-section .section .info-block .company-info ul li .icon-email {
  -webkit-mask: url("../../assets/img/icon/icon_email.svg") no-repeat center;
  mask: url("../../assets/img/icon/icon_email.svg") no-repeat center;
}
.contact .contact-section .section .info-img {
  padding: 0;
  overflow: hidden;
}
.contact .contact-section .section .info-img img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 576px) {
  .contact .contact-section .section .info-img {
    height: 260px;
  }
}
.contact .contact-section .section .contactlist-block {
  padding-bottom: var(--section-pc-padding-top-bottom);
}
@media screen and (max-width: 576px) {
  .contact .contact-section .section .contactlist-block {
    padding-bottom: var(--section-sp-padding-top-bottom);
  }
}
.contact .contact-section .section .contactlist {
  max-width: 1000px;
  margin: 0 auto var(--section-pc-padding-top-bottom) auto;
}
@media screen and (max-width: 576px) {
  .contact .contact-section .section .contactlist {
    margin: 0 auto var(--section-sp-padding-top-bottom) auto;
  }
}
.contact .contact-section .section ul {
  border-radius: 1rem;
  padding: 60px 42px 0 42px;
}
@media screen and (max-width: 576px) {
  .contact .contact-section .section ul {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.contact .contact-section .section ul .list-title {
  text-align: center;
  font-size: 1rem;
  color: #007880;
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .contact .contact-section .section ul .list-title {
    font-size: 1rem;
  }
}
.contact .contact-section .section ul .list-hit {
  text-align: right;
  color: #666666;
  margin-bottom: 1rem;
}
@media screen and (max-width: 576px) {
  .contact .contact-section .section ul .list-hit {
    text-align: left;
  }
}
.contact .contact-section .section ul li {
  margin-bottom: 30px;
  font-size: 1rem;
}
.contact .contact-section .section ul li .input-wrapper {
  position: relative;
  display: flex;
  width: 100%;
}
.contact .contact-section .section ul li .input-wrapper .form-label {
  width: 192px;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 0;
}
@media screen and (max-width: 576px) {
  .contact .contact-section .section ul li .input-wrapper .form-label {
    height: auto;
  }
}
.contact .contact-section .section ul li .input-wrapper .text-danger {
  font-size: 0.85rem;
  white-space: nowrap; /* 可選：避免換行 */
}
.contact .contact-section .section ul li .input-wrapper .form-control {
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
}
.contact .contact-section .section ul li .input-wrapper .form-control:focus {
  box-shadow: none;
  outline: none;
  border-color: #007880;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.contact .contact-section .section ul li .input-wrapper .form-control:not(:placeholder-shown) {
  border: 1px #007880 solid;
  background-color: #E8F0FE;
}
.contact .contact-section .section ul li .btn {
  margin-top: 72px;
  border-radius: 2rem;
  background: linear-gradient(90deg, #007880 0%, #1AA692 100%);
  color: white;
  width: 100%;
  padding: 0.75rem 0;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.contact .contact-section .section ul li .btn:hover {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}
.contact .contact-section .map iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
}
@media screen and (max-width: 576px) {
  .contact .contact-section .map iframe {
    height: 260px;
  }
}
.contact .line-link {
  display: flex;
}
.contact .line-link .icon-line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: auto;
}
.contact .line-link .icon-line i {
  color: #007880;
}

.error-section {
  margin: 166px 0 66px 0;
  overflow: hidden;
}
.error-section .centent {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-section .centent .information {
  text-align: center;
}
.error-section .centent .information .display-404 {
  font-size: 10rem;
  color: #007880;
}
.error-section .centent .information p {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  font-weight: bolder;
  color: #999;
}
.error-section .centent .information .btn-primary {
  background-color: #007880;
}
.error-section .centent .information .btn-primary:hover {
  color: #1AA692;
}

:root {
  --section-pc-padding-top-bottom: 160px;
  --section-sp-padding-top-bottom: 60px;
}

.zh {
  text-align: justify;
}

.logo-block {
  margin-bottom: 30px;
  font-family: "Noto Serif TC", serif;
}
.logo-block .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-block .logo-img {
  width: 74px;
}
.logo-block .logo-text-zh {
  font-size: 32px;
  font-weight: bolder;
  line-height: 1;
}
.logo-block .logo-text-en {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}

.page-header {
  --page-header: 400px;
  height: var(--page-header);
  color: white;
  position: relative;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../../assets/img/pages/img-header-bg-1.webp);
}
@media screen and (max-width: 576px) {
  .page-header {
    --page-header: 200px;
  }
}
.page-header .title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 300;
  top: calc(var(--page-header) - 136px);
  font-size: 48px;
}
@media screen and (max-width: 576px) {
  .page-header .title {
    top: 108px;
  }
}

.page-contact-section {
  padding: 60px 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../../assets/img/home/img-contact-block-bg-1.webp);
  background-blend-mode: normal, luminosity;
  background-size: cover;
  color: white;
  overflow: hidden;
}
.page-contact-section p {
  padding: 0 2rem;
}
.page-contact-section .contact-btn {
  width: 480px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: white;
  transition: border 0.3s ease-in-out, box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
  box-sizing: border-box;
  background: rgba(170, 202, 194, 0.5);
  border: 1px solid #DDDDDD;
  border-radius: 90px;
}
@media screen and (max-width: 992px) {
  .page-contact-section .contact-btn {
    width: 80%;
    height: 42px;
    margin: 2rem auto 0;
  }
}
.page-contact-section .contact-btn:hover {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #007880;
  transform: translateY(-0.25rem);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.btn {
  background-color: #007880;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  transform: translateY(-0.25rem);
  background-color: #1AA692;
  color: white;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.more-btn {
  width: 156px;
  height: 42px;
  border-radius: 21px;
}

.back-btn {
  height: 42px;
  border-radius: 21px;
  min-width: 156px;
  width: fit-content;
  justify-self: center;
}

.pagination {
  padding-top: 60px;
  border-top: #DDD 1px solid;
  text-align: center;
}
.pagination .page-item .page-link {
  margin: 0 6px;
  padding: 6px 12px;
  border: 1px solid #ccc;
  color: #007880;
  cursor: pointer;
}
.pagination .page-item:hover .page-link, .pagination .page-item.active .page-link {
  background: #007880;
  color: #fff;
  border-color: #007880;
}
.pagination .page-item.disabled, .pagination .page-item.disabled:hover, .pagination .page-item.disabled:focus {
  cursor: not-allowed !important;
}
.pagination .page-item.disabled .page-link, .pagination .page-item.disabled:hover .page-link, .pagination .page-item.disabled:focus .page-link {
  background: #DDDDDD;
  color: #007880;
  border: 1px solid #ccc;
}

.page-back-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 48px;
  border-top: #dddddd 1px solid;
}
.page-back-wrapper .btn-back-to-list {
  padding: 0.25rem 10%;
  border: #dddddd 1px solid;
  border-radius: 1rem;
  height: 38px;
  transition: color 0.3s ease-in-out, border 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.page-back-wrapper .btn-back-to-list:hover {
  color: white;
  background-color: #007880;
  border-color: transparent;
}
.page-back-wrapper .btn-prev, .page-back-wrapper .btn-next {
  display: flex;
  align-items: flex-start;
  padding-top: 0.25rem;
}
.page-back-wrapper .btn-prev span, .page-back-wrapper .btn-next span {
  display: inline-block;
  white-space: normal;
  word-break: break-word; /* 長字也會自動斷行 */
  overflow-wrap: break-word; /* 兼容新版瀏覽器 */
  max-width: 300px;
  min-width: 200px;
}
@media screen and (max-width: 576px) {
  .page-back-wrapper .btn-prev span, .page-back-wrapper .btn-next span {
    display: none;
  }
}
.page-back-wrapper .btn-prev span {
  padding-left: 1rem;
}
.page-back-wrapper .btn-next span {
  padding-right: 1rem;
}

/* --- 主容器 --- */
#sidebar-line {
  position: fixed;
  right: -170px;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  display: flex;
  align-items: center;
  background-color: #00c300;
  color: white;
  padding: 12px;
  border-radius: 50px 0 0 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 9;
  box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.15);
}

/* --- 反白 Icon (白底綠字) --- */
.icon-box {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 15px;
}

.icon-box i {
  color: #00c300;
  font-size: 32px;
}

/* --- QR Code 區域 --- */
.content-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
  width: 100%;
}

.content-box span {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 8px;
  white-space: nowrap;
}

.qr-code {
  width: 120px;
  height: 120px;
  background: white;
  padding: 5px;
  border-radius: 8px;
  display: none;
}

/* --- 電腦版 Hover --- */
@media (min-width: 769px) {
  #sidebar-line:hover {
    right: 0;
    border-radius: 20px 0 0 20px;
  }
  #sidebar-line:hover .content-box {
    opacity: 1;
  }
  #sidebar-line:hover .qr-code {
    display: block;
  }
}
/* --- 手機版 RWD --- */
@media (max-width: 768px) {
  #sidebar-line {
    bottom: 10px;
    top: auto;
    right: 10px;
    transform: none;
    width: 65px;
    height: 65px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    transition: transform 0.2s;
  }
  .icon-box {
    margin-right: 0;
    width: 65px;
    height: 65px;
  }
  .content-box {
    display: none;
  }
  #sidebar-line:active {
    transform: scale(0.9);
  }
}/*# sourceMappingURL=style.css.map */