@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");
@import url("https://fonts.googleapis.com/css2?family=LXGW+WenKai+Mono+TC&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;
}

h6 {
  font-size: 14px;
}

p {
  font-size: 14px;
  line-height: 1.5;
  word-break: break-all;
  overflow-wrap: break-word;
  /* 防止文字超出 */
  line-break: loose;
  /* 調整中文標點換行規則（modern瀏覽器） */
  margin: 0;
}

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

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

a.flexbox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

a:hover {
  color: #666666;
}

:root {
  --color1: #ffe114 ;
  --color2: #808080;
}

.title-center {
  margin: 30px auto;
  text-align: center;
  padding: 0 10px;
}
.title-center img {
  width: auto;
  align-items: center;
  max-height: 35px;
}
.title-center h3 {
  font-size: 35px;
  font-weight: 800;
  color: #324158;
}
.title-center p {
  margin: 10px 0;
  color: #000;
  vertical-align: top;
}
.title-center p .bar {
  position: relative;
  top: -2px;
}

.title h6 {
  font-style: italic;
  font-size: 16px;
  margin: 0;
  line-height: 1.8;
  font-weight: 900;
}
.title h5 {
  font-style: italic;
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 800;
}
.title .line-with-cut {
  width: 3em;
  height: 5px;
  background-color: #fff;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%); /* 創建明顯的切面 */
  margin-bottom: 20px;
}

.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: #ffe114;
  color: #000;
  font-weight: 700;
}
.pagination ul li:hover a {
  background-color: #ffe114;
  color: #000;
  font-weight: 700;
}

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

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

.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: 45px;
  }
}
@media only screen and (min-width: 361px) {
  body {
    padding-top: 60px;
  }
}
@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: 45x;
  }
  .link-btn-left {
    font-size: 16px;
  }
  .breadcrumbRight {
    justify-content: space-around;
  }
  .topBox {
    height: 250px;
  }
  .topBox h2 {
    font-size: 35px;
  }
  body {
    padding-top: 70px;
  }
}
@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: 74px;
  }
  .title-center h3 {
    font-size: 45px;
  }
  .title h6 {
    font-size: 18px;
  }
  .title h5 {
    font-size: 26px;
  }
}
@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: 75px;
  }
  .title-center img {
    max-height: 50px;
  }
}
@media only screen and (min-width: 1700px) {
  body {
    padding-top: 100px;
  }
}
@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 {
  background-color: #000;
  background-image: url(../images/about-bg-mobile.png);
  background-size: 100% 50%;
  background-position: bottom left;
  background-repeat: no-repeat;
  padding: 30px 0 45%;
}
main .aboutSec .rowBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .aboutSec .rowBox .textBox {
  max-width: 350px;
}
main .aboutSec .rowBox .textBox h6 {
  color: #fff;
  font-style: italic;
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1.8;
}
main .aboutSec .rowBox .textBox h5 {
  color: #fff;
  font-style: italic;
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 22px;
}
main .aboutSec .rowBox .textBox .line-with-cut {
  width: 3em;
  height: 5px;
  background-color: #fff;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%); /* 創建明顯的切面 */
  margin-bottom: 20px;
}
main .aboutSec .rowBox .textBox p {
  color: #fff;
  margin-bottom: 10px;
}
main .aboutSec .rowBox .textBox p.text-yellow {
  color: #ffe114;
}
main .serviceSec {
  padding: 30px 0;
  background-image: url(../images/service-bg.jpg);
  background-size: cover;
}
main .serviceSec .title {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .serviceSec .title h5 {
  color: #ffe114;
  line-height: 1.5;
  position: relative;
  z-index: 0;
}
main .serviceSec .title h5::after {
  content: attr(data-stroke);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 2px #000;
}
main .serviceSec .title .line-with-cut {
  background-color: #ffe114;
}
main .serviceSec .rowBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  row-gap: 20px;
}
main .serviceSec .rowBox .contentBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
main .serviceSec .rowBox .contentBox .pic {
  flex: 1;
}
main .serviceSec .rowBox .contentBox .textBox {
  flex: 2;
}
main .serviceSec .rowBox .contentBox .textBox h6 {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 800;
}
main .testimonialSec .title {
  padding: 20px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffe114;
}
main .testimonialSec .title h6 {
  color: #808080;
}
main .testimonialSec .title .line-with-cut {
  background-color: #000;
}
main .testimonialSec .testimonialOwl {
  padding: 30px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
}
main .testimonialSec .testimonialOwl .picBox {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px 15px;
}
main .testimonialSec .testimonialOwl .picBox .frameBox {
  background-image: url(../images/testimonial-frame.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 40px 20px;
}
main .testimonialSec .testimonialOwl .picBox .frameBox .iconBox {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
main .testimonialSec .testimonialOwl .picBox .frameBox .iconBox .starBox {
  display: flex;
  flex-wrap: nowrap;
  justify-content: none;
}
main .testimonialSec .testimonialOwl .picBox .frameBox .iconBox .starBox i {
  color: #ffe114;
}
main .testimonialSec .testimonialOwl .picBox .frameBox .iconBox img {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}
main .testimonialSec .testimonialOwl .picBox .frameBox p {
  margin: 15px 0;
  min-height: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
}
main .testimonialSec .testimonialOwl .picBox .userBox {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  vertical-align: middle;
}
main .testimonialSec .testimonialOwl .picBox .userBox img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}
main .testimonialSec .testimonialOwl .owl-carousel {
  position: relative;
}
main .testimonialSec .testimonialOwl .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
}
main .testimonialSec .testimonialOwl .owl-nav .owl-prev,
main .testimonialSec .testimonialOwl .owl-nav .owl-next {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #000;
  font-size: 20px;
  border-radius: 50%;
  border: 1px solid #000;
}
main .testimonialSec .testimonialOwl .owl-nav .owl-next {
  right: 0;
}
main .testimonialSec .testimonialOwl .owl-nav .owl-prev:hover,
main .testimonialSec .testimonialOwl .owl-nav .owl-next:hover {
  color: #fff;
  background-color: #000;
}
main .processSec {
  background-image: url(../images/process-bg-mobile.jpg);
  background-size: 100% 50%;
  background-position: bottom left;
  background-repeat: no-repeat;
  padding: 50px 0;
}
main .processSec .title {
  margin: 0 auto;
  padding: 0 0 20px;
  max-width: 370px;
}
main .processSec .title h6 {
  color: #ffe114;
}
main .processSec .title .line-with-cut {
  background-color: #ffe114;
}
main .processSec .contentBox {
  padding: 0 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
main .processSec .contentBox .rowBox {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  padding: 30px 0;
  margin-right: 15px;
}
main .processSec .contentBox .rowBox .iconBox {
  flex: 0 0 calc(50% - 6px);
  text-align: center;
  padding: 0 5px;
  position: relative;
  margin-right: 6px;
}
main .processSec .contentBox .rowBox .iconBox .picBox {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
main .processSec .contentBox .rowBox .iconBox .picBox img {
  width: auto;
  height: 60%;
  max-width: 100px;
  max-height: 80px;
}
main .processSec .contentBox .rowBox .iconBox h6 {
  font-style: italic;
  margin-bottom: 10px;
  font-weight: 800;
}
main .processSec .contentBox .rowBox .iconBox .process-arrow {
  position: absolute;
  right: 1%;
  top: 40%;
  width: 20px;
}
main .caseSec {
  padding: 50px 0;
}
main .caseSec .title {
  margin: 0 auto;
  padding: 0 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
main .caseSec .title h6 {
  color: #ffe114;
}
main .caseSec .title .line-with-cut {
  background-color: #ffe114;
}
main .caseSec .caseOwl {
  padding: 10px 40px 20px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  /* hover / focus 狀態顯示效果（鍵盤或手機點擊一樣會觸發 focus-within） */
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
}
main .caseSec .caseOwl .picBox {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  /* 黑色透明遮罩 */
  /* 右上角「+」 */
}
main .caseSec .caseOwl .picBox .boximg3x2,
main .caseSec .caseOwl .picBox .boximg4x5,
main .caseSec .caseOwl .picBox .boximg1x1 {
  position: relative;
  overflow: hidden;
}
main .caseSec .caseOwl .picBox .boximg3x2 img,
main .caseSec .caseOwl .picBox .boximg4x5 img,
main .caseSec .caseOwl .picBox .boximg1x1 img {
  transition: transform 1s ease;
  /* 變慢：1秒 */
  -o-object-fit: cover;
     object-fit: cover;
}
main .caseSec .caseOwl .picBox .boximg3x2::after,
main .caseSec .caseOwl .picBox .boximg4x5::after,
main .caseSec .caseOwl .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 .caseSec .caseOwl .picBox .boximg3x2::before,
main .caseSec .caseOwl .picBox .boximg4x5::before,
main .caseSec .caseOwl .picBox .boximg1x1::before {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  /* Font Awesome search icon */
  /* 或 "Font Awesome 5 Free" */
  /* 確保顯示實心版本 */
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #ffe114;
  font-weight: 700;
  font-size: 30px;
  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 .caseSec .caseOwl .picBox p {
  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: 3;
  line-clamp: 3;
}
main .caseSec .caseOwl .picBox h5 {
  margin: 15px 0 2px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
main .caseSec .caseOwl .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 .caseSec .caseOwl .picBox:hover .boximg3x2::after,
main .caseSec .caseOwl .picBox:focus-within .boximg3x2::after {
  opacity: 1;
}
main .caseSec .caseOwl .picBox:hover .boximg3x2::before,
main .caseSec .caseOwl .picBox:focus-within .boximg3x2::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  /* 保持 translate */
}
main .caseSec .caseOwl .picBox:hover .boximg3x2 img,
main .caseSec .caseOwl .picBox:focus-within .boximg3x2 img {
  filter: brightness(0.85);
}
main .caseSec .caseOwl .picBox:hover .boximg3x2 img,
main .caseSec .caseOwl .picBox:focus-within .boximg3x2 img {
  transform: translate(-50%, -50%) scale(1.2);
  /* 注意：合併在一起 */
}
main .caseSec .caseOwl .picBox:hover .boximg4x5::after,
main .caseSec .caseOwl .picBox:focus-within .boximg4x5::after {
  opacity: 1;
}
main .caseSec .caseOwl .picBox:hover .boximg4x5::before,
main .caseSec .caseOwl .picBox:focus-within .boximg4x5::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  /* 保持 translate */
}
main .caseSec .caseOwl .picBox:hover .boximg4x5 img,
main .caseSec .caseOwl .picBox:focus-within .boximg4x5 img {
  filter: brightness(0.85);
}
main .caseSec .caseOwl .picBox:hover .boximg4x5 img,
main .caseSec .caseOwl .picBox:focus-within .boximg4x5 img {
  transform: translate(-50%, -50%) scale(1.2);
  /* 注意：合併在一起 */
}
main .caseSec .caseOwl .picBox:hover .boximg1x1::after,
main .caseSec .caseOwl .picBox:focus-within .boximg1x1::after {
  opacity: 1;
}
main .caseSec .caseOwl .picBox:hover .boximg1x1::before,
main .caseSec .caseOwl .picBox:focus-within .boximg1x1::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  /* 保持 translate */
}
main .caseSec .caseOwl .owl-carousel {
  position: relative;
  overflow: visible;
}
main .caseSec .caseOwl .owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
  display: flex;
}
main .caseSec .caseOwl .owl-nav .owl-prev,
main .caseSec .caseOwl .owl-nav .owl-next {
  position: absolute;
  width: 40px;
  height: 40px;
  color: #000;
  font-size: 18px;
  line-height: 30px;
  border-radius: 50%;
  border: 1px solid #000;
}
main .caseSec .caseOwl .owl-nav .owl-next {
  right: 0;
}
main .caseSec .caseOwl .owl-nav .owl-prev:hover,
main .caseSec .caseOwl .owl-nav .owl-next:hover {
  color: #fff;
  background-color: #000;
}
main .caseSec .caseOwl .owl-carousel .owl-item {
  max-width: 400px;
}
main .caseSec .caseOwl .owl-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  flex-direction: row !important;
  position: relative;
}
main .caseSec .caseOwl .owl-dots .owl-dot {
  display: inline-block;
}
main .caseSec .caseOwl .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #999;
  display: block;
  border-radius: 50%;
}
main .caseSec .caseOwl .owl-dots .owl-dot.active span {
  background: #333;
}

.contactBottom .contacttopBox {
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}
.contactBottom .contacttopBox .picBox {
  text-align: center;
  padding: 20px 0 40px;
}
.contactBottom .contacttopBox .picBox img {
  width: 50%;
}
.contactBottom .contacttopBox .textBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.contactBottom .contacttopBox .textBox i {
  background-color: #ffe114;
  padding: 10px;
  border-radius: 50%;
  width: 36px;
}
.contactBottom .contacttopBox .textBox p {
  color: #fff;
}
.contactBottom .contacttopBox .textBox a {
  color: #ffe114;
  font-size: 27px;
  font-weight: 700;
  font-style: italic;
}
.contactBottom .contactBox {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 40px;
  padding: 20px 0 0;
}
.contactBottom .contactBox .contCenter {
  max-width: 350px;
}
.contactBottom .contactBox .contCenter h5 {
  color: #ffe114;
  font-weight: 800;
  font-style: italic;
  font-size: 28px;
  margin-bottom: 20px;
}
.contactBottom .contactBox .contCenter p {
  line-height: 2;
  letter-spacing: 1px;
  font-family: "Noto Sans TC", sans-serif;
}
.contactBottom .contactBox .contCenter p span {
  display: inline-block;
  width: 1.5em;
  text-align: center;
}
.contactBottom .contactBox .contCenter p span i {
  color: #ffe114;
}
.contactBottom .contactBox .contCenter p a {
  font-family: "Noto Sans TC", sans-serif;
}
.contactBottom .contactBox .contRight iframe {
  display: block;
  width: 100%;
  height: 350px;
}

footer {
  line-height: 2;
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
  color: #000;
  background-color: #ffe114;
}

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 .about-content {
  padding: 30px 0 0;
  display: flex;
  flex-direction: column;
}
main .aboutPage .about-content .textBox {
  margin: 10px auto;
  padding: 0 10px;
}
main .aboutPage .about-content .textBox h6 {
  color: #ffe114;
  font-style: italic;
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1.8;
  font-weight: 800;
}
main .aboutPage .about-content .textBox h6::before {
  content: attr(data-stroke);
  position: absolute;
  z-index: -1;
  -webkit-text-stroke: 3px #000;
}
main .aboutPage .about-content .textBox h5 {
  color: #ffe114;
  font-style: italic;
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 22px;
}
main .aboutPage .about-content .textBox h5::before {
  content: attr(data-stroke);
  position: absolute;
  z-index: -1;
  -webkit-text-stroke: 3px #000;
}
main .aboutPage .about-content .textBox .line-with-cut {
  width: 3em;
  height: 5px;
  background-color: #ffe114;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%); /* 創建明顯的切面 */
  margin-bottom: 20px;
}
main .aboutPage .about-content .textBox p {
  margin-bottom: 20px;
}
main .aboutPage .about-content .textBox .text-bottom {
  margin-bottom: 40px;
}
main .aboutPage .about-contact {
  background-color: #ffe114;
}
main .aboutPage .about-contact .title {
  padding: 80px 5px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .aboutPage .about-contact .title h6 {
  color: #808080;
}
main .aboutPage .about-contact .title .line-with-cut {
  background-color: #000;
  margin-bottom: 30px;
}
main .aboutPage .about-contact .title a {
  line-height: 1.5;
  margin-bottom: 8px;
}
main .aboutPage .about-contact .title a i {
  margin-right: 10px;
}

main .servicePage .serviceBox {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/servicePage-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .servicePage .serviceBox .textBox .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .servicePage .serviceBox .textBox .title h5 {
  color: #fff;
}
main .servicePage .serviceBox .textBox .title .line-with-cut {
  background-color: #fff;
  margin-bottom: 30px;
}
main .servicePage .serviceBox .textBox .text {
  color: #fff;
}
main .servicePage .serviceBox .textBox .text p {
  margin-bottom: 8px;
}
main .servicePage .serviceBox .textBox .text h6 {
  text-align: center;
  margin: 30px 0;
  font-style: italic;
  color: #ffe114;
}
main .servicePage .processBox {
  background-color: #ffe114;
  padding: 80px 0;
}
main .servicePage .processBox .title {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .servicePage .processBox .title .line-with-cut {
  background-color: #000;
  margin-bottom: 30px;
}
main .servicePage .processBox .rowBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
}
main .servicePage .processBox .rowBox .textBox {
  background-color: #fff;
  border-radius: 30px;
  padding: 15px 20px;
  border: 1px dotted #808080;
  max-width: 500px;
}
main .servicePage .processBox .rowBox .textBox h5 {
  color: #808080;
  font-size: 18px;
  padding-bottom: 15px;
  border-bottom: 1px dotted #808080;
  margin-bottom: 20px;
  font-weight: 700;
}
main .servicePage .processBox .rowBox .textBox h5 span {
  font-size: 40px;
  margin-right: 10px;
}
main .servicePage .specialBox {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/servicePage-pic1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .servicePage .specialBox .textBox {
  width: 100%;
}
main .servicePage .specialBox .textBox .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
main .servicePage .specialBox .textBox .title h5 {
  color: #fff;
}
main .servicePage .specialBox .textBox .title .line-with-cut {
  background-color: #fff;
  margin-bottom: 30px;
}
main .servicePage .specialBox .textBox .contentBox {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  justify-content: center;
  align-items: center;
}
main .servicePage .specialBox .textBox .contentBox .text {
  background-color: #fff;
  border: 5px solid #ffe114;
}
main .servicePage .specialBox .textBox .contentBox .text .title-s {
  background-color: #ffe114;
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}
main .servicePage .specialBox .textBox .contentBox .text .content-s {
  padding: 10px;
  line-height: 2;
}
main .servicePage .noticeBox {
  background-color: #ffe114;
  padding: 50px 15px;
}
main .servicePage .noticeBox .title {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .servicePage .noticeBox .title .line-with-cut {
  background-color: #000;
  margin-bottom: 30px;
}
main .servicePage .noticeBox .rowBox {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin: 0 auto;
}
main .servicePage .noticeBox .rowBox .contentBox {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: left;
}
main .servicePage .noticeBox .rowBox .contentBox h4 {
  color: #333;
  margin-bottom: 15px;
  font-weight: 800;
  padding-bottom: 15px;
  border-bottom: 1px dotted #808080;
}
main .servicePage .noticeBox .rowBox .contentBox h4 i {
  margin-right: 5px;
}
main .servicePage .noticeBox .rowBox .contentBox ul {
  list-style-type: disc;
  margin-bottom: 15px;
}
main .servicePage .noticeBox .rowBox .contentBox ul li {
  margin-bottom: 5px;
}
main .servicePage .noticeBox .rowBox .contentBox ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  color: #ffe114;
  margin-right: 8px;
  font-weight: 900;
}
main .servicePage .noticeBox .prework-item.tip {
  background: #f9fbff;
}
main .servicePage .contactBox {
  padding: 50px 20px;
  text-align: center;
  /* 說明文字 */
}
main .servicePage .contactBox .rowBox {
  display: flex;
  flex-direction: column; /* 手機版垂直 */
  gap: 1rem;
  margin: 0 auto 35px;
}
main .servicePage .contactBox .rowBox .contact-btn {
  display: flex;
  align-items: center;
  background-color: #000;
  color: #ffe114;
  text-decoration: none;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s;
  /* 文字資訊 */
}
main .servicePage .contactBox .rowBox .contact-btn i {
  font-size: 25px;
  margin-right: 15px;
  flex-shrink: 0;
}
main .servicePage .contactBox .rowBox .contact-btn .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 8px;
}
main .servicePage .contactBox .rowBox .contact-btn .info .label {
  font-size: 14px;
}
main .servicePage .contactBox .rowBox .contact-btn .info .value {
  font-size: 16px;
  font-weight: 600;
}
main .servicePage .contactBox .rowBox .contact-btn:hover {
  transform: translateY(-10px);
}
main .servicePage .contactBox .contact-note {
  color: #333;
  line-height: 1.8;
  margin: 20px 0 40px;
  font-weight: 600;
}

main .processPage .contentBox {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px 0;
}
main .processPage .contentBox .rowBox {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  flex-direction: column;
}
main .processPage .contentBox .rowBox .iconBox {
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  text-align: center;
}
main .processPage .contentBox .rowBox .iconBox img {
  width: 30%;
  height: auto;
  margin-bottom: 25px;
  max-width: 120px;
  max-height: 115px;
}
main .processPage .contentBox .rowBox .iconBox .textBox {
  position: relative;
}
main .processPage .contentBox .rowBox .iconBox .textBox h5 {
  margin: 10px 0;
  color: #1e59b5;
}
main .processPage .contentBox .rowBox .iconBox .textBox h5 i {
  position: absolute;
  top: -8%;
  left: 15%;
  font-size: 40px;
}
main .processPage .contentBox .rowBox .iconBox .textBox p {
  padding: 10px 30px;
  color: #333;
}
main .processPage .contentBox .rowBox .iconBox i.bi-chevron-down {
  position: absolute;
  left: 50%;
  bottom: -25%;
  transform: translateX(-50%);
  font-size: 40px;
  color: #1e59b5;
}
main .processPage .contentBox .rowBox .iconBox .link-button {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 5px auto;
}
main .processPage .contentBox .rowBox .iconBox .link-button .link-btn {
  padding: 10px 0;
  margin: 5px 0;
  align-items: center;
  width: 10em;
  color: #1e59b5;
  border: 1px solid #1e59b5;
  position: relative;
}
main .processPage .contentBox .rowBox .iconBox .link-button .link-btn i {
  font-size: 25px;
  padding: 0;
  border-radius: 50%;
  text-align: center;
  align-items: center;
}
main .processPage .contentBox .rowBox .iconBox .link-button .link-btn:hover {
  background-color: #1e59b5;
  color: #fff;
}

main .casePage .contentBox {
  padding: 20px 0;
}
main .casePage .contentBox .rowBox {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin: 2em auto;
  margin-bottom: 0;
  row-gap: 20px;
}
main .casePage .contentBox .rowBox .content {
  background-color: #fff;
  padding: 12px 12px 0;
  border-radius: 5px;
  transition: box-shadow 0.35s ease;
}
main .casePage .contentBox .rowBox .content .textBox {
  padding: 10px 0 15px;
}
main .casePage .contentBox .rowBox .content .textBox h5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-weight: 700;
  margin-bottom: 5px;
}
main .casePage .contentBox .rowBox .content .textBox p.longtext {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
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 .title {
  margin: 0 auto 20px;
  padding-bottom: 30px;
  max-width: 1000px;
  padding: 10px;
  border-bottom: 1px solid #666666;
}
main .photoPage .contentBox .title h3 {
  margin: 15px 0;
  position: relative;
}
main .photoPage .contentBox .title h3::after {
  content: "";
  position: absolute;
  left: -1%;
  top: -40%;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #f2c549;
  z-index: -1;
}
main .photoPage .contentBox .content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: start;
  max-width: 1200px;
  margin: 10px auto 30px;
  row-gap: 20px;
  /* hover / focus 狀態顯示效果（鍵盤或手機點擊一樣會觸發 focus-within） */
  /* 圖片可加一點亮度變化（不動 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 .boximg4x5 img {
  transition: transform 1s ease;
  /* 變慢：1秒 */
}
main .photoPage .contentBox .content .picBox .boximg4x5::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 .boximg4x5::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: #ffe114;
  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 .boximg4x5::after,
main .photoPage .contentBox .content .picBox:focus-within .boximg4x5::after {
  opacity: 1;
}
main .photoPage .contentBox .content .picBox:hover .boximg4x5::before,
main .photoPage .contentBox .content .picBox:focus-within .boximg4x5::before {
  opacity: 1;
  transform: none;
}
main .photoPage .contentBox .content .picBox:hover .boximg4x5 img,
main .photoPage .contentBox .content .picBox:focus-within .boximg4x5 img {
  filter: brightness(0.85);
}
main .photoPage .contentBox .content .picBox:hover .boximg4x5 img,
main .photoPage .contentBox .content .picBox:focus-within .boximg4x5 img {
  transform: translate(-50%, -50%) scale(1.2);
  /* 注意：合併在一起 */
}

main .pricePage {
  /* === 備註 === */
}
main .pricePage .table-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
}
main .pricePage .table-container table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  font-size: 15px;
  border: 0;
  min-width: 1000px;
  /* === 虛線區隔線 === */
}
main .pricePage .table-container table th, main .pricePage .table-container table td {
  border: 1px solid #ccc;
  text-align: center;
  padding: 8px;
}
main .pricePage .table-container table .yellow {
  background-color: #ffe114;
  font-weight: 600;
}
main .pricePage .table-container table .orange {
  background-color: #ffbd2e;
  font-weight: 600;
}
main .pricePage .table-container table thead th {
  background-color: #000;
  color: #fff;
  font-weight: 700;
}
main .pricePage .table-container table .dashed-line {
  border-top: 1px dashed #aaa;
  padding-top: 6px;
  margin-top: 6px;
  font-size: 15px;
}
main .pricePage .note {
  margin-top: 20px;
  padding: 15px;
  font-size: 15px;
}
main .pricePage .note h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
}
main .pricePage .note ol li {
  margin-bottom: 8px;
}

main .contactPage .contactBox {
  line-height: 1.8;
}
main .contactPage .contactBox .content {
  margin: 30px auto 0;
  padding: 40px 0 0;
}
main .contactPage .contactBox .content .map {
  position: relative;
}
main .contactPage .contactBox .content .map img {
  position: absolute;
  left: 0;
  top: -60px;
  z-index: -1;
  max-width: 400px;
}
main .contactPage .contactBox .content .textBox {
  margin: 10px auto;
}
main .contactPage .contactBox .content .textBox .text {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  vertical-align: middle;
  justify-content: flex-start;
  text-align: start;
}
main .contactPage .contactBox .content .textBox .text .title-h5 {
  margin: 10px 0;
  display: inline-flex;
  align-items: center;
  text-align: start;
}
main .contactPage .contactBox .content .textBox .text .title-h5 span {
  line-height: 40px;
  font-size: inherit;
  line-height: 1;
}
main .contactPage .contactBox .content .textBox .text i {
  margin-right: 10px;
}
main .contactPage .contactBox .content .textBox h5 {
  margin: 30px 0;
  font-weight: normal;
  line-height: 1.5;
  font-size: 17px;
}
main .contactPage .contactBox .content .textBox h5 i {
  margin-right: 10px;
}
main .contactPage .contactBox .content .textBox .iconBox {
  margin: 40px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
main .contactPage .contactBox .content .textBox .iconBox i {
  display: block;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background-color: #000;
}
main .contactPage .contactBox .content .textBox .iconBox i:hover {
  background-color: #ffe114;
  transition: background-color 0.8s ease;
}

@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 .aboutSec {
    background-image: url(../images/about-bg.jpg);
    background-size: cover;
    background-position: 80% center;
    padding: 80px 0;
  }
  main .aboutSec .rowBox {
    flex-direction: row;
  }
  main .serviceSec .rowBox {
    flex-direction: row;
  }
  main .serviceSec .rowBox .contentBox {
    flex-direction: column;
    flex: 1;
  }
  main .serviceSec .rowBox .contentBox .pic {
    padding: 10px;
  }
  main .serviceSec .rowBox .contentBox .textBox {
    padding: 0 15px;
  }
  main .serviceSec .rowBox .contentBox .textBox h6 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  main .processSec .title {
    max-width: 600px;
  }
  main .processSec .contentBox .rowBox .iconBox {
    padding: 0 15px;
    flex: 0 0 33.3333%;
    margin: 0;
  }
  main .caseSec .caseOwl {
    padding: 20px 50px;
  }
  main .caseSec .caseOwl .picBox {
    width: 90%;
  }
  .contactBottom .contacttopBox {
    flex-direction: row;
  }
  .contactBottom .contacttopBox .picBox {
    padding: 0;
    text-align: left;
  }
  .contactBottom .contacttopBox .picBox img {
    max-width: 200px;
  }
  .contactBottom .contacttopBox .textBox i {
    font-size: 22px;
    width: 42px;
  }
  .contactBottom .contacttopBox .textBox a {
    font-size: 35px;
  }
  .contactBottom .contactBox {
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 10px;
  }
  .contactBottom .contactBox .contCenter {
    max-width: 600px;
  }
  footer {
    font-size: 16px;
  }
  aside {
    right: 10px;
    transform: scale(1);
  }
  main .aboutPage .about-contact .title h5 br {
    display: none;
  }
  main .aboutPage .about-contact .title a {
    font-size: 18px;
  }
  main .servicePage .processBox .rowBox {
    flex-direction: row;
    align-items: start;
  }
  main .servicePage .processBox .rowBox .textBox {
    flex: 0 0 calc(33.3333% - 10px);
    margin: 5px;
    min-height: 300px;
  }
  main .servicePage .specialBox {
    padding: 80px 0;
  }
  main .servicePage .specialBox .textBox .contentBox {
    row-gap: 30px;
  }
  main .servicePage .specialBox .textBox .contentBox .text {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 800px;
  }
  main .servicePage .specialBox .textBox .contentBox .text .title-s {
    padding-left: 15px;
    font-size: 20px;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
  }
  main .servicePage .specialBox .textBox .contentBox .text .content-s {
    padding-left: 30px;
    font-size: 18px;
  }
  main .servicePage .noticeBox {
    padding: 80px 15px;
  }
  main .servicePage .noticeBox .rowBox {
    grid-template-columns: 1fr 1fr; /* 雙欄 */
  }
  main .servicePage .noticeBox .rowBox .contentBox h4 {
    margin-bottom: 25px;
  }
  main .servicePage .noticeBox .rowBox .contentBox h4 i {
    margin-right: 10px;
  }
  main .servicePage .noticeBox .rowBox .contentBox ul {
    margin-bottom: 25px;
  }
  main .servicePage .noticeBox .rowBox .contentBox ul li {
    font-size: 18px;
    margin-bottom: 10px;
  }
  main .servicePage .noticeBox .rowBox .contentBox p {
    line-height: 1.8;
  }
  main .servicePage .contactBox {
    padding: 80px 15px;
  }
  main .servicePage .contactBox .rowBox {
    flex-direction: row;
    justify-content: center;
  }
  main .servicePage .contactBox .rowBox .contact-btn {
    flex: 1;
  }
  main .servicePage .contactBox .contact-note {
    margin: 60px 0 20px;
    font-size: 17px;
  }
  main .processPage .contentBox .rowBox .iconBox {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    margin: 70px auto;
  }
  main .processPage .contentBox .rowBox .iconBox img {
    margin: 0;
    max-width: 140px;
    max-height: 130px;
  }
  main .processPage .contentBox .rowBox .iconBox .textBox {
    min-width: 460px;
  }
  main .processPage .contentBox .rowBox .iconBox .textBox h5 i {
    left: 15%;
    top: -4%;
  }
  main .processPage .contentBox .rowBox .iconBox i.bi-chevron-down {
    left: 45%;
    bottom: -40%;
  }
  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% - 20px);
    margin: 10px;
  }
  main .casePage .contentBox .rowBox .content .textBox {
    padding: 10px;
  }
  main .casePage .contentBox .rowBox .content .textBox h5 {
    font-size: 18px;
  }
  main .pricePage .table-container table {
    font-size: 16px;
  }
  main .pricePage .table-container table .dashed-line {
    font-size: 16px;
  }
  main .pricePage .note {
    font-size: 16px;
  }
  main .contactPage .contactBox .content {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  main .contactPage .contactBox .content .map img {
    top: -17%;
    max-width: 700px;
  }
  main .contactPage .contactBox .content .textBox {
    padding-left: 40px;
    margin: 10px 0;
  }
  main .contactPage .contactBox .content .textBox .iconBox {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 992px) {
  div.carouselSlide .carousel-item .carousel-text {
    background-color: rgba(247, 247, 247, 0.3843137255);
  }
  main .aboutSec {
    padding: 150px 0;
  }
  main .aboutSec .rowBox .textBox {
    max-width: 400px;
  }
  main .aboutSec .rowBox .textBox h6 {
    font-size: 18px;
  }
  main .aboutSec .rowBox .textBox h5 {
    font-size: 26px;
  }
  main .aboutSec .rowBox .textBox .line-with-cut {
    margin-bottom: 30px;
  }
  main .aboutSec .rowBox .textBox p {
    margin-bottom: 25px;
  }
  main .serviceSec .title h5 br {
    display: none;
  }
  main .serviceSec .rowBox {
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
  }
  main .serviceSec .rowBox .contentBox {
    flex-direction: column;
  }
  main .serviceSec .rowBox .contentBox .pic {
    padding: 10px;
  }
  main .serviceSec .rowBox .contentBox .textBox {
    padding: 0 35px 0 15px;
  }
  main .serviceSec .rowBox .contentBox .textBox h6 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  main .testimonialSec .title {
    padding: 35px 0;
  }
  main .testimonialSec .testimonialOwl {
    padding: 80px 30px;
  }
  main .processSec {
    padding: 50px 0;
    background-image: url(../images/process-bg.jpg);
    background-size: cover;
  }
  main .processSec .title {
    max-width: 1000px;
  }
  main .processSec .contentBox {
    padding-bottom: 70px;
  }
  main .processSec .contentBox .rowBox {
    max-width: 1100px;
    padding: 50px 0;
  }
  main .processSec .contentBox .rowBox .iconBox {
    flex: 0 0 20%;
    padding: 0 15px;
  }
  main .processSec .contentBox .rowBox .iconBox .picBox {
    min-height: 130px;
    margin-bottom: 5px;
  }
  main .processSec .contentBox .rowBox .iconBox .picBox img {
    width: auto;
    height: 70%;
    max-width: 120px;
    max-height: 100px;
  }
  main .processSec .contentBox .rowBox .iconBox .process-arrow {
    right: -4%;
  }
  main .caseSec .caseOwl {
    max-width: 1400px;
  }
  main .caseSec .caseOwl .owl-nav .owl-prev,
  main .caseSec .caseOwl .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
  .contactBottom .contactBox .contCenter {
    padding: 0 15px 0 0;
  }
  .contactBottom .contactBox .contRight iframe {
    height: 300px;
  }
  main .aboutPage .about-content {
    flex-direction: row-reverse;
    justify-content: start;
    align-items: center;
    padding: 0;
  }
  main .aboutPage .about-content .textBox {
    padding: 0 15px 0 0;
    margin: 0;
    margin-left: -100px;
    z-index: 1;
  }
  main .aboutPage .about-content .picBox {
    height: 500px;
    overflow: hidden;
  }
  main .aboutPage .about-content .picBox img {
    height: 100%;
    width: auto;
    -o-object-fit: cover;
       object-fit: cover; /* 若你想讓圖片填滿並裁切 */
    display: block; /* 避免底部空隙 */
  }
  main .aboutPage .about-contact a {
    letter-spacing: 2px;
  }
  main .servicePage .serviceBox {
    padding: 100px 0;
    background-position: center 30%;
  }
  main .servicePage .serviceBox .textBox {
    max-width: 950px;
  }
  main .servicePage .serviceBox .textBox .title .line-with-cut {
    margin-bottom: 60px;
  }
  main .servicePage .serviceBox .textBox .text p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  main .servicePage .serviceBox .textBox .text h6 {
    margin: 60px 0;
    font-size: 22px;
  }
  main .servicePage .processBox {
    padding: 100px 0;
  }
  main .servicePage .processBox .rowBox {
    max-width: 1000px;
    margin: 10px auto;
  }
  main .servicePage .processBox .rowBox .textBox {
    flex: 0 0 calc(33.3333% - 20px);
    margin: 10px;
    min-height: 270px;
  }
  main .servicePage .specialBox {
    padding: 100px 0;
    background-position: center 30%;
  }
  main .servicePage .noticeBox {
    padding: 100px 0;
  }
  main .servicePage .noticeBox .title .line-with-cut {
    margin-bottom: 60px;
  }
  main .servicePage .noticeBox .rowBox {
    max-width: 1100px;
    gap: 35px;
  }
  main .servicePage .noticeBox .rowBox .contentBox h4 i {
    font-size: 30px;
    margin-right: 20px;
  }
  main .servicePage .noticeBox .rowBox .contentBox p {
    font-size: 17px;
  }
  main .servicePage .contactBox {
    padding: 120px 15px;
  }
  main .servicePage .contactBox .rowBox {
    max-width: 1000px;
  }
  main .servicePage .contactBox .rowBox .contact-btn {
    flex: 1;
  }
  main .servicePage .contactBox .rowBox .contact-btn i {
    font-size: 35px;
    margin-right: 25px;
  }
  main .servicePage .contactBox .rowBox .contact-btn .info {
    row-gap: 10px;
  }
  main .servicePage .contactBox .rowBox .contact-btn .info .label {
    font-size: 16px;
  }
  main .servicePage .contactBox .rowBox .contact-btn .info .value {
    font-size: 18px;
  }
  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 .processPage .contentBox .rowBox .iconBox {
    min-width: 630px;
  }
  main .processPage .contentBox .rowBox .iconBox .textBox {
    width: 520px;
  }
  main .contactPage .contactBox .content .map img {
    top: -20%;
  }
  main .contactPage .contactBox .content .textBox {
    padding-left: 70px;
  }
  main .contactPage .contactBox .content .textBox .text h5.title-h5, main .contactPage .contactBox .content .textBox .text p {
    letter-spacing: 1px;
  }
  main .contactPage .contactBox .content .textBox h5 {
    letter-spacing: 1px;
  }
  main .contactPage .contactBox .content .textBox .iconBox {
    gap: 20px;
  }
  main .contactPage .contactBox .content .textBox .iconBox i {
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
@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 .processSec .contentBox .rowBox .iconBox {
    flex: 0 0 20%;
  }
  .contactBottom .contacttopBox .picBox {
    padding-left: 70px;
  }
  .contactBottom .contactBox {
    gap: 20px;
  }
  .contactBottom .contactBox .contCenter {
    padding-left: 50px;
  }
  .contactBottom .contactBox .contCenter p {
    letter-spacing: 2px;
  }
  main .aboutPage .about-content {
    align-items: center;
    padding-top: 0;
  }
  main .aboutPage .about-content .textBox {
    margin-left: -150px;
  }
  main .aboutPage .about-content .textBox h6 {
    font-size: 18px;
  }
  main .aboutPage .about-content .textBox h5 {
    font-size: 26px;
  }
  main .aboutPage .about-content .textBox .line-with-cut {
    margin-bottom: 30px;
  }
  main .aboutPage .about-content .textBox p {
    margin-bottom: 30px;
  }
  main .aboutPage .about-content .textBox .text-bottom {
    margin-bottom: 50px;
  }
  main .aboutPage .about-content .picBox {
    height: 650px;
  }
  main .servicePage .rowBox {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
  }
  main .servicePage .rowBox .iconBox img {
    width: 40%;
    max-width: 150px;
  }
  main .servicePage .rowBox .iconBox .textBox h5 {
    font-size: 22px;
  }
  main .casePage .contentBox .rowBox {
    max-width: 1200px;
  }
  main .casePage .contentBox .rowBox .content {
    flex: 0 0 calc(33.3333% - 10px);
    margin: 10px 5px;
  }
  main .pricePage .table-container {
    max-width: 1300px;
    margin: 0 auto;
  }
  main .pricePage .table-container table {
    font-size: 18px;
  }
  main .pricePage .table-container table th, main .pricePage .table-container table td {
    padding: 15px 10px;
  }
  main .pricePage .table-container table .dashed-line {
    font-size: 18px;
  }
  main .pricePage .note {
    font-size: 18px;
    max-width: 1300px;
    margin: 20px auto;
  }
  main .contactPage .contactBox .content .map img {
    top: -25%;
  }
}
@media only screen and (min-width: 1900px) {
  main .aboutPage .about-content .textBox {
    margin-left: -150px;
  }
  main .aboutPage .about-content .textBox .text-bottom {
    margin-bottom: 60px;
  }
  main .aboutPage .about-content .picBox {
    height: 750px;
  }
}/*# sourceMappingURL=style.css.map */