@charset "UTF-8";
a.key {
  font-size: 0.5em;
  z-index: 3000;
  position: absolute;
  left: 0;
  display: none;
}

body {
  font-family: "Noto Sans TC", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  color: #4E4E4E;
  line-height: 1.75;
}
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 0.25rem;
  margin: 20px 130px;
}
body::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  background-color: #D3D3D3;
}

.line-clamp1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
}

.line-clamp2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
}

.line-clamp3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
}

.line-clamp4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
}

.line-clamp8 {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
}

section {
  padding-bottom: 6rem;
}

a {
  color: #4E4E4E;
  text-decoration: none;
}
a:hover {
  color: #4E4E4E;
}

.textc6 {
  color: #C6C6C6 !important;
}

header {
  min-height: 88px;
  position: relative;
}
header .navbar {
  min-height: 88px;
  padding: 0 20px;
  border-bottom: 1px solid #D3D3D3;
}
header .navbar.navbar-dark {
  border-bottom: 1px solid #4E4E4E;
}

.navbar-light {
  background-color: #fff;
}
.navbar-light .navbar-toggler {
  border: none;
}
.navbar-light .navbar-toggler:focus {
  box-shadow: none;
}
.navbar-light .nav-item {
  margin: 0 0.25rem;
}
.navbar-light .nav-link {
  color: #4E4E4E;
}
.navbar-light .nav-link.active {
  color: #6D1E2A !important;
  font-weight: 500;
}
.navbar-light .nav-link.active::after {
  content: "";
  width: 40px;
  height: 1px;
  display: block;
  margin: 5px auto;
  position: relative;
  background-color: #6D1E2A;
}

.navbar-brand {
  margin-right: 2rem;
  display: flex;
  height: 88px;
  align-items: center;
}
.navbar-brand img {
  height: 32px;
}

@media screen and (max-width: 768px) {
  .navbar-collapse.show {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: calc(100vh - 88px);
    transition: all 320ms ease-in-out;
    background-color: #fff;
    z-index: 3;
    border-top: 1px solid #D3D3D3;
  }
  .navbar-collapse.show ul li {
    margin: 0rem;
  }
  .navbar-collapse .nav-item .btnText-nav {
    margin: 12px auto;
  }
  .navbar-dark .navbar-collapse.show {
    border-top: 1px solid #4E4E4E !important;
  }
}
.navbar-collapse.collapsing {
  transition-property: height, visibility;
  transition-duration: 0s;
}

@media screen and (min-width: 576px) and (max-width: 1200px) {
  header .navebar-main {
    padding: 0 40px;
  }
}
/* toggler-icon  */
.navbar-toggler-icon {
  background-image: none !important;
  background-color: var(--bs-gray-800);
  height: 2px;
  width: 25px;
  margin: 10px 0;
  position: relative;
  transition: all 0.35s ease-out;
  transform-origin: center;
}

.navbar-toggler-icon::before {
  display: block;
  background-color: var(--bs-gray-800);
  height: 2px;
  content: "";
  position: relative;
  top: -7px;
  transition: all 0.15s ease-out;
  /*taken down to hide quicker*/
  transform-origin: center;
}

.navbar-toggler-icon::after {
  display: block;
  background-color: var(--bs-gray-800);
  height: 2px;
  content: "";
  position: relative;
  top: 5px;
  transition: all 0.35s ease-out;
  transform-origin: center;
}

.navbar-dark .navbar-toggler-icon,
.navbar-dark .navbar-toggler-icon::before,
.navbar-dark .navbar-toggler-icon::after {
  background-color: var(--bs-gray-100);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  opacity: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  transform: rotate(-90deg) translateX(7px);
}

.TextGradient {
  background: linear-gradient(to right, #C94D70, #D07744);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.btn {
  height: 48px;
}

.btnRaspberry {
  background: #D33E5F;
  border-radius: 8px 8px 16px 8px;
  color: #fff;
  border-color: #D33E5F;
  text-align: center;
  padding: 11px 24px 14px 24px;
}
.btnRaspberry:hover, .btnRaspberry:focus {
  background: #B33551;
  color: #fff;
  border-color: #B33551;
  --bs-btn-active-color: #fff;
  --bs-btn-active-border-color: #B33551;
  --bs-btn-active-bg:#B33551;
}
.btnRaspberry:active {
  background: #9E2F47;
  color: #fff;
  border-color: #9E2F47;
}
.btnRaspberry.disabled {
  background: #D3D3D3;
  color: #fff;
}

.btnRaspberry-outline {
  background: #fff;
  border-color: #D33E5F;
  border-radius: 8px 8px 16px 8px;
  color: #D33E5F;
  text-align: center;
  padding: 11px 24px 14px 24px;
}
.btnRaspberry-outline:hover, .btnRaspberry-outline:focus {
  border-color: #B33551;
  color: #B33551;
  border-color: #B33551;
  --bs-btn-active-color: #B33551;
  --bs-btn-active-border-color: #B33551;
  --bs-btn-active-bg:#fff;
}
.btnRaspberry-outline:active {
  border-color: #9E2F47;
  color: #9E2F47;
  border-color: #9E2F47;
}
.btnRaspberry-outline.disabled {
  border-color: #D3D3D3;
  color: #D3D3D3;
  border-color: #D3D3D3;
}

.btnTertiary-blue {
  background: #6F7FB7;
  border-radius: 8px 8px 16px 8px;
  color: #fff;
  border-color: #6F7FB7;
  text-align: center;
  padding: 11px 24px 14px 24px;
}
.btnTertiary-blue svg {
  margin-bottom: 0.25rem;
  margin-left: 0.25rem;
  fill: #fff;
}
.btnTertiary-blue:hover, .btnTertiary-blue:focus {
  background: #364182;
  color: #fff;
  border-color: #364182;
  --bs-btn-active-color: #fff;
  --bs-btn-active-border-color: #364182;
  --bs-btn-active-bg:#364182;
}
.btnTertiary-blue:active {
  background: #2B336E;
  color: #fff;
  border-color: #2B336E;
}
.btnTertiary-blue.disabled {
  background: #D3D3D3;
  color: #fff;
}

.btnTertiary-blue-outline {
  background: #fff;
  border-color: #6F7FB7;
  border-radius: 8px 8px 16px 8px;
  color: #6F7FB7;
  text-align: center;
  padding: 11px 24px 14px 24px;
}
.btnTertiary-blue-outline svg {
  margin-bottom: 0.25rem;
  margin-left: 0.25rem;
  fill: #fff;
}
.btnTertiary-blue-outline:hover, .btnTertiary-blue-outline:focus {
  border-color: #6F7FB7;
  color: #6F7FB7;
  border-color: #6F7FB7;
  --bs-btn-active-color: #6F7FB7;
  --bs-btn-active-border-color: #6F7FB7;
  --bs-btn-active-bg:#fff;
}
.btnTertiary-blue-outline:active {
  border-color: #6F7FB7;
  color: #6F7FB7;
  border-color: #6F7FB7;
}
.btnTertiary-blue-outline.disabled {
  border-color: #D3D3D3;
  color: #D3D3D3;
  border-color: #D3D3D3;
}

.btnBW-outline {
  background: #2C2D2D;
  border-color: #fff;
  border-radius: 8px 8px 16px 8px;
  color: #fff;
  text-align: center;
  padding: 11px 24px 14px 24px;
}
.btnBW-outline svg {
  margin-bottom: 0.25rem;
  margin-left: 0.25rem;
  fill: #fff;
}
.btnBW-outline:hover, .btnBW-outline:focus {
  background: #4E4E4E;
  color: #fff;
  border-color: #fff;
  --bs-btn-active-color: #fff;
  --bs-btn-active-border-color: #4E4E4E;
  --bs-btn-active-bg:#4E4E4E;
}
.btnBW-outline:active {
  background: #2C2D2D;
  color: #fff;
}
.btnBW-outline.disabled {
  background: #2C2D2D;
  color: #fff;
}

.btntrans-outline {
  background: transparent;
  border-color: #fff;
  border-radius: 8px 8px 16px 8px;
  color: #fff;
  text-align: center;
  padding: 11px 24px 14px 24px;
}
.btntrans-outline svg {
  margin-bottom: 0.25rem;
  margin-left: 0.25rem;
  fill: #fff;
}
.btntrans-outline:hover, .btntrans-outline:focus {
  background: transparent;
  color: #fff;
  --bs-btn-active-color: #fff;
  --bs-btn-active-border-color: #fff;
  --bs-btn-active-bg: transparent;
}
.btntrans-outline:active {
  background: transparent;
  color: #fff;
}
.btntrans-outline.disabled {
  background: transparent;
  color: #fff;
}

.btntransW-outline {
  background: transparent;
  border-color: #B2B2B2;
  border-radius: 8px 8px 16px 8px;
  color: #707070;
  text-align: center;
  padding: 11px 24px 14px 24px;
}
.btntransW-outline svg {
  margin-bottom: 0.25rem;
  margin-left: 0.25rem;
  fill: #707070;
}
.btntransW-outline:hover, .btntransW-outline:focus {
  background: transparent;
  border-color: #B2B2B2;
  color: #707070;
  --bs-btn-active-color: #B2B2B2;
  --bs-btn-active-border-color: #B2B2B2;
  --bs-btn-active-bg:transparent;
}
.btntransW-outline:active {
  background: transparent;
  color: #707070;
}
.btntransW-outline.disabled {
  background: transparent;
  color: #707070;
}

.btnText {
  background: transparent;
  border-radius: 8px 8px 16px 8px;
  color: #4E4E4E;
  border-color: #fff;
  border: none;
  text-align: center;
  padding: 11px 24px 14px 24px;
}
.btnText svg {
  margin-bottom: 0.25rem;
  margin-left: 0.25rem;
  fill: #4E4E4E;
}
.btnText:hover, .btnText:focus {
  background: #EDEDED;
  color: #4E4E4E !important;
  border-color: #EDEDED;
  --bs-btn-active-color: #4E4E4E;
  --bs-btn-active-border-color: #EDEDED;
  --bs-btn-active-bg:#EDEDED;
}
.btnText:active {
  background: #fff;
  color: #6D1E2A;
  --bs-btn-active-color: #6D1E2A;
}
.btnText:active svg {
  fill: #6D1E2A;
}
.btnText.disabled {
  background: #fff;
  color: #D3D3D3;
}

.btnText-nav {
  background: transparent;
  border-radius: 8px 8px 16px 8px;
  color: #4E4E4E;
  border-color: #fff;
  border: none;
  text-align: center;
  padding: 16px 24px 9px 24px;
}
.btnText-nav svg {
  margin-bottom: 0.25rem;
  margin-left: 0.25rem;
  fill: #4E4E4E;
}
.btnText-nav:hover, .btnText-nav:focus {
  background: #EDEDED;
  color: #4E4E4E !important;
  border-color: #EDEDED;
  --bs-btn-active-color: #4E4E4E;
  --bs-btn-active-border-color: #EDEDED;
  --bs-btn-active-bg:#EDEDED;
}
.btnText-nav.active:hover, .btnText-nav.active:focus {
  background: transparent;
  color: #4E4E4E;
  border-color: transparent;
  --bs-btn-active-color: #4E4E4E;
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-bg: transparent;
}
.btnText-nav:active {
  background: transparent;
  color: #6D1E2A;
  --bs-btn-active-color: #6D1E2A;
}
.btnText-nav:active svg {
  fill: #6D1E2A;
}
.btnText-nav.disabled {
  background: #fff;
  color: #D3D3D3;
}

.btnNeutral-000 {
  background: #F5F5F5;
  border-radius: 8px 8px 16px 8px;
  color: #4E4E4E;
  border-color: #F5F5F5;
  border: none;
  text-align: center;
  padding: 11px 24px 14px 24px;
}
.btnNeutral-000 svg {
  margin-bottom: 0.25rem;
  margin-left: 0.25rem;
  fill: #4E4E4E;
}
.btnNeutral-000:hover, .btnNeutral-000:focus {
  background: #F5F5F5;
  color: #4E4E4E;
  border-color: #F5F5F5;
  --bs-btn-active-color: #4E4E4E;
  --bs-btn-active-border-color: #F5F5F5;
  --bs-btn-active-bg:#F5F5F5;
}
.btnNeutral-000:active {
  background: #F5F5F5;
  color: #4E4E4E;
  --bs-btn-active-color: #4E4E4E;
}
.btnNeutral-000.disabled {
  background: #fff;
  color: #D3D3D3;
}

.modal .modal-content {
  border: none;
  border-radius: 2rem;
}
.modal .modal-lg {
  width: 976px;
  max-width: 100%;
}
.modal .modal-backdrop {
  --bs-backdrop-bg: #2C2D2D;
  --bs-backdrop-opacity: 0.8;
}
.modal .modal-body {
  padding: 0 40px;
}
.modal .modal-body .d-flex form {
  margin-right: 12px;
}
.modal .modal-header,
.modal .modal-footer {
  border: none;
}
.modal .btn-close {
  margin-right: 10px;
  margin-top: 10px;
}
.modal .modal-left {
  padding-right: 56px;
}
.modal .modal-left form {
  width: 70%;
}
.modal .modal-right {
  width: 100%;
}
.modal .great {
  width: 80px;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 992px) {
  .modal .modal-lg {
    width: 976px;
    max-width: 90%;
  }
  .modal .modal-right {
    width: 80%;
    margin-top: 1rem;
  }
  .modal .modal-body {
    padding: 0 40px;
  }
  .modal .modal-body .d-flex form {
    margin-bottom: 12px;
  }
  .modal .modal-left {
    padding-right: 0;
  }
  .modal .modal-left form {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .modal .d-flex {
    flex-direction: column;
  }
  .modal .modal-left form {
    width: 100%;
  }
}
@media screen and (max-width: 414px) {
  .modal .btn {
    width: 100%;
  }
}
.form-select:focus,
.form-check-input:focus,
.form-control:focus {
  border-color: #2C2D2D;
  outline: 0;
  box-shadow: 0 0 0 0.1rem rgba(237, 237, 237, 0.25);
}

input[type=text] {
  height: 50px;
}

.fieldset {
  position: relative;
  margin: 0;
}
.fieldset .form-text {
  margin-top: 0;
  /* with required attribute */
  /* no required attribute */
}
.fieldset .form-text:required:valid:focus + .clear-text {
  display: inline-block;
}
.fieldset .form-text:required:invalid + .clear-text {
  display: none;
}
.fieldset .form-text:not([required]).valid-text:focus + .clear-text {
  display: inline-block;
}
.fieldset .form-text:not([required]):not(.valid-text) + .clear-text {
  display: none;
}

.clear-text {
  position: absolute;
  right: 6px;
  top: 4px;
  font-size: 1.5rem;
}
.clear-text i {
  color: #4E4E4E;
}

.accordion {
  --bs-accordion-border-color: transparent;
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232C2D2D'%3e%3cpath fill-rule='evenodd' d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232C2D2D'%3e%3cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8'/%3e%3c/svg%3e");
}

.accordion-item {
  color: #2C2D2D;
  background-color: #fff;
  border: none;
  margin-bottom: 1.5rem;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.accordion-item:not(:first-of-type) {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.accordion-item.highlight {
  border: 1px solid #D3D3D3;
  border-radius: 1rem;
}
.accordion-item ul li {
  list-style-type: circle;
}

.accordion-button {
  border-radius: 1rem;
  font-size: calc(1.275rem + 0.3vw);
}
.accordion-button:hover {
  background-color: #FFFBF7;
}
.accordion-button:not(.collapsed) {
  color: #2C2D2D;
  background-color: #fff;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button:focus {
  z-index: 3;
  border-color: #D3D3D3;
  outline: 0;
  box-shadow: none;
}

@media (min-width: 1200px) {
  .accordion-button {
    font-size: 1.5rem;
  }
}
.accordion-body span {
  display: inline-block;
  width: 100%;
  border-top: 1px solid #D3D3D3;
  padding-top: 1rem;
  font-size: 1.1rem;
}

.back-top {
  display: inline-block;
  height: 48px;
  width: 48px;
  position: fixed;
  bottom: 40px;
  right: 20px;
  overflow: hidden;
  white-space: nowrap;
  visibility: hidden;
  background: #6F7FB7;
  border: 1px solid #C5CCE2;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  z-index: 10;
  border-radius: 1rem;
}
.back-top .back-is-visible,
.back-top .back-fade-out, .back-top:hover {
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.back-top:hover {
  opacity: 1;
}
.back-top i {
  position: absolute;
  right: 16px;
  top: 0px;
  color: #fff;
}
.back-top span {
  position: absolute;
  left: 12px;
  bottom: 2px;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .back-top {
    right: 20px;
    bottom: 20px;
  }
}
.back-top.back-is-visible {
  visibility: visible;
  opacity: 0.7;
}

.back-top.back-fade-out {
  opacity: 1;
}

footer {
  padding: 0 0px 50px 0px;
}
footer .abiaa {
  margin-right: 1rem;
  margin-top: 12px;
}
footer .copyright {
  margin-top: 20px;
  text-align: center;
}
footer .fix-p-row {
  padding-left: 12px;
  padding-right: 12px;
}
footer.light {
  background: url(../images/footer-light.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
footer.light .copyright {
  color: #9D334A;
}
footer.dark {
  background: url(../images/footer-dark.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
footer h3,
footer .h3 {
  font-weight: 700;
}
footer .before-footer {
  padding: 0;
  margin: 0;
}
footer .before-footer img {
  width: 100%;
  vertical-align: top !important;
}
footer .footer-frame {
  background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0.4));
  border-radius: 24px 24px 2.5rem 24px;
  padding: 2rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 20px 0px;
}
footer .footer-social {
  text-align: right;
}
footer .footer-social .nav {
  justify-content: end;
  align-items: center;
}
footer .nav-item:hover {
  background-color: #EDEDED;
  border-radius: 1rem;
}

@media screen and (max-width: 768px) {
  footer.light {
    background: url(../images/footer-light768.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }
  footer.dark {
    background: url(../images/footer-dark768.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }
}
@media screen and (max-width: 576px) {
  footer.light {
    background: url(../images/footer-light540.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }
  footer.dark {
    background: url(../images/footer-dark540.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }
  footer .btn {
    width: 100%;
  }
  footer .footer-social {
    text-align: center;
    margin-top: 2rem;
  }
  footer .footer-social .nav {
    justify-content: center;
  }
}
/* fixrow row改padding */
.fix-p-row {
  position: relative;
}

@media screen and (min-width: 576px) and (max-width: 1200px) {
  .fix-p-row {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media screen and (max-width: 576px) {
  .fix-p-row {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}/*# sourceMappingURL=custom.css.map */