@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Red+Hat+Text:ital,wght@0,300..700;1,300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Titan+One&display=swap");
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
header,
footer,
menu,
nav,
main,
aside,
article,
p,
a,
ul,
ol,
li,
table,
tr,
td,
th,
input,
button,
form,
img,
div,
span {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: inherit;
  list-style: none;
  text-decoration: none;
  font-family: "Noto Sans TC", "Times New Roman", "微軟正黑體";
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  /* 標準屬性 */
  -webkit-text-size-adjust: 100%;
  /* Safari/Chrome */
  -moz-text-size-adjust: 100%;
  /* Firefox Android */
  -ms-text-size-adjust: 100%;
  /* 舊 IE/Edge */
}

html,
body {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  /* iOS、Android 禁止自動字體縮放 */
}

.blank {
  min-height: 100vh;
  /* 滿版高度 */
  display: flex;
  flex-direction: column;
}

img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
}

main,
section {
  width: 100%;
  flex: 1;
  /* 撐開內容區 */
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
  line-height: 1.5;
}

h6 {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 5px;
}

p {
  font-size: 14px;
  line-height: 1.5;
  word-break: break-all;
  overflow-wrap: break-word;
  margin: 0;
}

a.line {
  text-decoration: underline;
  font-weight: 700;
}

a {
  text-decoration: none;
  font-weight: normal;
  color: inherit;
}

a:hover {
  color: #666666;
}

:root {
  --color1: #1e1e1e;
  --color2: #333333;
  --color3: #666666;
  --color4: #949494;
}

.title-center {
  margin: 30px 0;
  text-align: center;
  padding: 0 10px;
}
.title-center img {
  width: auto;
  align-items: center;
  max-height: 40px;
}
.title-center h3,
.title-center h4,
.title-center h5 {
  letter-spacing: 8px;
}
.title-center h3 {
  font-size: 35px;
  font-weight: 800;
  color: #324158;
}
.title-center p {
  color: #1e1e1e;
  vertical-align: top;
  font-style: italic;
}
.title-center p .bar {
  position: relative;
  top: -2px;
}

.link-btn {
  width: 10em;
  height: auto;
  font-size: 14px;
  display: flex;
  padding: 15px 0;
  margin: 10px 0;
  justify-content: center;
  text-align: center;
  gap: 10px;
  white-space: nowrap;
  line-height: 1.5;
  cursor: pointer;
  color: #324158;
  border: 1px solid #000;
}
.link-btn img {
  width: auto;
  height: 20px;
}
.link-btn i {
  padding-left: 15px;
  line-height: 1.5;
}

.link-btn:hover {
  color: #fff;
  background-color: #324158;
}

.link-btn-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333333;
  transition: all 0.8s ease;
  margin: 15px 0;
}

.link-btn-icon::before {
  content: "";
  display: inline-block;
  width: 80px;
  height: 12px;
  position: relative;
  background: linear-gradient(to right, #333333 0 70%, transparent 70%) left center no-repeat;
  /* 線段 */
  background-size: 80px 1px;
  /* 線條寬度 */
  transition: all 0.8s ease;
}

.link-btn-icon::after {
  content: "";
  position: absolute;
  left: 50px;
  width: 15px;
  height: 15px;
  border: 1px solid #333333;
  box-sizing: border-box;
  transition: all 0.8s ease;
}

.link-btn-icon:hover {
  color: #666666;
}

.link-btn-icon:hover::before {
  background-size: 85px 1px;
  /* 線條延伸 */
}

.link-btn-icon:hover::after {
  background-color: #1e1e1e;
  transform: translateX(9px);
}

.link-btn-left {
  text-align: left;
  justify-content: start;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  margin: 30px auto;
  text-align: center;
  padding: 20px 0;
}
.pagination ul {
  display: inline-block;
  padding: 0;
  margin: 0;
}
.pagination ul li {
  display: inline;
}
.pagination ul a {
  margin: 0 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #303030;
  float: left;
  padding: 8px 10px;
  text-decoration: none;
  line-height: 1.5;
}
.pagination ul a.active {
  background-color: #949494;
  color: #fff;
  font-weight: 700;
}
.pagination ul li:hover a {
  background-color: #949494;
  color: #fff;
  font-weight: 700;
}

.topBox {
  background-image: url(../images/top-pic.jpg);
  background-size: cover;
  background-position: center top;
  width: 100%;
  height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 30px 0;
  row-gap: 20px;
}
.topBox h3 {
  color: #333333;
  font-weight: 700;
}
.topBox section {
  flex: none;
}

.container nav {
  text-align: center;
}
.container nav .breadcrumb {
  justify-content: center;
  margin: 0;
  color: #666666;
}
.container nav .breadcrumb .breadcrumb-item a {
  font-size: 14px;
}
.container nav .breadcrumb .breadcrumb-item.active a {
  color: #666666;
}

.breadcrumbRight {
  padding: 0 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
  border-bottom: 1px solid #00a3ad;
}
.breadcrumbRight .breadcrumb {
  margin: 0;
  text-align: end;
}

hr {
  opacity: 1;
  border: 1px solid #708293;
}

.articlecontent {
  margin: 0 auto;
  padding: 10px 20px 35px;
  max-width: 900px;
}
.articlecontent img {
  width: 100% !important;
  height: auto !important;
  display: block;
}
.articlecontent iframe {
  width: 100% !important;
  height: 100% !important;
}

@media (min-width: 992px) {
  .articlecontent {
    padding: 40px;
  }
  .articlecontent img {
    max-width: 1000px !important;
    max-height: 100% !important;
  }
  .articlecontent iframe {
    width: 100% !important;
    height: 100% !important;
  }
}
@media only screen and (max-width: 360px) {
  body {
    padding-top: 50px;
  }
}
@media only screen and (min-width: 361px) {
  body {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 576px) {
  .grid-sm-1 {
    width: 8.3333333333%;
  }
  .grid-sm-2 {
    width: 16.6666666667%;
  }
  .grid-sm-3 {
    width: 25%;
  }
  .grid-sm-4 {
    width: 33.3333333333%;
  }
  .grid-sm-5 {
    width: 41.6666666667%;
  }
  .grid-sm-6 {
    width: 50%;
  }
  .grid-sm-7 {
    width: 58.3333333333%;
  }
  .grid-sm-8 {
    width: 66.6666666667%;
  }
  .grid-sm-9 {
    width: 75%;
  }
  .grid-sm-10 {
    width: 83.3333333333%;
  }
  .grid-sm-11 {
    width: 91.6666666667%;
  }
  .grid-sm-12 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .grid-1 {
    width: 8.3333333333%;
  }
  .grid-2 {
    width: 16.6666666667%;
  }
  .grid-3 {
    width: 25%;
  }
  .grid-4 {
    width: 33.3333333333%;
  }
  .grid-5 {
    width: 41.6666666667%;
  }
  .grid-6 {
    width: 50%;
  }
  .grid-7 {
    width: 58.3333333333%;
  }
  .grid-8 {
    width: 66.6666666667%;
  }
  .grid-9 {
    width: 75%;
  }
  .grid-10 {
    width: 83.3333333333%;
  }
  .grid-11 {
    width: 91.6666666667%;
  }
  .grid-12 {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .grid-md-1 {
    width: 8.3333333333%;
  }
  .grid-md-2 {
    width: 16.6666666667%;
  }
  .grid-md-3 {
    width: 25%;
  }
  .grid-md-4 {
    width: 33.3333333333%;
  }
  .grid-md-5 {
    width: 41.6666666667%;
  }
  .grid-md-6 {
    width: 50%;
  }
  .grid-md-7 {
    width: 58.3333333333%;
  }
  .grid-md-8 {
    width: 66.6666666667%;
  }
  .grid-md-9 {
    width: 75%;
  }
  .grid-md-10 {
    width: 83.3333333333%;
  }
  .grid-md-11 {
    width: 91.6666666667%;
  }
  .grid-md-12 {
    width: 100%;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 22px;
  }
  h5 {
    font-size: 20px;
  }
  h6 {
    font-size: 18px;
  }
  p {
    font-size: 16px;
  }
  .title-center img {
    max-height: 50px;
  }
  .link-btn-left {
    font-size: 16px;
  }
  .breadcrumbRight {
    justify-content: space-around;
  }
  .topBox {
    height: 250px;
  }
  .topBox h2 {
    font-size: 35px;
  }
  body {
    padding-top: 64px;
  }
}
@media only screen and (min-width: 992px) {
  .grid-lg-1 {
    width: 8.3333333333%;
  }
  .grid-lg-2 {
    width: 16.6666666667%;
  }
  .grid-lg-3 {
    width: 25%;
  }
  .grid-lg-4 {
    width: 33.3333333333%;
  }
  .grid-lg-5 {
    width: 41.6666666667%;
  }
  .grid-lg-6 {
    width: 50%;
  }
  .grid-lg-7 {
    width: 58.3333333333%;
  }
  .grid-lg-8 {
    width: 66.6666666667%;
  }
  .grid-lg-9 {
    width: 75%;
  }
  .grid-lg-10 {
    width: 83.3333333333%;
  }
  .grid-lg-11 {
    width: 91.6666666667%;
  }
  .grid-lg-12 {
    width: 100%;
  }
  .breadcrumbRight {
    margin-left: 0;
  }
  .breadcrumbRight .breadcrumb {
    padding-left: 0;
  }
  .link-btn {
    font-size: 18px;
  }
  .topBox {
    height: 350px;
  }
  .topBox h3 {
    font-size: 30px;
  }
  body {
    padding-top: 80px;
  }
  .title-center h3 {
    font-size: 45px;
  }
}
@media only screen and (min-width: 1400px) {
  .grid-xl-1 {
    width: 8.3333333333%;
  }
  .grid-xl-2 {
    width: 16.6666666667%;
  }
  .grid-xl-3 {
    width: 25%;
  }
  .grid-xl-4 {
    width: 33.3333333333%;
  }
  .grid-xl-5 {
    width: 41.6666666667%;
  }
  .grid-xl-6 {
    width: 50%;
  }
  .grid-xl-7 {
    width: 58.3333333333%;
  }
  .grid-xl-8 {
    width: 66.6666666667%;
  }
  .grid-xl-9 {
    width: 75%;
  }
  .grid-xl-10 {
    width: 83.3333333333%;
  }
  .grid-xl-11 {
    width: 91.6666666667%;
  }
  .grid-xl-12 {
    width: 100%;
  }
  .breadcrumbRight {
    margin-left: 0;
  }
  body {
    padding-top: 80px;
  }
  .title-center img {
    max-height: 65px;
  }
}
@media only screen and (min-width: 1700px) {
  body {
    padding-top: 90px;
  }
}
@media only screen and (min-width: 1900px) {
  .grid-xxl-1 {
    width: 8.3333333333%;
  }
  .grid-xxl-2 {
    width: 16.6666666667%;
  }
  .grid-xxl-3 {
    width: 25%;
  }
  .grid-xxl-4 {
    width: 33.3333333333%;
  }
  .grid-xxl-5 {
    width: 41.6666666667%;
  }
  .grid-xxl-6 {
    width: 50%;
  }
  .grid-xxl-7 {
    width: 58.3333333333%;
  }
  .grid-xxl-8 {
    width: 66.6666666667%;
  }
  .grid-xxl-9 {
    width: 75%;
  }
  .grid-xxl-10 {
    width: 83.3333333333%;
  }
  .grid-xxl-11 {
    width: 91.6666666667%;
  }
  .grid-xxl-12 {
    width: 100%;
  }
}
div.carouselSlide .carousel-indicators {
  margin-bottom: 0;
}
div.carouselSlide .carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
div.carouselSlide .carousel-item {
  position: relative;
}
div.carouselSlide .carousel-item .carousel-text {
  position: absolute;
  bottom: 10%; /* 讓文字區塊位於圖片的下方 */
  left: 50%;
  transform: translateX(-50%); /* 水平置中 */
  text-align: center;
  color: rgb(255, 255, 255);
  width: 83%; /* 調整寬度 */
  border: 2px solid white;
  padding: 10px 5px;
  background-color: rgba(247, 247, 247, 0.2392156863);
  animation: zoomIn 2s ease-out;
}
div.carouselSlide .carousel-item .carousel-text .main-text {
  font-size: 19px; /* 大字 */
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 0 5px #000;
}
div.carouselSlide .carousel-item .carousel-text .sub-text {
  font-size: 14px; /* 小字 */
  margin: 5px 0;
  text-shadow: 0 0 5px #000;
}
div.carouselSlide .carousel-item .carousel-text .carousel-text p {
  margin: 0; /* 去除段落的間距 */
}
@keyframes zoomIn {
  0% {
    transform: translateX(-50%) scale(0); /* 開始時縮小 */
    opacity: 0; /* 開始時透明 */
  }
  50% {
    transform: translateX(-50%) scale(1.2); /* 放大至最大 */
    opacity: 0.7; /* 半透明 */
  }
  100% {
    transform: translateX(-50%) scale(1); /* 恢復正常大小 */
    opacity: 1; /* 完全顯示 */
  }
}
div.carouselSlide .carousel-control-prev-icon,
div.carouselSlide .carousel-control-next-icon {
  background-color: #fff;
  color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-size: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none;
}

main .aboutSec {
  padding: 40px 0 0;
}
main .aboutSec .rowBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .aboutSec .rowBox .textBox {
  padding-bottom: 30px;
}
main .aboutSec .rowBox .textBox h5 {
  padding: 20px 0;
  letter-spacing: 5px;
}
main .aboutSec .rowBox .textBox p {
  padding-bottom: 10px;
  color: #333333;
}
main .parallaxSec {
  margin: 20px 0;
  min-height: 20vh;
}
main .productSec {
  background-image: url("../images/product-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
main .productSec .contentBox {
  padding: 20px 0 40px;
}
main .productSec .contentBox .titleBox {
  text-align: left;
  margin: 10px auto;
}
main .productSec .contentBox .titleBox h5 {
  padding: 20px 0 0;
  letter-spacing: 5px;
}
main .productSec .contentBox .titleBox .styledLine {
  display: flex;
  align-items: center;
  margin: 5px 0;
  width: 100%;
  /* 與 titleBox 寬度接近 */
}
main .productSec .contentBox .titleBox .styledLine .line {
  flex: 1;
  /* 讓線條自動延伸填滿空間 */
  height: 1px;
  background-color: #333;
  margin-right: 8px;
}
main .productSec .contentBox .titleBox .styledLine .text {
  font-size: 13px;
  letter-spacing: 1px;
  color: #1e1e1e;
  white-space: nowrap;
  font-style: italic;
}
main .productSec .contentBox .titleBox p {
  padding-bottom: 10px;
  color: #333333;
}
main .productSec .contentBox .rowBox {
  display: flex;
  flex-wrap: wrap;
  /* hover / focus 狀態顯示效果（鍵盤或手機點擊一樣會觸發 focus-within） */
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
}
main .productSec .contentBox .rowBox .picBox {
  margin: 5px;
  flex: 0 0 calc(50% - 10px);
  position: relative;
  text-align: center;
}
main .productSec .contentBox .rowBox .picBox .boximg1x1 {
  border-radius: 30px;
}
main .productSec .contentBox .rowBox .picBox .boximg1x1 img {
  transition: transform 1s ease;
}
main .productSec .contentBox .rowBox .picBox p {
  position: absolute;
  bottom: 0;
  color: #fff;
  text-shadow: 0 0 10px #000;
  width: 100%;
  padding-bottom: 10px;
}
main .productSec .contentBox .rowBox .picBox:hover .boximg1x1::after,
main .productSec .contentBox .rowBox .picBox:focus-within .boximg1x1::after {
  opacity: 1;
}
main .productSec .contentBox .rowBox .picBox:hover .boximg1x1::before,
main .productSec .contentBox .rowBox .picBox:focus-within .boximg1x1::before {
  opacity: 1;
  transform: none;
}
main .productSec .contentBox .rowBox .picBox:hover .boximg1x1 img,
main .productSec .contentBox .rowBox .picBox:focus-within .boximg1x1 img {
  filter: brightness(0.85);
}
main .productSec .contentBox .rowBox .picBox:hover .boximg1x1 img,
main .productSec .contentBox .rowBox .picBox:focus-within .boximg1x1 img {
  transform: translate(-50%, -50%) scale(1.2);
  /* 注意：合併在一起 */
}
main .newtilesSec {
  padding: 50px 0;
}
main .newtilesSec .contentOwl {
  padding: 10px 40px 20px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  /* hover / focus 狀態顯示效果（鍵盤或手機點擊一樣會觸發 focus-within） */
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
}
main .newtilesSec .contentOwl .picBox {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  /* 黑色透明遮罩 */
  /* 右上角「+」 */
}
main .newtilesSec .contentOwl .picBox .boximg4x5,
main .newtilesSec .contentOwl .picBox .boximg1x1 {
  position: relative;
  overflow: hidden;
}
main .newtilesSec .contentOwl .picBox .boximg4x5 img,
main .newtilesSec .contentOwl .picBox .boximg1x1 img {
  transition: transform 1s ease;
  /* 變慢：1秒 */
  -o-object-fit: cover;
     object-fit: cover;
}
main .newtilesSec .contentOwl .picBox .boximg4x5::after,
main .newtilesSec .contentOwl .picBox .boximg1x1::after {
  content: "";
  position: absolute;
  height: 100%;
  inset: 0;
  /* 等同 top/right/bottom/left 全為 0 */
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  /* 不擋連結點擊 */
  z-index: 1;
}
main .newtilesSec .contentOwl .picBox .boximg4x5::before,
main .newtilesSec .contentOwl .picBox .boximg1x1::before {
  border-radius: 100px 0;
  content: "了解更多";
  /* Font Awesome search icon */
  /* 或 "Font Awesome 5 Free" */
  /* 確保顯示實心版本 */
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 46px;
  display: grid;
  place-items: center;
  color: #1e1e1e;
  font-weight: 600;
  font-size: 18px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.3s ease, transform 0.5s ease;
  pointer-events: none;
  /* 點 + 一樣會觸發 a（fancybox） */
  z-index: 2;
}
main .newtilesSec .contentOwl .picBox p {
  color: #929292;
  margin-top: 8px;
  line-height: 1.5;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
main .newtilesSec .contentOwl .picBox h5 {
  margin: 15px 0 2px;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
main .newtilesSec .contentOwl .picBox h6 {
  line-height: 1.5;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
main .newtilesSec .contentOwl .picBox:hover .boximg4x5::after,
main .newtilesSec .contentOwl .picBox:focus-within .boximg4x5::after {
  opacity: 1;
}
main .newtilesSec .contentOwl .picBox:hover .boximg4x5::before,
main .newtilesSec .contentOwl .picBox:focus-within .boximg4x5::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  /* 保持 translate */
}
main .newtilesSec .contentOwl .picBox:hover .boximg4x5 img,
main .newtilesSec .contentOwl .picBox:focus-within .boximg4x5 img {
  filter: brightness(0.85);
}
main .newtilesSec .contentOwl .picBox:hover .boximg1x1::after,
main .newtilesSec .contentOwl .picBox:focus-within .boximg1x1::after {
  opacity: 1;
}
main .newtilesSec .contentOwl .picBox:hover .boximg1x1::before,
main .newtilesSec .contentOwl .picBox:focus-within .boximg1x1::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  /* 保持 translate */
}
main .newtilesSec .contentOwl .owl-carousel {
  position: relative;
  overflow: visible;
}
main .newtilesSec .contentOwl .owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
  display: flex;
}
main .newtilesSec .contentOwl .owl-nav .owl-prev,
main .newtilesSec .contentOwl .owl-nav .owl-next {
  position: absolute;
  width: 30px;
  height: 30px;
  color: #666666;
  font-size: 14px;
  line-height: 30px;
  border: 1px solid #666666;
}
main .newtilesSec .contentOwl .owl-nav .owl-next {
  right: 0;
}
main .newtilesSec .contentOwl .owl-nav .owl-prev:hover,
main .newtilesSec .contentOwl .owl-nav .owl-next:hover {
  color: #fff;
  background-color: #666666;
}
main .newtilesSec .contentOwl .owl-carousel .owl-item {
  max-width: 400px;
}
main .newtilesSec .contentOwl .owl-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  flex-direction: row !important;
  position: relative;
}
main .newtilesSec .contentOwl .owl-dots .owl-dot {
  display: inline-block;
}
main .newtilesSec .contentOwl .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #999;
  display: block;
  border-radius: 50%;
}
main .newtilesSec .contentOwl .owl-dots .owl-dot.active span {
  background: #333;
}
main .serviceSec {
  background-image: url(../images/service-bg.jpg);
  background-size: 100% 500px;
  background-repeat: no-repeat;
  background-position: center bottom;
  padding: 50px 0;
}
main .serviceSec .rowBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .serviceSec .rowBox .textBox {
  padding-bottom: 30px;
}
main .serviceSec .rowBox .textBox h5 {
  padding: 40px 0;
  letter-spacing: 5px;
}
main .serviceSec .rowBox .textBox p {
  padding-top: 30px;
  padding-bottom: 10px;
  color: #333333;
}
main .serviceSec .rowBox .textBox .link-btn-icon {
  gap: 0;
  color: #333333;
}
main .serviceSec .rowBox .textBox .link-btn-icon::before {
  content: "";
  position: absolute;
  left: 185px;
  width: 15px;
  height: 15px;
  border: 1px solid #333333;
  box-sizing: border-box;
  transition: all 0.8s ease;
  background: none;
}
main .serviceSec .rowBox .textBox .link-btn-icon::after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 12px;
  position: relative;
  background: linear-gradient(to right, #333333 0 70%, transparent 70%) left center no-repeat;
  /* 線段 */
  background-size: 80px 1px;
  border: none;
  /* 線條寬度 */
  transition: all 0.8s ease;
}
main .serviceSec .rowBox .textBox .link-btn-icon:hover::before {
  background-color: #1e1e1e;
  border-color: #1e1e1e;
  transform: translateX(-9px);
}
main .serviceSec .rowBox .textBox .link-btn-icon:hover::after {
  transform: translateX(-9px);
  background-size: 85px 1px;
  border-color: none;
}
main .serviceSec .rowBox .textBox h3 {
  font-size: 40px;
  font-style: italic;
  text-align: right;
  padding-right: 20px;
}
main .serviceSec .rowBox .textBox h3 a {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 600;
}
main .serviceSec .rowBox .textBox h3 a:hover {
  color: #000;
}
main .serviceSec .imgBox {
  margin: 0 auto;
  padding: 20px 0 0;
  max-width: 400px;
}
main .caseSec .contentBox .titleBox {
  text-align: left;
  margin: 10px auto;
}
main .caseSec .contentBox .titleBox h5 {
  padding: 20px 0 0;
  letter-spacing: 5px;
}
main .caseSec .contentBox .titleBox .styledLine {
  display: flex;
  align-items: center;
  margin: 5px 0;
  width: 100%;
  /* 與 titleBox 寬度接近 */
}
main .caseSec .contentBox .titleBox .styledLine .line {
  flex: 1;
  /* 讓線條自動延伸填滿空間 */
  height: 1px;
  background-color: #333;
  margin-right: 8px;
}
main .caseSec .contentBox .titleBox .styledLine .text {
  font-size: 13px;
  letter-spacing: 1px;
  color: #1e1e1e;
  white-space: nowrap;
  font-style: italic;
}
main .caseSec .contentBox .titleBox p {
  padding-bottom: 10px;
  color: #333333;
}
main .caseSec .contentBox .fullcontentOwl a:hover {
  color: #333333;
}
main .caseSec .contentBox .fullcontentOwl .picBox {
  position: relative;
  overflow: hidden;
  /* 確保展開時不超出範圍 */
}
main .caseSec .contentBox .fullcontentOwl .picBox .boximg3x2 img {
  width: 100%;
  display: block;
}
main .caseSec .contentBox .fullcontentOwl .picBox .textBox {
  position: absolute;
  left: 50%;
  bottom: calc(150px - 100%);
  /* 起始：在圖片底下（完全看不到） */
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  /* 滑上時會覆蓋整張圖 */
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  /* 垂直置中文字區塊 */
  padding: 12px 10px;
  text-align: left;
  /* 文字靠左對齊 */
  transition: bottom 0.8s ease;
  /* 平滑滑上動畫 */
  z-index: 2;
}
main .caseSec .contentBox .fullcontentOwl .picBox .textBox h5 {
  margin-bottom: 20px;
  font-size: 15px;
}
main .caseSec .contentBox .fullcontentOwl .picBox .textBox .rowBox h6 {
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
main .caseSec .contentBox .fullcontentOwl .picBox .textBox .rowBox p {
  color: #333333;
}
main .caseSec .contentBox .fullcontentOwl .picBox:hover .textBox {
  bottom: 0;
  /* 滑上時移動到圖片內 */
}

.contactBottom {
  padding: 40px 0 0;
  background-image: url(../images/contact-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.contactBottom .contactBox {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 40px;
  padding: 20px 0 30px;
}
.contactBottom .contactBox .contLeft {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 30px;
}
.contactBottom .contactBox .contLeft img {
  width: 100%;
  max-width: 250px;
  height: auto;
}
.contactBottom .contactBox .contLeft .iconBox {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  text-align: right;
}
.contactBottom .contactBox .contLeft .iconBox img {
  width: 60%;
}
.contactBottom .contactBox .contLeft .iconBox a:nth-of-type(2) {
  text-align: left;
}
.contactBottom .contactBox .contCenter,
.contactBottom .contactBox .contRight {
  max-width: 260px;
}
.contactBottom .contactBox .contCenter p,
.contactBottom .contactBox .contRight p {
  line-height: 2;
  letter-spacing: 1px;
  font-family: "Noto Sans TC", sans-serif;
}
.contactBottom .contactBox .contCenter p a,
.contactBottom .contactBox .contRight p a {
  font-family: "Noto Sans TC", sans-serif;
}

footer {
  border-top: 1px solid #acacac;
  line-height: 3;
  font-size: 14px;
  margin-top: 30px;
  text-align: center;
  color: #000;
}

aside {
  display: flex;
  position: fixed;
  flex-direction: column;
  right: 0;
  bottom: 15px;
  text-align: center;
  align-items: center;
  overflow: hidden;
  padding: 0.5em 0;
  width: 50px;
  border-radius: 10px;
  transform: scale(0.8);
  z-index: 999;
}
aside a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: block;
  cursor: pointer;
  margin: 10px 0;
}
aside .asideBottom {
  margin-top: 5px;
  transition: opacity 0.3s ease;
  opacity: 1;
}
aside .asideBottom a {
  display: flex;
  align-items: center;
  margin: 0;
  justify-content: center;
}
aside .asideBottom.hidden {
  opacity: 0;
  pointer-events: none;
}

main .aboutPage .contentBox {
  padding-top: 60px;
}
main .aboutPage .contentBox .titleBox {
  margin: 0 auto 60px;
  max-width: 900px;
}
main .aboutPage .contentBox .titleBox .title-left {
  text-align: left;
  padding-left: 0;
}
main .aboutPage .contentBox .titleBox h6 {
  font-weight: normal;
  color: #333;
}
main .aboutPage .contentBox h4 {
  font-size: 22px;
  font-family: "Titan One", sans-serif;
  font-weight: 300;
  margin-bottom: 15px;
  color: #3f3f3f;
  text-align: center;
}
main .aboutPage .contentBox .parallax {
  min-height: 20vh;
}
main .aboutPage .contentBox .parallax .background-fixed-q__content div {
  margin: 0 auto;
  text-align: center;
}
main .aboutPage .contentBox .parallax .background-fixed-q__content h5 {
  color: #0f1a2d;
  text-align: center;
  margin-bottom: 10px;
  text-shadow: 0 0 8px #fff;
  font-weight: normal;
}
main .aboutPage .contentBox .parallax .background-fixed-q__content h5 span {
  line-height: 4;
  font-style: italic;
  font-weight: 500;
}
main .aboutPage .contentBox .rowBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .aboutPage .contentBox .rowBox .textBox {
  padding-bottom: 30px;
}
main .aboutPage .contentBox .rowBox .textBox h5 {
  padding: 20px 0;
  letter-spacing: 5px;
}
main .aboutPage .contentBox .rowBox .textBox p {
  padding-bottom: 10px;
  color: #333333;
}
main .aboutPage .contentBox .rowBox .textBox ul {
  padding-left: 15px;
}
main .aboutPage .contentBox .rowBox .textBox ul li {
  list-style: disc;
  list-style-position: inside;
  font-size: 14px;
  color: #333;
  margin-left: -10px;
  margin-bottom: 8px;
}

main .newalbumPage .contentBox {
  position: relative;
  width: 100%;
  padding: 20px 0;
}
main .newalbumPage .contentBox .rowBox {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 2em auto;
  margin-bottom: 0;
  row-gap: 20px;
  /* hover / focus 狀態顯示效果（鍵盤或手機點擊一樣會觸發 focus-within） */
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
}
main .newalbumPage .contentBox .rowBox .content {
  transition: box-shadow 0.35s ease;
  /* 黑色透明遮罩 */
  /* 右上角「+」 */
}
main .newalbumPage .contentBox .rowBox .content .boximg1x1 img {
  transition: transform 1s ease;
  /* 變慢：1秒 */
}
main .newalbumPage .contentBox .rowBox .content .boximg1x1::after {
  content: "";
  position: absolute;
  inset: 0;
  /* 等同 top/right/bottom/left 全為 0 */
  background: rgba(255, 255, 255, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  /* 不擋連結點擊 */
  z-index: 1;
}
main .newalbumPage .contentBox .rowBox .content .boximg1x1::before {
  content: "了解更多";
  /* Font Awesome search icon */
  /* 或 "Font Awesome 5 Free" */
  /* 確保顯示實心版本 */
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #1e1e1e;
  font-weight: 600;
  font-size: 18px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.3s ease, transform 0.5s ease;
  pointer-events: none;
  /* 點 + 一樣會觸發 a（fancybox） */
  z-index: 2;
}
main .newalbumPage .contentBox .rowBox .content .textBox {
  max-height: 200px;
  text-align: left;
  padding: 10px 8px 15px;
}
main .newalbumPage .contentBox .rowBox .content .textBox h5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  color: #0f1a2d;
  margin: 3px 0;
}
main .newalbumPage .contentBox .rowBox .content .textBox .time {
  line-height: 1.8;
}
main .newalbumPage .contentBox .rowBox .content .textBox p {
  color: #71747a;
  margin-top: 5px;
}
main .newalbumPage .contentBox .rowBox .content .textBox .longtext {
  color: #71747a;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  min-height: 3.2em;
  max-height: 3.2em;
  margin: 0;
  line-height: 1.5;
}
main .newalbumPage .contentBox .rowBox a:hover {
  color: #000;
}
main .newalbumPage .contentBox .rowBox .content:hover .boximg1x1::after,
main .newalbumPage .contentBox .rowBox .content:focus-within .boximg1x1::after {
  opacity: 1;
}
main .newalbumPage .contentBox .rowBox .content:hover .boximg1x1::before,
main .newalbumPage .contentBox .rowBox .content:focus-within .boximg1x1::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  /* 保持 translate */
}
main .newalbumPage .contentBox .rowBox .content:hover .boximg1x1 img,
main .newalbumPage .contentBox .rowBox .content:focus-within .boximg1x1 img {
  filter: brightness(0.85);
  transform: translate(-50%, -50%) scale(1.2);
  /* 注意：合併在一起 */
}
main .newalbumPage .contentBox .rowBox .content:hover {
  box-shadow: 0 0 15px #cacaca;
}

main .articlePage {
  border-bottom: 1px solid #eae0d9;
}
main .articlePage .articleBox {
  margin: 20px auto;
}
main .articlePage .articleBox .articlecontent {
  padding-top: 60px;
}

main .productPage .title-center {
  margin: 30px auto 10px;
  color: #303030;
}
main .productPage .product-container {
  margin: 0 auto;
  overflow: hidden;
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  /* 不讓子元素等高 */
}
main .productPage .product-container .product-sidebar {
  margin: 1em auto;
  padding: 10px;
  padding-left: 0;
  max-width: 600px;
}
main .productPage .product-container .product-sidebar hr {
  width: 9em;
  border: 1px solid #4974a5;
  opacity: 1;
}
main .productPage .product-container .product-sidebar h6 {
  margin: 0.5em 0;
  color: #333;
  text-align: center;
}
main .productPage .product-container .product-sidebar ul li {
  line-height: 2;
  padding: 5px 10px;
  cursor: pointer;
  position: relative;
  color: #4d4d4d;
  flex: 1;
  /* 占滿剩餘空間 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
main .productPage .product-container .product-sidebar ul li .dropdown-content {
  display: none;
}
main .productPage .product-container .product-sidebar ul li:last-child {
  border-bottom: none;
}
main .productPage .product-container .product-sidebar ul .aside-dropdown {
  padding: 0;
  padding-bottom: 10px;
}
main .productPage .product-container .product-sidebar ul .aside-dropdown div {
  padding: 5px 15px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #b1b1b1;
  /* 垂直置中 */
}
main .productPage .product-container .product-sidebar ul .aside-dropdown div a {
  color: #333;
  flex: 1;
  /* 占滿剩餘空間 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: calc(100% - 50px);
  /* 控制大約 10 字寬度，可依需求調整 */
}
main .productPage .product-container .product-sidebar ul .aside-dropdown div .toggle-btn {
  flex-shrink: 0;
  /* 不被壓縮，保持位置 */
  margin-left: 20px;
  vertical-align: bottom;
}
main .productPage .product-container .product-sidebar ul .aside-dropdown .submenu {
  display: none;
  border: none;
  padding-top: 8px;
  padding-left: 5px;
}
main .productPage .product-container .product-sidebar ul .aside-dropdown .submenu li {
  flex: 0 0 auto;
  padding: 0 10px;
}
main .productPage .product-container .product-sidebar ul .aside-dropdown .submenu li:last-child {
  border-bottom: none;
}
main .productPage .product-container .product-sidebar ul .aside-dropdown .submenu a {
  font-size: 14px;
  color: #333;
  transition: color 0.25s ease, transform 0.25s ease, letter-spacing 0.25s ease;
}
main .productPage .product-container .product-sidebar ul .aside-dropdown .submenu.active {
  display: block;
  display: flex;
  flex-wrap: wrap;
}
main .productPage .product-container .product-sidebar ul li.filter-btn a,
main .productPage .product-container .product-sidebar ul .aside-dropdown div > a,
main .productPage .product-container .product-sidebar ul .submenu li,
main .productPage .product-container .product-sidebar ul .submenu li a {
  color: #333;
}
main .productPage .product-container .product-sidebar ul li.filter-btn:hover,
main .productPage .product-container .product-sidebar ul li.filter-btn:hover a,
main .productPage .product-container .product-sidebar ul li.filter-btn.active a,
main .productPage .product-container .product-sidebar ul .aside-dropdown.active div > a,
main .productPage .product-container .product-sidebar ul .aside-dropdown div:hover,
main .productPage .product-container .product-sidebar ul .aside-dropdown div:hover > a,
main .productPage .product-container .product-sidebar ul .submenu li:hover,
main .productPage .product-container .product-sidebar ul .submenu li:hover > a {
  color: #1e1e1e;
  font-weight: 700;
}
main .productPage .product-container .product-sidebar ul li.filter-btn:hover a,
main .productPage .product-container .product-sidebar ul .submenu li:hover,
main .productPage .product-container .product-sidebar ul .submenu li:hover > a {
  transform: scale(1.01);
  letter-spacing: 1px;
}
main .productPage .product-container .product-sidebar ul li.filter-btn.active a,
main .productPage .product-container .product-sidebar ul li.filter-btn.active,
main .productPage .product-container .product-sidebar ul .aside-dropdown.active div,
main .productPage .product-container .product-sidebar ul .submenu li.active,
main .productPage .product-container .product-sidebar ul .submenu li.active a {
  background-color: #f7f5f5;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1e1e1e;
}
main .productPage .product-container .product-sidebar ul .dropdown-toggle:hover ul {
  display: block;
}
main .productPage .product-container .product-sidebar ul li.dropdown-toggle::after {
  content: none;
  /* 或刪除整個這段 */
}
main .productPage .product-container .product-sidebar .filter-btn {
  color: #667e70;
}
main .productPage .product-container .row {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  align-items: flex-start;
  padding-bottom: 20px;
}
main .productPage .product-container .row .product-item {
  margin: 0;
  padding: 0 5px;
  cursor: pointer;
  height: auto !important;
}
main .productPage .product-container .row .product-item .card-p {
  box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  padding-bottom: 15px;
}
main .productPage .product-container .row img {
  display: block;
  width: 100%;
}
main .productPage .product-container .row .card-p:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
main .productPage .product-container .row .product-card:hover {
  background-color: transparent;
}
main .productPage .product-container .row .product-card:hover h5,
main .productPage .product-container .row .product-card:hover p {
  color: #4974a5;
}
main .productPage .product-container .row .content {
  padding: 20px 15px;
}
main .productPage .product-container .row .title {
  padding: 0 0 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  width: 100%;
  font-size: 16px;
  color: #000;
  font-weight: 400;
  font-family: "Times New Roman", Times, serif;
}
main .productPage .product-container .row .card-des {
  padding: 0;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  color: #000;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 5px;
}
main .productPage .product-container .row .product-item:nth-of-type(2n) .card-des {
  padding: 0;
  padding-right: 3px;
}
main .productPage .product-container .row .more {
  color: #929292;
}
main .productPage .product-container .row .price {
  font-weight: normal;
  width: 100%;
  height: auto;
  text-align: left;
  font-size: 17px;
  line-height: 1.5;
}
main .productPage .product-container .row .price span {
  font-size: 15px;
}
main .productPage .product-container .row .price .onSale {
  color: #f11717;
}
main .productPage .product-container .row .price:has(.onSale:not(:empty)) .default {
  text-decoration: line-through;
}
main .productPage .product-container .row-gap-5 {
  row-gap: 3rem;
}

@media (max-width: 991px) {
  .sidebar-menu {
    display: none;
  }
  .sidebar-menu.active {
    display: block;
  }
  .sidebar-toggle {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
    cursor: pointer;
    padding: 5px 15px;
    flex: 1;
    border-bottom: 1px solid #949494;
    font-size: 18px;
  }
  .sidebar-toggle .toggle-btn {
    margin-right: 20px;
  }
}
@media (min-width: 992px) {
  .sidebar-toggle .toggle-btn {
    display: none;
  }
}
main .productdetailPage .shopdetail .default-padding-md {
  padding-top: 48px;
  padding-bottom: 48px;
  margin: 0 auto;
}
main .productdetailPage .shopdetail .default-padding-md .list-unstyle {
  padding: 0;
  margin: 0;
  list-style: none;
}
main .productdetailPage .shopdetail .default-padding-md .list-unstyle .zoomIn a {
  position: relative;
  display: inline-block;
  width: 100%;
}
main .productdetailPage .shopdetail .default-padding-md .list-unstyle .zoomIn a .img-wrapper {
  display: none;
}
main .productdetailPage .shopdetail .default-padding-md .list-unstyle .zoomIn a:hover .img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .productdetailPage .shopdetail .default-padding-md .list-unstyle .zoomIn a:hover .img-wrapper i {
  color: #fff;
  font-size: 2rem;
}
main .productdetailPage .shopdetail .default-padding-md .lSSlideOuter .lSPager.lSGallery li {
  aspect-ratio: 1/1;
  overflow: hidden;
}
main .productdetailPage .shopdetail .default-padding-md .lSSlideOuter .lSPager.lSGallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* 保持比例，超出裁切 */
  display: block;
}
main .productdetailPage .shopdetail a {
  text-decoration: none;
  color: var(--bs-body-color);
}
main .productdetailPage .shopdetail a:hover {
  color: #034D91;
}
main .productdetailPage .shopdetail .product-info {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 1.25rem;
}
main .productdetailPage .shopdetail .product-info .type {
  display: inline-block;
  border-radius: 0.25rem;
  padding: 0.25rem 1.25rem;
  background-color: #036EAE;
  color: #fff;
  margin-bottom: 0.75rem;
}
main .productdetailPage .shopdetail .product-info h4 {
  font-family: "Times New Roman", Times, serif;
}
main .productdetailPage .shopdetail .product-info h5 {
  line-height: 1;
}
main .productdetailPage .shopdetail .product-info p {
  color: #666;
  margin-top: 10px;
  font-weight: 600;
}
main .productdetailPage .shopdetail .product-info p:nth-of-type(2) {
  margin-top: 0;
}
main .productdetailPage .shopdetail .product-info .price {
  font-weight: normal;
  width: 100%;
  margin: 10px 0;
}
main .productdetailPage .shopdetail .product-info .price .onSale {
  padding-left: 0;
  color: #f11717;
}
main .productdetailPage .shopdetail .product-info .price:has(.onSale:not(:empty)) .default {
  text-decoration: line-through;
}
main .productdetailPage .shopdetail .product-info hr {
  border-top: 1px solid #f0f0f0;
  width: 100%;
}
main .productdetailPage .shopdetail .product-info .product-content {
  flex-grow: 1;
  padding: 1.25rem 0;
  min-height: 120px;
}
main .productdetailPage .shopdetail .product-info .spec {
  margin: 0.5rem 0;
  width: 100%;
}
main .productdetailPage .shopdetail .product-info .spec select {
  width: 100%;
  padding: 0.5rem;
}
main .productdetailPage .shopdetail .product-info .add-number {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 50%;
}
main .productdetailPage .shopdetail .product-info .add-number label {
  margin: 0;
  padding-right: 0.5rem;
  flex-shrink: 0;
}
main .productdetailPage .shopdetail .product-info .add-number input {
  min-height: 2rem;
  padding: 0;
  flex: 1 0 auto;
}
main .productdetailPage .shopdetail .product-info .align-items-center {
  height: 2em;
}
main .productdetailPage .shopdetail .product-info .align-items-center .fa-line {
  transform: scale(0.9);
}
main .productdetailPage .shopdetail .product-info .link-btn {
  color: #4d4d4d;
  background-color: #f0f0f0;
}
main .productdetailPage .shopdetail .product-info .link-btn:hover {
  color: #fff;
  background-color: #1e1e1e;
}
main .productdetailPage .shopdetail .product-more-item {
  text-align: left;
  width: 100%;
}
main .productdetailPage .shopdetail .product-more-item .more-item-wrape {
  border: 1px solid #e2e2e2;
  border-radius: 15px;
  padding: 10px 20px;
  overflow-y: auto;
  min-height: 300px;
  margin-top: 20px;
}
main .productdetailPage .shopdetail .product-more-item .more-item-wrape h6 {
  margin-bottom: 5px;
  font-size: 16px;
}
main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block {
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 20px;
}
main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block label {
  display: flex;
  cursor: pointer;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
  align-items: flex-start;
  flex-direction: column;
}
main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block label .more-item-left {
  display: flex;
  width: 100%;
  margin-bottom: 10px;
  justify-content: space-between;
  align-items: flex-start;
}
main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block label .more-item-left input {
  margin-right: 10px;
}
main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block label .more-item-left input[type=checkbox][disabled] {
  cursor: not-allowed;
}
main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block label .more-item-left input[type=radio],
main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block label .more-item-left input[type=checkbox] {
  margin: 4px 0 0;
  margin-top: 1px \9 ;
  line-height: normal;
  box-sizing: border-box;
  padding: 0;
}
main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block label .more-item-left .more-item-box-img {
  width: 80px;
  border-radius: 10px;
  align-items: center;
}
main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block label .more-item-left .more-item-box-img a {
  width: 100%;
}
main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block label .more-item-left h6 {
  width: 50%;
  text-align: right;
}
main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block label .more-item-right {
  position: relative;
  width: 100%;
}
main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block label .more-item-right p {
  text-align: right;
  font-weight: 500;
}
main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block:last-child {
  border-bottom: unset !important;
  padding-bottom: unset !important;
}
main .productdetailPage .shopdetail .d-flex {
  justify-content: center;
  margin-top: 20px;
}
main .productdetailPage .shopdetail .d-flex .btn {
  width: 7.5em;
  height: 3.5em;
  color: #000;
  border: 2px solid #b1b1b1;
  background-color: #fff;
  white-space: nowrap;
  align-items: center;
}
main .productdetailPage .shopdetail .d-flex .btn:hover,
main .productdetailPage .shopdetail .d-flex .btn.active {
  background-color: #000;
  color: #fff;
}
main .productdetailPage .shopdetail .col-lg-12 .area-title {
  border-bottom: 1px solid #333333;
  padding: 8px;
  font-size: 18px;
  margin-top: 20px;
  color: #333333;
}
main .productdetailPage .shopdetail .col-lg-12 .product-detail {
  margin-top: 1.5rem;
  padding: 0;
}
main .productdetailPage .shopdetail .col-lg-12 .product-detail img {
  display: block;
  margin: 10px auto;
}

main .casePage .contentBox {
  padding: 20px 0;
}
main .casePage .contentBox .rowBox {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 2em auto;
  margin-bottom: 0;
  row-gap: 20px;
}
main .casePage .contentBox .rowBox .content {
  box-shadow: 0 0 5px #cacaca;
  background-color: #fff;
  padding: 12px 12px 0;
  border-radius: 5px;
  transition: box-shadow 0.35s ease;
}
main .casePage .contentBox .rowBox .content .textBox {
  text-align: center;
  padding: 10px 8px 15px;
}
main .casePage .contentBox .rowBox .content .textBox h5 {
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  color: #0f1a2d;
}
main .casePage .contentBox .rowBox .content:hover {
  box-shadow: 0 0 15px #cacaca;
}
main .casePage .contentBox .rowBox .content:hover h5 {
  color: #324158;
}

main .photoPage .title-center {
  margin: 30px auto 10px;
  color: #303030;
}
main .photoPage .contentBox {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
main .photoPage .contentBox .case-title {
  background-color: #0f1a2d;
}
main .photoPage .contentBox .case-title h3 {
  color: #fff;
  padding: 60px 100px;
  text-align: center;
}
main .photoPage .contentBox .title {
  margin: 0 auto 20px;
  padding-bottom: 30px;
  max-width: 1000px;
  padding: 10px;
  text-align: center;
}
main .photoPage .contentBox .title h3 {
  margin: 15px 0;
}
main .photoPage .contentBox .content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: start;
  max-width: 1200px;
  margin: 10px auto 30px;
  /* hover / focus 狀態顯示效果（鍵盤或手機點擊一樣會觸發 focus-within） */
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
}
main .photoPage .contentBox .content .picBox {
  padding: 10px;
  position: relative;
  /* 讓遮罩能定位 */
  overflow: hidden;
  text-align: center;
  /* 黑色透明遮罩 */
  /* 右上角「+」 */
}
main .photoPage .contentBox .content .picBox h6 {
  padding: 0 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  margin: 0;
}
main .photoPage .contentBox .content .picBox p {
  color: #4d4d4d;
  padding: 0px 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.5em;
}
main .photoPage .contentBox .content .picBox .boximg1x1 img,
main .photoPage .contentBox .content .picBox .boximg4x3 img {
  transition: transform 1s ease;
  /* 變慢：1秒 */
}
main .photoPage .contentBox .content .picBox .boximg1x1::after,
main .photoPage .contentBox .content .picBox .boximg4x3::after {
  content: "";
  position: absolute;
  inset: 0;
  /* 等同 top/right/bottom/left 全為 0 */
  background: rgba(255, 255, 255, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  /* 不擋連結點擊 */
  z-index: 1;
}
main .photoPage .contentBox .content .picBox .boximg1x1::before,
main .photoPage .contentBox .content .picBox .boximg4x3::before {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 40%;
  left: 45%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #1e1e1e;
  font-weight: 700;
  font-size: 30px;
  opacity: 0;
  transform: translateY(10%) scale(0.9);
  transition: opacity 0.3s ease, transform 0.5s ease;
  pointer-events: none;
  /* 點 + 一樣會觸發 a（fancybox） */
  z-index: 2;
}
main .photoPage .contentBox .content .picBox:hover .boximg1x1::after,
main .photoPage .contentBox .content .picBox:focus-within .boximg1x1::after {
  opacity: 1;
}
main .photoPage .contentBox .content .picBox:hover .boximg1x1::before,
main .photoPage .contentBox .content .picBox:focus-within .boximg1x1::before {
  opacity: 1;
  transform: none;
}
main .photoPage .contentBox .content .picBox:hover .boximg1x1 img,
main .photoPage .contentBox .content .picBox:focus-within .boximg1x1 img {
  filter: brightness(0.85);
}
main .photoPage .contentBox .content .picBox:hover .boximg1x1 img,
main .photoPage .contentBox .content .picBox:focus-within .boximg1x1 img {
  transform: translate(-50%, -50%) scale(1.2);
  /* 注意：合併在一起 */
}
main .photoPage .contentBox .content .picBox:hover .boximg4x3::after,
main .photoPage .contentBox .content .picBox:focus-within .boximg4x3::after {
  opacity: 1;
}
main .photoPage .contentBox .content .picBox:hover .boximg4x3::before,
main .photoPage .contentBox .content .picBox:focus-within .boximg4x3::before {
  opacity: 1;
  transform: none;
}
main .photoPage .contentBox .content .picBox:hover .boximg4x3 img,
main .photoPage .contentBox .content .picBox:focus-within .boximg4x3 img {
  filter: brightness(0.85);
}
main .photoPage .contentBox .content .picBox:hover .boximg4x3 img,
main .photoPage .contentBox .content .picBox:focus-within .boximg4x3 img {
  transform: translate(-50%, -50%) scale(1.1);
  /* 注意：合併在一起 */
}

main .contactPage .contactBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 0;
}
main .contactPage .contactBox .text {
  padding: 20px 20px 60px;
}
main .contactPage .contactBox .text h6 {
  padding: 10px 0;
  margin: 10px 0;
  font-weight: 400;
  border-radius: 10px;
  color: #333;
}
main .contactPage .contactBox .text img {
  width: 90%;
  margin: 20px 0 30px;
  max-width: 400px;
}
main .contactPage .contactBox .text p {
  color: #333;
  line-height: 2;
  letter-spacing: 1px;
}
main .contactPage .contactBox .text p i {
  text-align: center;
  display: inline-block;
  width: 1.7em;
  color: #95cfa1;
}
main .contactPage .contactBox .text .line {
  color: #1e3764;
  padding-bottom: 10px;
  border-bottom: 1px solid #ededed;
}
main .contactPage .contactBox .text .line i {
  color: #1e3764;
}
main .contactPage .contactBox .text .rowBox {
  display: flex;
  flex-direction: row;
}
main .contactPage .contactBox .text .rowBox p {
  white-space: nowrap;
}
main .contactPage .contactBox .text .rowBox .textBox p {
  white-space: wrap;
}
main .contactPage .contactBox .content {
  border: 1px solid #f7f6f6;
  border-radius: 10px;
  box-shadow: 0 0 5px #b3b2b2;
  position: relative;
}
main .contactPage .contactBox .content .formBox {
  padding: 20px;
}
main .contactPage .contactBox .content .formBox h6 {
  padding: 0;
  margin: 5px 0;
  color: #303030;
  font-weight: normal;
  line-height: 1.5;
}
main .contactPage .contactBox .content .formBox .formgroup {
  margin: 1.5rem 0;
  width: 100%;
}
main .contactPage .contactBox .content .formBox .formgroup label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 14px;
}
main .contactPage .contactBox .content .formBox .formgroup label .required {
  color: red;
  margin-right: 0.25rem;
}
main .contactPage .contactBox .content .formBox .formgroup select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* appearance移除 iOS 預設樣式，但箭頭會不見，所以用插入箭頭的svg */
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 320 512'%3E%3Cpath d='M137.4 374.6c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 306.7 54.6 201.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 14px auto;
  width: 100%;
  /* 填滿容器 */
  max-width: 100%;
  /* 不超出 */
  box-sizing: border-box;
  display: block;
  /* 避免 inline-block 受文字影響 */
}
main .contactPage .contactBox .content .formBox .formgroup select option {
  width: 100%;
}
main .contactPage .contactBox .content .formBox .formgroup input[type=text],
main .contactPage .contactBox .content .formBox .formgroup input[type=tel],
main .contactPage .contactBox .content .formBox .formgroup textarea,
main .contactPage .contactBox .content .formBox .formgroup select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s ease;
}
main .contactPage .contactBox .content .formBox .formgroup input:focus,
main .contactPage .contactBox .content .formBox .formgroup textarea:focus,
main .contactPage .contactBox .content .formBox .formgroup select:focus {
  border-color: #1e1e1e;
  outline: none;
}
main .contactPage .contactBox .content .formBox .formgroup textarea {
  resize: vertical;
}
main .contactPage .contactBox .content .formBox .formgroup .captcha-box {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
main .contactPage .contactBox .content .formBox .formgroup .captcha-box .captcha-container {
  flex-shrink: 0;
  /* 防止圖片被壓縮 */
}
main .contactPage .contactBox .content .formBox .formgroup .captcha-box .captcha-container .captcha-img {
  height: 40px;
}
main .contactPage .contactBox .content .formBox .link-btn {
  margin: 0 auto;
  padding: 20px 25px;
  border: none;
}
main .contactPage .contactBox .content .formBox .link-btn button[type=submit] {
  background-color: #eee;
  color: #333;
  padding: 15px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
main .contactPage .contactBox .content .formBox .link-btn button[type=submit]:hover {
  background-color: #333;
  color: #eee;
}
main .contactPage .contactBox .content .formBox .link-btn:hover {
  color: transparent;
  background-color: transparent;
}

@media only screen and (min-width: 768px) {
  div.carouselSlide .carousel-indicators {
    margin-bottom: 20px;
  }
  div.carouselSlide .carousel-indicators button {
    width: 10px;
    height: 10px;
  }
  div.carouselSlide .carousel-item .carousel-text {
    width: 50%;
    bottom: 15%;
  }
  div.carouselSlide .carousel-item .carousel-text .main-text {
    font-size: 24px;
  }
  div.carouselSlide .carousel-item .carousel-text .sub-text {
    font-size: 16px;
  }
  div.carouselSlide .carousel-control-prev-icon,
  div.carouselSlide .carousel-control-next-icon {
    width: 50px;
    height: 50px;
  }
  main .productSec .contentBox .rowBox .picBox {
    margin: 10px;
    flex: 0 0 calc(33.3333% - 20px);
  }
  main .newtilesSec .contentOwl {
    padding: 20px 50px;
  }
  main .newtilesSec .contentOwl .picBox {
    width: 90%;
  }
  main .serviceSec {
    background-size: 100% 560px;
  }
  main .caseSec .contentBox .fullcontentOwl .picBox .textBox {
    bottom: -75%;
  }
  main .caseSec .contentBox .fullcontentOwl .picBox .textBox h5 {
    font-size: 18px;
  }
  main .caseSec .contentBox .fullcontentOwl .picBox .textBox .rowBox h6 {
    font-size: 17px;
  }
  .contactBottom .contactBox .contCenter,
  .contactBottom .contactBox .contRight {
    max-width: 350px;
  }
  footer {
    font-size: 16px;
  }
  aside {
    right: 10px;
    transform: scale(1);
  }
  main .aboutPage .contentBox .titleBox {
    margin: 10px auto 60px;
  }
  main .aboutPage .contentBox .rowBox .textleftBox .textBox ul li {
    font-size: 16px;
  }
  main .newalbumPage .contentBox .rowBox {
    justify-content: flex-start;
  }
  main .newalbumPage .contentBox .rowBox .content {
    flex: 0 0 calc(50% - 30px);
    padding: 0;
    margin: 15px;
  }
  main .newalbumPage .contentBox .rowBox .content .textBox {
    padding: 10px 15px 20px;
  }
  main .newalbumPage .contentBox .rowBox .content .textBox h5 {
    font-size: 18px;
  }
  main .productPage .product-container {
    display: block;
  }
  main .productPage .product-container .product-sidebar {
    margin: 1em auto;
  }
  main .productPage .product-container .product-sidebar li {
    font-size: 18px;
  }
  main .productPage .product-container .row {
    justify-content: space-between;
  }
  main .productPage .product-container .row .product-item {
    padding: 0 10px;
  }
  main .productPage .product-container .row .title {
    font-size: 20px;
  }
  main .productPage .product-container .row .card-des {
    font-size: 18px;
  }
  main .productPage .product-container .row .price {
    line-height: 1.5;
  }
  main .productPage .product-container .row .price span {
    font-size: 18px;
  }
  main .productdetailPage .shopdetail .product-info h4 {
    font-size: 30px;
  }
  main .productdetailPage .shopdetail .product-info .price span {
    font-size: 20px;
  }
  main .productdetailPage .shopdetail .product-more-item .more-item-wrape {
    padding: 20px;
  }
  main .productdetailPage .shopdetail .product-more-item .more-item-wrape h6 {
    margin-bottom: 15px;
  }
  main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block label {
    align-items: center;
    width: 100%;
  }
  main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block label .more-item-left {
    width: 70%;
    margin-bottom: 30px;
  }
  main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block label .more-item-left .more-item-box-img {
    width: 100px;
    margin-right: 10px;
  }
  main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block label .more-item-left h6 {
    width: 100%;
    -moz-text-align-last: left;
         text-align-last: left;
  }
  main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block label .more-item-right {
    width: 30%;
    padding-right: 50px;
  }
  main .casePage .contentBox .rowBox {
    row-gap: 0;
    margin-top: 0;
    justify-content: flex-start;
  }
  main .casePage .contentBox .rowBox .content {
    padding: 12px 12px 0;
    flex: 0 0 calc(50% - 30px);
    margin: 15px;
  }
  main .casePage .contentBox .rowBox .content .textBox {
    padding: 10px 15px 10px;
  }
  main .casePage .contentBox .rowBox .content .textBox h5 {
    font-size: 18px;
  }
  main .contactPage .contactBox .text p {
    font-size: 17px;
  }
}
@media only screen and (min-width: 992px) {
  div.carouselSlide .carousel-item .carousel-text {
    background-color: rgba(247, 247, 247, 0.3843137255);
  }
  main .aboutSec {
    padding-top: 0;
  }
  main .aboutSec .rowBox {
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
  }
  main .aboutSec .rowBox .textBox {
    padding: 1% 4% 0;
  }
  main .parallaxSec {
    min-height: 50vh;
  }
  main .productSec .contentBox {
    max-width: 1200px;
    margin: 0 auto;
  }
  main .productSec .contentBox .titleBox {
    position: relative;
  }
  main .productSec .contentBox .titleBox h5 {
    padding-bottom: 10px;
  }
  main .productSec .contentBox .titleBox .styledLine {
    position: absolute;
    right: 90px;
    bottom: 10px;
    display: flex;
    align-items: center;
    width: 100px;
    height: 1em;
  }
  main .productSec .contentBox .titleBox .styledLine .line {
    width: 50px;
    height: 1px;
    background-color: #333;
    margin-right: 6px;
    flex: none;
  }
  main .productSec .contentBox .titleBox .styledLine .text {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
  }
  main .productSec .contentBox .rowBox .picBox {
    margin: 13px;
    flex: 0 0 calc(25% - 26px);
  }
  main .newtilesSec .contentOwl {
    max-width: 1200px;
  }
  main .newtilesSec .contentOwl .owl-nav .owl-prev,
  main .newtilesSec .contentOwl .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
  main .serviceSec {
    background-size: 100% 72%;
  }
  main .serviceSec .rowBox {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
  main .serviceSec .rowBox .textBox {
    padding-top: 20px;
    padding-left: 30px;
    padding-bottom: 0;
  }
  main .serviceSec .rowBox .textBox h5 {
    padding-top: 20px;
  }
  main .serviceSec .rowBox .textBox p {
    padding-top: 0;
    padding-bottom: 30px;
  }
  main .serviceSec .rowBox .textBox h3 {
    padding-right: 20%;
  }
  main .serviceSec .imgBox {
    padding: 40px 0 10px;
    max-width: 1200px;
  }
  main .serviceSec .imgBox img {
    content: url("../images/service-icon.png");
  }
  main .caseSec .contentBox .titleBox {
    position: relative;
  }
  main .caseSec .contentBox .titleBox h5 {
    padding-bottom: 10px;
  }
  main .caseSec .contentBox .titleBox .styledLine {
    position: absolute;
    right: 90px;
    bottom: 10px;
    display: flex;
    align-items: center;
    width: 100px;
    height: 1em;
  }
  main .caseSec .contentBox .titleBox .styledLine .line {
    width: 50px;
    height: 1px;
    background-color: #333;
    margin-right: 6px;
    flex: none;
  }
  main .caseSec .contentBox .titleBox .styledLine .text {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
  }
  main .caseSec .contentBox .fullcontentOwl .picBox .textBox {
    bottom: calc(180px - 100%);
    padding: 25px 20px;
  }
  .contactBottom {
    padding-top: 80px;
  }
  .contactBottom .contactBox {
    max-width: 1700px;
    margin: 0 auto;
    flex-direction: row;
    align-items: flex-start;
    padding-bottom: 50px;
  }
  .contactBottom .contactBox .contCenter {
    padding: 0 15px;
  }
  main .aboutPage .contentBox {
    padding-top: 0;
  }
  main .aboutPage .contentBox .titleBox {
    margin: 100px auto 100px;
  }
  main .aboutPage .contentBox h4 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  main .newalbumPage .contentBox .rowBox .content .imgWrapper .more {
    font-size: 18px;
  }
  main .productPage .product-container {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
  }
  main .productPage .product-container .product-sidebar {
    max-width: 250px;
    margin: 0;
  }
  main .productPage .product-container .product-sidebar ul .aside-dropdown .submenu {
    display: none;
    padding-left: 0;
  }
  main .productPage .product-container .product-sidebar ul .aside-dropdown .submenu li {
    padding: 5px 10px;
  }
  main .productPage .product-container .product-sidebar ul .aside-dropdown .submenu li a {
    font-size: 15px;
  }
  main .productPage .product-container .product-sidebar ul .aside-dropdown .submenu.active {
    display: block;
  }
  main .productPage .product-container .row {
    justify-content: start;
    margin: 0;
  }
  main .productPage .product-container .row .price br {
    display: none;
  }
  main .productdetailPage .shopdetail .product-info .add-number {
    width: 50%;
  }
  main .productdetailPage .shopdetail .product-more-item {
    width: 80%;
    margin: 0 auto;
  }
  main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block label {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block label .more-item-left {
    align-items: center;
    justify-content: start;
    width: 80%;
  }
  main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block label .more-item-left .more-item-box-img {
    margin: 0 15px;
  }
  main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block label .more-item-left h6 {
    width: 70%;
    text-align: left;
  }
  main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block label .more-item-right {
    position: relative;
    width: 20%;
  }
  main .productdetailPage .shopdetail .product-more-item .more-item-wrape .more-item-block label .more-item-right p {
    position: absolute;
    top: 35px;
    right: 30px;
  }
  main .contactPage .contactBox {
    justify-content: center;
    gap: 30px;
    padding-bottom: 100px;
  }
  main .contactPage .contactBox .text {
    max-width: 500px;
  }
  main .contactPage .contactBox .text p {
    line-height: 2;
  }
  main .contactPage .contactBox .content {
    max-width: 630px;
  }
  main .contactPage .contactBox .content .formBox h6 {
    margin-bottom: 15px;
  }
  main .contactPage .contactBox .content .formBox .formgroup {
    display: flex;
    align-items: center;
  }
  main .contactPage .contactBox .content .formBox .formgroup label {
    width: 120px;
    margin-bottom: 0;
    flex-shrink: 0;
    font-size: 16px;
  }
  main .contactPage .contactBox .content .formBox .formgroup input,
  main .contactPage .contactBox .content .formBox .formgroup textarea {
    flex: 1;
  }
}
@media only screen and (min-width: 1400px) {
  div.carouselSlide .carousel-item .carousel-text {
    width: 40%;
    bottom: 15%;
  }
  div.carouselSlide .carousel-item .carousel-text .main-text {
    font-size: 26px;
  }
  div.carouselSlide .carousel-item .carousel-text .sub-text {
    font-size: 18px;
  }
  main .aboutSec .rowBox .textBox {
    padding-top: 5%;
    padding-right: 4%;
  }
  main .serviceSec {
    background-size: 100% 60%;
  }
  main .serviceSec .rowBox .picBox {
    max-width: 750px;
  }
  main .serviceSec .rowBox .textBox {
    padding-top: 30px;
    padding-left: 40px;
    max-width: 550px;
  }
  main .serviceSec .rowBox .textBox p {
    padding-top: 20px;
    padding-bottom: 50px;
    line-height: 1.8;
  }
  main .serviceSec .rowBox .textBox h3 {
    padding-right: 20%;
  }
  main .serviceSec .rowBox .textBox h3 a {
    font-size: 50px;
  }
  main .serviceSec .imgBox {
    padding: 40px 0;
  }
  main .caseSec .contentBox .fullcontentOwl .picBox .textBox {
    bottom: calc(150px - 100%);
    padding: 30px;
  }
  main .caseSec .contentBox .fullcontentOwl .picBox .textBox .rowBox {
    display: flex;
    align-items: flex-end;
    gap: 20px;
  }
  main .caseSec .contentBox .fullcontentOwl .picBox .textBox .rowBox h6 {
    flex: 1;
    margin-bottom: 0;
  }
  .contactBottom {
    padding-top: 100px;
  }
  .contactBottom .contactBox {
    padding-bottom: 70px;
  }
  .contactBottom .contactBox .contLeft img {
    width: 100%;
    max-width: 330px;
  }
  .contactBottom .contactBox .contCenter,
  .contactBottom .contactBox .contRight {
    max-width: 400px;
  }
  .contactBottom .contactBox .contCenter p,
  .contactBottom .contactBox .contRight p {
    letter-spacing: 2px;
  }
  main .aboutPage .contentBox .titleBox {
    margin: 80px auto 100px;
  }
  main .aboutPage .contentBox .parallax {
    height: 50vh;
  }
  main .aboutPage .contentBox .rowBox {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main .aboutPage .contentBox .rowBox .textBox {
    padding: 3% 10px 0 4%;
  }
  main .aboutPage .contentBox .rowBox .textBox h5 {
    padding: 25px 0;
  }
  main .aboutPage .contentBox .rowBox .textBox p {
    padding-bottom: 20px;
  }
  main .aboutPage .contentBox .rowBox .textBox ul li {
    font-size: 16px;
    margin-bottom: 8px;
  }
  main .newalbumPage .contentBox .rowBox {
    max-width: 1200px;
  }
  main .newalbumPage .contentBox .rowBox .content {
    flex: 0 0 calc(33.3333% - 30px);
  }
  main .newalbumPage .contentBox .rowBox .content .boximg1x1 img {
    max-width: 370px;
    max-height: 370px;
  }
  main .productPage .product-container .row {
    max-width: 1100px;
  }
  main .productdetailPage .shopdetail .container {
    max-width: 1250px;
  }
  main .casePage .contentBox .rowBox {
    max-width: 1200px;
  }
  main .casePage .contentBox .rowBox .content {
    flex: 0 0 calc(33.3333% - 30px);
  }
  main .contactPage .contactBox {
    gap: 60px;
  }
  main .contactPage .contactBox .text img {
    margin: 20px 0 50px;
  }
  main .contactPage .contactBox .content .formBox form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 兩欄 */
    gap: 0 20px;
    /* 姓名 + 電話 並排 */
    /* 傳真 + Email 並排 */
    /* 讓「留言」、「驗證碼」、「送出」等區塊佔滿兩欄 */
  }
  main .contactPage .contactBox .content .formBox form .formgroup {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    row-gap: 20px;
    margin: 15px 0 0;
  }
  main .contactPage .contactBox .content .formBox form .formgroup:nth-child(1),
  main .contactPage .contactBox .content .formBox form .formgroup:nth-child(2) {
    grid-column: span 1;
    /* 各佔一欄 */
  }
  main .contactPage .contactBox .content .formBox form .formgroup:nth-child(3),
  main .contactPage .contactBox .content .formBox form .formgroup:nth-child(4) {
    grid-column: span 1;
  }
  main .contactPage .contactBox .content .formBox form .formgroup:nth-child(n+5),
  main .contactPage .contactBox .content .formBox form .link-btn {
    grid-column: span 2;
  }
}
@media only screen and (min-width: 1900px) {
  main .aboutSec .rowBox .textBox {
    padding-right: 5%;
  }
  main .aboutSec .rowBox .textBox h5 {
    padding: 40px 0;
  }
  main .aboutSec .rowBox .textBox p {
    padding-bottom: 20px;
  }
  main .aboutSec .rowBox .textBox .link-btn-icon {
    margin: 20px 0;
  }
  main .caseSec .contentBox .fullcontentOwl .picBox .textBox {
    padding: 30px;
  }
  main .caseSec .contentBox .fullcontentOwl .picBox .textBox .rowBox {
    gap: 40px;
  }
  main .caseSec .contentBox .fullcontentOwl .picBox .textBox .rowBox h6 {
    flex: 1;
  }
  main .casePage .titleBox .case-title h3 {
    padding-right: 37%;
  }
  main .casePage .titleBox .picBox .upBox .media {
    top: 23%;
    left: 28%;
  }
  main .productPage .product-container .row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 0;
    align-items: flex-start;
    vertical-align: top;
  }
}/*# sourceMappingURL=style.css.map */