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

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

.engFont {
  text-transform: uppercase;
}

.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%;
  }
}

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

footer {
  background-color: #f9d8ab;
  width: 100%;
}
footer .footerContent {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .footerContent h4 {
  font-size: 36px;
  letter-spacing: 2px;
  color: #b8456e;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  footer .footerContent h4 {
    font-size: 28px;
  }
}
footer .footerContent p {
  font-size: 30px;
  letter-spacing: 2px;
  color: #b8456e;
  margin-bottom: 20px;
  font-weight: bold;
}
@media (max-width: 1024px) {
  footer .footerContent p {
    font-size: 22px;
    text-align: center;
  }
}
footer .footerContent .footerPhone {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #b8456e;
}
footer .footerContent .footerPhone a {
  font-size: 28px;
  color: #b8456e;
  font-weight: bold;
}
footer .footerContent .footerPhone a:hover {
  color: white;
}

.copyright {
  background-color: #fcf0dd;
  font-size: 14px;
  width: 100%;
  position: relative;
  padding: 5px 10px;
}
@media (max-width: 1024px) {
  .copyright {
    font-size: 12px;
  }
}
.copyright .topArea {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .copyright .topArea {
    flex-direction: column-reverse;
  }
}
.copyright .topArea .LeftDesign {
  color: #000;
  text-align: center;
}
@media (max-width: 1024px) {
  .copyright .topArea .LeftDesign {
    margin: 5px 0;
  }
}
.copyright .topArea .LeftDesign a {
  color: #000;
}
@media (max-width: 1024px) {
  .copyright .topArea .rightPact {
    margin-top: 10px;
  }
}
.copyright .topArea .rightPact a {
  color: #000;
  border-left: 1px solid #000;
  padding: 0px 5px;
}
.copyright .topArea .rightPact a:first-child {
  border-left: none;
}
.copyright .center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 1024px) {
  .copyright .center {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
    margin-top: 5px;
    text-align: center;
  }
}

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

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

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s ease;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

#pcTopNavbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0 20px;
  box-shadow: 0px 1px 3px 0.3px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
  #pcTopNavbar {
    display: none;
  }
}
#pcTopNavbar .logo {
  padding-top: 10px;
}
#pcTopNavbar .logo img {
  width: 70%;
}
#pcTopNavbar .links {
  display: flex;
}
#pcTopNavbar .links > a {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 10px;
  padding-left: 10px;
  text-align: center;
  position: relative;
}
#pcTopNavbar .links > a:hover {
  background-color: #ad312a;
}
#pcTopNavbar .links > a:hover span {
  color: #fff;
}
#pcTopNavbar .links > a span {
  display: block;
  margin-bottom: 5px;
  color: #ad312a;
}
#pcTopNavbar .links > a span:first-child {
  letter-spacing: 2px;
  font-size: 18px;
  font-weight: bold;
}
#pcTopNavbar .links > a .engFont {
  font-size: 12px;
  font-weight: bold;
  font-family: sans-serif;
}
#pcTopNavbar .links .service-content {
  display: none;
  grid-template-columns: repeat(1, 1fr);
  position: absolute;
  top: 100%;
  right: 430px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
  min-width: 100px;
  border-radius: 5px;
  box-shadow: 3px 3px 3px 0.3p rgba(0, 0, 0, 0.3);
}
#pcTopNavbar .links .service-content a {
  display: block;
  padding: 10px 20px;
  color: #ad312a;
  letter-spacing: 2px;
  font-weight: bold;
}
#pcTopNavbar .links .service-content a:hover {
  background-color: #ad312a;
  color: #fff;
}
#pcTopNavbar .links .related-content {
  right: 110px;
  grid-template-columns: repeat(1, 1fr);
}

#mobileTopNavbar {
  display: none;
  position: fixed;
  background-color: #fcf0dd;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  padding: 15px 0;
}
@media (max-width: 1024px) {
  #mobileTopNavbar {
    display: block;
  }
}
#mobileTopNavbar > a {
  padding-left: 10px;
}
#mobileTopNavbar > a img {
  width: 70%;
}
#mobileTopNavbar .menuIcon {
  position: absolute;
  transform: translate(0%, -50%);
  top: 50%;
  right: 10px;
}
#mobileTopNavbar .menuIcon a i {
  font-size: 50px;
  color: #ad312a;
}

#mainMenuList {
  position: fixed;
  background-color: #fff2f2;
  top: 83.02px;
  left: 0;
  z-index: 9;
  width: 100%;
  height: calc(100% - 83.02px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}
#mainMenuList a {
  border-radius: 10px;
  width: 100%;
  color: #fff;
  background-color: #c13331;
  height: 16.6666666667%;
  margin: 5px 0;
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
#mainMenuList a span {
  display: block;
}
#mainMenuList a span:last-child {
  font-size: 12px;
}

#serviceMenuList {
  position: fixed;
  background-color: #fff2f2;
  top: 83.02px;
  left: 0;
  z-index: 9;
  width: 100%;
  height: calc(100% - 83.02px);
  padding: 10px;
}
#serviceMenuList .goBackMainMenu {
  display: block;
  padding: 20px;
  width: 100%;
  background-color: #c13331;
  border-radius: 10px;
  position: relative;
}
#serviceMenuList .goBackMainMenu span {
  display: block;
  color: #fff;
}
#serviceMenuList .goBackMainMenu span:last-child {
  font-size: 14px;
}
#serviceMenuList .goBackMainMenu i {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  right: 10px;
  color: #c13331;
  background-color: #fff;
  border-radius: 50%;
  font-size: 32px;
}
#serviceMenuList .serviceLinks {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  height: 85%;
}
#serviceMenuList .serviceLinks a {
  border-radius: 10px;
  color: #fff;
  background-color: #c13331;
  margin: 5px;
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
#serviceMenuList .serviceLinks a span {
  display: block;
}
#serviceMenuList .serviceLinks a span:last-child {
  font-size: 12px;
}

.indexCoverBanner {
  width: 100%;
  height: 100vh;
}
.indexCoverBanner .swiper-wrapper .swiper-slide .cover1,
.indexCoverBanner .swiper-wrapper .swiper-slide .cover2,
.indexCoverBanner .swiper-wrapper .swiper-slide .cover3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.indexCoverBanner .swiper-wrapper .swiper-slide .cover1 p,
.indexCoverBanner .swiper-wrapper .swiper-slide .cover2 p,
.indexCoverBanner .swiper-wrapper .swiper-slide .cover3 p {
  font-weight: bold;
  font-size: 30px;
  margin: 30px 0;
}
@media (max-width: 1024px) {
  .indexCoverBanner .swiper-wrapper .swiper-slide .cover1 p,
  .indexCoverBanner .swiper-wrapper .swiper-slide .cover2 p,
  .indexCoverBanner .swiper-wrapper .swiper-slide .cover3 p {
    font-size: 20px;
    text-align: center;
    padding: 0 20%;
  }
}
.indexCoverBanner .swiper-wrapper .swiper-slide .cover1 a,
.indexCoverBanner .swiper-wrapper .swiper-slide .cover2 a,
.indexCoverBanner .swiper-wrapper .swiper-slide .cover3 a {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 25px;
}
.indexCoverBanner .swiper-wrapper .swiper-slide .cover1 {
  background-image: url("../img/cover/cover1_0.jpg");
  color: #ad312a;
}
.indexCoverBanner .swiper-wrapper .swiper-slide .cover1 h1 {
  font-size: 60px;
}
@media (max-width: 1024px) {
  .indexCoverBanner .swiper-wrapper .swiper-slide .cover1 h1 {
    text-align: center;
    font-size: 36px;
    padding: 0 10%;
  }
}
.indexCoverBanner .swiper-wrapper .swiper-slide .cover1 a {
  color: #fff;
  background-color: #ad312a;
}
.indexCoverBanner .swiper-wrapper .swiper-slide .cover2 {
  background: url("../img/cover/cover2_0.jpg");
  color: #2f4a79;
}
.indexCoverBanner .swiper-wrapper .swiper-slide .cover2 h2 {
  font-size: 60px;
}
@media (max-width: 1024px) {
  .indexCoverBanner .swiper-wrapper .swiper-slide .cover2 h2 {
    text-align: center;
    font-size: 36px;
    padding: 0 10%;
  }
}
.indexCoverBanner .swiper-wrapper .swiper-slide .cover2 a {
  color: #fff;
  background-color: #2f4a79;
}
.indexCoverBanner .swiper-wrapper .swiper-slide .cover3 {
  background: url("../img/cover/cover3_0.jpg");
  color: #fff;
}
.indexCoverBanner .swiper-wrapper .swiper-slide .cover3 h2 {
  font-size: 60px;
}
@media (max-width: 1024px) {
  .indexCoverBanner .swiper-wrapper .swiper-slide .cover3 h2 {
    text-align: center;
    font-size: 36px;
    padding: 0 10%;
  }
}
.indexCoverBanner .swiper-wrapper .swiper-slide .cover3 a {
  color: #000;
  background-color: #fff;
}
.indexCoverBanner .swiper-pagination {
  bottom: 50px;
}
.indexCoverBanner .swiper-pagination .swiper-pagination-bullet {
  margin: 0 20px;
  background-color: #ad312a;
}
.indexCoverBanner .swiper-button-next {
  right: 20px;
  color: #ad312a;
  font-weight: bold;
}
.indexCoverBanner .swiper-button-prev {
  left: 20px;
  color: #ad312a;
  font-weight: bold;
}

.indexAbout {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
}
@media (max-width: 1024px) {
  .indexAbout {
    flex-direction: column;
    height: auto;
  }
}
.indexAbout .leftImg {
  width: 50%;
}
@media (max-width: 1024px) {
  .indexAbout .leftImg {
    width: 100%;
  }
}
.indexAbout .leftImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.indexAbout .rightText {
  width: 50%;
  position: relative;
  background: url("../img/bg/BG_0.jpg");
  display: grid;
  place-content: center;
  padding: 0 5%;
}
@media (max-width: 1024px) {
  .indexAbout .rightText {
    width: 100%;
    padding: 50px 3%;
  }
}
.indexAbout .rightText::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
}
.indexAbout .rightText .sectionTitle {
  position: relative;
  z-index: 2;
}
.indexAbout .rightText .sectionTitle h2 {
  font-size: 60px;
  font-weight: bold;
  color: #ad312a;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .indexAbout .rightText .sectionTitle h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.indexAbout .rightText .textContent {
  position: relative;
  z-index: 2;
}
.indexAbout .rightText .textContent h3 {
  color: #ad312a;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .indexAbout .rightText .textContent h3 {
    font-size: 20px;
    font-weight: bold;
    padding: 0 3%;
  }
}
.indexAbout .rightText .textContent p {
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .indexAbout .rightText .textContent p {
    padding: 0 3%;
  }
}
.indexAbout .rightText > img {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  right: 60px;
}
@media (max-width: 1750px) {
  .indexAbout .rightText > img {
    width: 250px;
    margin: 0 auto;
  }
}
@media (max-width: 1550px) {
  .indexAbout .rightText > img {
    width: 200px;
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .indexAbout .rightText > img {
    position: relative;
    bottom: initial;
    right: initial;
    width: 90%;
    margin: 0 auto;
  }
}

.indexMission {
  width: 100%;
  height: 100vh;
  background: url("../img/bg/BG2_0.jpg");
  display: flex;
}
@media (max-width: 1024px) {
  .indexMission {
    height: auto;
    flex-direction: column-reverse;
  }
}
.indexMission .leftText {
  width: 50%;
  display: grid;
  place-content: center;
  padding: 0 5%;
}
@media (max-width: 1024px) {
  .indexMission .leftText {
    width: 100%;
    padding: 0 3%;
    padding-bottom: 50px;
  }
}
.indexMission .leftText .sectionTitle h2 {
  font-size: 60px;
  font-weight: bold;
  color: #ad312a;
  margin-bottom: 60px;
}
.indexMission .leftText .sectionTitle h2 span {
  font-size: 48px;
}
@media (max-width: 1024px) {
  .indexMission .leftText .sectionTitle h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    margin-top: 20px;
    letter-spacing: 6px;
  }
  .indexMission .leftText .sectionTitle h2 span {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .indexMission .leftText .textContent {
    padding: 0 3%;
  }
}
.indexMission .leftText .textContent h3 {
  color: #ad312a;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .indexMission .leftText .textContent h3 {
    text-align: center;
    padding-bottom: 10px;
  }
}
.indexMission .leftText .textContent p {
  margin-bottom: 40px;
}
.indexMission .rightImg {
  width: 50%;
  height: 100%;
  -webkit-clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0% 100%);
}
@media (max-width: 1024px) {
  .indexMission .rightImg {
    -webkit-clip-path: polygon(0% 0, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0, 100% 0%, 100% 100%, 0% 100%);
    width: 100%;
  }
}
.indexMission .rightImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.9);
}

.indexSupport {
  width: 100%;
  height: 100vh;
  background-color: #fceef4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .indexSupport {
    height: auto;
  }
}
.indexSupport .sectionTitle h2 {
  text-align: center;
  font-size: 60px;
  color: #ad312a;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .indexSupport .sectionTitle h2 {
    font-size: 32px;
    margin-bottom: 30px;
    margin-top: 20px;
    letter-spacing: 6px;
  }
}
.indexSupport .sectionTitle h2 span {
  font-size: 42px;
}
@media (max-width: 1024px) {
  .indexSupport .sectionTitle h2 span {
    font-size: 16px;
  }
}
.indexSupport .textContent {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .indexSupport .textContent {
    padding: 0 5%;
  }
}
.indexSupport .textContent h4 {
  font-size: 26px;
  margin-bottom: 10px;
}
.indexSupport .textContent h4 span {
  color: #ad312a;
}
.indexSupport .textContent p {
  font-weight: bold;
  margin-bottom: 5px;
}
@media (max-width: 1024px) {
  .indexSupport .textContent p {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.indexSupport .results {
  width: 1200px;
}
@media (max-width: 1024px) {
  .indexSupport .results {
    width: 100%;
  }
}
.indexSupport .results .resultsTitle {
  text-align: center;
  color: #ad312a;
  margin-bottom: 50px;
}
.indexSupport .results .resultsTitle h4 {
  font-size: 36px;
  letter-spacing: 2px;
}
@media (max-width: 1024px) {
  .indexSupport .results .resultsTitle h4 {
    font-size: 48px;
  }
}
.indexSupport .results .resultsTitle p {
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .indexSupport .results .resultsTitle p {
    font-size: 24px;
  }
}
.indexSupport .results .resultsData {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .indexSupport .results .resultsData {
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .indexSupport .results .resultsData .dataBox {
    width: 100%;
    padding: 0 3%;
  }
}
.indexSupport .results .resultsData .dataBox p {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .indexSupport .results .resultsData .dataBox p {
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: center;
  }
}
.indexSupport .results .resultsData .dataBox div {
  background-color: #f7cd93;
  color: #ad312a;
  position: relative;
  font-size: 120px;
  display: grid;
  place-content: center;
  padding: 20px;
  font-family: sans-serif;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .indexSupport .results .resultsData .dataBox div {
    font-size: 160px;
    margin-bottom: 30px;
  }
}
.indexSupport .results .resultsData .dataBox div span {
  font-weight: bold;
  color: #000;
  font-size: 16px;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transform: translate(-50%, -50%);
  text-shadow: none;
}

.indexNews {
  width: 100%;
  height: 100vh;
  background: url(../img/news/04.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .indexNews {
    height: auto;
  }
}
.indexNews .sectionTitle {
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .indexNews .sectionTitle {
    margin-top: 50px;
  }
}
.indexNews .sectionTitle h2 {
  font-size: 52px;
}
.indexNews .sectionTitle p {
  font-size: 26px;
}
.indexNews .indexNewsSwiper {
  width: 80%;
}
@media (max-width: 1024px) {
  .indexNews .indexNewsSwiper {
    height: 550px;
  }
}
.indexNews .indexNewsSwiper .newsBox {
  background-color: #fff;
  border-radius: 20px;
  height: 450px;
}
.indexNews .indexNewsSwiper .newsBox img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 20px 0 0;
}
.indexNews .indexNewsSwiper .newsBox h4 {
  font-size: 20px;
  padding: 10px 20px;
}
.indexNews .indexNewsSwiper .newsBox p {
  padding: 10px 20px;
}

.indexArticle {
  width: 100%;
  height: 100vh;
  background: url("../img/bg/BG3.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .indexArticle {
    height: auto;
  }
}
.indexArticle .sectionTitle {
  color: #000;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .indexArticle .sectionTitle {
    margin-top: 50px;
  }
}
.indexArticle .sectionTitle h2 {
  font-size: 52px;
}
.indexArticle .sectionTitle p {
  font-size: 26px;
}
.indexArticle .indexArticleSwiper {
  width: 80%;
}
@media (max-width: 1024px) {
  .indexArticle .indexArticleSwiper {
    height: 550px;
  }
}
.indexArticle .indexArticleSwiper .newsBox {
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  height: 450px;
}
.indexArticle .indexArticleSwiper .newsBox img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 20px 0 0;
}
.indexArticle .indexArticleSwiper .newsBox h4 {
  font-size: 20px;
  padding: 10px 20px;
}
.indexArticle .indexArticleSwiper .newsBox p {
  padding: 10px 20px;
}

.ourTeams {
  width: 100%;
  height: 100%;
  background: url("../img/ourTeams/section_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 50px;
}
@media (max-width: 1024px) {
  .ourTeams {
    padding-bottom: 20px;
  }
}
.ourTeams .sectionTitle {
  padding-top: 50px;
  text-align: center;
}
.ourTeams .sectionTitle h2 {
  font-size: 44px;
  font-weight: bold;
  color: #ad312a;
  margin-bottom: 60px;
  letter-spacing: 2px;
}
@media (max-width: 1024px) {
  .ourTeams .sectionTitle h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
  }
}

.teamsSwiper .swiper-wrapper .swiper-slide {
  padding: 0 50px;
}
@media (max-width: 1024px) {
  .teamsSwiper .swiper-wrapper .swiper-slide {
    padding: 0 20px;
  }
}
.teamsSwiper .swiper-wrapper .swiper-slide .person {
  display: flex;
}
@media (max-width: 1024px) {
  .teamsSwiper .swiper-wrapper .swiper-slide .person {
    flex-direction: column;
  }
}
.teamsSwiper .swiper-wrapper .swiper-slide .person .leftImage {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.teamsSwiper .swiper-wrapper .swiper-slide .person .leftImage img {
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.3s;
  transition-delay: 0.3s;
}
@media (max-width: 1024px) {
  .teamsSwiper .swiper-wrapper .swiper-slide .person .leftImage img {
    width: 100%;
  }
}
.teamsSwiper .swiper-wrapper .swiper-slide .person .rightText {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 30px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s;
  transition-delay: 0.3s;
}
@media (max-width: 1024px) {
  .teamsSwiper .swiper-wrapper .swiper-slide .person .rightText {
    padding-bottom: 10px;
  }
}
.teamsSwiper .swiper-wrapper .swiper-slide .person .rightText .personName {
  color: #ad322a;
  font-size: 46px;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 2px;
}
@media (max-width: 1024px) {
  .teamsSwiper .swiper-wrapper .swiper-slide .person .rightText .personName {
    font-size: 32px;
    text-align: center;
    margin-top: 20px;
  }
}
.teamsSwiper .swiper-wrapper .swiper-slide .person .rightText .education {
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .teamsSwiper .swiper-wrapper .swiper-slide .person .rightText .education {
    text-align: center;
  }
}
.teamsSwiper .swiper-wrapper .swiper-slide .person .rightText .education span {
  background: #fcf2e6;
  color: #666666;
  padding: 10px;
  font-size: 30px;
}
@media (max-width: 1024px) {
  .teamsSwiper .swiper-wrapper .swiper-slide .person .rightText .education span {
    font-size: 26px;
    border-radius: 10px;
    box-shadow: 0.5px 0.5px 3px rgba(0, 0, 0, 0.3);
  }
}
.teamsSwiper .swiper-wrapper .swiper-slide .person .rightText .skills {
  margin-bottom: 20px;
  font-size: 30px;
  color: #ad322a;
}
@media (max-width: 1024px) {
  .teamsSwiper .swiper-wrapper .swiper-slide .person .rightText .skills {
    font-size: 24px;
    text-align: center;
  }
}
.teamsSwiper .swiper-wrapper .swiper-slide .person .rightText .skills span {
  background: #ad322a;
  color: #fcf2e6;
  padding: 10px;
  margin-right: 20px;
}
@media (max-width: 1024px) {
  .teamsSwiper .swiper-wrapper .swiper-slide .person .rightText .skills span {
    margin-right: 10px;
    padding: 5px;
  }
}
.teamsSwiper .swiper-wrapper .swiper-slide .person .rightText .introduction {
  font-size: 28px;
  letter-spacing: 2px;
  width: 80%;
  color: #666666;
}
@media (max-width: 1024px) {
  .teamsSwiper .swiper-wrapper .swiper-slide .person .rightText .introduction {
    width: 100%;
    font-size: 20px;
  }
}
.teamsSwiper .swiper-wrapper .swiper-slide.swiper-slide-active .leftImage img {
  opacity: 1;
  transform: translateY(0%);
}
.teamsSwiper .swiper-wrapper .swiper-slide.swiper-slide-active .rightText {
  opacity: 1;
  transform: translateY(0);
}

.innerNavBar {
  background-color: #fcf0dd !important;
}

.innerPageBanner {
  width: 100%;
  height: 70vh;
  overflow: hidden;
}
.innerPageBanner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

main {
  padding: 50px 0;
}
main .sectionTittle {
  text-align: center;
  margin-bottom: 50px;
}
main .sectionTittle h1 {
  font-size: 30px;
  font-weight: bold;
}
main article h2 {
  font-size: 26px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  main article h2 {
    font-size: 22px;
  }
}
main article h3 {
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  main article h3 {
    padding-left: 3%;
    padding-right: 3%;
  }
}
main article p {
  line-height: 1.5;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  main article p {
    padding-left: 3%;
    padding-right: 3%;
  }
}
main article img {
  width: 100%;
}
main article ul li,
main article ol li {
  margin-left: 30px;
  margin-bottom: 10px;
  font-weight: bold;
}

.downloadList .tabs {
  background-color: #883d58;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
@media (max-width: 1024px) {
  .downloadList .tabs {
    justify-content: space-between;
  }
}
.downloadList .tabs button {
  padding-bottom: 10px;
  padding-top: 10px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 20px;
  color: #fdf3e6;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.downloadList .tabs button:hover, .downloadList .tabs button.active {
  background-color: #fdf3e6;
  color: #883d58;
}
@media (max-width: 1024px) {
  .downloadList .tabs button {
    font-size: 18px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.downloadList ul {
  list-style: none;
}
.downloadList ul li {
  background-color: #f6d4ac;
  margin-bottom: 20px;
  border-radius: 6px;
  transition: all 0.3s;
}
.downloadList ul li:nth-child(even) {
  background-color: #fdf3e6;
}
.downloadList ul li:hover {
  background-color: #883d58;
}
.downloadList ul li:hover a {
  color: #fdf3e6;
}
.downloadList ul li a {
  width: 100%;
  padding: 10px;
  display: inline-block;
  color: #000;
  position: relative;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .downloadList ul li a {
    padding-right: 60px;
  }
}
.downloadList ul li a i {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 36px;
}

.articlesIndexBox {
  padding: 0;
}
.articlesIndexBox .filterBox {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .articlesIndexBox .filterBox {
    flex-direction: column;
    padding: 10px 0;
  }
}
.articlesIndexBox .filterBox::after, .articlesIndexBox .filterBox::before {
  position: absolute;
  content: "";
  background-color: #ea4f74;
  height: 1px;
  width: 100%;
  left: 0;
}
@media (max-width: 1024px) {
  .articlesIndexBox .filterBox::after, .articlesIndexBox .filterBox::before {
    display: none;
  }
}
.articlesIndexBox .filterBox::before {
  top: 0;
}
.articlesIndexBox .filterBox::after {
  bottom: 0;
}
.articlesIndexBox .filterBox button {
  border: none;
  background-color: transparent;
  font-size: 26px;
  color: #ea4f74;
  font-weight: bold;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .articlesIndexBox .filterBox button {
    background-color: #f7ceda;
    color: #ea4f74;
    letter-spacing: 5px;
    width: 350px;
    border-radius: 20px;
    margin: 5px 0;
    font-size: 20px;
  }
}
.articlesIndexBox .filterBox button:hover {
  color: #fff;
  background-color: #ea4f74;
}
.articlesIndexBox .filterBox button.active {
  color: #fff;
  background-color: #ea4f74;
}
.articlesIndexBox .articlesIndex .articleBox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #fdf3e6;
  padding: 10px 20px;
  margin: 10px 0;
  border-radius: 5px;
  position: relative;
}
.articlesIndexBox .articlesIndex .articleBox:nth-child(odd) {
  background-color: #f4c590;
}
.articlesIndexBox .articlesIndex .articleBox:hover {
  background-color: #883d58;
}
.articlesIndexBox .articlesIndex .articleBox:hover .articlePreview .articleTitle {
  color: #fff;
}
.articlesIndexBox .articlesIndex .articleBox:hover .rightArrowIcon i {
  color: #fff;
}
.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: 20px;
}
@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: #000;
  font-size: 28px;
}

.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: #000;
}

@media (max-width: 1024px) {
  .articlePage #articleContent {
    padding-left: 3%;
    padding-right: 3%;
  }
}
.articlePage #articleContent h1 {
  text-align: center;
  color: #883d58;
  font-size: 36px;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .articlePage #articleContent h1 {
    font-size: 26px;
  }
}
.articlePage #articleContent .articleContentText h2,
.articlePage #articleContent .articleContentText h3 {
  color: #883d58;
  margin-top: 20px;
  margin-bottom: 20px;
}
.articlePage #articleContent .articleContentText p {
  margin-bottom: 10px;
}
.articlePage #articleContent .articleContentText li {
  margin-left: 30px;
  margin-bottom: 10px;
}

.memberList {
  width: 60%;
  margin: 0 auto;
  border-collapse: collapse;
}
@media (max-width: 1024px) {
  .memberList {
    width: 90%;
  }
}
.memberList td {
  padding: 10px;
  border: 1px solid #000;
  text-align: center;
}
.memberList td p {
  margin: 0;
}

.photoGallery figure {
  margin-bottom: 30px;
}
.photoGallery figure figcaption {
  font-size: 24px;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 2px;
  font-weight: bold;
}
.photoGallery figure img {
  border-radius: 10px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1024px) {
  .photoGallery figure img {
    border-radius: 0;
    box-shadow: none;
  }
}

.newsList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
@media (max-width: 1024px) {
  .newsList {
    grid-template-columns: repeat(1, 1fr);
  }
}
.newsList a {
  width: 100%;
  height: 120px;
  display: block;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  border-radius: 10px;
  position: relative;
}
.newsList a .blueMask {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 51, 175, 0.5);
}
.newsList a span {
  color: #fff;
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 20px;
  text-shadow: 0px 0px 3px #000;
  font-weight: bold;
}
.newsList a i {
  background-color: #fff;
  color: #0055a0;
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 2px 15px;
  font-size: 26px;
  border-radius: 20px;
}

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(255, 255, 255, 0.8);
  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(255, 255, 255, 0.8);
  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(255, 255, 255, 0.8);
  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(255, 255, 255, 0.8);
  border: none;
  border-radius: 5px;
  padding: 5px;
}
form#form .form-message textarea:focus {
  outline: none;
}
form#form .form-btn {
  display: flex;
  justify-content: center;
}
form#form .form-btn button {
  background-color: transparent;
  color: #a82240;
  border: 1px solid #a82240;
  border-radius: 30px;
  padding: 5px 20px;
  transition: all 0.3s;
  margin: 0px 50px;
}
form#form .form-btn button:hover {
  color: #fff;
  background-color: #a82240;
  border: 1px solid #a82240;
}
@media (max-width: 1024px) {
  form#form .form-btn button {
    margin: 0px 20px;
  }
}

.mailSection {
  background: #faeef4;
  padding: 30px 0;
}
@media (max-width: 1024px) {
  .mailSection {
    padding: 30px 3%;
  }
}
.mailSection .sectionTitle {
  color: #a82240;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .mailSection .sectionTitle {
    margin-top: 0px;
    margin-bottom: 10px;
  }
}
.mailSection .sectionTitle h2 {
  font-size: 52px;
}
.mailSection .sectionTitle p {
  font-size: 26px;
}/*# sourceMappingURL=main.css.map */