@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");
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: "Red Hat Text", "Noto Sans TC", "微軟正黑體";
}

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-bottom: 5px;
  margin: 0;
}

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

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

a:hover {
  color: #708293;
}

:root {
  --color1: #1e3764;
  --color2: #d2be82;
  --color3: #dde3ef;
}

.fcwhite {
  color: #fff;
}

.fcblack {
  color: #000;
}

.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 {
  margin: 10px 0;
}
.title-center p {
  margin: 10px 0;
}

.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;
  cursor: pointer;
}

.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: #000;
  float: left;
  padding: 8px 10px;
  text-decoration: none;
  line-height: 1.5;
}
.pagination ul a.active {
  background-color: #1e3764;
  color: #fff;
  font-weight: 700;
}
.pagination ul li:hover a {
  background-color: #1e3764;
  color: #fff;
  font-weight: 700;
}

.topBox {
  background-image: url(../images/top-pic.jpg);
  background-size: cover;
  background-position: 50% center;
  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: #1e3764;
  font-weight: 700;
}
.topBox section {
  flex: none;
}

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

.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: 20px 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: 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: 50px;
  }
  .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 h3 {
    font-size: 30px;
  }
  body {
    padding-top: 80px;
  }
}
@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: 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-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;
}
div.carouselSlide .carousel {
  position: relative;
}
div.carouselSlide .carousel-text {
  width: 100%;
  position: absolute;
  display: flex;
  text-align: center;
  justify-content: center;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
div.carouselSlide .carousel-text .link-btn {
  width: 8em;
  border-radius: 30px;
  border: 1px solid #c586a4;
  background-color: #fff;
  color: #c586a4;
  padding: 8px 0;
  margin-bottom: 0;
}
div.carouselSlide .carousel-text .link-btn:hover {
  color: #fff;
  background-color: #c586a4;
}

main .serviceSec {
  width: 100%;
  padding: 50px 0;
}
main .serviceSec .title {
  margin: 0 auto;
}
main .serviceSec .title img {
  width: 70%;
  max-width: 350px;
  margin-bottom: 20px;
}
main .serviceSec .title h6 {
  font-weight: normal;
  line-height: 1.5;
}
main .serviceSec .flexBox {
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: flex-start;
  row-gap: 10px;
}
main .serviceSec .flexBox .contentBox {
  padding: 0 10px 10px;
  border: 1px solid #1e3764;
  margin: 5px;
  flex: 0 0 calc(50% - 10px);
  border-radius: 10px;
}
main .serviceSec .flexBox .contentBox .picBox {
  min-height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .serviceSec .flexBox .contentBox .picBox img {
  width: auto;
  max-height: 45px;
}
main .serviceSec .flexBox .contentBox .bigPic img {
  max-height: 38px;
}
main .serviceSec .flexBox .contentBox .textBox {
  text-align: center;
}
main .serviceSec .flexBox .contentBox .textBox h5,
main .serviceSec .flexBox .contentBox .textBox p {
  color: #1e3764;
}
main .serviceSec .flexBox .contentBox:hover {
  background-color: #1e3764;
  transition: all 0.8s ease;
}
main .serviceSec .flexBox .contentBox:hover .textBox h5,
main .serviceSec .flexBox .contentBox:hover .textBox p {
  color: #fff;
}
main .serviceSec .flexBox .contentBox:nth-of-type(1):hover .picBox img {
  content: url("../images/service-icon1-w.png");
}
main .serviceSec .flexBox .contentBox:nth-of-type(2):hover .picBox img {
  content: url("../images/service-icon2-w.png");
}
main .serviceSec .flexBox .contentBox:nth-of-type(3):hover .picBox img {
  content: url("../images/service-icon3-w.png");
}
main .serviceSec .flexBox .contentBox:nth-of-type(4):hover .picBox img {
  content: url("../images/service-icon4-w.png");
}
main .serviceSec .flexBox .contentBox:nth-of-type(5):hover .picBox img {
  content: url("../images/service-icon5-w.png");
}
main .serviceSec .flexBox .contentBox:nth-of-type(6):hover .picBox img {
  content: url("../images/service-icon6-w.png");
}
main .serviceSec .flexBox .contentBox:nth-of-type(7):hover .picBox img {
  content: url("../images/service-icon7-w.png");
}
main .serviceSec .flexBox .contentBox:nth-of-type(8):hover .picBox img {
  content: url("../images/service-icon8-w.png");
}
main .aboutSec {
  width: 100%;
  padding: 50px 0;
  background-image: url(../images/about-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
main .aboutSec .title-center {
  margin-bottom: 70px;
}
main .aboutSec .title-center h4 {
  color: #fff;
}
main .aboutSec .title-center hr {
  width: 5em;
  border: 1px solid #d2be82;
  margin: 0 auto;
}
main .aboutSec .title-center p {
  color: #d2be82;
}
main .aboutSec .flexBox {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: flex-start;
  align-items: end;
  row-gap: 10px;
}
main .aboutSec .flexBox .contentBox {
  padding: 0 0 10px;
}
main .aboutSec .flexBox .contentBox img {
  width: 80%;
  margin-bottom: 10px;
  max-width: 200px;
}
main .aboutSec .flexBox .contentBox .textBox {
  padding: 0 10px;
  text-align: center;
  height: 13em;
}
main .aboutSec .flexBox .contentBox .textBox h5 {
  color: #fff;
  margin-bottom: 10px;
}
main .aboutSec .flexBox .contentBox .textBox p {
  color: #fff;
  max-width: 250px;
  margin: 0 auto;
}
main .processSec {
  background-image: url(../images/process-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  padding: 50px 0;
}
main .processSec .contentBox {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .processSec .contentBox .titlePic {
  width: 70%;
  max-width: 350px;
  margin: 20px 0;
}
main .processSec .contentBox .textBox {
  position: relative;
}
main .processSec .contentBox .textBox .text {
  display: flex;
  align-items: center;
  margin: 15px 0;
  gap: 20px;
}
main .processSec .contentBox .textBox .text img {
  width: 50px;
  height: 50px;
  margin: 0;
  z-index: 1;
}
main .processSec .contentBox .textBox .text .step h5 {
  color: #1e3764;
}
main .processSec .contentBox .textBox::after {
  content: "";
  position: absolute;
  width: 2px;
  background-color: #000;
  top: 15px;
  left: 25px;
  height: 80%;
  z-index: 0;
}
main .productSec {
  padding: 50px 0;
}
main .productSec .title-center h4 {
  color: #1e3764;
}
main .productSec .title-center hr {
  width: 5em;
  border: 1px solid #d2be82;
  margin: 0 auto;
}
main .productSec .flexBox {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 10px;
}
main .productSec .flexBox .contentBox {
  margin: 5px;
  padding: 5px;
  flex: 0 0 calc(50% - 10px);
  /* hover / focus 狀態顯示效果（鍵盤或手機點擊一樣會觸發 focus-within） */
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
}
main .productSec .flexBox .contentBox .picBox {
  margin-bottom: 15px;
  /* 黑色透明遮罩 */
  /* 右上角「+」 */
}
main .productSec .flexBox .contentBox .picBox .boximg1x1 {
  border-radius: 15px;
}
main .productSec .flexBox .contentBox .picBox .boximg1x1 img {
  transition: transform 1s ease;
  /* 變慢：1秒 */
}
main .productSec .flexBox .contentBox .picBox .boximg1x1::after {
  content: "";
  position: absolute;
  inset: 0;
  /* 等同 top/right/bottom/left 全為 0 */
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  /* 不擋連結點擊 */
  z-index: 1;
}
main .productSec .flexBox .contentBox .picBox .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: #d2be82;
  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 .productSec .flexBox .contentBox .picBox:hover .boximg1x1::after,
main .productSec .flexBox .contentBox .picBox:focus-within .boximg1x1::after {
  opacity: 1;
}
main .productSec .flexBox .contentBox .picBox:hover .boximg1x1::before,
main .productSec .flexBox .contentBox .picBox:focus-within .boximg1x1::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  /* 保持 translate */
}
main .productSec .flexBox .contentBox .picBox:hover .boximg1x1 img,
main .productSec .flexBox .contentBox .picBox:focus-within .boximg1x1 img {
  filter: brightness(0.85);
  transform: translate(-50%, -50%) scale(1.2);
  /* 注意：合併在一起 */
}
main .productSec .flexBox .contentBox .textBox {
  padding: 0 10px;
  text-align: center;
}
main .productSec .flexBox .contentBox .textBox h5 {
  color: #1e3764;
}
main .contactSec {
  background-image: url(../images/contact-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  padding: 70px 0 0;
}
main .contactSec .contentBox .textBox {
  margin: 20px auto;
}
main .contactSec .contentBox .textBox img {
  width: 70%;
  max-width: 300px;
  margin-bottom: 20px;
}
main .contactSec .contentBox .textBox h5 {
  font-weight: 300;
  line-height: 1.4;
  margin: 10px 0;
}
main .contactSec .contentBox .textBox .link-btn:hover {
  content: url("../images/contact-btn-w.png");
}
main .newSec {
  width: 100%;
  padding: 30px 0;
  margin-bottom: 50px;
  border-bottom: 1px solid #b0b0b0;
}
main .newSec .contentOwl {
  padding: 10px 40px 20px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  /* hover / focus 狀態顯示效果（鍵盤或手機點擊一樣會觸發 focus-within） */
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
}
main .newSec .contentOwl .picBox {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  /* 黑色透明遮罩 */
  /* 右上角「+」 */
}
main .newSec .contentOwl .picBox .boximg1x1 {
  border-radius: 15px;
}
main .newSec .contentOwl .picBox .boximg1x1 img {
  transition: transform 1s ease;
  /* 變慢：1秒 */
}
main .newSec .contentOwl .picBox .boximg1x1::after {
  content: "";
  position: absolute;
  inset: 0;
  /* 等同 top/right/bottom/left 全為 0 */
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  /* 不擋連結點擊 */
  z-index: 1;
}
main .newSec .contentOwl .picBox .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: #d2be82;
  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 .newSec .contentOwl .picBox p {
  color: #71747a;
  margin-top: 10px;
}
main .newSec .contentOwl .picBox h5 {
  color: #1e3764;
  margin: 10px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
main .newSec .contentOwl .picBox h6 {
  color: #71747a;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
main .newSec .contentOwl .picBox:hover .boximg1x1::after,
main .newSec .contentOwl .picBox:focus-within .boximg1x1::after {
  opacity: 1;
}
main .newSec .contentOwl .picBox:hover .boximg1x1::before,
main .newSec .contentOwl .picBox:focus-within .boximg1x1::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  /* 保持 translate */
}
main .newSec .contentOwl .picBox:hover .boximg1x1 img,
main .newSec .contentOwl .picBox:focus-within .boximg1x1 img {
  filter: brightness(0.85);
}
main .newSec .contentOwl .picBox:hover .boximg1x1 img,
main .newSec .contentOwl .picBox:focus-within .boximg1x1 img {
  transform: translate(-50%, -50%) scale(1.2);
  /* 注意：合併在一起 */
}
main .newSec .contentOwl .owl-carousel {
  position: relative;
  overflow: visible;
}
main .newSec .contentOwl .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
}
main .newSec .contentOwl .owl-nav .owl-prev,
main .newSec .contentOwl .owl-nav .owl-next {
  position: absolute;
  width: 30px;
  height: 30px;
  color: #1e3764;
  font-size: 14px;
  line-height: 30px;
  border-radius: 50%;
  border: 1px solid #1e3764;
}
main .newSec .contentOwl .owl-nav .owl-next {
  right: 0;
}
main .newSec .contentOwl .owl-nav .owl-prev:hover,
main .newSec .contentOwl .owl-nav .owl-next:hover {
  color: #fff;
  background-color: #1e3764;
}
main .newSec .contentOwl .owl-carousel .owl-item {
  max-width: 400px;
}
main .newSec .contentOwl .owl-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  flex-direction: row !important;
  position: relative;
}
main .newSec .contentOwl .owl-dots .owl-dot {
  display: inline-block;
}
main .newSec .contentOwl .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #999;
  display: block;
  border-radius: 50%;
}
main .newSec .contentOwl .owl-dots .owl-dot.active span {
  background: #333;
}
main .caseSec {
  border-bottom: none;
}
main .caseSec .title-center h4 {
  color: #1e3764;
}
main .caseSec .title-center hr {
  width: 5em;
  border: 1px solid #d2be82;
  margin: 0 auto;
}
main .caseSec .picBox:hover p {
  color: #1e3764;
}

.contactBottom {
  padding: 32px 0;
  background-color: #173851;
}
.contactBottom .contactBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
}
.contactBottom .contactBox .contLeft {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contactBottom .contactBox .contLeft img {
  width: 50%;
  max-width: 250px;
  height: auto;
}
.contactBottom .contactBox .contCenter {
  padding: 0 15px;
}
.contactBottom .contactBox .contCenter h6 {
  color: #d2be82;
}
.contactBottom .contactBox .contCenter img {
  margin: 10px 0;
}
.contactBottom .contactBox .contCenter p {
  line-height: 2;
  margin: 10px 0;
  display: flex;
  color: #fff;
}
.contactBottom .contactBox .contCenter p span {
  display: inline-flex;
  align-items: center;
  width: 2em;
  white-space: nowrap;
}
.contactBottom .contactBox .contCenter p span i {
  text-align: center;
  width: 1.5em;
  color: #d2be82;
}
.contactBottom .contactBox .contRight {
  padding: 10px 15px;
}
.contactBottom .contactBox .contRight h6 {
  color: #d2be82;
}
.contactBottom .contactBox .contRight p {
  color: #fff;
}

footer {
  line-height: 3;
  font-size: 14px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  background-color: #041c30;
}

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 .about-content {
  margin-bottom: 15px;
}
main .aboutPage .contentBox .about-content .picBox {
  margin: 0 auto 40px;
}
main .aboutPage .contentBox .about-content .textBox {
  margin: 10px auto 40px;
  padding: 0 10px;
}
main .aboutPage .contentBox .about-content .textBox img {
  width: 100%;
  max-width: 400px;
  margin-bottom: 30px;
}
main .aboutPage .contentBox .about-content .textBox ul {
  padding-left: 10px;
}
main .aboutPage .contentBox .about-content .textBox ul li {
  list-style: inside;
  margin-bottom: 5px;
}
main .aboutPage .processSec .contentBox .textBox {
  padding-right: 20px;
  max-width: 500px;
}
main .aboutPage .processSec .contentBox .textBox .text {
  margin: 20px 0;
}
main .aboutPage .processSec .contentBox .textBox .text .step a {
  font-size: 14px;
}
main .aboutPage .processSec .contentBox .textBox::after {
  top: 65px;
}

main .servicePage .contentBox {
  padding: 20px 0 60px;
  line-height: 1.8;
}
main .servicePage .contentBox .service-item {
  display: flex;
  flex-direction: column;
  margin: 40px 0;
  row-gap: 30px;
  position: relative;
}
main .servicePage .contentBox .service-item .service-img {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}
main .servicePage .contentBox .service-item .service-img img {
  width: 100%;
}
main .servicePage .contentBox .service-item .service-img .button-shadow {
  position: absolute;
  bottom: -40px;
  left: -20px;
  width: 60%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #dde3ef;
  z-index: -1;
  transition: all 0.8s ease;
}
main .servicePage .contentBox .service-item .service-text {
  max-width: 400px;
  margin: 0 auto;
  padding: 10px;
}
main .servicePage .contentBox .service-item .service-text h6 {
  color: #2b2a2a;
  margin: 10px 0;
}
main .servicePage .contentBox .service-item .service-text ul {
  margin-top: 20px;
  color: #333;
  border: 2px dotted #1e3764;
  border-radius: 15px;
  padding: 15px 10px;
  background-color: #f7f6f6;
}
main .servicePage .contentBox .service-item .service-text ul li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}
main .servicePage .contentBox .service-item .service-text ul li b {
  font-weight: 600;
}
main .servicePage .contentBox .service-item .service-text ul li:last-child {
  margin-bottom: 0;
}
main .servicePage .contentBox .service-item .service-text p {
  color: #2b2a2a;
  margin-top: 20px;
}
main .servicePage .contentBox .service-item .service-text .link-btn {
  width: 14em;
}
main .servicePage .contentBox .service-item .service-text .link-btn:hover {
  content: url(../images/contact-btn-w.png);
}

main .productPage .product-container {
  margin: 0 auto;
  overflow: hidden;
  padding-top: 60px;
}
main .productPage .product-container .product-sidebar {
  margin: 1em auto;
  padding: 10px;
  padding-left: 0;
  max-width: 400px;
}
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 {
  border: 1px solid #ededed;
  background-color: #f5f4f4;
  border-radius: 10px;
}
main .productPage .product-container .product-sidebar ul li {
  line-height: 2;
  padding: 15px 10px;
  cursor: pointer;
  position: relative;
  color: #333;
  border-bottom: 1px solid #ededed;
  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;
}
main .productPage .product-container .product-sidebar ul .aside-dropdown div {
  padding: 10px;
  display: flex;
  align-items: center;
  /* 垂直置中 */
}
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;
  font-size: 24px;
  vertical-align: bottom;
}
main .productPage .product-container .product-sidebar ul .aside-dropdown .submenu {
  display: none;
  border: none;
}
main .productPage .product-container .product-sidebar ul .aside-dropdown .submenu li {
  padding-left: 20px;
  border-bottom: 1px solid #ededed;
}
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: 16px;
  color: #333;
}
main .productPage .product-container .product-sidebar ul .aside-dropdown .submenu li:hover {
  color: #d2be82;
}
main .productPage .product-container .product-sidebar ul .aside-dropdown .submenu li:hover a {
  color: #d2be82;
}
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,
main .productPage .product-container .product-sidebar ul li.filter-btn.active a,
main .productPage .product-container .product-sidebar ul .aside-dropdown:hover div,
main .productPage .product-container .product-sidebar ul .aside-dropdown:hover div a,
main .productPage .product-container .product-sidebar ul .aside-dropdown.active div,
main .productPage .product-container .product-sidebar ul .aside-dropdown.active div a {
  color: #1e3764;
  font-weight: 700;
}
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 .row {
  display: flex;
  justify-content: start;
  margin: 0 auto;
}
main .productPage .product-container .row .product-item {
  margin: 0;
  padding: 0 5px;
  cursor: pointer;
}
main .productPage .product-container .row .product-item .image-wrapper {
  position: relative;
  overflow: hidden;
}
main .productPage .product-container .row .product-item .image-wrapper .boximg1x1 {
  border-radius: 15px;
}
main .productPage .product-container .row .product-item .image-wrapper .boximg1x1 img {
  transition: transform 1s ease;
  /* 變慢：1秒 */
}
main .productPage .product-container .row .product-item .image-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  /* 不擋連結點擊 */
  /* 按鈕樣式 */
}
main .productPage .product-container .row .product-item .image-wrapper .overlay .detail-btn {
  color: #d2be82;
  font-weight: 600;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  transition: background-color 0.3s;
}
main .productPage .product-container .row .product-item .image-wrapper:hover .overlay,
main .productPage .product-container .row .product-item .image-wrapper:active .overlay {
  opacity: 1;
}
main .productPage .product-container .row .product-item .image-wrapper:hover .boximg1x1 img,
main .productPage .product-container .row .product-item .image-wrapper:focus-within .boximg1x1 img {
  filter: brightness(0.85);
  transform: translate(-50%, -50%) scale(1.2);
  /* 注意：合併在一起 */
}
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 .title {
  padding: 3px 7px;
  width: 100%;
  color: #1e3764;
}
main .productPage .product-container .row .card-des {
  padding: 0 3px 0 7px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  color: #666666;
}
main .productPage .product-container .row .product-item:nth-of-type(2n) .title {
  padding: 3px 0;
  padding-right: 3px;
}
main .productPage .product-container .row .product-item:nth-of-type(2n) .card-des {
  padding: 0;
  padding-right: 3px;
}
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;
}

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 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 h5 {
  line-height: 1;
}
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 #808080;
  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:hover {
  content: url("../images/productPage-btn-w.png");
}
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 #4974a5;
  padding: 8px;
  font-size: 18px;
  margin-top: 20px;
  color: #4974a5;
}
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: 1rem auto;
}

main .newalbumPage {
  border-bottom: 1px solid #eae0d9;
}
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 {
  padding: 0 10px;
  /* 黑色透明遮罩 */
  /* 右上角「+」 */
}
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(0, 0, 0, 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: #d2be82;
  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: 0 5px;
}
main .newalbumPage .contentBox .rowBox .content .textBox h5 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #1e3764;
  margin: 10px 0;
}
main .newalbumPage .contentBox .rowBox .content .textBox .time {
  line-height: 1.8;
}
main .newalbumPage .contentBox .rowBox .content .textBox p {
  color: #71747a;
  margin-top: 10px;
}
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 .articlePage {
  background-image: url(../images/article-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 70%;
  background-position: bottom;
  border-bottom: 1px solid #eae0d9;
}
main .articlePage .articleBox {
  margin: 20px auto;
}
main .articlePage .articleBox .articlecontent {
  padding-top: 60px;
}
main .articlePage .link-button {
  display: flex;
  justify-content: flex-start;
  margin: 10px auto;
  padding: 20px;
  gap: 20px;
  max-width: 850px;
}
main .articlePage .link-button .link-btn {
  border-radius: 40px;
  align-items: center;
  justify-content: center;
  font-style: italic;
  color: #242f40;
  border: 1px solid #000;
  width: 9em;
}
main .articlePage .link-button .link-btn:hover {
  background-color: #242f40;
  color: #edb558;
}
main .articlePage .link-button .arrow {
  position: relative;
  display: inline-block;
  /* 讓圓點能定位 */
  z-index: 1;
  font-size: 20px;
  font-style: normal;
}
main .articlePage .link-button .arrow::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #edb558;
  border-radius: 50%;
  left: 75%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.3;
}
main .articlePage .contactBox {
  background-color: #242f40;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}
main .articlePage .contactBox h3 {
  margin: 25px 0;
}
main .articlePage .contactBox a:hover {
  color: #edb558;
}

main .contactPage .title-center {
  margin: 30px auto 10px;
  color: #1e3764;
}
main .contactPage .contactBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 0;
}
main .contactPage .contactBox .text {
  padding: 20px;
}
main .contactPage .contactBox .text h5 {
  width: 5.3em;
  text-align: center;
  padding: 10px;
  margin: 10px 0;
  font-weight: 400;
  color: #fff;
  background-color: #1e3764;
  border-radius: 10px;
}
main .contactPage .contactBox .text p {
  line-height: 2;
}
main .contactPage .contactBox .text p i {
  text-align: center;
  display: inline-block;
  width: 1.7em;
  color: #1e3764;
}
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 .content {
  border: 1px dotted #1e3764;
  border-radius: 10px;
  background-color: #f7f6f6;
  position: relative;
}
main .contactPage .contactBox .content .formBox {
  padding: 20px;
}
main .contactPage .contactBox .content .formBox h5 {
  text-align: center;
  padding: 10px 0;
  margin: 10px 0;
  color: #292b3b;
}
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: 14.5px;
}
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: #00417d;
  outline: none;
}
main .contactPage .contactBox .content .formBox .formgroup textarea {
  resize: vertical;
}
main .contactPage .contactBox .content .formBox .link-btn {
  margin: 0 auto;
  padding: 20px 25px;
}
main .contactPage .contactBox .content .formBox .link-btn button[type=submit] {
  background-color: #1e3764;
  color: white;
  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: #f6f6f6;
  color: #1e3764;
}

@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-control-prev-icon,
  div.carouselSlide .carousel-control-next-icon {
    width: 50px;
    height: 50px;
  }
  div.carouselSlide .carousel-text {
    left: 65%;
    bottom: 20%;
  }
  main .serviceSec {
    padding: 70px 0;
  }
  main .serviceSec .flexBox {
    max-width: 800px;
    margin: 50px auto 20px;
  }
  main .serviceSec .flexBox .contentBox {
    flex: 0 0 calc(33.3333% - 10px);
  }
  main .serviceSec .flexBox .contentBox .picBox {
    min-height: 90px;
  }
  main .serviceSec .flexBox .contentBox .picBox img {
    max-height: 55px;
  }
  main .serviceSec .flexBox .contentBox .bigPic img {
    max-height: 43px;
  }
  main .aboutSec {
    padding: 70px 0;
  }
  main .aboutSec .flexBox {
    max-width: 800px;
    margin: 0 auto;
  }
  main .aboutSec .flexBox .contentBox .textBox {
    padding: 0 20px;
  }
  main .aboutSec .flexBox .contentBox .textBox p {
    max-width: 300px;
  }
  main .processSec {
    display: flex;
  }
  main .processSec .contentBox .titlePic {
    width: 80%;
    max-width: 400px;
  }
  main .processSec .contentBox .textBox .text {
    margin: 20px 0;
  }
  main .processSec .contentBox .textBox .text img {
    width: 80px;
    height: 80px;
  }
  main .processSec .contentBox .textBox::after {
    top: 30px;
    left: 40px;
  }
  main .productSec {
    padding: 70px 0;
  }
  main .productSec .flexBox {
    max-width: 800px;
    margin: 50px auto 20px;
  }
  main .productSec .flexBox .contentBox {
    flex: 0 0 calc(33.3333% - 10px);
  }
  main .newSec .contentOwl {
    padding: 20px 50px;
  }
  main .newSec .contentOwl .picBox {
    width: 90%;
  }
  footer {
    font-size: 16px;
  }
  aside {
    right: 10px;
    transform: scale(1);
  }
  main .aboutPage .contentBox .about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 40px;
  }
  main .aboutPage .contentBox .about-content .picBox,
  main .aboutPage .contentBox .about-content .textBox {
    margin: 0;
  }
  main .aboutPage .contentBox .about-content .picBox {
    text-align: right;
  }
  main .aboutPage .contentBox .about-content .picBox img {
    max-width: 450px;
  }
  main .aboutPage .contentBox .about-content .textBox img {
    max-width: 350px;
  }
  main .aboutPage .contentBox .about-content .textBox ul li {
    margin-bottom: 10px;
  }
  main .aboutPage .processSec .contentBox .textBox {
    padding-right: 0;
    max-width: 550px;
  }
  main .aboutPage .processSec .contentBox .textBox .text .step a {
    font-size: 16px;
  }
  main .servicePage .contentBox .service-item .service-img .button-shadow {
    width: 200px;
    height: 200px;
  }
  main .servicePage .contentBox .service-item .service-text ul {
    padding: 20px 15px;
  }
  main .servicePage .contentBox .service-item .service-text ul li {
    font-size: 16px;
  }
  main .productPage .product-container {
    display: block;
  }
  main .productPage .product-container .product-sidebar {
    max-width: 400px;
    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 20px;
  }
  main .productPage .product-container .row .title {
    font-size: 18px;
  }
  main .productPage .product-container .row .card-des {
    font-size: 14px;
  }
  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 .newalbumPage .contentBox .rowBox {
    justify-content: flex-start;
  }
  main .newalbumPage .contentBox .rowBox .content {
    flex: 0 0 calc(50% - 30px);
    padding: 0;
    margin: 15px;
  }
  main .contactPage .contactBox .text p {
    font-size: 17px;
  }
}
@media only screen and (min-width: 992px) {
  div.carouselSlide .carousel-text .link-btn {
    padding: 15px 0;
    width: 10em;
  }
  main .serviceSec {
    padding: 90px 0;
  }
  main .serviceSec .title {
    max-width: 1100px;
    display: flex;
    justify-content: space-around;
    gap: 20px;
  }
  main .serviceSec .title img {
    max-width: 400px;
  }
  main .serviceSec .flexBox {
    max-width: 1200px;
  }
  main .serviceSec .flexBox .contentBox {
    flex: 0 0 calc(25% - 10px);
  }
  main .serviceSec .flexBox .contentBox .picBox {
    min-height: 100px;
  }
  main .serviceSec .flexBox .contentBox .picBox img {
    max-height: 60px;
  }
  main .serviceSec .flexBox .contentBox .bigPic img {
    max-height: 48px;
  }
  main .serviceSec .flexBox .contentBox .textBox p {
    padding: 10px 30px;
  }
  main .aboutSec {
    padding: 90px 0;
  }
  main .aboutSec .flexBox {
    max-width: 1000px;
  }
  main .aboutSec .flexBox .contentBox {
    max-width: 400px;
  }
  main .aboutSec .flexBox .contentBox .textBox p {
    padding: 0 10px;
  }
  main .processSec {
    display: flex;
  }
  main .processSec .contentBox .titlePic {
    width: 90%;
  }
  main .processSec .contentBox .textBox .text {
    gap: 30px;
  }
  main .processSec .contentBox .textBox .text img {
    width: 90px;
    height: 90px;
  }
  main .processSec .contentBox .textBox .text .step h5 {
    font-weight: 600;
  }
  main .processSec .contentBox .textBox::after {
    left: 45px;
  }
  main .productSec {
    padding: 90px 0;
  }
  main .productSec .flexBox {
    max-width: 1300px;
  }
  main .productSec .flexBox .contentBox {
    flex: 0 0 calc(25% - 10px);
  }
  main .productSec .flexBox .contentBox .textBox p {
    padding: 10px 30px;
  }
  main .contactSec .contentBox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
  }
  main .contactSec .contentBox .textBox {
    margin: 20px 0;
    padding-right: 50px;
  }
  main .newSec .contentOwl {
    max-width: 1400px;
  }
  main .newSec .contentOwl .owl-nav .owl-prev,
  main .newSec .contentOwl .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
  .contactBottom .contactBox {
    gap: 20px;
    max-width: 1700px;
    margin: 0 auto;
  }
  .contactBottom .contactBox .contLeft img {
    width: 70%;
  }
  .contactBottom .contactBox .contCenter {
    max-width: 300px;
  }
  main .aboutPage .processSec .contentBox .textBox {
    max-width: 600px;
  }
  main .servicePage .contentBox .service-item {
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
  main .servicePage .contentBox .service-item .service-img {
    text-align: right;
    margin: 0;
  }
  main .servicePage .contentBox .service-item .service-text {
    margin: 0;
    max-width: 500px;
    padding-right: 55px;
  }
  main .servicePage .contentBox .service-item .service-text ul {
    padding: 25px;
    border: 3px dotted #1e3764;
  }
  main .servicePage .contentBox .service-item .service-text ul li {
    margin-bottom: 20px;
  }
  main .servicePage .contentBox .service-item .service-text ul li:last-child {
    margin-bottom: 0;
  }
  main .servicePage .contentBox .service-item.reverse {
    flex-direction: row-reverse;
  }
  main .servicePage .contentBox .service-item.reverse .service-text {
    padding-left: 55px;
    padding-right: 0;
  }
  main .productPage .product-container {
    display: flex;
  }
  main .productPage .product-container .product-sidebar {
    max-width: 250px;
    margin: 0;
  }
  main .productPage .product-container .row {
    justify-content: start;
  }
  main .productPage .product-container .row .product-item {
    padding: 0 20px;
  }
  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 .newalbumPage .contentBox .rowBox .content .imgWrapper .more {
    font-size: 18px;
  }
  main .articlePage .link-button .link-btn {
    font-size: 18px;
  }
  main .articlePage .contactBox .rowBox {
    display: flex;
    justify-content: space-around;
    max-width: 900px;
    margin: 20px auto;
  }
  main .contactPage .title-center h6 {
    font-size: 18px;
  }
  main .contactPage .contactBox {
    justify-content: center;
    padding-bottom: 100px;
  }
  main .contactPage .contactBox .text {
    max-width: 450px;
    padding-right: 0;
  }
  main .contactPage .contactBox .text p {
    line-height: 2.1;
  }
  main .contactPage .contactBox .content {
    max-width: 600px;
  }
  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-text {
    left: 65%;
    bottom: 25%;
  }
  div.carouselSlide .carousel-text .link-btn {
    padding: 20px 0;
    width: 12em;
  }
  main .serviceSec .flexBox .contentBox .picBox {
    min-height: 130px;
  }
  main .serviceSec .flexBox .contentBox .picBox img {
    max-height: 75px;
  }
  main .serviceSec .flexBox .contentBox .bigPic img {
    max-height: 60px;
  }
  main .contactSec {
    background-size: cover;
  }
  main .aboutPage .contentBox .about-content {
    gap: 50px;
  }
  main .aboutPage .contentBox .about-content .textBox img {
    max-width: 400px;
    margin-bottom: 50px;
  }
  main .aboutPage .contentBox .about-content .textBox ul li {
    font-size: 20px;
    font-weight: 300;
  }
  main .aboutPage .contentBox .about-business {
    padding: 130px 0;
  }
  main .aboutPage .contentBox .about-business .textBox h4 {
    font-size: 28px;
  }
  main .aboutPage .contentBox .about-business .textBox h6 {
    font-size: 20px;
  }
  main .servicePage .contentBox .service-item .service-img {
    max-width: 500px;
  }
  main .servicePage .contentBox .service-item .service-img .button-shadow {
    bottom: -100px;
    left: -70px;
    width: 300px;
    height: 300px;
  }
  main .servicePage .contentBox .service-item .longpic {
    max-width: 400px;
  }
  main .servicePage .contentBox .service-item .service-text {
    max-width: 600px;
  }
  main .productPage .product-list {
    gap: 10px;
  }
  main .productPage .product-container .row {
    gap: 0;
    row-gap: 3rem;
  }
  main .productdetailPage .shopdetail .container {
    max-width: 1250px;
  }
  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;
  }
}
@media only screen and (min-width: 1920px) {
  main .aboutSec .flexBox .contentBox .textBox p {
    padding: 0 25px;
  }
  main .processSec .contentBox .textBox .text img {
    width: 100px;
    height: 100px;
  }
  main .processSec .contentBox .textBox .text .step h5 {
    font-size: 22px;
  }
  main .processSec .contentBox .textBox .textBox::after {
    left: 50px;
  }
}/*# sourceMappingURL=style.css.map */