@charset "UTF-8";
html {
  scroll-padding-top: 130px;
  scroll-behavior: smooth;
}
@media (max-width: 1180px) {
  html {
    scroll-padding-top: 65px;
  }
}

.mainArea.successPage {
  height: calc(100vh - 400px);
  /*以防有不支援dvh的瀏覽器*/
  height: calc(100dvh - 400px);
  min-height: 400px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .mainArea.successPage {
    height: auto;
    min-height: 200px;
  }
}
.mainArea.successPage .successTxt {
  color: #0e66a7;
  font-size: 30px;
  line-height: 1.3;
}
@media (max-width: 1180px) {
  .mainArea.successPage .successTxt {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .mainArea.successPage .successTxt {
    font-size: 22px;
  }
}
@media (max-width: 400px) {
  .mainArea.successPage .successTxt {
    font-size: 18px;
  }
}

.contentBox {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.anchorBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}
.anchorBox a {
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  line-height: calc(18 / 18 * 1.5);
  letter-spacing: calc(18 * 50 / 1000 * 1px);
  font-family: "Raleway", "Microsoft JhengHei", sans-serif;
}
@media (min-width: 1181px) {
  .anchorBox a:hover {
    color: #0e66a7;
  }
}
@media (max-width: 480px) {
  .anchorBox a {
    font-size: 14px;
  }
}