@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

.sectionTitle {
  text-align: center;
}
.sectionTitle h2 {
  color: #555;
  font-size: 26px;
  margin-bottom: 5px;
}
.sectionTitle p {
  color: #d88aa0;
  font-family: sans-serif;
}

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

.slide-enter-from,
.slide-leave-to {
  transform: translateY(120px);
  opacity: 0;
}

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

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

header {
  width: 100%;
  background-color: #f5dce0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
}
@media (max-width: 1024px) {
  header {
    flex-direction: column;
  }
}
header > a img {
  width: 300px;
}
header .headerContact {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  header .headerContact {
    position: relative;
    top: initial;
    right: initial;
    transform: translateY(0);
    margin-top: 20px;
  }
}
header .headerContact a {
  font-size: 14px;
  color: #fff;
  padding: 10px 20px;
  letter-spacing: 2px;
  text-align: center;
}
header .headerContact a:first-child {
  background-color: #6e5d91;
}
header .headerContact a:last-child {
  background-color: #8cc541;
}

nav {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
  transition: top 0.3s;
}
@media (max-width: 1024px) {
  nav {
    flex-direction: column;
  }
}
nav .backToIndex {
  margin-right: 50px;
}
@media (max-width: 1024px) {
  nav .backToIndex {
    margin-right: 0;
    display: none;
  }
}
nav .backToIndex img {
  width: 200px;
}
@media (max-width: 1024px) {
  nav .backToIndex img {
    margin-bottom: 20px;
  }
}
nav .linkGroup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  nav .linkGroup {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 0px;
         column-gap: 0px;
    row-gap: 10px;
  }
}
nav .linkGroup a {
  color: #6e5d91;
  margin: 0px 20px;
}
nav .linkGroup a img {
  margin-right: 2px;
}
nav .linkGroup .serviceContentMenu {
  position: absolute;
  top: 30px;
  left: 5%;
  display: block;
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  z-index: 1000;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 10px;
}
nav .linkGroup .serviceContentMenu a:hover {
  color: #d5889e;
}

.fixed-nav {
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: top 0.3s;
}

.hidden-nav {
  opacity: 0;
  transition: opacity 0.3s;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.modal-content {
  height: 80%;
  background: #f1dde0;
  padding: 20px;
  border-radius: 5px;
  position: relative;
  width: 80%;
  max-width: 300px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
.modal-content a {
  width: 80%;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  color: #fff !important;
  background: linear-gradient(#d5889e, #a47499, #725e92);
  padding: 10px;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  border: none;
  font-size: 16px;
  cursor: pointer;
}
.close-btn i {
  font-size: 20px;
  color: #725e92;
}

.indexCover {
  width: 100%;
  height: 90vh;
  background: url("../img/index/index_cover.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0px;
}
@media (max-width: 1024px) {
  .indexCover {
    height: auto;
  }
}
.indexCover h1 {
  text-align: center;
  color: #6e5d91;
  font-size: 32px;
}
@media (max-width: 1024px) {
  .indexCover h1 {
    font-size: 16px;
    padding: 0 3%;
  }
}
.indexCover img {
  margin-top: 50px;
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .indexCover img {
    width: 100px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.indexCover .coverText {
  text-align: center;
  color: #db4d6e;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3);
}
.indexCover .coverText p {
  margin-bottom: 0px;
}
.indexCover .coverText p:nth-child(1) {
  font-size: 38px;
}
@media (max-width: 1024px) {
  .indexCover .coverText p:nth-child(1) {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .indexCover .coverText p:nth-child(2) {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .indexCover .coverText p:nth-child(3), .indexCover .coverText p:nth-child(4) {
    display: none;
  }
}
.indexCover .coverText a {
  display: inline-block;
  color: #db4d6e;
  font-size: 38px;
  font-family: sans-serif;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .indexCover .coverText a {
    font-size: 18px;
    margin-bottom: 0;
  }
}

.indexService {
  background: linear-gradient(#fff6f7, #fefefe);
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}
.indexService .serviceLinks {
  padding-top: 50px;
}
.indexService .serviceLinks .serviceCards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 100px;
       column-gap: 100px;
  row-gap: 60px;
}
@media (max-width: 1024px) {
  .indexService .serviceLinks .serviceCards {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 50px;
         column-gap: 50px;
    row-gap: 50px;
    padding: 0 5%;
  }
}
.indexService .serviceLinks .serviceCards .serviceCard {
  display: flex;
  flex-direction: column;
}
.indexService .serviceLinks .serviceCards .serviceCard > div {
  position: relative;
  display: inline-block;
}
.indexService .serviceLinks .serviceCards .serviceCard > div::after {
  content: "";
  background: url("../img/service/花框.png") no-repeat center;
  background-size: cover;
  width: 120%; /* 确保花框和图片尺寸一致 */
  height: 120%;
  position: absolute;
  top: -10%;
  left: -10%;
  pointer-events: none; /* 防止伪元素影响交互 */
  z-index: 1;
}
.indexService .serviceLinks .serviceCards .serviceCard > div > div {
  border-radius: 50%;
  overflow: hidden;
}
.indexService .serviceLinks .serviceCards .serviceCard > div > div img {
  width: 100%;
  border-radius: 50%;
  position: relative;
  transform: scale(1);
  transition: all 0.3s;
}
.indexService .serviceLinks .serviceCards .serviceCard > div > div img:hover {
  transform: scale(1.2);
}
.indexService .serviceLinks .serviceCards .serviceCard span {
  text-align: center;
  margin-top: 40px;
  color: #db4d6e;
  letter-spacing: normal;
  font-weight: bold;
  font-size: 22px;
}
.indexService .bgFlower {
  position: absolute;
  top: -60px;
  left: -30px;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .indexService .bgFlower {
    width: 250px;
    top: 0;
    left: 0;
  }
}

.indexFeedback {
  width: 100%;
  overflow: hidden;
  padding: 50px 10%;
  background: linear-gradient(#ffffff, #fffff0);
  position: relative;
}
.indexFeedback .FeedbackSwiper {
  padding-top: 30px;
  width: 100%;
  height: 480px;
}
@media (max-width: 1024px) {
  .indexFeedback .FeedbackSwiper {
    height: 550px;
  }
}
.indexFeedback .FeedbackSwiper .swiper-slide img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
}
.indexFeedback .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  border: 1px solid #000;
  background-color: transparent;
}
.indexFeedback .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  border: 1px solid #000;
  background-color: #000;
}
@media (max-width: 1024px) {
  .indexFeedback .swiper-pagination-progressbar {
    top: initial;
    bottom: 0;
    border: 1px solid #000;
    background: transparent;
  }
  .indexFeedback .swiper-pagination-progressbar span {
    background: #000;
  }
}
.indexFeedback .bgFlower {
  position: absolute;
  top: -150px;
  right: -100px;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .indexFeedback .bgFlower {
    width: 250px;
    top: -30px;
    right: 0px;
  }
}

.indexCaseList,
.indexKnowledgeList {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(#fffff0, #f1eafd);
  padding: 100px 0;
  position: relative;
}
.indexCaseList .articlesIndexBox,
.indexKnowledgeList .articlesIndexBox {
  padding: 0;
}
.indexCaseList .articlesIndexBox .articlesIndex .articleBox,
.indexKnowledgeList .articlesIndexBox .articlesIndex .articleBox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #fff;
  padding: 10px 20px;
  margin: 10px 0;
  box-shadow: 3px 3px 3px #ccc;
  border-radius: 5px;
  position: relative;
}
.indexCaseList .articlesIndexBox .articlesIndex .articleBox:nth-child(odd),
.indexKnowledgeList .articlesIndexBox .articlesIndex .articleBox:nth-child(odd) {
  background-color: #e2d6f6;
}
.indexCaseList .articlesIndexBox .articlesIndex .articleBox .articlePreview,
.indexKnowledgeList .articlesIndexBox .articlesIndex .articleBox .articlePreview {
  justify-self: flex-start;
}
.indexCaseList .articlesIndexBox .articlesIndex .articleBox .articlePreview .articleTitle,
.indexKnowledgeList .articlesIndexBox .articlesIndex .articleBox .articlePreview .articleTitle {
  color: #000;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .indexCaseList .articlesIndexBox .articlesIndex .articleBox .articlePreview .articleTitle,
  .indexKnowledgeList .articlesIndexBox .articlesIndex .articleBox .articlePreview .articleTitle {
    font-size: 18px;
    padding-right: 20px;
  }
}
.indexCaseList .articlesIndexBox .articlesIndex .articleBox .articlePreview .articlePart,
.indexKnowledgeList .articlesIndexBox .articlesIndex .articleBox .articlePreview .articlePart {
  color: #000;
}
@media (max-width: 1024px) {
  .indexCaseList .articlesIndexBox .articlesIndex .articleBox .articlePreview .articlePart,
  .indexKnowledgeList .articlesIndexBox .articlesIndex .articleBox .articlePreview .articlePart {
    display: none;
  }
}
.indexCaseList .articlesIndexBox .articlesIndex .articleBox .rightArrowIcon,
.indexKnowledgeList .articlesIndexBox .articlesIndex .articleBox .rightArrowIcon {
  position: absolute;
  right: 10px;
}
.indexCaseList .articlesIndexBox .articlesIndex .articleBox .rightArrowIcon i,
.indexKnowledgeList .articlesIndexBox .articlesIndex .articleBox .rightArrowIcon i {
  color: #000;
  font-size: 28px;
}
.indexCaseList .readMoreBtn,
.indexKnowledgeList .readMoreBtn {
  margin-top: 50px;
  text-align: center;
}
.indexCaseList .readMoreBtn a,
.indexKnowledgeList .readMoreBtn a {
  font-family: sans-serif;
  font-size: 20px;
  padding: 10px 30px;
  border-radius: 20px;
  color: #fff;
  background-color: #6e5d91;
}
.indexCaseList .readMoreBtn a:hover,
.indexKnowledgeList .readMoreBtn a:hover {
  background-color: #564972;
}

.indexKnowledgeList {
  background: linear-gradient(#f1eafd, #fefcfc);
}
.indexKnowledgeList .articlesIndexBox .articlesIndex .articleBox {
  background-color: #fff;
}
.indexKnowledgeList .articlesIndexBox .articlesIndex .articleBox:nth-child(odd) {
  background-color: #eed6dc;
}
.indexKnowledgeList .readMoreBtn a {
  background-color: #d88a9f;
}
.indexKnowledgeList .readMoreBtn a:hover {
  background-color: #cb6480;
}
.indexKnowledgeList .bgFlower {
  width: 450px;
  position: absolute;
  top: -30px;
  right: -60px;
  pointer-events: none;
}

.indexCaseList .bgFlower {
  position: absolute;
  top: -100px;
  left: -250px;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .indexCaseList .bgFlower {
    width: 250px;
    top: -10px;
    left: -50px;
  }
}

.mailForm {
  padding: 30px 0;
  background: url("../img/contact/CONSULTATION_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mailFormContent {
  display: grid;
  place-items: center;
}
@media (max-width: 1024px) {
  .mailFormContent {
    place-items: initial;
    padding: 0 3%;
  }
}

form#form {
  padding-top: 30px;
  font-size: 16px;
}
form#form .form1 {
  display: flex;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  form#form .form1 {
    flex-direction: column;
  }
}
form#form .form1 .form-name {
  margin-right: 20px;
}
@media (max-width: 1024px) {
  form#form .form1 .form-name {
    margin-right: 0;
  }
}
form#form .form1 .form-name label {
  color: #000;
  margin-right: 10px;
}
form#form .form1 .form-name label::before {
  content: "*";
  color: #f00;
}
form#form .form1 .form-name input {
  background-color: rgba(216, 138, 160, 0.3);
  border: none;
  border-radius: 5px;
  padding: 4px;
}
form#form .form1 .form-name input:focus {
  outline: none;
}
@media (max-width: 1024px) {
  form#form .form1 .form-name input {
    margin-bottom: 10px;
    width: 100%;
  }
}
form#form .form1 .form-sex label {
  margin-right: 10px;
}
form#form .form2 {
  display: flex;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  form#form .form2 {
    flex-direction: column;
  }
}
form#form .form2 label {
  color: #000;
  margin-right: 10px;
}
form#form .form2 label::before {
  content: "*";
  color: #f00;
}
form#form .form2 input {
  background-color: rgba(216, 138, 160, 0.3);
  border: none;
  border-radius: 5px;
  padding: 4px;
}
form#form .form2 input:focus {
  outline: none;
}
@media (max-width: 1024px) {
  form#form .form2 input {
    width: 100%;
  }
}
form#form .form2 .form-phone {
  margin-right: 25px;
}
@media (max-width: 1024px) {
  form#form .form2 .form-phone {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
form#form .form3 {
  margin-bottom: 20px;
}
form#form .form3 label {
  color: #000;
  margin-right: 10px;
}
form#form .form3 label::before {
  content: "*";
  color: #f00;
}
@media (max-width: 1024px) {
  form#form .form3 label {
    display: block;
  }
}
form#form .form3 select {
  width: 33%;
  padding: 5px;
  background-color: rgba(216, 138, 160, 0.3);
  border: none;
  border-radius: 4px;
}
form#form .form3 select:focus {
  outline: none;
}
@media (max-width: 1024px) {
  form#form .form3 select {
    width: 100%;
  }
}
form#form .form-message {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
form#form .form-message label {
  color: #000;
  margin-bottom: 10px;
}
form#form .form-message label::before {
  content: "*";
  color: #f00;
}
form#form .form-message textarea {
  width: 100%;
  height: 150px;
  resize: none;
  background-color: rgba(216, 138, 160, 0.3);
  border: none;
  border-radius: 5px;
  padding: 5px;
}
form#form .form-message textarea:focus {
  outline: none;
}
form#form .form-btn {
  display: flex;
  justify-content: space-evenly;
}
form#form .form-btn button {
  color: #df5d7e;
  background-color: transparent;
  border: 1px solid #df5d7e;
  border-radius: 30px;
  padding: 5px 20px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s;
  cursor: pointer;
}
form#form .form-btn button:hover {
  color: #fff;
  background-color: #df5d7e;
  border: 1px solid #df5d7e;
}
@media (max-width: 1024px) {
  form#form .form-btn button {
    margin: 0px 20px;
  }
}

.mail-slogan {
  padding: 0 5%;
  margin: 30px 0;
  text-align: center;
  font-size: 18px;
}

footer {
  background-color: #fcf0f0;
  padding-top: 30px;
}

#footerPhoneList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 0px;
  padding: 30px 0;
}
@media (max-width: 1024px) {
  #footerPhoneList {
    grid-template-columns: repeat(1, 1fr);
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 0px;
  }
}
#footerPhoneList .phoneListBox {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#footerPhoneList .phoneListBox h5 {
  color: #d15070;
  font-size: 26px;
  letter-spacing: 2px;
  border: 1px solid #d15070;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 4px;
}
@media (max-width: 1024px) {
  #footerPhoneList .phoneListBox h5 {
    background: #fff;
    border-radius: 10px;
    padding: 10px 20px;
  }
}
#footerPhoneList .phoneListBox .phoneNumber {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
}
@media (max-width: 1024px) {
  #footerPhoneList .phoneListBox .phoneNumber {
    align-items: flex-start;
    overflow: hidden;
    height: 0;
    transition: all 0.3s;
  }
  #footerPhoneList .phoneListBox .phoneNumber.active {
    height: 250px;
  }
}
#footerPhoneList .phoneListBox .phoneNumber a {
  color: #d15070;
  letter-spacing: 4px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
#footerPhoneList .phoneListBox .phoneNumber a span {
  text-align: center;
  padding: 4px;
  border: 1px solid #d15070;
  border-radius: 5px;
}
@media (max-width: 1024px) {
  #footerPhoneList .phoneListBox .phoneNumber a span {
    padding: 0;
    border: none;
    border-radius: 0px;
  }
}
#footerPhoneList .phoneListBox .phoneNumber a:hover {
  color: #f00;
}
@media (max-width: 1024px) {
  #footerPhoneList .phoneListBox .phoneNumber a {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.footer-bottom-text {
  text-align: center;
  font-size: 18px;
  letter-spacing: 4px;
  padding-bottom: 20px;
  font-weight: bold;
}
.footer-bottom-text span {
  color: #f00;
}

.copyright {
  background-color: #d88a9f;
  color: #fff;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  position: relative;
}
@media (max-width: 1024px) {
  .copyright {
    flex-direction: column-reverse;
  }
}
.copyright .google-reCAPTCHA {
  text-align: center;
}
.copyright .google-reCAPTCHA a {
  color: #fff;
}
.copyright .center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1024px) {
  .copyright .center-text {
    text-align: center;
    position: relative;
    top: initial;
    left: initial;
    transform: translate(0, 0);
  }
}
.copyright .center-text a {
  color: #fff;
}
.copyright .right-pact a {
  color: #fff;
  border-left: 1px solid #fff;
  padding: 0px 5px;
}
.copyright .right-pact a:first-child {
  border-left: none;
}

.lineBtn,
.phoneBtn,
.goTopBtn {
  position: fixed;
  z-index: 9;
  right: 20px;
  width: 50px;
  height: 50px;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  display: grid;
  place-items: center;
}
@media (max-width: 1024px) {
  .lineBtn,
  .phoneBtn,
  .goTopBtn {
    right: 10px;
  }
}
.lineBtn a,
.phoneBtn a,
.goTopBtn a {
  width: 40px;
  height: 40px;
  padding: 5px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.lineBtn {
  top: 52%;
}
@media (max-width: 1024px) {
  .lineBtn {
    top: 61%;
  }
}
.lineBtn a {
  background: linear-gradient(#9ddd49, #4e6d22);
}
.lineBtn a img {
  width: 100%;
}

.phoneBtn {
  top: 60%;
}
@media (max-width: 1024px) {
  .phoneBtn {
    top: 70%;
  }
}
.phoneBtn a {
  background: linear-gradient(#a689e0, #6e5d91);
}
.phoneBtn a i {
  font-size: 30px;
  color: #fff;
}

.goTopBtn {
  top: 90%;
}
.goTopBtn a {
  background: linear-gradient(#f1cdd4, #dd5777);
}
.goTopBtn a i {
  font-size: 30px;
  color: #fff;
}

.aboutPage {
  width: 100%;
  position: relative;
}
.aboutPage .aboutPageBanner {
  width: 100%;
  position: relative;
}
.aboutPage .aboutPageBanner .pc {
  display: block;
  position: relative;
  width: 100%;
}
@media (max-width: 1024px) {
  .aboutPage .aboutPageBanner .pc {
    display: none;
  }
}
.aboutPage .aboutPageBanner .mobile {
  display: none;
}
@media (max-width: 1024px) {
  .aboutPage .aboutPageBanner .mobile {
    display: block;
    position: relative;
    width: 100%;
  }
}
.aboutPage .aboutPageBanner .bannerText {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.aboutPage .aboutPageBanner .bannerText p {
  text-align: center;
  color: #f6dde1;
  font-size: 52px;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .aboutPage .aboutPageBanner .bannerText p {
    font-size: 26px;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
  }
}
.aboutPage .aboutPageBanner .bannerText p:last-child {
  font-family: sans-serif;
}
.aboutPage article {
  background: linear-gradient(#fef8f8, #fffdfd);
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .aboutPage article {
    padding: 50px 3%;
  }
}
.aboutPage article h1 {
  color: #cb5976;
  font-size: 24px;
  margin-bottom: 10px;
}
.aboutPage article h2 {
  color: #cb5976;
  font-size: 20px;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .aboutPage article h2 {
    text-align: center;
  }
}
.aboutPage article h3 {
  text-align: center;
  color: #6e5f8b;
  margin: 50px 0;
}
@media (max-width: 1024px) {
  .aboutPage article h3 br {
    display: none;
  }
}
.aboutPage article p {
  margin-bottom: 20px;
}
.aboutPage article p span {
  color: #cb5976;
  font-weight: bold;
}
.aboutPage article li {
  margin-left: 20px;
  margin-bottom: 10px;
}
.aboutPage .logo {
  text-align: center;
}
.aboutPage .bgFlower1 {
  position: absolute;
  top: 450px;
  left: -50px;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .aboutPage .bgFlower1 {
    width: 100%;
    top: 12%;
  }
}
.aboutPage .bgFlower2 {
  width: 18%;
  position: absolute;
  right: 0px;
  bottom: 15%;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .aboutPage .bgFlower2 {
    width: 100%;
  }
}

.publicPage {
  background: linear-gradient(#fff, #fffdfd);
  position: relative;
}
.publicPage .bgFlower1 {
  position: absolute;
  top: 420px;
  left: -50px;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .publicPage .bgFlower1 {
    width: 100%;
    top: 12%;
  }
}
.publicPage .bgFlower2 {
  width: 20%;
  position: absolute;
  right: 0px;
  bottom: 0%;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .publicPage .bgFlower2 {
    display: none;
  }
}

.articleIndexPage {
  padding: 50px 0;
}
@media (max-width: 1024px) {
  .articleIndexPage {
    padding: 30px 0;
  }
}
.articleIndexPage .articlesIndexBox .articlesIndex .articleBox {
  display: block;
  padding: 10px;
  margin-bottom: 30px;
  border-bottom: 2px dotted #d64f6f;
}
.articleIndexPage .articlesIndexBox .articlesIndex .articleBox:hover {
  background-color: #fdf5f6;
}
.articleIndexPage .articlesIndexBox .articlesIndex .articleBox .articlePreview .articleTitle {
  font-size: 18px;
  color: #d64f6f;
  font-weight: bold;
  margin-bottom: 10px;
}
.articleIndexPage .articlesIndexBox .articlesIndex .articleBox .articlePreview .articleContent {
  color: #000;
}
.articleIndexPage .articlesIndexBox .articlesIndex .articleBox .rightArrowIcon {
  text-align: right;
  font-size: 12px;
  font-family: sans-serif;
  color: #d64f6f;
}
.articleIndexPage .articlesIndexBox .pagination {
  text-align: center;
}
.articleIndexPage .articlesIndexBox .pagination button {
  margin: 0 10px;
  background-color: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.articleIndexPage .articlesIndexBox .pagination button:hover {
  color: #d64f6f;
}
.articleIndexPage .articlesIndexBox .pagination button.active {
  color: #d64f6f;
}

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

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

.articlePageBtns {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
.articlePageBtns a {
  background-color: #fe3d72;
  color: #fff;
  padding: 5px 20px;
  border-radius: 10px;
  font-size: 20px;
}
.articlePageBtns a:hover {
  background-color: #d4013b;
}

.priceContentText {
  padding-top: 50px;
  padding-bottom: 30px;
}
@media (max-width: 1024px) {
  .priceContentText {
    padding: 3%;
  }
}
.priceContentText p {
  margin-bottom: 10px;
  font-size: 16px;
}

.PCPriceTable {
  width: 100%;
  padding-bottom: 50px;
}
@media (max-width: 1024px) {
  .PCPriceTable {
    display: none;
  }
}
.PCPriceTable table {
  width: 100%;
  border-spacing: 5px 10px;
}
.PCPriceTable table thead td:nth-child(1) {
  width: 22%;
}
.PCPriceTable table thead td:nth-child(2) {
  width: 48%;
}
.PCPriceTable table thead td:nth-child(3) {
  width: 15%;
}
.PCPriceTable table thead td:nth-child(4) {
  width: 15%;
}
.PCPriceTable table thead tr td {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 5px 10px;
  color: #fff;
  background: #ea4f74;
  border-radius: 0px;
  box-shadow: 1px 1px 3px #ccc;
}
.PCPriceTable table tbody tr td {
  padding: 6px 10px;
  border-radius: 0px;
  border: 1px solid #ea4f74;
  font-size: 14px;
}
.PCPriceTable table tbody tr td:nth-child(1), .PCPriceTable table tbody tr td:nth-child(3), .PCPriceTable table tbody tr td:nth-child(4) {
  text-align: center;
}
.PCPriceTable table tbody tr:nth-child(even) td {
  background: #f5dce0;
}

.mobilePriceArea {
  display: none;
  padding-top: 30px;
  padding-bottom: 50px;
}
@media (max-width: 1024px) {
  .mobilePriceArea {
    display: block;
  }
}
.mobilePriceArea .accordionContent {
  overflow: hidden;
}
.mobilePriceArea .accordionContent > div {
  box-shadow: 0px 0px 3px #666;
  margin: 10px 0px;
  padding: 10px;
  background-color: #fbe9ee;
}
.mobilePriceArea .accordionContent h3 {
  margin: 0;
  color: #000;
  font-weight: bold;
  font-size: 20px;
  padding-left: 10px;
}
.mobilePriceArea .accordionContent p {
  padding: 0;
  padding-top: 10px;
  padding-left: 10px;
  margin: 0;
}
.mobilePriceArea > div:nth-child(odd) button {
  background: #ea4f74;
}
.mobilePriceArea button {
  width: 100%;
  text-align: center;
  background: #f099b0;
  border: none;
  outline: none;
  padding: 10px;
  cursor: pointer;
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  box-shadow: 0px 0px 3px #ccc;
  position: relative;
}
.mobilePriceArea button i {
  font-size: 26px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
.mobilePriceArea button.active i {
  transform: translate(-50%, -50%) rotate(90deg);
}

.moreServices {
  margin-top: 100px;
  padding: 20px 0;
  background-color: #f5dce0;
}
@media (max-width: 1024px) {
  .moreServices {
    display: none;
  }
}
.moreServices .sectionTitle {
  margin: 30px;
}
.moreServices .servicesGroup {
  width: 100%;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
}
.moreServices .servicesGroup .serviceBox {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.moreServices .servicesGroup .serviceBox img {
  border-radius: 10px;
  width: 100%;
  transition: all 0.3s;
  transform: scale(1);
}
.moreServices .servicesGroup .serviceBox img:hover {
  transform: scale(1.2);
}
.moreServices .servicesGroup .serviceBox .bosText {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: #fff;
  text-align: right;
}
.moreServices .servicesGroup .serviceBox .bosText .boxChineseTitle {
  font-size: 40px;
}
.moreServices .servicesGroup .serviceBox .bosText .boxEnglishTitle {
  font-family: sans-serif;
  font-size: 26px;
}

#moreKnowledgeBtn {
  margin-top: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  #moreKnowledgeBtn {
    flex-direction: column;
  }
}
#moreKnowledgeBtn a {
  display: inline-block;
  color: #d06a80;
  background: transparent;
  border: 1px solid #d06a80;
  padding: 10px;
  margin: 0 5px;
  border-radius: 10px;
}
#moreKnowledgeBtn a:hover {
  color: #fff;
  background: #d06a80;
}
@media (max-width: 1024px) {
  #moreKnowledgeBtn a {
    margin: 10px 0;
    text-align: center;
  }
}

.publicBanner {
  width: 100%;
  position: relative;
}
.publicBanner .pc {
  display: block;
  position: relative;
  width: 100%;
}
@media (max-width: 1024px) {
  .publicBanner .pc {
    display: none;
  }
}
.publicBanner .mobile {
  display: none;
}
@media (max-width: 1024px) {
  .publicBanner .mobile {
    display: block;
    position: relative;
    width: 100%;
  }
}
.publicBanner .bannerText {
  position: absolute;
  bottom: 20px;
  right: 20px;
  transform: translateX(0%);
  z-index: 2;
}
.publicBanner .bannerText p {
  text-align: right;
  color: #fff;
  font-size: 52px;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .publicBanner .bannerText p {
    font-size: 26px;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
  }
}
.publicBanner .bannerText p:last-child {
  font-family: sans-serif;
}

.custom-swal-popup-pink {
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0px 6px 15px rgba(255, 128, 170, 0.2);
  font-family: "Arial", sans-serif;
}

.custom-swal-title-pink {
  font-size: 24px;
  font-weight: bold;
  color: #d63384; /* 亮粉色標題 */
}

.custom-swal-text-pink {
  font-size: 16px;
  color: #6a1b4d;
  line-height: 1.6;
}

.animate__fadeInDown {
  animation: fadeInDown 0.5s ease-in-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=main.css.map */