@charset "UTF-8";
@font-face {
  font-family: "CustomFont";
  src: url("../font/Montserrat-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "CustomFontCollection";
  src: url("../font/GenYoGothic-EL-2.ttc") format("truetype-collection");
  font-weight: normal;
  font-style: normal;
}
/* 針對整個網頁的滾動條樣式 */
::-webkit-scrollbar {
  width: 8px;
  /* 設定滾動條的寬度 */
  height: 8px;
  /* 設定滾動條的高度，主要用於橫向滾動條 */
}

/* 針對滾動條的滑塊樣式 */
::-webkit-scrollbar-thumb {
  background-color: #d81a60;
  /* 設定滑塊的背景顏色 */
  border-radius: 6px;
  /* 設定滑塊的圓角程度 */
}

/* 針對滾動條的軌道樣式 */
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "CustomFont", sans-serif;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

.container1 {
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .container1 {
    max-width: 100%;
    padding: 0 5%;
  }
}

.container2 {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .container2 {
    max-width: 100%;
    padding: 0 5%;
  }
}

.innerPage {
  background: url("../img/inner_page_bg.jpg");
  background-position: top center;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .innerPage {
    background: url("../img//m_inner_page_bg.jpg");
  }
}

.innerPageBanner {
  position: relative;
}
.innerPageBanner .bannerImage {
  width: 100%;
}
.innerPageBanner .bannerCenterLogo {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media (max-width: 1024px) {
  .innerPageBanner .bannerCenterLogo {
    display: none;
  }
}
.innerPageBanner .bannerText {
  display: none;
  width: 100%;
  color: #fff;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}
.innerPageBanner .bannerText p {
  font-size: 42px;
}
.innerPageBanner .bannerText h1 {
  letter-spacing: 4px;
}
@media (max-width: 1024px) {
  .innerPageBanner .bannerText {
    display: block;
  }
}

.innerPageSectionTitle {
  text-align: center;
  padding: 50px 0;
  color: #fb5ea0;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
  .innerPageSectionTitle {
    display: none;
  }
}
.innerPageSectionTitle p {
  font-size: 60px;
  margin-bottom: 20px;
}
.innerPageSectionTitle h2 {
  font-weight: 100;
  font-size: 42px;
  letter-spacing: 4px;
}

.indexSectionTitle {
  text-align: right;
  position: absolute;
  top: 3%;
  right: 5%;
  z-index: 9;
  color: #fff;
}
.indexSectionTitle p {
  font-size: 64px;
}
@media (max-width: 1024px) {
  .indexSectionTitle p {
    font-size: 32px;
  }
}
.indexSectionTitle h2 {
  font-size: 36px;
  font-weight: 100;
}
@media (max-width: 1024px) {
  .indexSectionTitle h2 {
    font-size: 20px;
  }
}

.contactButton {
  position: absolute;
  bottom: 10%;
  left: 50%;
  z-index: 9;
  transform: translate(-50%, -50%);
}
.contactButton a {
  color: #fff;
  background: #fb5ea0;
  font-size: 26px;
  padding: 10px 40px;
  border-radius: 40px;
}
@media (max-width: 1024px) {
  .contactButton a {
    font-size: 16px;
    padding: 10px 20px;
  }
}
.contactButton a:hover {
  background-color: #d81a60;
}

.indexCopyright {
  position: fixed !important;
  bottom: 0;
  left: 0;
  z-index: 9;
  width: 100%;
}
.indexCopyright .google-reCAPTCHA {
  display: none;
}
@media (max-width: 1024px) {
  .indexCopyright {
    display: none;
  }
}

.introduction {
  margin-top: 30px;
}
.introduction p {
  margin-bottom: 10px;
}

.pcMenuButton {
  position: fixed;
  z-index: 10;
  right: 30px;
  top: 30px;
}
@media (max-width: 1024px) {
  .pcMenuButton {
    display: none;
  }
}
.pcMenuButton .menuContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-align: center;
}
.pcMenuButton .menuContainer .bar1,
.pcMenuButton .menuContainer .bar2,
.pcMenuButton .menuContainer .bar3 {
  width: 30px;
  height: 4px;
  background-color: #fb5ea0;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  margin: 3px 0;
  transition: 0.6s;
}
.pcMenuButton .menuContainer:hover .bar1 {
  width: 30px;
  background-color: #fff;
  border-radius: 2px 2px 0 0;
}
.pcMenuButton .menuContainer:hover .bar2 {
  width: 42px;
  background-color: #fff;
  border-radius: 2px;
}
.pcMenuButton .menuContainer:hover .bar3 {
  width: 30px;
  background-color: #fff;
  border-radius: 0 0 2px 2px;
}

.pcMenuContent {
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 10;
  width: 20%;
  height: 100vh;
  background-color: #b31c5c;
  transition: right 0.6s ease;
}
@media (max-width: 1024px) {
  .pcMenuContent {
    display: none;
  }
}
.pcMenuContent .menuTop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  z-index: 19;
  border-radius: 0px 0px 20px 20px;
  background: #f6b3cb;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pcMenuContent .menuTop img {
  width: 180px;
}
.pcMenuContent .menuTop p {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
}
.pcMenuContent .menuTop .closeMenuButton {
  display: inline-block;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}
.pcMenuContent .menuTop .closeMenuButton .bar1,
.pcMenuContent .menuTop .closeMenuButton .bar2 {
  width: 30px;
  height: 4px;
  background-color: #fb5ea0;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  margin: 6px 0;
  transition: 0.6s;
}
.pcMenuContent .menuTop .closeMenuButton .bar1 {
  transform: translate(0, 1px) rotate(-45deg);
}
.pcMenuContent .menuTop .closeMenuButton .bar2 {
  transform: translate(0, -10px) rotate(45deg);
}
.pcMenuContent .menuTop .closeMenuButton:hover .bar1,
.pcMenuContent .menuTop .closeMenuButton:hover .bar2 {
  background-color: #fff;
}
.pcMenuContent .menuLink {
  position: absolute;
  width: 100%;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
  border-radius: 0px 0px 20px 20px;
  height: 12%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 7%;
}
.pcMenuContent .menuLink .leftSide {
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.pcMenuContent .menuLink .leftSide img {
  width: 60px;
}
.pcMenuContent .menuLink .leftSide .linkText {
  color: #fff;
  font-family: "CustomFontCollection", serif;
}
.pcMenuContent .menuLink .leftSide .linkText p:last-child {
  font-size: 14px;
}
.pcMenuContent .menuLink i {
  font-size: 26px;
  color: #fff;
  padding-right: 20px;
}
.pcMenuContent .aboutLink {
  top: 18%;
  left: 0;
  z-index: 17;
  background: #ee84a9;
}
.pcMenuContent .serviceLink {
  top: 28%;
  left: 0;
  z-index: 16;
  background: #e5759e;
}
.pcMenuContent .priceLink {
  top: 38%;
  left: 0;
  z-index: 15;
  background: #dd6693;
}
.pcMenuContent .knowledgeLink {
  top: 48%;
  left: 0;
  z-index: 14;
  background: #d65989;
}
.pcMenuContent .caseLink {
  top: 58%;
  left: 0;
  z-index: 13;
  background: #cd497d;
}
.pcMenuContent .diyLink {
  top: 68%;
  left: 0;
  z-index: 12;
  background: #c33971;
}
.pcMenuContent .contactLink {
  top: 78%;
  left: 0;
  z-index: 11;
  background: #bb2a66;
}
.pcMenuContent .serviceMenuContent {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
}
.pcMenuContent .serviceMenuContent.serviceListBox-animate .backLink {
  transform: translateY(0);
}
.pcMenuContent .serviceMenuContent.serviceListBox-animate .serviceListBox {
  transform: translateX(0);
  opacity: 1;
}
.pcMenuContent .serviceMenuContent:not(.serviceListBox-animate) .backLink {
  transform: translateY(100%);
}
.pcMenuContent .serviceMenuContent:not(.serviceListBox-animate) .serviceListBox {
  transform: translateY(200%);
  opacity: 0;
}
.pcMenuContent .serviceMenuContent .backLink {
  position: absolute;
  width: 100%;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
  border-radius: 0px 0px 20px 20px;
  height: 12%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 7%;
  top: 18%;
  left: 0;
  z-index: 18;
  background: #e5759e;
  transition: all 0.6s;
}
.pcMenuContent .serviceMenuContent .backLink .leftSide {
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.pcMenuContent .serviceMenuContent .backLink .leftSide img {
  width: 60px;
}
.pcMenuContent .serviceMenuContent .backLink .leftSide .linkText {
  color: #fff;
  font-family: "CustomFontCollection", serif;
}
.pcMenuContent .serviceMenuContent .backLink .leftSide .linkText p:last-child {
  font-size: 14px;
}
.pcMenuContent .serviceMenuContent .backLink i {
  font-size: 26px;
  color: #fff;
  padding-right: 20px;
}
.pcMenuContent .serviceMenuContent .serviceListBox {
  position: absolute;
  width: 100%;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
  border-radius: 0px 0px 20px 20px;
  height: 12%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5%;
}
.pcMenuContent .serviceMenuContent .serviceListBox a {
  display: block;
  margin: 0px 3px;
  padding: 15px;
  width: 30%;
  text-align: center;
  border-radius: 10px;
}
.pcMenuContent .serviceMenuContent .serviceListBox a span {
  font-weight: bold;
  font-size: 16px;
}
.pcMenuContent .serviceMenuContent .listBox1 {
  top: 28%;
  left: 0;
  z-index: 17;
  background: #ee84a9;
}
.pcMenuContent .serviceMenuContent .listBox1 a span {
  color: #dd2166;
}
.pcMenuContent .serviceMenuContent .listBox2 {
  top: 38%;
  left: 0;
  z-index: 16;
  background: #e5759e;
}
.pcMenuContent .serviceMenuContent .listBox2 a span {
  color: #d13c73;
}
.pcMenuContent .serviceMenuContent .listBox3 {
  top: 48%;
  left: 0;
  z-index: 15;
  background: #dd6693;
}
.pcMenuContent .serviceMenuContent .listBox3 a span {
  color: #d2346e;
}
.pcMenuContent .serviceMenuContent .listBox4 {
  top: 58%;
  left: 0;
  z-index: 14;
  background: #d65989;
}
.pcMenuContent .serviceMenuContent .listBox4 a span {
  color: #f9b1cb;
}
.pcMenuContent .serviceMenuContent .listBox5 {
  top: 68%;
  left: 0;
  z-index: 13;
  background: #cd497d;
}
.pcMenuContent .serviceMenuContent .listBox5 a span {
  color: #f5e7ec;
}
.pcMenuContent .serviceMenuContent .listBox6 {
  top: 78%;
  left: 0;
  z-index: 12;
  background: #c33971;
}
.pcMenuContent .serviceMenuContent .listBox6 a span {
  color: #fff;
}

.pcMenuButton {
  transition: all 0.6s ease;
}

.menuButton-animate {
  transform: translate(50px, -50px);
  opacity: 0;
}

.menuContent-animate {
  right: 0;
}

.menuTop {
  transform: translateX(100%);
  transition: transform 0.6s ease;
}

.menuTop-animate {
  transform: translateX(0);
}

.menuLink {
  transform: translateX(100%);
  transition: transform 0.6s ease;
}

.menuLink-animate {
  transform: translateX(0);
}

.serviceListBox {
  transform: translateX(100%);
  transition: transform 0.6s ease;
}

.serviceListBox-animate {
  transform: translateX(0);
}

.mobileMenuButtons {
  position: fixed;
  background: #ffeeeb;
  bottom: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  justify-content: space-between;
  padding: 5px 10px;
  border-radius: 20px 20px 0 0;
  opacity: 1;
  transition: opacity 0.5s ease;
  display: none;
}
@media (max-width: 1024px) {
  .mobileMenuButtons {
    display: flex;
  }
}
.mobileMenuButtons .mobileMenuLink {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffeeeb;
  border-radius: 50%;
  padding: 5px;
  transition: all 0.3s;
  transform: translateY(0%);
}
.mobileMenuButtons .mobileMenuLink img {
  width: 40px;
}
.mobileMenuButtons .mobileMenuLink .linkText {
  font-size: 12px;
  color: #fb5ea0;
  font-weight: bold;
}
.mobileMenuButtons .mobilePhoneLink.active,
.mobileMenuButtons .mobileLineLink.active,
.mobileMenuButtons .mobileMenuLink.active,
.mobileMenuButtons .mobileMessageLink.active,
.mobileMenuButtons .mobileFreeLink.active {
  transform: translateY(-30%);
}

.mobileMenuButtons.hidden {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.mobileMainMenu {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 98;
  transition: all 0.3s ease;
}
.mobileMainMenu .mainMenuContent {
  background: #b31c5c;
  position: fixed;
  top: 0;
  right: -100%;
  opacity: 0;
  z-index: 18;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.mobileMainMenu .mainMenuContent .mobile_menuLink {
  width: 100%;
  height: 15%;
  padding-top: 8%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0px 0px 20px 20px;
  right: -100%;
  transition: all 0.3s;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
}
.mobileMainMenu .mainMenuContent .mobile_menuLink .leftSide {
  display: flex;
  align-items: center;
}
.mobileMainMenu .mainMenuContent .mobile_menuLink .leftSide img {
  width: 70px;
}
.mobileMainMenu .mainMenuContent .mobile_menuLink .leftSide .linkText {
  color: #fff;
}
.mobileMainMenu .mainMenuContent .mobile_menuLink .leftSide .linkText p:first-child {
  font-size: 18px;
}
.mobileMainMenu .mainMenuContent .mobile_menuLink i {
  font-size: 24px;
  color: #fff;
}
.mobileMainMenu .mainMenuContent .aboutLink {
  position: absolute;
  top: 0%;
  z-index: 97;
  background: #ee84a9;
}
.mobileMainMenu .mainMenuContent .serviceLink {
  position: absolute;
  top: 11%;
  z-index: 96;
  background: #e5759e;
}
.mobileMainMenu .mainMenuContent .priceLink {
  position: absolute;
  top: 22%;
  z-index: 95;
  background: #dd6693;
}
.mobileMainMenu .mainMenuContent .knowledgeLink {
  position: absolute;
  top: 33%;
  z-index: 94;
  background: #d65989;
}
.mobileMainMenu .mainMenuContent .caseLink {
  position: absolute;
  top: 44%;
  z-index: 93;
  background: #cd497d;
}
.mobileMainMenu .mainMenuContent .diyLink {
  position: absolute;
  top: 55%;
  z-index: 92;
  background: #c33971;
}
.mobileMainMenu .mainMenuContent .contactLink {
  position: absolute;
  top: 66%;
  z-index: 91;
  background: #bb2a66;
}
.mobileMainMenu .serviceMenuContent {
  background: #b31c5c;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  opacity: 0;
  right: 0%;
  z-index: 96;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobileMainMenu .serviceMenuContent .backLink {
  width: 100%;
  height: 17%;
  transform: translateY(80%);
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0px 0px 20px 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 96;
  opacity: 0;
  background: #e5759e;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.mobileMainMenu .serviceMenuContent .backLink .leftSide {
  display: flex;
  align-items: center;
}
.mobileMainMenu .serviceMenuContent .backLink .leftSide img {
  width: 70px;
}
.mobileMainMenu .serviceMenuContent .backLink .leftSide .linkText {
  color: #fff;
}
.mobileMainMenu .serviceMenuContent .backLink i {
  font-size: 24px;
  color: #fff;
}
.mobileMainMenu .serviceMenuContent .mobile_serviceListBox {
  width: 100%;
  height: 17%;
  padding-top: 10%;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0px 0px 20px 20px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
  transform: translateY(80%);
  opacity: 0;
  transition: all 0.6s ease;
}
.mobileMainMenu .serviceMenuContent .mobile_serviceListBox a {
  width: 30%;
  display: block;
  margin: 0 5px;
  text-align: center;
  padding: 15px 10px;
  border-radius: 10px;
}
.mobileMainMenu .serviceMenuContent .mobile_serviceListBox a span {
  font-size: 18px;
  font-weight: bold;
}
.mobileMainMenu .serviceMenuContent .listBox1 {
  position: absolute;
  top: 12%;
  left: 0;
  z-index: 17;
  background: #ee84a9;
}
.mobileMainMenu .serviceMenuContent .listBox1 a span {
  color: #dd2166;
}
.mobileMainMenu .serviceMenuContent .listBox2 {
  position: absolute;
  top: 23%;
  left: 0;
  z-index: 16;
  background: #e5759e;
}
.mobileMainMenu .serviceMenuContent .listBox2 a span {
  color: #d13c73;
}
.mobileMainMenu .serviceMenuContent .listBox3 {
  position: absolute;
  top: 34%;
  left: 0;
  z-index: 15;
  background: #dd6693;
}
.mobileMainMenu .serviceMenuContent .listBox3 a span {
  color: #d2346e;
}
.mobileMainMenu .serviceMenuContent .listBox4 {
  position: absolute;
  top: 45%;
  left: 0;
  z-index: 14;
  background: #d65989;
}
.mobileMainMenu .serviceMenuContent .listBox4 a span {
  color: #f9b1cb;
}
.mobileMainMenu .serviceMenuContent .listBox5 {
  position: absolute;
  top: 56%;
  left: 0;
  z-index: 13;
  background: #cd497d;
}
.mobileMainMenu .serviceMenuContent .listBox5 a span {
  color: #f5e7ec;
}
.mobileMainMenu .serviceMenuContent .listBox6 {
  position: absolute;
  top: 67%;
  left: 0;
  z-index: 12;
  background: #c33971;
}
.mobileMainMenu .serviceMenuContent .listBox6 a span {
  color: #fff;
}

.mobileMainMenu.active {
  right: 0;
  opacity: 1;
}
.mobileMainMenu.active .mainMenuContent.active {
  right: 0;
  opacity: 1;
}
.mobileMainMenu.active .mainMenuContent.active .mobile_menuLink {
  right: 0;
}
.mobileMainMenu.active .serviceMenuContent.active {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.mobileMainMenu.active .serviceMenuContent.active .backLink {
  transform: translateY(0%);
  opacity: 1;
}
.mobileMainMenu.active .serviceMenuContent.active .mobile_serviceListBox {
  opacity: 1;
  transform: translateY(0%);
}

.mobileFreeMenu {
  position: fixed;
  top: 0;
  right: -100%;
  opacity: 0;
  z-index: 98;
  width: 100%;
  height: 100vh;
  background: #ac1457;
  transition: all 0.3s ease;
}
.mobileFreeMenu .mobileFreeMenuTop {
  background: #f48fb1;
  position: absolute;
  top: 0;
  right: -100%;
  z-index: 97;
  width: 100%;
  height: 23%;
  border-radius: 0px 0px 20px 20px;
  padding: 4% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}
.mobileFreeMenu .mobileFreeMenuTop img {
  width: 200px;
  margin: 10px 0;
}
.mobileFreeMenu .mobileFreeMenuTop p {
  color: #fff;
}
.mobileFreeMenu .freePhoneBox {
  position: absolute;
  width: 100%;
  height: 18%;
  padding-top: 10%;
  border-radius: 0px 0px 20px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "CustomFontCollection", serif;
  font-size: 26px;
  letter-spacing: 4px;
  transition: all 0.3s ease;
}
.mobileFreeMenu .freePhoneBox p:first-child {
  font-size: 20px;
  letter-spacing: 2px;
}
.mobileFreeMenu .freePhoneBox i {
  position: absolute;
  top: 55%;
  right: 20px;
  transform: translate(-50%, -50%);
}
.mobileFreeMenu .northPhone {
  background: #f06292;
  top: 20%;
  right: -100%;
  z-index: 96;
}
.mobileFreeMenu .centralPhone {
  background: #ec407a;
  top: 35%;
  right: -100%;
  z-index: 95;
}
.mobileFreeMenu .southPhone {
  background: #d81a60;
  top: 50%;
  right: -100%;
  z-index: 94;
}
.mobileFreeMenu .eastPhone {
  background: #c3185c;
  top: 65%;
  right: -100%;
  z-index: 93;
}

.mobileFreeMenu.active {
  right: 0;
  opacity: 1;
}
.mobileFreeMenu.active .mobileFreeMenuTop {
  right: 0;
}
.mobileFreeMenu.active .freePhoneBox {
  right: 0;
}

.mobileFreeMenu.pc {
  width: 25%;
  height: 100vh;
  left: initial;
  right: -100%;
  transition: all 0.5s ease;
}

.mobileFreeMenu.pc.active {
  right: 0%;
}

.mobileLineMenu {
  position: fixed;
  top: 0;
  right: -100%;
  opacity: 0;
  z-index: 98;
  width: 100%;
  height: 100vh;
  background: #176312;
  transition: all 0.3s ease;
}
.mobileLineMenu .mobileLineMenuTop {
  background: #55c87d;
  position: absolute;
  top: 0;
  right: -100%;
  z-index: 97;
  width: 100%;
  height: 23%;
  border-radius: 0px 0px 20px 20px;
  padding: 4% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}
.mobileLineMenu .mobileLineMenuTop img {
  width: 200px;
  margin: 10px 0;
}
.mobileLineMenu .mobileLineMenuTop p {
  color: #fff;
}
.mobileLineMenu .LineBox {
  position: absolute;
  width: 100%;
  height: 18%;
  right: -100%;
  padding-top: 5%;
  padding-left: 10%;
  border-radius: 0px 0px 20px 20px;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "CustomFontCollection", serif;
  font-size: 26px;
  letter-spacing: 4px;
  transition: all 0.3s ease;
}
.mobileLineMenu .LineBox img {
  width: 60px;
}
.mobileLineMenu .LineBox .lineText {
  padding-left: 10px;
}
.mobileLineMenu .LineBox .lineText p {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.mobileLineMenu .LineBox i {
  position: absolute;
  top: 55%;
  right: 10px;
  transform: translate(-50%, -50%);
}
.mobileLineMenu .northLine {
  background: #06b542;
  top: 20%;
  z-index: 96;
}
.mobileLineMenu .centraLine {
  background: #0ba137;
  top: 35%;
  z-index: 95;
}
.mobileLineMenu .southLine {
  background: #0f8d2b;
  top: 50%;
  z-index: 94;
}
.mobileLineMenu .eastLine {
  background: #12781e;
  top: 65%;
  z-index: 93;
}

.mobileLineMenu.active {
  right: 0;
  opacity: 1;
}
.mobileLineMenu.active .mobileLineMenuTop {
  right: 0;
}
.mobileLineMenu.active .LineBox {
  right: 0;
}

.mobileLineMenu.pc {
  width: 25%;
  height: 100vh;
  left: initial;
  right: -100%;
  transition: all 0.5s ease;
}

.mobileLineMenu.pc.active {
  right: 0%;
}

.mobileMessageMenu {
  position: fixed;
  top: 0;
  right: -100%;
  opacity: 0;
  z-index: 98;
  width: 100%;
  height: 100vh;
  background: #694205;
  transition: all 0.3s ease;
}
.mobileMessageMenu .mobileMessageMenuTop {
  background: #c29246;
  position: absolute;
  top: 0;
  right: -100%;
  z-index: 97;
  width: 100%;
  height: 23%;
  border-radius: 0px 0px 20px 20px;
  padding: 4% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}
.mobileMessageMenu .mobileMessageMenuTop img {
  width: 200px;
  margin: 10px 0;
}
.mobileMessageMenu .mobileMessageMenuTop p {
  color: #fff;
}
.mobileMessageMenu .messageBox {
  position: absolute;
  width: 100%;
  height: 18%;
  padding-top: 5%;
  right: -100%;
  border-radius: 0px 0px 20px 20px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "CustomFontCollection", serif;
  font-size: 26px;
  letter-spacing: 4px;
  transition: all 0.3s ease;
}
.mobileMessageMenu .messageBox p {
  font-size: 20px;
  letter-spacing: 2px;
}
.mobileMessageMenu .messageBox i {
  padding-left: 20px;
}
.mobileMessageMenu .northMessage {
  background: #a9792d;
  top: 20%;
  z-index: 96;
}
.mobileMessageMenu .centralMessage {
  background: #96681f;
  top: 35%;
  z-index: 95;
}
.mobileMessageMenu .southMessage {
  background: #895c15;
  top: 50%;
  z-index: 94;
}
.mobileMessageMenu .eastMessage {
  background: #7a4f0c;
  top: 65%;
  z-index: 93;
}

.mobileMessageMenu.active {
  right: 0;
  opacity: 1;
}
.mobileMessageMenu.active .mobileMessageMenuTop {
  right: 0;
}
.mobileMessageMenu.active .messageBox {
  right: 0;
}

.mobileMessageMenu.pc {
  width: 25%;
  height: 100vh;
  left: initial;
  right: -100%;
  transition: all 0.5s ease;
}

.mobileMessageMenu.pc.active {
  right: 0%;
}

.mobilePhoneListMenu {
  position: fixed;
  top: 0;
  right: -100%;
  opacity: 0;
  z-index: 98;
  width: 100%;
  height: 100vh;
  padding: 20px 0;
  background: #e85886;
  transition: all 0.3s ease;
}
.mobilePhoneListMenu .mobilePhoneList {
  display: none;
}
@media (max-width: 1024px) {
  .mobilePhoneListMenu .mobilePhoneList {
    display: block;
  }
}
.mobilePhoneListMenu .mobilePhoneList h5 {
  text-align: center;
  color: #fff;
  font-size: 24px;
  padding: 10px;
}
.mobilePhoneListMenu .mobilePhoneList .mobilePhoneListBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 10px;
  place-items: center;
}
.mobilePhoneListMenu .mobilePhoneList .mobilePhoneListBox a {
  font-size: 18px;
  color: #fff;
  font-family: "CustomFontCollection", serif;
}

.mobilePhoneListMenu.active {
  right: 0;
  opacity: 1;
}

.indexCover {
  width: 100%;
  height: 100vh;
  background: url("../img/indexCover/indexCover2.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 1024px) {
  .indexCover {
    background: url("../img/indexCover/m_indexCover2.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.indexCover .coverCenterLogo {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
@media (max-width: 1024px) {
  .indexCover .coverCenterLogo {
    top: 7%;
    width: 180px;
  }
}
.indexCover .PCCoverText {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
}
@media (max-width: 1024px) {
  .indexCover .PCCoverText {
    display: none;
  }
}
.indexCover .PCCoverText p {
  text-align: center;
  color: #fb5ea0;
  font-size: 60px;
  font-weight: bold;
  letter-spacing: 4px;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}
.indexCover .PCCoverText p:first-child {
  font-size: 40px;
}
.indexCover .mobileCoverText {
  width: 90%;
  text-align: center;
  display: none;
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  z-index: 6;
}
@media (max-width: 1024px) {
  .indexCover .mobileCoverText {
    display: block;
  }
}
.indexCover .mobileCoverText p {
  color: #ffe0d9;
  letter-spacing: 4px;
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: bold;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}
.indexCover .mobileCoverBottomPhoneList {
  display: none;
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  width: 90%;
  text-align: center;
}
@media (max-width: 1024px) {
  .indexCover .mobileCoverBottomPhoneList {
    display: block;
  }
}
.indexCover .mobileCoverBottomPhoneList h5 {
  color: #ffae9c;
  font-size: 24px;
  margin-bottom: 5px;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}
.indexCover .mobileCoverBottomPhoneList a {
  display: block;
  text-align: center;
  font-size: 28px;
  font-family: "CustomFontCollection", serif;
  font-weight: bold;
  letter-spacing: 4px;
  margin-bottom: 10px;
  color: #fb5ea0;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}
.indexCover .coverBottomPhoneList {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 6;
  width: 100%;
  display: flex;
}
@media (max-width: 1024px) {
  .indexCover .coverBottomPhoneList {
    display: none;
  }
}
.indexCover .coverBottomPhoneList a {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fcefec;
  padding: 10px;
}
.indexCover .coverBottomPhoneList a:nth-child(1) {
  background: #c76188;
}
.indexCover .coverBottomPhoneList a:nth-child(2) {
  background: #ce6d92;
}
.indexCover .coverBottomPhoneList a:nth-child(3) {
  background: #d77b9d;
}
.indexCover .coverBottomPhoneList a:nth-child(4) {
  background: #e089a8;
}
.indexCover .coverBottomPhoneList a .phoneText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.indexCover .coverBottomPhoneList a .phoneText span {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
  font-family: "CustomFontCollection", serif;
  letter-spacing: 2px;
}
.indexCover .coverBottomPhoneList a .phoneText span:last-child {
  font-size: 22px;
}
.indexCover .coverBottomPhoneList a i {
  margin-left: 20px;
  font-size: 24px;
}

.indexAboutBg {
  width: 100%;
  height: 100vh;
  background: url("../img/indexAbout/ABOUTUS_bg1.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  position: relative;
}
@media (max-width: 1024px) {
  .indexAboutBg {
    flex-direction: column;
    height: 100%;
    padding-bottom: 20px;
  }
}
.indexAboutBg .indexAboutLeftImage {
  width: 55%;
  background: url("../img/indexAbout/ABOUTUS_pic.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 1024px) {
  .indexAboutBg .indexAboutLeftImage {
    width: 100%;
    background: url("../img/indexAbout/mABOUTUS_pic.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
  }
}
.indexAboutBg .indexAboutLeftImage h1 {
  width: 70%;
  position: absolute;
  left: 55%;
  top: 30px;
  transform: translateX(-50%);
  color: #e9699f;
  font-size: 40px;
  letter-spacing: 4px;
}
@media (max-width: 1024px) {
  .indexAboutBg .indexAboutLeftImage h1 {
    width: 100%;
    position: relative;
    left: 0%;
    top: 0px;
    font-size: 24px;
    transform: translateX(0);
    text-align: center;
    padding-top: 20px;
  }
}
.indexAboutBg .indexAboutLeftImage h2 {
  position: absolute;
  left: 40%;
  bottom: 50px;
  transform: translateX(-50%);
  color: #e9699f;
  font-size: 60px;
  letter-spacing: 4px;
}
@media (max-width: 1024px) {
  .indexAboutBg .indexAboutLeftImage h2 {
    position: relative;
    left: -80px;
    bottom: 0px;
    transform: translateX(0);
    font-size: 32px;
    letter-spacing: 0px;
    padding-top: 250px;
    padding-bottom: 80px;
    text-align: center;
  }
}
.indexAboutBg .indexAboutRightText {
  width: 45%;
  padding-right: 50px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
}
@media (max-width: 1024px) {
  .indexAboutBg .indexAboutRightText {
    padding-right: 0px;
    padding-bottom: 0px;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}
.indexAboutBg .indexAboutTitle {
  color: #e9699f;
  text-align: right;
  position: absolute;
  top: 3%;
  right: 5%;
}
@media (max-width: 1024px) {
  .indexAboutBg .indexAboutTitle {
    display: none;
  }
}
.indexAboutBg .indexAboutTitle p {
  font-weight: 100;
  font-size: 64px;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .indexAboutBg .indexAboutTitle p {
    font-size: 32px;
  }
}
.indexAboutBg .indexAboutTitle h2 {
  font-weight: 100;
  font-size: 36px;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .indexAboutBg .indexAboutTitle h2 {
    font-size: 20px;
  }
}
.indexAboutBg .indexAboutImage {
  text-align: right;
}
@media (max-width: 1024px) {
  .indexAboutBg .indexAboutImage {
    position: relative;
    width: 100%;
  }
}
.indexAboutBg .indexAboutImage img {
  width: 90%;
}
@media (max-width: 1024px) {
  .indexAboutBg .indexAboutImage img {
    width: 180px;
    position: absolute;
    top: -50px;
    right: 20px;
  }
}
.indexAboutBg .indexAboutText {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #e9699f;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .indexAboutBg .indexAboutText {
    width: 90%;
  }
}
.indexAboutBg .indexAboutText p {
  margin-bottom: 30px;
  font-family: CustomFontCollection;
}
@media (max-width: 1024px) {
  .indexAboutBg .indexAboutText p {
    margin-bottom: 10px;
  }
}
@media (max-width: 1024px) {
  .indexAboutBg .indexAboutReadMoreBtn {
    width: 100%;
  }
}
.indexAboutBg .indexAboutReadMoreBtn a {
  display: flex;
  align-items: center;
  color: #e9699f;
  font-family: CustomFontCollection;
}
@media (max-width: 1024px) {
  .indexAboutBg .indexAboutReadMoreBtn a {
    justify-content: end;
    padding-right: 30px;
  }
}
.indexAboutBg .indexAboutReadMoreBtn a img {
  padding-left: 10px;
}

.indexServiceSection {
  width: 100%;
  height: 100vh;
  position: relative;
}
@media (max-width: 1024px) {
  .indexServiceSection {
    display: none;
  }
}
.indexServiceSection .indexService2 {
  width: 80%;
  height: 20%;
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
}
.indexServiceSection .indexService2 .swiper-slide img {
  width: 100%;
  filter: brightness(0.3);
  border-radius: 20px;
}
@media (max-width: 1024px) {
  .indexServiceSection .indexService2 .swiper-slide img {
    height: 100px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.indexServiceSection .indexService2 .swiper-slide .serviceName {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  color: #fff;
  text-align: center;
  font-size: 18x;
  text-shadow: 2px 2px 3px black;
  pointer-events: none;
}
.indexServiceSection .indexService {
  height: 100%;
}
@media (max-width: 1024px) {
  .indexServiceSection .indexService {
    height: 100%;
  }
}
.indexServiceSection .indexService .swiper-slide img {
  width: 100%;
  filter: brightness(0.5);
}
@media (max-width: 1024px) {
  .indexServiceSection .indexService .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.indexServiceSection .indexService .swiper-slide .serviceTitle {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  color: #fff;
  text-align: center;
  font-size: 42px;
  text-shadow: 2px 2px 3px black;
  pointer-events: none;
}
.indexServiceSection .indexService .swiper-slide .desc {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  color: #fff;
  text-align: center;
  font-size: 20px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 3px black;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .indexServiceSection .indexService .swiper-slide .desc {
    top: 40%;
    width: 80%;
  }
}
.indexServiceSection .indexService .swiper-slide .serviceButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .indexServiceSection .indexService .swiper-slide .serviceButton {
    top: 70%;
  }
}
.indexServiceSection .indexService .swiper-slide .serviceButton i {
  margin-left: 6px;
  font-size: 20px;
}
.indexServiceSection .indexService .swiper-slide .serviceButton:hover {
  color: #f0a5c8;
}
.indexServiceSection .indexService .swiper-button-next,
.indexServiceSection .indexService .swiper-button-prev {
  color: rgba(255, 255, 255, 0.5);
}

.mobileIndexServiceSection {
  width: 100%;
  height: 100%;
  display: none;
  background: url("../img/index_service.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 1024px) {
  .mobileIndexServiceSection {
    display: block;
  }
}
.mobileIndexServiceSection .indexSectionTitle {
  color: #fb5ea0;
}
.mobileIndexServiceSection .mobileServicesList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding-top: 100px;
  padding-bottom: 50px;
}
.mobileIndexServiceSection .mobileServicesList a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fb5ea0;
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
}
.mobileIndexServiceSection .mobileServicesList a i {
  font-size: 20px;
}

.fullIndexFeedback {
  background: url("../img/indexFeedback/FEEDBACK_BG.jpg");
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100vh;
  padding: 0 10%;
  padding-top: 12%;
  position: relative;
}
@media (max-width: 1024px) {
  .fullIndexFeedback {
    background: url("../img/indexFeedback/FEEDBACK.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 0%;
    height: 100%;
  }
}
.fullIndexFeedback .feedbackIntroduction {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 18%;
  z-index: 6;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 26px;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1024px) {
  .fullIndexFeedback .feedbackIntroduction {
    font-size: 18px;
  }
}
.fullIndexFeedback .indexFeedback {
  height: 700px;
}
@media (max-width: 1024px) {
  .fullIndexFeedback .indexFeedback {
    padding-top: 150px;
  }
}
@media (max-width: 1024px) {
  .fullIndexFeedback .indexFeedback .swiper-wrapper {
    height: 500px;
  }
}
.fullIndexFeedback .indexFeedback .swiper-wrapper .swiper-slide img {
  border-radius: 10px;
  width: 100%;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}
.fullIndexFeedback .indexFeedback .swiper-pagination {
  bottom: 0px;
}
@media (max-width: 1024px) {
  .fullIndexFeedback .indexFeedback .swiper-pagination {
    bottom: 20px;
  }
}
.fullIndexFeedback .indexFeedback .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
}

.indexProcess {
  width: 100%;
  height: 100vh;
  background: url("../img/IndexProcess/PROCESS_BG.jpg");
  background-size: cover;
  background-position: center center;
  padding: 0 10%;
  padding-top: 12%;
  position: relative;
}
@media (max-width: 1024px) {
  .indexProcess {
    background: url("../img/IndexProcess/PROCESS.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 150px;
    height: 100%;
  }
}
.indexProcess .swiper-wrapper {
  height: 500px;
}
.indexProcess .swiper-wrapper .swiper-slide {
  position: relative;
}
.indexProcess .swiper-wrapper .swiper-slide:last-child::after {
  content: none;
}
.indexProcess .swiper-wrapper .swiper-slide::after {
  content: "\ed3b";
  font-family: "Boxicons";
  margin-left: 8px;
  font-size: 42px;
  color: #fff;
  vertical-align: middle;
  position: absolute;
  top: 30%;
  right: -25%;
  z-index: 8;
}
@media (max-width: 1024px) {
  .indexProcess .swiper-wrapper .swiper-slide::after {
    content: none;
  }
}
.indexProcess .swiper-wrapper .swiper-slide .processBox {
  background: #fff;
  height: 400px;
  border-radius: 10px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}
.indexProcess .swiper-wrapper .swiper-slide .processBox .upImage {
  position: relative;
}
.indexProcess .swiper-wrapper .swiper-slide .processBox .upImage img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.indexProcess .swiper-wrapper .swiper-slide .processBox .upImage span {
  color: #fff;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  font-weight: bold;
  font-size: 18px;
}
.indexProcess .swiper-wrapper .swiper-slide .processBox .processText {
  padding: 20px;
}
.indexProcess .swiper-wrapper .swiper-slide .processBox .processText h4 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 22px;
}
.indexProcess .swiper-wrapper .swiper-slide .processBox .processText P {
  font-size: 16px;
}
.indexProcess .swiper-pagination {
  bottom: 20px;
}
.indexProcess .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
}

.indexPhoneList {
  width: 100%;
  height: 100vh;
}
@media (max-width: 1024px) {
  .indexPhoneList {
    height: 100%;
  }
}
.indexPhoneList .pcIndexPhoneList {
  width: 100%;
  height: 100%;
  background-size: cover;
  background: url("../img/indexPhoneList/24_1.webp");
  background-position: center center;
  position: relative;
}
@media (max-width: 1024px) {
  .indexPhoneList .pcIndexPhoneList {
    display: none;
  }
}
.indexPhoneList .pcIndexPhoneList .phoneListContent {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.indexPhoneList .pcIndexPhoneList .phoneListContent .phoneListBox {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}
.indexPhoneList .pcIndexPhoneList .phoneListContent .phoneListBox a {
  color: #fff;
  font-family: "CustomFontCollection", serif;
  letter-spacing: 2px;
  font-size: 24px;
  margin: 5px 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.indexPhoneList .pcIndexPhoneList .areaListContent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0px 20%;
  padding-top: 20px;
  padding-bottom: 50px;
  background: rgba(0, 0, 0, 0.3);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  place-items: center;
}
.indexPhoneList .pcIndexPhoneList .areaListContent a {
  color: #fff;
  font-size: 18px;
}
.indexPhoneList .mobileIndexPhoneList {
  display: none;
}
@media (max-width: 1024px) {
  .indexPhoneList .mobileIndexPhoneList {
    display: block;
  }
}

.faq {
  width: 100%;
  height: 100%;
  padding: 30px 0;
  background: url("../img/indexFAQ.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media (max-width: 1024px) {
  .faq {
    background: #ffeeeb;
  }
}
.faq .indexSectionTitle {
  color: #fb5ea0;
}
.faq .faq-content {
  padding-top: 150px;
  width: 900px;
  margin-right: 5%;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .faq .faq-content {
    padding-top: 100px;
    width: 90%;
  }
}
.faq .faq-content > div {
  margin-bottom: 10px;
}
.faq .faq-content > div:nth-child(even) button {
  background-color: #ffcbbf;
}
.faq .faq-content button {
  background-color: #ffe0d9;
  color: #e85886;
  width: 100%;
  padding: 10px;
  padding-left: 20px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  border: none;
  text-align: left;
  position: relative;
  box-shadow: 3px 3px 3px #ccc;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .faq .faq-content button {
    padding-right: 50px;
  }
}
.faq .faq-content button i {
  position: absolute;
  right: 20px;
  font-size: 24px;
}
.faq .faq-content .accordionContent {
  overflow: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
  background: #f9ddce;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
  box-shadow: 3px 3px 3px #ccc;
}
.faq .faq-content .accordionContent.active {
  opacity: 1;
  padding: 20px;
  transition: 0.3s ease-in-out;
}
.faq .faq-content .contactBtn {
  text-align: center;
  padding: 20px 0;
}
.faq .faq-content .contactBtn a {
  font-size: 18px;
  background: #fb5ea0;
  color: #fff;
  border-radius: 20px;
  padding: 10px 30px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.aboutPage {
  background: url("../img/inner_page_bg.jpg");
  background-position: top center;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .aboutPage {
    background: url("../img//m_inner_page_bg.jpg");
  }
}
@media (max-width: 1024px) {
  .aboutPage article {
    padding-top: 30px;
  }
}
.aboutPage article p {
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.aboutPage article h3 {
  color: #fb5ea0;
  margin-bottom: 20px;
  font-weight: 600;
}
.aboutPage article .feature {
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 60px;
       column-gap: 60px;
}
@media (max-width: 1024px) {
  .aboutPage article .feature {
    grid-template-columns: repeat(1, 1fr);
    -moz-column-gap: 0px;
         column-gap: 0px;
    row-gap: 20px;
  }
}
.aboutPage article .feature .featureBox {
  padding: 20px;
  border-radius: 50px 10px 50px 10px;
  background: linear-gradient(#fecae0, #f0a5c8);
  color: #fff;
  text-shadow: 0px 3px 3px rgba(251, 94, 160, 0.6);
}
@media (max-width: 1024px) {
  .aboutPage article .feature .featureBox {
    padding: 50px 20px;
  }
}
.aboutPage article .feature .featureBox h4 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}
.aboutPage article .feature .featureBox p {
  font-weight: 600;
}
.aboutPage .feedback h2 {
  text-align: center;
  color: #fb5ea0;
  padding-top: 30px;
  margin-bottom: 30px;
  letter-spacing: 4px;
  font-size: 32px;
}
.aboutPage .feedback .feedbackSwiper {
  height: 500px;
}
.aboutPage .feedback .feedbackSwiper .swiper-slide img {
  width: 100%;
}
.aboutPage .feedback .feedbackSwiper .swiper-pagination {
  bottom: 20px;
}
.aboutPage .feedback .feedbackSwiper .swiper-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 5px;
  border-radius: 10px;
  background-color: #fb5ea0;
}
.aboutPage .feedback .feedbackSwiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #fff;
}
.aboutPage .feedback .feedbackSwiper .swiper-pagination-progressbar.swiper-pagination-horizontal {
  width: 60%;
  left: 50%;
  top: 90%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.3);
}
.aboutPage .feedback .feedbackSwiper .swiper-button-next,
.aboutPage .feedback .feedbackSwiper .swiper-button-prev {
  color: rgba(255, 255, 255, 0.5);
}

.equipmentContent {
  padding: 50px 0;
}
@media (max-width: 1024px) {
  .equipmentContent {
    padding: 5%;
  }
}
.equipmentContent > P {
  text-align: center;
}
.equipmentContent h2 {
  margin: 0;
}
.equipmentContent h2 button {
  color: #fb5ea0;
  width: 100%;
  text-align: center;
  margin: 20px 0;
  border: none;
  background: transparent;
  font-size: 26px;
  position: relative;
}
@media (max-width: 1024px) {
  .equipmentContent h2 button {
    background: #fb5ea0;
    color: #fff;
    padding: 10px 0;
    border-radius: 10px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  }
}
.equipmentContent h2 button i {
  display: none;
}
@media (max-width: 1024px) {
  .equipmentContent h2 button i {
    display: inline-block;
    color: #fff;
    position: absolute;
    top: 50%;
    right: 10px;
    transform-origin: top left;
    transform: translate(-50%, -50%);
    font-size: 26px;
  }
}
@media (max-width: 1024px) {
  .equipmentContent .accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
}
@media (max-width: 1024px) {
  .equipmentContent .accordion-collapse.show {
    max-height: 9000px; /* 足夠大的值以容納內容 */
  }
}
.equipmentContent .equipmentGroup {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
@media (max-width: 1024px) {
  .equipmentContent .equipmentGroup {
    grid-template-columns: repeat(1, 1fr);
    -moz-column-gap: 0px;
         column-gap: 0px;
    row-gap: 10px;
  }
}
.equipmentContent .equipmentGroup .equipmentBox {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .equipmentContent .equipmentGroup .equipmentBox {
    margin-bottom: 20px;
  }
}
.equipmentContent .equipmentGroup .equipmentBox img {
  width: 100%;
  border-radius: 20px;
}
.equipmentContent .equipmentGroup .equipmentBox p {
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 16px;
  font-family: "CustomFontCollection", serif;
}

.pcPriceTable {
  padding-bottom: 50px;
}
@media (max-width: 1024px) {
  .pcPriceTable {
    display: none;
  }
}
.pcPriceTable .filterBox {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .pcPriceTable .filterBox {
    flex-direction: column;
    padding: 10px 0;
  }
}
.pcPriceTable .filterBox button {
  border: none;
  background-color: transparent;
  font-size: 16px;
  color: #fff;
  background: #fb5ea0;
  font-weight: bold;
  margin: 0 5px;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .pcPriceTable .filterBox button {
    background-color: #f7ceda;
    color: #ea4f74;
    letter-spacing: 5px;
    width: 350px;
    border-radius: 20px;
    margin: 5px 0;
    font-size: 20px;
  }
}
.pcPriceTable .filterBox button:hover {
  color: #fff;
  background-color: #d81a60;
}
.pcPriceTable .filterBox button.active {
  color: #fff;
  background-color: #d81a60;
}
.pcPriceTable table {
  width: 100%;
  border-spacing: 5px 10px;
}
.pcPriceTable table thead tr th {
  padding: 10px;
  background-color: #fb5ea0;
  color: #fff;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
}
.pcPriceTable table tbody tr:nth-child(even) td {
  background-color: #ffe6f2;
  color: #000;
}
.pcPriceTable table tbody tr td {
  padding: 10px;
  background-color: #ffeeeb;
  color: #000;
  border-radius: 10px;
  border: none;
  font-size: 14px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}
.pcPriceTable table tbody tr td:nth-child(1) {
  width: 12%;
  text-align: center;
}
.pcPriceTable table tbody tr td:nth-child(2) {
  width: 12%;
  text-align: center;
}
.pcPriceTable table tbody tr td:nth-child(3) {
  width: 16%;
  text-align: center;
}
.pcPriceTable table tbody tr td:nth-child(4) {
  width: 30%;
}
.pcPriceTable table tbody tr td:nth-child(5) {
  width: 30%;
}

.mobilePriceAccordion {
  display: none;
}
@media (max-width: 1024px) {
  .mobilePriceAccordion {
    display: block;
  }
}
.mobilePriceAccordion .bigAccordionTitle {
  background-color: #fb5ea0 !important;
  color: #fff !important;
}
.mobilePriceAccordion .bigAccordionTitle.active {
  background-color: #d81a60 !important;
  color: #fff !important;
}
.mobilePriceAccordion .smallAccordionGroup {
  color: #000;
}
.mobilePriceAccordion .smallAccordionGroup .accordionTitle {
  background: #ffd2e7;
}
.mobilePriceAccordion .smallAccordionGroup:nth-child(even) .accordionTitle {
  background: #ffe6f2;
}
.mobilePriceAccordion .smallAccordionGroup .accordionTitle.active {
  background: #fb5ea0;
  color: #fff;
}
.mobilePriceAccordion .accordionGroup .accordionTitle {
  width: 100%;
  padding: 10px 0;
  font-size: 20px;
  border: none;
  letter-spacing: 4px;
  margin-bottom: 10px;
  position: relative;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
}
.mobilePriceAccordion .accordionGroup .accordionTitle i {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  right: 5px;
}
.mobilePriceAccordion .accordionGroup .accordionContent .accordionContentBox {
  background-color: #fff;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #fb5ea0;
  border-radius: 10px;
}
.mobilePriceAccordion .accordionGroup .accordionContent .accordionContentBox h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.accordion-enter-active,
.accordion-leave-active {
  transition: max-height 0.3s ease;
}

.accordion-enter-from,
.accordion-leave-to {
  max-height: 0;
  overflow: hidden;
}

.accordion-enter-to,
.accordion-leave-from {
  max-height: 1000px; /* 確保這個值足夠大以容納內容 */
}

.articlesIndexBox {
  padding-bottom: 50px;
}
.articlesIndexBox .filterBox {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 10px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: 50px;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .articlesIndexBox .filterBox {
    grid-template-columns: repeat(3, 1fr);
    padding: 10px 0;
  }
}
.articlesIndexBox .filterBox button {
  border: none;
  background-color: transparent;
  font-size: 18px;
  color: #fff;
  background: #fb5ea0;
  margin: 0 5px;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .articlesIndexBox .filterBox button {
    background-color: #f7ceda;
    color: #ea4f74;
    border-radius: 20px;
    margin: 5px 0;
    font-size: 16px;
    padding: 5px;
  }
}
.articlesIndexBox .filterBox button:hover {
  color: #fff;
  background-color: #d81a60;
}
.articlesIndexBox .filterBox button.active {
  color: #fff;
  background-color: #d81a60;
}
.articlesIndexBox .articlesIndex .articleBox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #ffe6f2;
  padding: 10px 20px;
  margin: 10px 0;
  border: 1px solid #fb5ea0;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  position: relative;
}
.articlesIndexBox .articlesIndex .articleBox:nth-child(odd) {
  background-color: #ffeeeb;
}
.articlesIndexBox .articlesIndex .articleBox .articleNumber {
  color: #000;
  font-size: 28px;
  font-weight: bold;
  margin-right: 30px;
}
@media (max-width: 1024px) {
  .articlesIndexBox .articlesIndex .articleBox .articleNumber {
    margin-right: 10px;
  }
}
.articlesIndexBox .articlesIndex .articleBox .articlePreview {
  justify-self: flex-start;
}
.articlesIndexBox .articlesIndex .articleBox .articlePreview .articleTitle {
  color: #000;
  font-size: 16px;
}
@media (max-width: 1024px) {
  .articlesIndexBox .articlesIndex .articleBox .articlePreview .articleTitle {
    font-size: 18px;
    padding-right: 20px;
  }
}
.articlesIndexBox .articlesIndex .articleBox .articlePreview .articlePart {
  color: #000;
}
@media (max-width: 1024px) {
  .articlesIndexBox .articlesIndex .articleBox .articlePreview .articlePart {
    display: none;
  }
}
.articlesIndexBox .articlesIndex .articleBox .rightArrowIcon {
  position: absolute;
  right: 10px;
}
.articlesIndexBox .articlesIndex .articleBox .rightArrowIcon i {
  color: #fb5ea0;
  font-size: 28px;
}

@media (max-width: 1024px) {
  .articlesIndexBox.knowledge .filterBox {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px 0;
  }
}

.pagination {
  margin-top: 30px;
  text-align: center;
}
.pagination button {
  margin: 0 10px;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.pagination button.active {
  color: #fff;
  background-color: #ea4f74;
}

#articleContent h1 {
  text-align: center;
  color: #fe3d72;
  margin-bottom: 20px;
}
#articleContent h2,
#articleContent h3 {
  color: #fe3d72;
  margin: 10px 0;
}
#articleContent p,
#articleContent li {
  line-height: 1.5;
  margin-bottom: 10px;
}
#articleContent li {
  margin-left: 25px;
}

.articlePage {
  padding-bottom: 50px;
}
@media (max-width: 1024px) {
  .articlePage {
    padding-left: 3%;
    padding-right: 3%;
  }
}

.serviceContent {
  padding-bottom: 50px;
  display: flex;
}
@media (max-width: 1024px) {
  .serviceContent {
    flex-direction: column;
  }
}
.serviceContent article {
  width: 70%;
}
@media (max-width: 1024px) {
  .serviceContent article {
    width: 100%;
  }
}
.serviceContent article h2,
.serviceContent article h3 {
  color: #fb5ea0;
  font-size: 20px;
  margin-bottom: 10px;
}
.serviceContent article ol,
.serviceContent article ul {
  padding-left: 20px;
}
.serviceContent article ol li,
.serviceContent article ul li {
  margin-top: 5px;
  margin-bottom: 5px;
  color: #d81a60;
}
.serviceContent article.finalService {
  width: 100%;
}
.serviceContent .rightOthers {
  width: 30%;
  padding-left: 20px;
}
@media (max-width: 1024px) {
  .serviceContent .rightOthers {
    width: 100%;
    padding-left: 0;
  }
}
.serviceContent .rightOthers .serviceCase h4 {
  text-align: center;
  color: #fb5ea0;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 500;
}
.serviceContent .rightOthers .serviceCase .serviceCaseBox {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
.serviceContent .rightOthers .serviceCase .serviceCaseBox a {
  display: flex;
  justify-content: space-between;
  background: #fb5ea0;
  text-align: center;
  padding: 20px 10px;
  border-radius: 10px;
}
.serviceContent .rightOthers .serviceCase .serviceCaseBox a span {
  color: #fff;
  font-weight: bold;
}
.serviceContent .rightOthers .serviceCase .serviceCaseBox a i {
  color: #fff;
  font-size: 20px;
}
.serviceContent .rightOthers .moreService h4 {
  text-align: center;
  color: #fb5ea0;
  margin-bottom: 20px;
  margin-top: 30px;
  font-size: 32px;
  font-weight: 500;
}
.serviceContent .rightOthers .moreService .moreServiceBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.serviceContent .rightOthers .moreService .moreServiceBox a {
  display: block;
  background: #fb5ea0;
  text-align: center;
  padding: 20px 10px;
  border-radius: 10px;
}
.serviceContent .rightOthers .moreService .moreServiceBox a span {
  color: #fff;
  font-weight: bold;
}

.otherServices {
  background: #d81a60;
  padding: 50px 100px;
}
@media (max-width: 1024px) {
  .otherServices {
    padding: 30px 10px;
  }
}
.otherServices h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
  font-size: 30px;
  font-weight: normal;
}
.otherServices .serviceGroup {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .otherServices .serviceGroup {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
.otherServices .serviceGroup a {
  padding: 20px;
  background: #fff;
  color: #d81a60;
  font-size: 26px;
  font-weight: bold;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .otherServices .serviceGroup a {
    padding: 20px 10px;
    font-size: 16px;
  }
}

.innerPageContactButton {
  text-align: center;
  padding-bottom: 50px;
}
@media (max-width: 1024px) {
  .innerPageContactButton {
    display: none;
  }
}
.innerPageContactButton a {
  background: #fb5ea0;
  color: #fff;
  padding: 10px 40px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 20px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}
.innerPageContactButton a:hover {
  background: #d81a60;
}

.innerPageContactButton.articleBtn {
  display: none;
}
@media (max-width: 1024px) {
  .innerPageContactButton.articleBtn {
    padding-top: 50px;
    display: block;
  }
}

.contactContent {
  display: flex;
}
@media (max-width: 1024px) {
  .contactContent {
    flex-direction: column-reverse;
  }
}
.contactContent .leftLine {
  width: 50%;
  background: #d5ffba;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
}
@media (max-width: 1024px) {
  .contactContent .leftLine {
    width: 100%;
    padding: 0;
    padding-top: 20px;
  }
}
.contactContent .leftLine > p {
  font-size: 18px;
  margin: 20px 0;
  color: #50ca00;
  font-weight: bold;
}
.contactContent .leftLine .contactList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 1024px) {
  .contactContent .leftLine .contactList {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
}
.contactContent .leftLine .contactList .lineCard {
  width: 300px;
  height: 100px;
  background: #50ca00;
  padding: 20px;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 1024px) {
  .contactContent .leftLine .contactList .lineCard {
    width: 100%;
  }
}
.contactContent .leftLine .contactList .lineCard img {
  width: 70px;
}
.contactContent .leftLine .contactList .lineCard .lineText {
  padding-left: 10px;
  color: #fff;
  font-weight: bold;
}
.contactContent .leftLine .contactList .lineCard .lineText p {
  margin-bottom: 10px;
  font-family: "CustomFontCollection", serif;
}
.contactContent .leftLine .contactList .lineCard i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
}
.contactContent .rightPhone {
  width: 50%;
  background: #ffe0d9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
}
@media (max-width: 1024px) {
  .contactContent .rightPhone {
    background: transparent;
    width: 100%;
    padding: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.contactContent .rightPhone > p {
  font-size: 18px;
  margin: 20px 0;
  color: #fb5ea0;
  font-weight: bold;
}
.contactContent .rightPhone .contactList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 1024px) {
  .contactContent .rightPhone .contactList {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
}
.contactContent .rightPhone .contactList .phoneCares {
  width: 300px;
  height: 100px;
  background: #d65989;
  padding: 20px;
  display: flex;
  position: relative;
}
@media (max-width: 1024px) {
  .contactContent .rightPhone .contactList .phoneCares {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
.contactContent .rightPhone .contactList .phoneCares .phoneText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-family: "CustomFontCollection", serif;
  font-size: 26px;
  letter-spacing: 2px;
}
.contactContent .rightPhone .contactList .phoneCares .phoneText span:first-child {
  font-size: 20px;
}
.contactContent .rightPhone .contactList .phoneCares i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
}

footer .footerPhoneList {
  padding: 20px 0;
  background: #e85886;
}
footer .footerPhoneList .phoneIcon {
  text-align: center;
  margin-bottom: 5px;
}
footer .footerPhoneList .phoneIcon i {
  font-size: 28px;
  color: #fff;
}
footer .footerPhoneList h3 {
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}
footer .footerPhoneList .pcPhoneList {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  footer .footerPhoneList .pcPhoneList {
    display: none;
  }
}
footer .footerPhoneList .pcPhoneList .phoneListBox {
  display: flex;
  flex-direction: column;
}
footer .footerPhoneList .pcPhoneList .phoneListBox a {
  color: #fff;
  font-family: "CustomFontCollection", serif;
  letter-spacing: 2px;
  margin: 5px 0;
}
footer .footerPhoneList .mobilePhoneList {
  display: none;
}
@media (max-width: 1024px) {
  footer .footerPhoneList .mobilePhoneList {
    display: block;
  }
}
footer .footerPhoneList .mobilePhoneList h5 {
  text-align: center;
  color: #e85886;
  font-size: 24px;
  margin: 10px;
  background: #fff;
  border-radius: 10px;
}
footer .footerPhoneList .mobilePhoneList .mobilePhoneListBox {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 10px;
  place-items: center;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}
footer .footerPhoneList .mobilePhoneList .mobilePhoneListBox a {
  font-size: 24px;
  letter-spacing: 2px;
  color: #fff;
  font-family: "CustomFontCollection", serif;
  margin-bottom: 10px;
}
footer .footerPhoneList .mobilePhoneList .mobilePhoneListBox.expanded {
  max-height: 500px;
}
footer .areaList {
  padding: 20px 0;
  background: #ffe3dc;
}
@media (max-width: 1024px) {
  footer .areaList {
    background-image: url("../img/area.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
}
footer .areaList h3 {
  font-size: 24px;
  text-align: center;
  color: #d76286;
  margin-bottom: 20px;
}
footer .areaList .areaListBox {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  place-items: center;
  row-gap: 10px;
}
@media (max-width: 1024px) {
  footer .areaList .areaListBox {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
footer .areaList .areaListBox a {
  color: #fb5ea0;
  padding: 5px;
  display: block;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 1024px) {
  footer .areaList .areaListBox a {
    padding: 10px;
    text-align: center;
    width: 100%;
    background: #fb5ea0;
    color: #fff;
    border-radius: 10px;
  }
}
footer .areaList .areaListBox a span {
  display: block;
}
footer .areaList .areaListBox a span:last-child {
  display: none;
}
@media (max-width: 1024px) {
  footer .areaList .areaListBox a span:last-child {
    display: block;
  }
}
@media (max-width: 1024px) {
  footer .areaList .areaListBox a:last-child {
    display: none;
  }
}

.mailForm {
  width: 100%;
  height: 100vh;
  background: url("../img/mailForm/CONTACT_US.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
}
@media (max-width: 1707px) {
  .mailForm {
    height: 110vh;
  }
}
@media (max-width: 1024px) {
  .mailForm {
    height: 100%;
    background: url("../img/mailForm/m_CONTACT_US.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
.mailForm .leftMap {
  height: 100vh;
  width: 45%;
  position: relative;
}
@media (max-width: 1024px) {
  .mailForm .leftMap {
    display: none;
  }
}
.mailForm .leftMap .map {
  width: 350px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.mailForm .leftMap .mapPhoneBox {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 3;
}
.mailForm .leftMap .mapPhoneBox .mapPhoneBoxText {
  display: flex;
  flex-direction: column;
  color: #fff;
}
.mailForm .leftMap .mapPhoneBox .mapPhoneBoxText span:first-child {
  font-size: 20px;
}
.mailForm .leftMap .mapPhoneBox .mapPhoneBoxText span:last-child {
  font-family: "CustomFontCollection", serif;
  font-size: 32px;
}
.mailForm .leftMap .mapPhoneBox1 {
  top: 5%;
  left: 55%;
}
.mailForm .leftMap .mapPhoneBox2 {
  top: 30%;
  left: 35%;
}
.mailForm .leftMap .mapPhoneBox3 {
  top: 70%;
  left: 30%;
}
.mailForm .leftMap .mapPhoneBox4 {
  top: 50%;
  left: 55%;
}
.mailForm .rightForm {
  width: 55%;
  position: relative;
}
@media (max-width: 1024px) {
  .mailForm .rightForm {
    width: 100%;
    padding: 0 5%;
  }
}
.mailForm .rightForm .sectionTitle {
  position: absolute;
  top: 2.5%;
  right: 8.5%;
  text-align: right;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
  .mailForm .rightForm .sectionTitle {
    padding-right: 0;
  }
}
.mailForm .rightForm .sectionTitle p {
  font-size: 64px;
}
@media (max-width: 1024px) {
  .mailForm .rightForm .sectionTitle p {
    font-size: 24px;
  }
}
.mailForm .rightForm .sectionTitle h2 {
  font-size: 32px;
  font-weight: 100;
  letter-spacing: 4px;
}
@media (max-width: 1024px) {
  .mailForm .rightForm .sectionTitle h2 {
    font-size: 16px;
  }
}
.mailForm .rightForm .formSlogan {
  padding-top: 15%;
  margin-left: 10%;
  margin-bottom: 20px;
  color: #fff;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .mailForm .rightForm .formSlogan {
    margin-left: 0;
    display: none;
  }
}
.mailForm .rightForm #form {
  width: 500px;
  margin-left: 10%;
}
@media (max-width: 1024px) {
  .mailForm .rightForm #form {
    width: 100%;
    margin-left: 0;
    padding-top: 75px;
  }
}
.mailForm .rightForm #form label {
  font-size: 18px;
  color: #fff;
}
@media (max-width: 1024px) {
  .mailForm .rightForm #form label {
    font-size: 16px;
  }
}
.mailForm .rightForm #form label::before {
  content: "*";
  color: #f00;
}
.mailForm .rightForm #form input {
  padding: 4px;
  border-radius: 2px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
}
.mailForm .rightForm #form .form1 {
  margin-bottom: 10px;
}
.mailForm .rightForm #form .form1 .form-name {
  display: flex;
  flex-direction: column;
}
.mailForm .rightForm #form .form1 .form-name label {
  margin-bottom: 10px;
}
.mailForm .rightForm #form .form1 .form-name input {
  margin-bottom: 10px;
  width: 100%;
}
.mailForm .rightForm #form .form1 .form-sex input {
  margin: 0 5px;
}
.mailForm .rightForm #form .form2 .form-phone {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.mailForm .rightForm #form .form2 .form-phone label {
  margin-bottom: 10px;
}
.mailForm .rightForm #form .form2 .form-phone input {
  width: 100%;
}
.mailForm .rightForm #form .form2 .form-mail {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.mailForm .rightForm #form .form2 .form-mail label {
  margin-bottom: 10px;
}
.mailForm .rightForm #form .form2 .form-mail input {
  width: 100%;
}
.mailForm .rightForm #form .form3 .form-address {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.mailForm .rightForm #form .form3 .form-address label {
  margin-bottom: 10px;
}
.mailForm .rightForm #form .form3 .form-address select {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  border: none;
  padding: 4px;
  width: 100%;
}
.mailForm .rightForm #form .form-message {
  display: flex;
  flex-direction: column;
}
.mailForm .rightForm #form .form-message label {
  margin-bottom: 10px;
}
.mailForm .rightForm #form .form-message textarea {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  padding: 2px;
  min-width: 100%;
  max-width: 100%;
  min-height: 100px;
  max-height: 100px;
}
.mailForm .rightForm #form .form-btn {
  margin-top: 10px;
  display: flex;
  justify-content: space-evenly;
}
.mailForm .rightForm #form .form-btn button {
  padding: 5px 20px;
  font-size: 16px;
  border: 1px solid #fff;
  border-radius: 20px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: all 0.6s;
}
.mailForm .rightForm #form .form-btn button:hover {
  border: 1px solid #fb5ea0;
  color: #fb5ea0;
}
.mailForm .rightForm .mail-slogan {
  margin-top: 30px;
  margin-left: 5%;
  color: #fff;
}
@media (max-width: 1024px) {
  .mailForm .rightForm .mail-slogan {
    margin-left: 0;
    font-size: 14px;
    padding-bottom: 10px;
    text-align: center;
  }
}

.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fb5ea0;
  position: relative;
  padding: 6px 10px;
}
@media (max-width: 1024px) {
  .copyright {
    flex-direction: column-reverse;
    padding-bottom: 50px;
  }
}
.copyright .leftlogo {
  display: flex;
  align-items: center;
}
.copyright .leftlogo a img {
  padding-top: 5px;
  width: 180px;
}
.copyright .leftlogo .design {
  color: #fff;
  font-size: 12px;
  font-family: "CustomFontCollection", serif;
  margin-left: 5px;
}
.copyright .leftlogo .design p:first-child {
  color: #ffae9c;
}
.copyright .leftlogo .design p a {
  color: #ffae9c;
}
.copyright .centerPhoneList {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1024px) {
  .copyright .centerPhoneList {
    display: none;
  }
}
.copyright .centerPhoneList a {
  font-family: "CustomFontCollection", serif;
  color: #fff;
  font-size: 18px;
  border-left: 1px solid #fff;
  margin: 0 2px;
  padding: 0 2px;
}
.copyright .centerPhoneList a:first-child {
  border-left: none;
}
@media (max-width: 1024px) {
  .copyright .rightPact {
    margin-bottom: 10px;
  }
}
.copyright .rightPact a {
  font-size: 12px;
  color: #fff;
  border-left: 1px solid #fff;
  margin: 0 2px;
  padding: 0 2px;
}
.copyright .rightPact a:first-child {
  border-left: none;
}

.fixedLogo {
  position: fixed;
  top: 0;
  left: 1%;
  width: 120px;
  height: 120px;
  background: #fb5ea0;
  z-index: 6;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  transition: opacity 0.5s ease;
  opacity: 1;
}
@media (max-width: 1024px) {
  .fixedLogo {
    width: 100px;
    height: 100px;
    left: 0;
  }
}
.fixedLogo a {
  position: relative;
  display: block;
  width: 120px;
  height: auto;
}
@media (max-width: 1024px) {
  .fixedLogo a {
    width: 100px;
  }
}
.fixedLogo a .logo1,
.fixedLogo a .logo2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  transition: opacity 1s ease;
}
@media (max-width: 1024px) {
  .fixedLogo a .logo1,
  .fixedLogo a .logo2 {
    width: 100px;
  }
}
.fixedLogo a .logo2 {
  opacity: 0;
}
.fixedLogo a:hover .logo1 {
  opacity: 0;
}
.fixedLogo a:hover .logo2 {
  opacity: 1;
}

.fixedLogo.hidden {
  opacity: 0;
}

.pcLeftFixedButtons {
  position: fixed;
  left: 20px;
  z-index: 9;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.6s;
}
@media (max-width: 1024px) {
  .pcLeftFixedButtons {
    display: none;
  }
}

.pcPhoneButton {
  background: #fba75e;
  bottom: 26%;
}
.pcPhoneButton:hover {
  background: #ffd8b7;
}

.pcLineButton {
  background: #2ebb4f;
  bottom: 18%;
}
.pcLineButton:hover {
  background: #91e6a5;
}

.pcMessageButton {
  background: #d81a60;
  bottom: 10%;
}
.pcMessageButton:hover {
  background: #e193af;
}

.pcRightFixedButtons {
  position: fixed;
  right: 20px;
  z-index: 9;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.6s;
}
@media (max-width: 1024px) {
  .pcRightFixedButtons {
    display: none;
  }
}

.goTopButton {
  background: #fb5ea0;
  bottom: 10%;
}
.goTopButton:hover {
  background: #ffbed9;
}

/* 隱藏 Google reCAPTCHA 徽章 */
.grecaptcha-badge {
  visibility: hidden;
}

/* 完全移除 Google reCAPTCHA 徽章 */
.grecaptcha-badge {
  display: none;
}

.google-reCAPTCHA {
  font-family: "CustomFontCollection", serif;
  font-size: 12px;
  text-align: center;
  background: #fb5ea0;
  color: #fff;
}
@media (max-width: 1024px) {
  .google-reCAPTCHA {
    padding: 0 5%;
  }
}
.google-reCAPTCHA a {
  color: #fff;
}

.rightFade-enter-active,
.rightFade-leave-active {
  transition: all 0.5s ease;
}

.rightFade-enter,
.rightFade-leave-to {
  transform: translateX(100%);
  opacity: 0;
}/*# sourceMappingURL=main.css.map */