:export {
  breakPointMedium: 1024px;
  breakPointSmall: 768px;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: none;
}

/* HTML5 display-role reset for older browsers*/
article, aside, details, figcaption, figure, footer, header, hgroup, menu, section {
  display: block;
}

input, button, select, textarea, details, summary {
  outline: none;
  margin: 0;
}

body {
  margin: 0;
  padding: 0;
  background-color: #274CB0;
  overflow-x: hidden;
  font-family: "PingFang TC", Arial, sans-serif;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul, li, ol {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

html {
  font-size: 100%;
}

a {
  text-decoration: none;
}

select {
  background: white;
}

input[type=button], input[type=submit], input[type=reset] {
  -webkit-appearance: none;
}

textarea {
  -webkit-appearance: none;
}

.bbtHeaderWrapper {
  position: fixed;
  width: 100%;
  max-width: 1728px;
  padding: 10px 10px 0 10px;
  box-sizing: border-box;
  z-index: 100;
  top: 0;
}
.bbtHeaderWrapper.scrollMode .bbtHeaderContainer {
  background-color: rgba(11, 11, 52, 0.7);
}
@media screen and (max-width: 768px) {
  .bbtHeaderWrapper {
    padding: 0;
  }
}

.bbtHeaderContainer {
  position: relative;
  width: 100%;
  height: 96px;
  display: flex;
  align-items: center;
  padding: 22px 30px 22px 40px;
  border-radius: 10px;
  box-sizing: border-box;
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .bbtHeaderContainer {
    padding: 20px;
    height: 76px;
  }
}
@media screen and (max-width: 768px) {
  .bbtHeaderContainer {
    background-color: rgba(11, 11, 52, 0.7);
    padding: 10px 12px;
    height: 60px;
    border-radius: 0;
  }
}
.bbtHeaderContainer .bttMenu {
  display: none;
  position: relative;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .bbtHeaderContainer .bttMenu {
    display: block;
  }
}
.bbtHeaderContainer .bttMenu.isOpen .bttMenuIcon {
  background-color: transparent;
}
.bbtHeaderContainer .bttMenu.isOpen .bttMenuIcon::after {
  transform: rotate(45deg);
  top: 0;
  height: 3px;
  border-radius: 0;
}
.bbtHeaderContainer .bttMenu.isOpen .bttMenuIcon::before {
  transform: rotate(-45deg);
  top: 0;
  height: 3px;
  border-radius: 0;
}
.bbtHeaderContainer .bttMenu.isOpen ~ .bbtHeaderNav {
  transform: translateX(0);
}
.bbtHeaderContainer .bttMenu .bttMenuIcon {
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 16px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 21px;
  margin: auto;
}
.bbtHeaderContainer .bttMenu .bttMenuIcon::after {
  position: absolute;
  content: "";
  top: -5px;
  width: 16px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 21px;
  transition: all 0.3s ease-in-out;
}
.bbtHeaderContainer .bttMenu .bttMenuIcon::before {
  position: absolute;
  content: "";
  bottom: -5px;
  width: 16px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 21px;
  transition: all 0.3s ease-in-out;
}
.bbtHeaderContainer .bbtLogo {
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px 0;
  box-sizing: border-box;
  margin-right: auto;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .bbtHeaderContainer .bbtLogo {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .bbtHeaderContainer .bbtLogo {
    margin: auto;
  }
}
.bbtHeaderContainer .bbtLogo .bttLogoImage {
  position: relative;
  width: 208px;
  height: 44px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .bbtHeaderContainer .bbtLogo .bttLogoImage {
    width: 162px;
    height: 34px;
  }
}
@media screen and (max-width: 768px) {
  .bbtHeaderContainer .bbtLogo .bttLogoImage {
    width: 142px;
    height: 28px;
  }
}
@media screen and (max-width: 768px) {
  .bbtHeaderContainer .bbtHeaderNav {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(9, 21, 64, 0.9);
    padding: 40px;
    box-sizing: border-box;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }
}
.bbtHeaderContainer .bbtHeaderNav .bbtNav {
  display: inline-flex;
  color: #FFF;
  text-align: center;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  opacity: 0.8;
  cursor: pointer;
  margin-inline-end: 50px;
}
.bbtHeaderContainer .bbtHeaderNav .bbtNav.isActivate {
  opacity: 1;
  font-weight: 600;
}
.bbtHeaderContainer .bbtHeaderNav .bbtNav .bbtMenuStarIcon {
  display: none;
  margin-left: auto;
  width: 20px;
}
@media screen and (max-width: 768px) {
  .bbtHeaderContainer .bbtHeaderNav .bbtNav .bbtMenuStarIcon {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .bbtHeaderContainer .bbtHeaderNav .bbtNav {
    margin-inline-end: 40px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 800px) {
  .bbtHeaderContainer .bbtHeaderNav .bbtNav {
    margin-inline-end: 30px;
  }
}
@media screen and (max-width: 768px) {
  .bbtHeaderContainer .bbtHeaderNav .bbtNav {
    display: flex;
    align-items: center;
    width: 100%;
    height: 66px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: #FFF;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 180%;
  }
}
.bbtHeaderContainer .bbtHeaderNav .bbtLangButton {
  display: none;
  align-items: center;
  width: 100%;
  height: 66px;
}
@media screen and (max-width: 768px) {
  .bbtHeaderContainer .bbtHeaderNav .bbtLangButton {
    display: flex;
  }
}
.bbtHeaderContainer .bbtLoginButton {
  margin-inline-end: 32px;
}
@media screen and (max-width: 1024px) {
  .bbtHeaderContainer .bbtLoginButton {
    margin-inline-end: 26px;
    padding: 4px 12px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 800px) {
  .bbtHeaderContainer .bbtLoginButton {
    margin-inline-end: 26px;
  }
}
@media screen and (max-width: 768px) {
  .bbtHeaderContainer .bbtLoginButton {
    margin-inline-end: 0;
  }
  .bbtHeaderContainer .bbtLoginButton span {
    display: none;
  }
  .bbtHeaderContainer .bbtLoginButton + .bbtLangButton {
    display: none;
  }
}
.bbtHeaderContainer .bbtLangButton {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.bbtHeaderContainer .bbtLangButton .bbtLangIcon {
  width: 36px;
  height: 36px;
}
@media screen and (max-width: 1024px) {
  .bbtHeaderContainer .bbtLangButton .bbtLangIcon {
    width: 26px;
    height: 26px;
  }
}
.bbtHeaderContainer .bbtLangButton .bbtLangText {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 180%;
  margin-inline-start: 8px;
}

.bbtFooterWrapper {
  position: relative;
  background-color: #091540;
  width: 100%;
  max-width: 1728px;
  padding: 120px 80px 80px;
  box-sizing: border-box;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .bbtFooterWrapper {
    padding: 70px 80px 80px;
  }
}
@media screen and (max-width: 1024px) {
  .bbtFooterWrapper {
    padding: 60px;
  }
}
.bbtFooterWrapper .bbtFooterContainer {
  position: relative;
  width: 100%;
}
.bbtFooterWrapper .bbtFooterContainer .bttFooterContent {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-shrink: 0;
  padding-block-end: 110px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .bbtFooterWrapper .bbtFooterContainer .bttFooterContent {
    flex-wrap: wrap;
    padding-block-end: 78px;
  }
}
@media screen and (max-width: 768px) {
  .bbtFooterWrapper .bbtFooterContainer .bttFooterContent {
    padding-block-end: 30px;
  }
}
.bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterMainBox {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-inline-end: 160px;
}
@media screen and (max-width: 1024px) {
  .bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterMainBox {
    width: 50%;
    margin-inline: 0;
  }
}
@media screen and (max-width: 768px) {
  .bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterMainBox {
    width: 100%;
    align-items: center;
  }
}
.bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterMainBox .bttFooterLogo {
  width: 188px;
}
.bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterMainBox .bttWhiteSolidButton {
  margin-block-start: 30px;
  width: 138px;
}
.bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterListLink {
  color: #ffffff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%;
  margin-block-start: 18px;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterListLink {
    font-size: 1rem;
    margin-block-start: 14px;
  }
}
.bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterListTitle {
  color: #ffffff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 150%;
}
.bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterInfo {
  display: flex;
  flex-direction: column;
  display: flex;
  margin-inline-end: 100px;
}
@media screen and (max-width: 1024px) {
  .bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterInfo {
    width: 50%;
    margin-inline-end: 0;
  }
}
@media screen and (max-width: 768px) {
  .bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterInfo {
    width: 100%;
    margin-block-start: 50px;
  }
}
.bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterInfo .bttFooterAddress {
  color: #ffffff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%;
  margin-block-start: 18px;
}
@media screen and (max-width: 768px) {
  .bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterInfo .bttFooterAddress {
    font-size: 1rem;
    margin-block-start: 14px;
  }
}
.bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterInfo a {
  color: #ffffff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%;
  margin-block-start: 18px;
}
@media screen and (max-width: 768px) {
  .bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterInfo a {
    font-size: 1rem;
    margin-block-start: 14px;
  }
}
.bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterListWrapper {
  display: flex;
  flex-direction: column;
  margin-inline-end: 100px;
}
@media screen and (max-width: 1024px) {
  .bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterListWrapper {
    margin-block-start: 60px;
    margin-inline-end: 0;
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterListWrapper {
    margin-block-start: 30px;
    width: 100%;
  }
}
.bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterListWrapper:last-child {
  margin-inline-end: 0;
}
.bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterListWrapper .bttFooterList li {
  margin-block-start: 18px;
}
@media screen and (max-width: 768px) {
  .bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterListWrapper .bttFooterList li {
    margin-block-start: 14px;
  }
}
.bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterListWrapper .bttFooterList li a {
  color: #ffffff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .bbtFooterWrapper .bbtFooterContainer .bttFooterContent .bttFooterListWrapper .bttFooterList li a {
    font-size: 1rem;
  }
}
.bbtFooterWrapper .bbtFooterContainer .bttFooterBottom {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .bbtFooterWrapper .bbtFooterContainer .bttFooterBottom {
    flex-direction: column;
    padding-top: 30px;
  }
}
.bbtFooterWrapper .bbtFooterContainer .bttFooterBottom .bttCopyRight,
.bbtFooterWrapper .bbtFooterContainer .bttFooterBottom .bttCopyTerms,
.bbtFooterWrapper .bbtFooterContainer .bttFooterBottom .bttCopyPrivacy {
  color: #ffffff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%;
  margin-inline-end: 50px;
}
@media screen and (max-width: 768px) {
  .bbtFooterWrapper .bbtFooterContainer .bttFooterBottom .bttCopyRight,
  .bbtFooterWrapper .bbtFooterContainer .bttFooterBottom .bttCopyTerms,
  .bbtFooterWrapper .bbtFooterContainer .bttFooterBottom .bttCopyPrivacy {
    font-size: 1rem;
    margin-block-start: 30px;
    margin-inline-end: 0;
  }
  .bbtFooterWrapper .bbtFooterContainer .bttFooterBottom .bttCopyRight:first-child,
  .bbtFooterWrapper .bbtFooterContainer .bttFooterBottom .bttCopyTerms:first-child,
  .bbtFooterWrapper .bbtFooterContainer .bttFooterBottom .bttCopyPrivacy:first-child {
    margin-block-start: 0;
  }
}
.bbtFooterWrapper .bbtFooterContainer .bttFooterBottom .bttCopyRight:last-child,
.bbtFooterWrapper .bbtFooterContainer .bttFooterBottom .bttCopyTerms:last-child,
.bbtFooterWrapper .bbtFooterContainer .bttFooterBottom .bttCopyPrivacy:last-child {
  margin-inline-end: 0;
}

.scrollTopbutton {
  display: none;
  position: fixed;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  right: 10px;
  bottom: 50%;
  padding: 12px 10px 16px;
  box-sizing: border-box;
  border-radius: 30px;
  background: rgba(2, 11, 63, 0.8);
  width: 42px;
  cursor: pointer;
  z-index: 10;
  color: #ffffff;
  text-align: center;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 130%;
}
.scrollTopbutton .bttArrowUp {
  width: 12px;
  margin-block-end: 10px;
}
@media screen and (max-width: 768px) {
  .scrollTopbutton {
    display: flex;
  }
}

.bbtMainWrapper {
  position: relative;
  width: 100%;
  max-width: 1728px;
  margin: auto;
  overflow: hidden;
}
@media screen and (max-width: 1728px) {
  .bbtMainWrapper {
    overflow: hidden;
  }
}
.bbtMainWrapper .bttCircleBg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.bbtMainWrapper .bttBgLightMask {
  position: absolute;
  width: 546px;
  height: 345px;
  top: 74px;
  left: -244px;
  border-radius: 546px;
  opacity: 0.9;
  background: #4F8BFF;
  filter: blur(150px);
  z-index: 1;
}

html[lang=en-us] .indexPage .bttMainSection .bttSectionInfo {
  padding-block-start: 60px;
}
@media screen and (max-width: 1024px) {
  html[lang=en-us] .indexPage .bttMainSection .bttSectionInfo {
    padding-block-start: 30px;
  }
}
html[lang=en-us] .indexPage .bttMainSection .bttSectionInfo .bttSectionButton .bttSolidButton {
  letter-spacing: normal;
}
html[lang=en-us] .indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo .bttCardListType,
html[lang=en-us] .indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo .bttCardListLink .bttCardListLinkText,
html[lang=en-us] .indexPage .bttComputerSection .bttSectionInfo .bttSectionType {
  letter-spacing: normal;
}

.indexPage {
  padding-block-start: 192px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .indexPage {
    padding-block-start: 116px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage {
    padding-block-start: 80px;
  }
}
.indexPage .bttMainSection {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1468px;
  margin-inline-start: calc(100% - 1468px);
  z-index: 1;
}
@media screen and (max-width: 1468px) {
  .indexPage .bttMainSection {
    margin-inline-start: 0;
  }
}
@media screen and (max-width: 1024px) {
  .indexPage .bttMainSection {
    flex-direction: column-reverse;
  }
}
.indexPage .bttMainSection .bttLightMask {
  position: absolute;
  width: 447px;
  height: 360px;
  top: 38px;
  right: -87px;
  border-radius: 546px;
  opacity: 0.9;
  background: #4F8BFF;
  filter: blur(150px);
}
.indexPage .bttMainSection .bttSectionInfo {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-inline-end: 72px;
  padding-block-start: 174px;
  box-sizing: border-box;
}
@media screen and (max-width: 1468px) {
  .indexPage .bttMainSection .bttSectionInfo {
    padding-inline-start: 60px;
    padding-block-start: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .indexPage .bttMainSection .bttSectionInfo {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttMainSection .bttSectionInfo {
    width: 100%;
    padding-block-start: 30px;
    padding-inline: 20px;
  }
}
.indexPage .bttMainSection .bttSectionInfo .bttSectionTitle {
  position: relative;
  color: #ffffff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .indexPage .bttMainSection .bttSectionInfo .bttSectionTitle {
    font-size: 2.25rem;
  }
}
.indexPage .bttMainSection .bttSectionInfo .bttSectionTitle .bbtStarIcon {
  position: absolute;
  left: 410px;
  top: -18px;
}
.indexPage .bttMainSection .bttSectionInfo .bttSectionDescription {
  color: #fff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 200%;
  margin-block-start: 24px;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttMainSection .bttSectionInfo .bttSectionDescription {
    margin-block-start: 16px;
    font-size: 1rem;
  }
}
.indexPage .bttMainSection .bttSectionInfo .bttSectionButton {
  margin-block-start: 36px;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttMainSection .bttSectionInfo .bttSectionButton {
    margin-block-start: 24px;
  }
}
.indexPage .bttMainSection .bttSectionInfo .bttSectionButton .bttSolidButton {
  display: inline-flex;
  padding: 10px 30px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.2px;
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(40, 112, 243, 0.5);
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttMainSection .bttSectionInfo .bttSectionButton .bttSolidButton {
    font-size: 1.25rem;
  }
}
.indexPage .bttMainSection .bttSectionImage {
  position: relative;
  width: 816px;
}
@media screen and (max-width: 1400px) {
  .indexPage .bttMainSection .bttSectionImage {
    width: 39%;
  }
}
@media screen and (max-width: 1024px) {
  .indexPage .bttMainSection .bttSectionImage {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
}
.indexPage .bttMainSection .bttSectionImage .bttGlobalBG {
  position: relative;
  width: 816px;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttMainSection .bttSectionImage .bttGlobalBG {
    width: 540px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttMainSection .bttSectionImage .bttGlobalBG {
    width: 346px;
  }
}
.indexPage .bttMainSection .bttSectionImage .bttBigLogo {
  position: absolute;
  top: 52px;
  left: -90px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttMainSection .bttSectionImage .bttBigLogo {
    width: 415px;
    right: 304px;
    top: 60px;
    left: initial;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttMainSection .bttSectionImage .bttBigLogo {
    width: 298px;
    right: 100px;
    top: 52px;
  }
}
.indexPage .bttCardListSection {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block-start: -68px;
  padding-inline: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttCardListSection {
    margin-block-start: 70px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardListSection {
    margin-block-start: 30px;
  }
}
.indexPage .bttCardListSection .bttSix {
  position: absolute;
  top: 180px;
  right: 0;
  width: 293px;
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardListSection .bttSix {
    top: -108px;
    right: -24px;
    width: 212px;
  }
}
.indexPage .bttCardListSection .bttStar {
  position: absolute;
  top: 325px;
  right: -138px;
  width: 66px;
}
.indexPage .bttCardListSection .bttCardListWrapper {
  position: relative;
  max-width: 1208px;
  width: 100%;
  display: flex;
  background-color: #ffffff;
  margin-block-start: 30px;
  border-radius: 10px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardListSection .bttCardListWrapper {
    flex-direction: column;
  }
}
.indexPage .bttCardListSection .bttCardListWrapper.rightImage .bttCardListInfo {
  padding: 60px 94px 60px 90px;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttCardListSection .bttCardListWrapper.rightImage .bttCardListInfo {
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardListSection .bttCardListWrapper.rightImage .bttCardListInfo {
    padding: 20px 30px;
  }
}
.indexPage .bttCardListSection .bttCardListWrapper.rightImage .bttCardListImage {
  order: 1;
  box-shadow: 0px 4px 30px 0px rgba(3, 41, 76, 0.3);
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardListSection .bttCardListWrapper.rightImage .bttCardListImage {
    order: 0;
  }
}
.indexPage .bttCardListSection .bttCardListWrapper:first-of-type {
  margin-block-start: 0;
}
.indexPage .bttCardListSection .bttCardListWrapper .bttCardListImage {
  width: 416px;
  box-shadow: 0px 4px 30px 0px rgba(3, 41, 76, 0.3);
}
@media screen and (max-width: 1024px) {
  .indexPage .bttCardListSection .bttCardListWrapper .bttCardListImage {
    width: 274px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardListSection .bttCardListWrapper .bttCardListImage {
    width: 100%;
  }
}
.indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo {
  padding: 60px 90px 60px 94px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo {
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo {
    padding: 20px 30px;
  }
}
.indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo .bttCardListType {
  color: #849CF5;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo .bttCardListType {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo .bttCardListType {
    text-align: center;
  }
}
.indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo .bttCardListTitle {
  color: #121212;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 150%;
  margin-block-start: 16px;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo .bttCardListTitle {
    margin-block-start: 12px;
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo .bttCardListTitle {
    margin-block-start: 8px;
    text-align: center;
  }
}
.indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo .bttCardListDescription {
  color: #121212;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 200%;
  margin-block-start: 16px;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo .bttCardListDescription {
    margin-block-start: 12px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo .bttCardListDescription {
    margin-block-start: 8px;
  }
}
.indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo .bttCardListLink {
  position: relative;
  display: flex;
  align-items: center;
  margin-block-start: 42px;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo .bttCardListLink {
    margin-block-start: 28px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo .bttCardListLink {
    margin-block-start: 24px;
    justify-content: flex-end;
  }
}
.indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo .bttCardListLink .bttCardListLinkText {
  position: relative;
  color: #020B3F;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo .bttCardListLink .bttCardListLinkText {
    font-size: 1.25rem;
  }
}
.indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo .bttCardListLink .bttCardListLinkText::before {
  position: absolute;
  bottom: 0;
  content: "";
  height: 2px;
  width: 100%;
  background-color: #020B3F;
}
.indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo .bttCardListLink .bttCardListLinkIcon {
  position: relative;
  width: 48px;
  height: 48px;
  background-color: #FFB100;
  border-radius: 100%;
  margin-inline-start: 18px;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo .bttCardListLink .bttCardListLinkIcon {
    width: 38px;
    height: 38px;
  }
}
.indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo .bttCardListLink .bttCardListLinkIcon .bttCardListLinkIconImage {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttCardListSection .bttCardListWrapper .bttCardListInfo .bttCardListLink .bttCardListLinkIcon .bttCardListLinkIconImage {
    width: 22px;
    height: 22px;
  }
}
.indexPage .bttComputerSection {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1468px;
  margin-inline-start: calc(100% - 1468px);
  padding-block: 130px;
  box-sizing: border-box;
}
@media screen and (max-width: 1468px) {
  .indexPage .bttComputerSection {
    margin-inline-start: 0;
  }
}
@media screen and (max-width: 1024px) {
  .indexPage .bttComputerSection {
    padding-block: 102px 220px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttComputerSection {
    flex-direction: column;
    padding-block: 190px;
  }
}
.indexPage .bttComputerSection .bttEight {
  position: absolute;
  top: -126px;
  left: -300px;
  width: 467px;
}
@media screen and (max-width: 768px) {
  .indexPage .bttComputerSection .bttEight {
    width: 312px;
    left: -20px;
    top: -36px;
  }
}
.indexPage .bttComputerSection .bttStar {
  position: absolute;
  left: -35px;
  top: -54px;
  width: 55px;
}
@media screen and (max-width: 768px) {
  .indexPage .bttComputerSection .bttStar {
    left: 320px;
    top: 26px;
    width: 44px;
  }
}
.indexPage .bttComputerSection .bttSectionInfo {
  position: relative;
  display: flex;
  flex-direction: column;
  top: 162px;
  padding-inline-end: 97px;
  box-sizing: border-box;
}
@media screen and (max-width: 1728px) {
  .indexPage .bttComputerSection .bttSectionInfo {
    top: initial;
    padding-inline: 60px;
    padding-block-start: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .indexPage .bttComputerSection .bttSectionInfo {
    width: 50%;
    padding-block-start: 46px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttComputerSection .bttSectionInfo {
    width: 100%;
    margin-block-end: 40px;
    padding-inline: 20px;
    padding-block: 0;
  }
}
.indexPage .bttComputerSection .bttSectionInfo .bttSectionType {
  color: #6DB0FF;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttComputerSection .bttSectionInfo .bttSectionType {
    font-size: 1.25rem;
  }
}
.indexPage .bttComputerSection .bttSectionInfo .bttSectionTitle {
  color: #ffffff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 150%;
  margin-block-start: 22px;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttComputerSection .bttSectionInfo .bttSectionTitle {
    margin-block-start: 10px;
    font-size: 2.25rem;
  }
}
.indexPage .bttComputerSection .bttSectionInfo .bttSectionDescription {
  color: #fff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 200%;
  margin-block-start: 24px;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttComputerSection .bttSectionInfo .bttSectionDescription {
    margin-block-start: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttComputerSection .bttSectionInfo .bttSectionDescription {
    margin-block-start: 10px;
  }
}
.indexPage .bttComputerSection .bttSectionImage {
  position: relative;
  width: 800px;
}
@media screen and (max-width: 1400px) {
  .indexPage .bttComputerSection .bttSectionImage {
    width: 39%;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttComputerSection .bttSectionImage {
    display: flex;
    justify-content: flex-end;
    width: auto;
  }
}
.indexPage .bttComputerSection .bttSectionImage .bttIsoLogo {
  position: absolute;
  top: 86px;
  left: -36px;
  z-index: 1;
  width: 194px;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttComputerSection .bttSectionImage .bttIsoLogo {
    width: 216px;
    top: 45px;
    left: 1px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttComputerSection .bttSectionImage .bttIsoLogo {
    width: 148px;
    top: 32px;
    left: initial;
    right: 254px;
  }
}
.indexPage .bttComputerSection .bttSectionImage .bttCo2Logo {
  position: absolute;
  top: 238px;
  left: 70px;
  z-index: 1;
  width: 180px;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttComputerSection .bttSectionImage .bttCo2Logo {
    width: 200px;
    top: 112px;
    left: 202px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttComputerSection .bttSectionImage .bttCo2Logo {
    width: 142px;
    top: 78px;
    left: initial;
    right: 128px;
  }
}
.indexPage .bttComputerSection .bttSectionImage .bttIsoOnComputer {
  position: absolute;
  width: 456px;
  height: 289px;
  bottom: 10%;
  left: 50%;
  transform: translateX(-22%);
  z-index: 1;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttComputerSection .bttSectionImage .bttIsoOnComputer {
    width: 292;
    height: 185;
    border-radius: 10px;
    bottom: -45%;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttComputerSection .bttSectionImage .bttIsoOnComputer {
    width: 305px;
    height: 190px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    left: 20%;
    bottom: -55%;
  }
}
.indexPage .bttComputerSection .bttSectionImage .bttComputer {
  position: relative;
  left: 0;
  top: 0;
  width: 800px;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttComputerSection .bttSectionImage .bttComputer {
    width: 580px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttComputerSection .bttSectionImage .bttComputer {
    width: 408px;
  }
}
.indexPage .bttComputerSection .bttSectionImage .bttBgDarkMask {
  position: absolute;
  width: 1121px;
  height: 488px;
  bottom: -130px;
  left: -34px;
  border-radius: 1121px;
  background: #00217E;
  filter: blur(150px);
}
@media screen and (max-width: 768px) {
  .indexPage .bttComputerSection .bttSectionImage .bttBgDarkMask {
    height: 182px;
    width: 100%;
    bottom: -48px;
    left: 0;
  }
}
.indexPage .bttWhiteSection {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1728px;
  margin: auto;
  margin-block-start: 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 1728px) {
  .indexPage .bttWhiteSection {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .indexPage .bttWhiteSection {
    margin-block-start: 0;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttWhiteSection {
    padding-inline: 0;
  }
}
.indexPage .bttWhiteSection::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  top: 50%;
  background-color: #355CC6;
}
.indexPage .bttWhiteSection .bttBgBlueRightMask {
  position: absolute;
  width: 847px;
  height: 685.306px;
  right: -423px;
  bottom: -327px;
  border-radius: 847px;
  opacity: 0.7;
  background: rgba(23, 144, 255, 0.6);
  filter: blur(150px);
}
@media screen and (max-width: 1024px) {
  .indexPage .bttWhiteSection .bttBgBlueRightMask {
    bottom: 58px;
  }
}
.indexPage .bttWhiteSection .bttBgBlueLeftMask {
  position: absolute;
  width: 892px;
  height: 841.452px;
  left: -235px;
  bottom: -270px;
  border-radius: 892px;
  background: #89C0FF;
  filter: blur(150px);
}
@media screen and (max-width: 1024px) {
  .indexPage .bttWhiteSection .bttBgBlueLeftMask {
    left: -300px;
    bottom: -10px;
  }
}
.indexPage .bttWhiteSection .bttSectionWrapper {
  position: relative;
  width: 100%;
  max-width: 1668px;
  min-height: 868px;
  background-color: #ffffff;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  padding-block: 90px 100px;
  box-sizing: border-box;
  z-index: 2;
}
@media screen and (max-width: 1468px) {
  .indexPage .bttWhiteSection .bttSectionWrapper {
    padding: 60px 87px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttWhiteSection .bttSectionWrapper {
    padding: 36px 20px 40px;
  }
}
.indexPage .bttWhiteSection .bttSectionTitle {
  position: relative;
  text-align: center;
  color: #121212;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (max-width: 1468px) {
  .indexPage .bttWhiteSection .bttSectionTitle {
    font-size: 2.25rem;
  }
}
.indexPage .bttWhiteSection .bttSectionContainer {
  position: relative;
  display: flex;
  max-width: 1278px;
  width: 100%;
  margin-inline: auto;
  margin-block-start: 40px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttWhiteSection .bttSectionContainer {
    flex-direction: column-reverse;
    margin-block-start: 30px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttWhiteSection .bttSectionContainer {
    margin-block-start: 5px;
  }
}
.indexPage .bttWhiteSection .bttSectionContainer .bttSectionListBox {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttWhiteSection .bttSectionContainer .bttSectionListBox {
    flex-direction: column;
  }
}
.indexPage .bttWhiteSection .bttSectionContainer .bttSectionListBox .bttServiceItem {
  position: relative;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0px 0px 80px 0px rgba(23, 63, 134, 0.15);
  padding: 40px;
  box-sizing: border-box;
  overflow: hidden;
  margin-block-start: 20px;
  max-height: auto;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttWhiteSection .bttSectionContainer .bttSectionListBox .bttServiceItem {
    margin-block-start: 16px;
    padding: 32px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttWhiteSection .bttSectionContainer .bttSectionListBox .bttServiceItem {
    margin-block-start: 10px;
    padding: 24px 30px;
  }
}
.indexPage .bttWhiteSection .bttSectionContainer .bttSectionListBox .bttServiceItem:first-of-type {
  margin-block-start: 0;
}
.indexPage .bttWhiteSection .bttSectionContainer .bttSectionListBox .bttServiceItem.isOpen {
  background: #3357BB;
  max-height: 1000px;
}
.indexPage .bttWhiteSection .bttSectionContainer .bttSectionListBox .bttServiceItem.isOpen .bttServiceItemTitle {
  color: #ffffff;
}
.indexPage .bttWhiteSection .bttSectionContainer .bttSectionListBox .bttServiceItem.isOpen .bttServiceItemTitle .bbtStarIcon {
  width: 30px;
  height: 30px;
}
.indexPage .bttWhiteSection .bttSectionContainer .bttSectionListBox .bttServiceItem.isOpen .bttServiceItemTitle .bttItemButton {
  background-color: #ffffff;
}
.indexPage .bttWhiteSection .bttSectionContainer .bttSectionListBox .bttServiceItem.isOpen .bttServiceItemTitle .bttItemButton .bbtArrowUp {
  transform: rotate(0) translateY(-2px);
}
.indexPage .bttWhiteSection .bttSectionContainer .bttSectionListBox .bttServiceItem.isOpen .bttServiceItemContent {
  display: block;
}
.indexPage .bttWhiteSection .bttSectionContainer .bttSectionListBox .bttServiceItem .bttSix {
  position: absolute;
  top: 8px;
  left: 60px;
}
.indexPage .bttWhiteSection .bttSectionContainer .bttSectionListBox .bttServiceItem .bttServiceItemTitle {
  display: flex;
  width: 100%;
  align-items: center;
  color: #121212;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 160%;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttWhiteSection .bttSectionContainer .bttSectionListBox .bttServiceItem .bttServiceItemTitle {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttWhiteSection .bttSectionContainer .bttSectionListBox .bttServiceItem .bttServiceItemTitle {
    font-size: 1.5rem;
  }
}
.indexPage .bttWhiteSection .bttSectionContainer .bttSectionListBox .bttServiceItem .bttServiceItemTitle .bbtStarIcon {
  position: relative;
  width: 0;
  height: 0;
  margin-inline-end: 16px;
  transition: all 0.3s ease-in-out;
}
.indexPage .bttWhiteSection .bttSectionContainer .bttSectionListBox .bttServiceItem .bttServiceItemTitle .bttItemButton {
  display: flex;
  width: 48px;
  height: 48px;
  margin-inline-start: 10px;
  justify-content: center;
  align-items: center;
  background-color: #FFB100;
  border-radius: 100px;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  margin-left: auto;
  cursor: pointer;
  flex-shrink: 0;
}
.indexPage .bttWhiteSection .bttSectionContainer .bttSectionListBox .bttServiceItem .bttServiceItemTitle .bttItemButton .bbtArrowUp {
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out;
}
.indexPage .bttWhiteSection .bttSectionContainer .bttSectionListBox .bttServiceItem .bttServiceItemContent {
  display: none;
  margin-block-start: 22px;
  color: #ffffff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 200%;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttWhiteSection .bttSectionContainer .bttSectionListBox .bttServiceItem .bttServiceItemContent {
    font-size: 1rem;
  }
}
.indexPage .bttWhiteSection .bttSectionContainer .bttSectionImage {
  width: 52%;
  max-width: 640px;
  flex-shrink: 0;
  box-sizing: border-box;
  transform: translateX(64px);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttWhiteSection .bttSectionContainer .bttSectionImage {
    width: 100%;
    max-width: 100%;
    transform: translateX(0);
  }
}
.indexPage .bttWhiteSection .bttSectionContainer .bttSectionImage .bttImage {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttWhiteSection .bttSectionContainer .bttSectionImage .bttImage {
    width: 543px;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttWhiteSection .bttSectionContainer .bttSectionImage .bttImage {
    width: 100%;
  }
}
.indexPage .bttCardSection {
  position: relative;
  width: 100%;
  background-color: #355CC6;
  padding-block: 170px;
  box-sizing: border-box;
}
.indexPage .bttCardSection .table {
  display: none;
}
.indexPage .bttCardSection .mobile {
  display: none;
}
@media screen and (max-width: 1468px) {
  .indexPage .bttCardSection {
    padding-inline: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .indexPage .bttCardSection {
    padding-block: 140px 86px;
  }
  .indexPage .bttCardSection .pc {
    display: none;
  }
  .indexPage .bttCardSection .table {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardSection {
    padding-block: 60px;
  }
  .indexPage .bttCardSection .mobile {
    display: block;
  }
}
.indexPage .bttCardSection .bttCircle {
  position: absolute;
  width: 240px;
  top: -84px;
  left: 170px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttCardSection .bttCircle {
    top: -94px;
    left: 22px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardSection .bttCircle {
    left: -82px;
    top: 186px;
  }
}
.indexPage .bttCardSection .bbtEightSpaceGroup {
  position: absolute;
  width: 380px;
  bottom: 180px;
  left: -45px;
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardSection .bbtEightSpaceGroup {
    bottom: -68px;
  }
}
.indexPage .bttCardSection .bbtSixSpaceGroup {
  position: absolute;
  width: 350px;
  top: 138px;
  right: 78px;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttCardSection .bbtSixSpaceGroup {
    right: -40px;
    top: 56px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardSection .bbtSixSpaceGroup {
    display: none;
  }
}
.indexPage .bttCardSection .bbtCircleDivided {
  position: absolute;
  width: 400px;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardSection .bbtCircleDivided {
    display: none;
  }
}
.indexPage .bttCardSection .bttEightSpace {
  position: absolute;
  width: 400px;
  left: -87px;
  bottom: 549px;
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardSection .bttEightSpace {
    left: -82px;
    bottom: 22px;
  }
}
.indexPage .bttCardSection .bttStarSpaceTop {
  position: absolute;
  width: 54px;
  right: 28px;
  top: 58px;
}
.indexPage .bttCardSection .bttStarSpace {
  position: absolute;
  width: 84px;
  left: 70px;
  bottom: 250px;
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardSection .bttStarSpace {
    width: 60px;
    left: initial;
    bottom: 15px;
    right: 62px;
  }
}
.indexPage .bttCardSection .bttSectionTitle {
  position: relative;
  width: 100%;
  text-align: center;
  color: #FFF;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 150%;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttCardSection .bttSectionTitle {
    font-size: 2.25rem;
  }
}
.indexPage .bttCardSection .bttSectionDescription {
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 200%;
  margin-block-start: 18px;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttCardSection .bttSectionDescription {
    margin-block-start: 12px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardSection .bttSectionDescription {
    font-size: 1.25rem;
  }
}
.indexPage .bttCardSection .bttSectionContainer {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  margin-block-start: 80px;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttCardSection .bttSectionContainer {
    align-items: center;
    flex-direction: column;
    margin-block-start: 44px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardSection .bttSectionContainer {
    margin-block-start: 24px;
  }
}
.indexPage .bttCardSection .bttSectionContainer .bttCardWrapper {
  display: flex;
  flex-direction: column;
  padding: 40px;
  width: 540px;
  box-sizing: border-box;
  margin-inline-end: 88px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 80px 0px rgba(5, 34, 86, 0.5);
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .indexPage .bttCardSection .bttSectionContainer .bttCardWrapper {
    margin-inline-end: 0;
    margin-block-start: 40px;
  }
  .indexPage .bttCardSection .bttSectionContainer .bttCardWrapper:first-of-type {
    margin-block-start: 0;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardSection .bttSectionContainer .bttCardWrapper {
    margin-block-start: 20px;
    width: 100%;
    padding: 30px 18px;
  }
}
.indexPage .bttCardSection .bttSectionContainer .bttCardWrapper:last-of-type {
  margin-inline-end: 0;
}
.indexPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardHead {
  width: 100%;
}
.indexPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardHead .bttCardTitle {
  width: 100%;
  text-align: center;
  color: #121212;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 160%;
}
.indexPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardHead .bttCardImage {
  border-radius: 10px;
  box-shadow: 0px 4px 20px 0px rgba(3, 41, 76, 0.2);
  overflow: hidden;
  line-height: 0;
  margin-block-start: 20px;
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardHead .bttCardImage {
    margin-block-start: 10px;
  }
}
.indexPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardHead .bttCardImage .bttImage {
  width: 100%;
  border-radius: 10px;
}
.indexPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardHead .bttCardDescription {
  width: 100%;
  text-align: center;
  color: #121212;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 200%;
  margin-block-start: 30px;
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardHead .bttCardDescription {
    margin-block-start: 16px;
    font-size: 1rem;
  }
}
.indexPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardButtonBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
  margin-block-start: 30px;
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardButtonBox {
    margin-block-start: 24px;
  }
}
.indexPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardButtonBox .bttButton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 30px;
  border-radius: 10px;
  border: 1px solid #3351DE;
  background: #ffffff;
  box-sizing: border-box;
  color: #3351DE;
  text-align: center;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 180%;
  transition: all 0.3s ease-in-out;
  margin-block-start: 30px;
}
@media screen and (max-width: 768px) {
  .indexPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardButtonBox .bttButton {
    font-size: 1.25rem;
    margin-block-start: 16px;
  }
}
.indexPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardButtonBox .bttButton:hover {
  box-shadow: 0px 3px 20px 0px rgba(40, 112, 243, 0.3);
}
.indexPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardButtonBox .bttButton:first-of-type {
  margin-block-start: 0;
}
.indexPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardButtonBox .bttButton .bttArrowRight {
  width: 8px;
  margin-inline-start: 20px;
}

html[lang=en-us] .aboutPage .bttMainSection .bttSectionInfo {
  max-width: 30%;
}
@media screen and (max-width: 1024px) {
  html[lang=en-us] .aboutPage .bttMainSection .bttSectionInfo {
    width: 62%;
    max-width: initial;
  }
}
@media screen and (max-width: 768px) {
  html[lang=en-us] .aboutPage .bttMainSection .bttSectionInfo {
    width: 100%;
  }
}
html[lang=en-us] .aboutPage .bttMainSection .bttSectionInfo .bttSectionButton .bttSolidButton {
  letter-spacing: normal;
}
html[lang=en-us] .aboutPage .bttVideoSection .bttSectionButton .bttSolidButton {
  letter-spacing: normal;
}
html[lang=en-us] .aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .bttWishCard .bttCardMask {
  padding: 50px 40px 50px 60px;
}
@media screen and (max-width: 1024px) {
  html[lang=en-us] .aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .bttWishCard .bttCardMask {
    padding: 40px 30px 36px;
  }
  html[lang=en-us] .aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .bttWishCard .bttCardMask .bttWhiteStar {
    top: 10px;
    left: 10px;
  }
}
html[lang=en-us] .aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .bttWishCard .bttCardMask .bttCardTitle {
  font-size: 3rem;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  html[lang=en-us] .aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .bttWishCard .bttCardMask .bttCardTitle {
    font-size: 1.75rem;
  }
}

.aboutPage {
  padding-block-start: 136px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .aboutPage {
    padding-block-start: 80px;
  }
}
.aboutPage .bttMainSection {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1728px;
}
@media screen and (max-width: 768px) {
  .aboutPage .bttMainSection {
    flex-direction: column;
  }
}
.aboutPage .bttMainSection .bttLightMask {
  position: absolute;
  width: 447px;
  height: 360px;
  top: -93px;
  right: -87px;
  border-radius: 447px;
  background: #257CFF;
  filter: blur(150px);
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttMainSection .bttLightMask {
    display: none;
  }
}
.aboutPage .bttMainSection .bttSectionInfo {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-block-start: 200px;
  box-sizing: border-box;
  transform: translateX(-80px);
  z-index: 4;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttMainSection .bttSectionInfo {
    padding-block-start: 108px;
    width: 62%;
    transform: translateX(-52px);
  }
}
@media screen and (max-width: 768px) {
  .aboutPage .bttMainSection .bttSectionInfo {
    padding-block-start: 36px;
    padding-inline: 24px;
    width: 100%;
    transform: translateX(0);
  }
}
.aboutPage .bttMainSection .bttSectionInfo .bttCircle {
  position: absolute;
  width: 503px;
  top: 100px;
  right: -84px;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttMainSection .bttSectionInfo .bttCircle {
    width: 300px;
    top: 58px;
  }
}
@media screen and (max-width: 768px) {
  .aboutPage .bttMainSection .bttSectionInfo .bttCircle {
    top: -68px;
    right: -11px;
    width: 287px;
  }
}
.aboutPage .bttMainSection .bttSectionInfo .bttStarGroup {
  position: absolute;
  width: 72px;
  bottom: 100px;
  right: 47px;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttMainSection .bttSectionInfo .bttStarGroup {
    position: absolute;
    width: 54px;
    bottom: 83px;
    right: -12px;
  }
}
@media screen and (max-width: 768px) {
  .aboutPage .bttMainSection .bttSectionInfo .bttStarGroup {
    width: 50px;
    right: 73px;
    bottom: 95px;
  }
}
.aboutPage .bttMainSection .bttSectionInfo .bttSectionTitle {
  position: relative;
  color: #ffffff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 150%;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttMainSection .bttSectionInfo .bttSectionTitle {
    font-size: 2.25rem;
  }
}
.aboutPage .bttMainSection .bttSectionInfo .bttSectionTitle .bbtStarIcon {
  position: absolute;
  right: 136px;
  top: -25px;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 1728px) {
  .aboutPage .bttMainSection .bttSectionInfo .bttSectionTitle .bbtStarIcon {
    right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttMainSection .bttSectionInfo .bttSectionTitle .bbtStarIcon {
    right: initial;
    left: 410px;
  }
}
@media screen and (max-width: 768px) {
  .aboutPage .bttMainSection .bttSectionInfo .bttSectionTitle .bbtStarIcon {
    right: initial;
    left: 320px;
    top: -6px;
    width: 20px;
    height: 20px;
  }
}
.aboutPage .bttMainSection .bttSectionInfo .bttSectionDescription {
  position: relative;
  color: #fff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 200%;
  margin-block-start: 24px;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttMainSection .bttSectionInfo .bttSectionDescription {
    font-size: 1rem;
    margin-block-start: 6px;
  }
}
.aboutPage .bttMainSection .bttSectionInfo .bttSectionButton {
  margin-block: 36px 40px;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttMainSection .bttSectionInfo .bttSectionButton {
    margin-block-start: 16px;
  }
}
.aboutPage .bttMainSection .bttSectionInfo .bttSectionButton .bttSolidButton {
  display: inline-flex;
  padding: 10px 30px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.2px;
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(40, 112, 243, 0.5);
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttMainSection .bttSectionInfo .bttSectionButton .bttSolidButton {
    font-size: 1.25rem;
  }
}
.aboutPage .bttMainSection .bttSectionImage {
  position: relative;
  width: 1064px;
}
@media screen and (max-width: 1728px) {
  .aboutPage .bttMainSection .bttSectionImage {
    width: 64%;
  }
}
@media screen and (max-width: 1300px) {
  .aboutPage .bttMainSection .bttSectionImage {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .aboutPage .bttMainSection .bttSectionImage {
    width: 350px;
  }
}
.aboutPage .bttMainSection .bttSectionImage .bttBlueBg {
  position: relative;
  width: 828px;
  height: 620px;
  background-color: #020B3F;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 1;
}
@media screen and (max-width: 1728px) {
  .aboutPage .bttMainSection .bttSectionImage .bttBlueBg {
    width: 70%;
  }
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttMainSection .bttSectionImage .bttBlueBg {
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .aboutPage .bttMainSection .bttSectionImage .bttBlueBg {
    height: 303px;
    width: 100%;
  }
}
.aboutPage .bttMainSection .bttSectionImage .bttBlueLight {
  position: absolute;
  width: 828px;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttMainSection .bttSectionImage .bttBlueLight {
    display: none;
  }
}
.aboutPage .bttMainSection .bttSectionImage .bttContainerImage {
  position: absolute;
  top: 0;
  right: -74px;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttMainSection .bttSectionImage .bttContainerImage {
    position: absolute;
    top: 0;
    right: -40px;
    width: 658px;
  }
}
@media screen and (max-width: 768px) {
  .aboutPage .bttMainSection .bttSectionImage .bttContainerImage {
    width: 482px;
    right: -115px;
  }
}
.aboutPage .bttVideoSection {
  position: relative;
  width: 100%;
  margin-block-start: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttVideoSection {
    margin-block-start: 164px;
  }
}
@media screen and (max-width: 768px) {
  .aboutPage .bttVideoSection {
    margin-block-start: 0;
    padding-block: 40px 60px;
    background-color: #4068e5;
  }
}
.aboutPage .bttVideoSection .bttSectionTitle {
  position: relative;
  display: inline-flex;
  color: #97ADFF;
  text-align: center;
  font-family: "Inter", Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 4px;
  padding-inline: 52px;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttVideoSection .bttSectionTitle {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 768px) {
  .aboutPage .bttVideoSection .bttSectionTitle {
    padding-inline: 28px;
    font-size: 1.5rem;
  }
}
.aboutPage .bttVideoSection .bttSectionTitle::before {
  position: absolute;
  width: 28px;
  height: 28px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  background-image: url("../images/star.png");
  background-size: 28px;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .aboutPage .bttVideoSection .bttSectionTitle::before {
    width: 18px;
    height: 18px;
    background-size: 18px;
  }
}
.aboutPage .bttVideoSection .bttSectionTitle::after {
  position: absolute;
  width: 28px;
  height: 28px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  background-image: url("../images/star.png");
  background-size: 28px;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .aboutPage .bttVideoSection .bttSectionTitle::after {
    width: 18px;
    height: 18px;
    background-size: 18px;
  }
}
.aboutPage .bttVideoSection .bttVideoMaskBox {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-block-start: 42px;
  box-sizing: border-box;
}
@media screen and (max-width: 1300px) {
  .aboutPage .bttVideoSection .bttVideoMaskBox {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 768px) {
  .aboutPage .bttVideoSection .bttVideoMaskBox {
    margin-block-start: 32px;
  }
}
.aboutPage .bttVideoSection .bttVideoMaskBox .bttVideoMask {
  width: 100%;
  max-width: 1388px;
  height: 16vw;
  mask-image: url("../images/logo_mask.png");
  mask-size: 100%;
  mask-repeat: no-repeat;
}
.aboutPage .bttVideoSection .bttVideoMaskBox .bttVideoMask .bttVideo {
  width: 100%;
}
.aboutPage .bttVideoSection .bttSectionButton {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-block-start: 120px;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttVideoSection .bttSectionButton {
    margin-block-start: 84px;
  }
}
@media screen and (max-width: 768px) {
  .aboutPage .bttVideoSection .bttSectionButton {
    margin-block-start: 50px;
  }
}
.aboutPage .bttVideoSection .bttSectionButton .bttSolidButton {
  display: inline-flex;
  padding: 10px 30px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.2px;
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(40, 112, 243, 0.5);
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttVideoSection .bttSectionButton .bttSolidButton {
    font-size: 1.25rem;
  }
}
.aboutPage .bttVideoSection .bttSectionButton .bttVideoButton {
  display: flex;
  width: 48px;
  height: 48px;
  margin-inline-end: 12px;
  justify-content: center;
  align-items: center;
  background-color: #FFB100;
  border-radius: 100px;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  margin-left: auto;
  cursor: pointer;
  flex-shrink: 0;
}
.aboutPage .bttVideoSection .bttSectionButton .bttVideoButton .bbtVideoArrow {
  transition: all 0.3s ease-in-out;
}
.aboutPage .bttWhiteSection {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1728px;
  margin: auto;
  margin-block-start: 200px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttWhiteSection {
    margin-block-start: 120px;
  }
}
@media screen and (max-width: 768px) {
  .aboutPage .bttWhiteSection {
    margin-block-start: 0;
  }
}
.aboutPage .bttWhiteSection .bttBgBlueRightMask {
  position: absolute;
  width: 847px;
  height: 685.306px;
  right: -423px;
  bottom: -327px;
  border-radius: 847px;
  opacity: 0.7;
  background: rgba(23, 144, 255, 0.6);
  filter: blur(150px);
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttWhiteSection .bttBgBlueRightMask {
    display: none;
  }
}
.aboutPage .bttWhiteSection .bttBgBlueLeftMask {
  position: absolute;
  width: 892px;
  height: 841.452px;
  left: -235px;
  bottom: -270px;
  border-radius: 892px;
  background: #89C0FF;
  filter: blur(150px);
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttWhiteSection .bttBgBlueLeftMask {
    width: 636px;
    height: 557px;
    left: -120px;
    bottom: -98px;
  }
}
@media screen and (max-width: 768px) {
  .aboutPage .bttWhiteSection .bttBgBlueLeftMask {
    width: 684px;
    height: 880px;
    left: -50px;
    bottom: 350px;
  }
}
.aboutPage .bttWhiteSection .bttSectionWrapper {
  position: relative;
  width: 100%;
  max-width: 1668px;
  min-height: 868px;
  background-color: #ffffff;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  padding-block: 90px 100px;
  z-index: 1;
  box-sizing: border-box;
}
.aboutPage .bttWhiteSection .bttSectionWrapper::before {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  width: 90px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .aboutPage .bttWhiteSection .bttSectionWrapper::before {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttWhiteSection .bttSectionWrapper {
    min-height: auto;
    padding-block: 36px 80px;
  }
}
@media screen and (max-width: 768px) {
  .aboutPage .bttWhiteSection .bttSectionWrapper {
    padding: 36px 30px 50px;
  }
}
.aboutPage .bttWhiteSection .bttSectionInfo {
  display: flex;
  justify-content: space-between;
  padding-inline: 130px;
  box-sizing: border-box;
}
@media screen and (max-width: 1468px) {
  .aboutPage .bttWhiteSection .bttSectionInfo {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttWhiteSection .bttSectionInfo {
    padding-inline: 30px;
  }
}
@media screen and (max-width: 768px) {
  .aboutPage .bttWhiteSection .bttSectionInfo {
    padding: 0;
  }
}
.aboutPage .bttWhiteSection .bttSectionInfo .bttSectionHead {
  position: relative;
}
.aboutPage .bttWhiteSection .bttSectionInfo .bttSectionHead .bttSectionTitle {
  color: #121212;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 150%;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttWhiteSection .bttSectionInfo .bttSectionHead .bttSectionTitle {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 768px) {
  .aboutPage .bttWhiteSection .bttSectionInfo .bttSectionHead .bttSectionTitle {
    text-align: center;
  }
}
.aboutPage .bttWhiteSection .bttSectionInfo .bttSectionHead .bttSectionDescription {
  color: #121212;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 200%;
  margin-block-start: 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttWhiteSection .bttSectionInfo .bttSectionHead .bttSectionDescription {
    margin-block-start: 20px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .aboutPage .bttWhiteSection .bttSectionInfo .bttSectionHead .bttSectionDescription {
    margin-block-start: 10px;
  }
}
.aboutPage .bttWhiteSection .bttSectionInfo .bttButtonArea {
  display: flex;
  width: 156px;
  flex-shrink: 0;
  padding-block-start: 133px;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttWhiteSection .bttSectionInfo .bttButtonArea {
    position: absolute;
    right: 28px;
    padding-block-start: 0;
    z-index: 2;
  }
}
@media screen and (max-width: 768px) {
  .aboutPage .bttWhiteSection .bttSectionInfo .bttButtonArea {
    display: none;
  }
}
.aboutPage .bttWhiteSection .bttSectionInfo .bttButtonArea .bttSectionButton {
  display: flex;
  width: 48px;
  height: 48px;
  margin-inline-end: 12px;
  justify-content: center;
  align-items: center;
  background-color: #FFB100;
  border-radius: 100px;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  margin-left: auto;
  cursor: pointer;
  flex-shrink: 0;
}
.aboutPage .bttWhiteSection .bttSectionInfo .bttButtonArea .bttSectionButton.disabled {
  cursor: default;
  opacity: 0.5;
}
.aboutPage .bttWhiteSection .bttSectionInfo .bttButtonArea .bttSectionButton .bbtVideoArrow {
  transition: all 0.3s ease-in-out;
}
.aboutPage .bttWhiteSection .bttSectionContainer {
  position: relative;
  display: flex;
  width: 100%;
  margin-block-start: 70px;
  box-sizing: border-box;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttWhiteSection .bttSectionContainer {
    margin-block-start: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttWhiteSection .bttSectionContainer {
    margin-block-start: 20px;
  }
}
.aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper {
  position: relative;
  width: 100%;
}
.aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .swiper {
  width: calc(100% - 130px);
  margin-inline-start: 130px;
  overflow: visible;
}
@media screen and (max-width: 1468px) {
  .aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .swiper {
    width: calc(100% - 60px);
    margin-inline-start: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .swiper {
    width: calc(100% - 30px);
    margin-inline-start: 30px;
  }
}
@media screen and (max-width: 768px) {
  .aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .swiper {
    width: 100%;
    margin-inline-start: 0;
  }
}
.aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .swiper-wrapper {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .swiper-wrapper {
    flex-direction: column;
  }
}
.aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .bttWishCard {
  position: relative;
  width: 560px;
  min-height: 600px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
}
.aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .bttWishCard:last-child {
  margin-inline-end: 0;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .bttWishCard {
    width: 333px;
    min-height: 454px;
  }
}
@media screen and (max-width: 768px) {
  .aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .bttWishCard {
    width: 100%;
    margin-block-start: 20px;
  }
  .aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .bttWishCard:first-child {
    margin-block-start: 0;
  }
}
.aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .bttWishCard .bttCardMask {
  position: relative;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 50px 60px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .bttWishCard .bttCardMask {
    min-height: 454px;
    justify-content: flex-start;
  }
}
.aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .bttWishCard .bttCardMask .bttWhiteStar {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 30px;
  left: 30px;
}
.aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .bttWishCard .bttCardMask .bttCardTitle {
  color: #ffffff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 150%;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .bttWishCard .bttCardMask .bttCardTitle {
    text-align: center;
    font-size: 2.25rem;
  }
}
.aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .bttWishCard .bttCardMask .bttCardDescription {
  color: #ffffff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 200%;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttWhiteSection .bttSectionContainer .bttSwiperWrapper .bttWishCard .bttCardMask .bttCardDescription {
    font-size: 1rem;
    padding-block-start: 20px;
  }
}
.aboutPage .bttContactSection {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-block: 160px;
  padding-inline: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttContactSection {
    padding-block: 100px;
  }
}
.aboutPage .bttContactSection .bbtEightImage {
  position: absolute;
  width: 502px;
  left: 100px;
  top: 60px;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttContactSection .bbtEightImage {
    width: 300px;
    right: 121px;
    bottom: 90px;
  }
}
.aboutPage .bttContactSection .bbtStarGroup {
  position: absolute;
  width: 70px;
  right: 280px;
  bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttContactSection .bbtStarGroup {
    width: 40px;
    right: 121px;
    bottom: 90px;
  }
}
.aboutPage .bttContactSection .bttSectionTitle {
  position: relative;
  color: #ffffff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 150%;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttContactSection .bttSectionTitle {
    font-size: 2.25rem;
  }
}
.aboutPage .bttContactSection .bttSectionDescription {
  position: relative;
  color: #ffffff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 200%;
  margin-block-start: 20px;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttContactSection .bttSectionDescription {
    margin-block-start: 10px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .aboutPage .bttContactSection .bttSectionDescription {
    text-align: center;
  }
}
.aboutPage .bttContactSection .bttSectionDescription br {
  display: none;
}
@media screen and (max-width: 768px) {
  .aboutPage .bttContactSection .bttSectionDescription br {
    display: block;
  }
}
.aboutPage .bttContactSection .bttSectionButton {
  margin-block-start: 40px;
}
@media screen and (max-width: 1024px) {
  .aboutPage .bttContactSection .bttSectionButton {
    margin-block-start: 20px;
  }
  .aboutPage .bttContactSection .bttSectionButton .bttWhiteSolidButton {
    font-size: 1.25rem;
  }
}

html[lang=en-us] .solutionPage .bttPlanSection .bttSectionDescription {
  max-width: 100%;
}
@media screen and (max-width: 1250px) {
  html[lang=en-us] .solutionPage .bttPlanSection .bttSectionContainer .bttCardListWrapper {
    padding: 66px 40px 40px;
  }
}
@media screen and (max-width: 1250px) {
  html[lang=en-us] .solutionPage .bttPlanSection .bttSectionContainer .bttCardListWrapper .bttCardHead {
    padding-inline-start: 0;
  }
}
@media screen and (max-width: 1250px) {
  html[lang=en-us] .solutionPage .bttPlanSection .bttSectionContainer .bttCardListWrapper .bttCardIcon {
    left: 0;
    right: 0;
    margin: auto;
    width: 140px;
    top: -76px;
  }
}
html[lang=en-us] .solutionPage .bttBannerSection .bttSectionInfo .bttSectionButton .bttSolidButton {
  letter-spacing: normal;
}

.solutionPage .bttBannerSection {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  max-width: 1728px;
  height: 800px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttBannerSection {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .solutionPage .bttBannerSection {
    flex-direction: column;
  }
}
.solutionPage .bttBannerSection .bttBlueLight {
  position: absolute;
  width: 733px;
  height: 508px;
  top: 177px;
  right: 143px;
  border-radius: 733;
  background: #4688f0;
  filter: blur(150px);
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttBannerSection .bttBlueLight {
    width: 353px;
    height: 245px;
  }
}
@media screen and (max-width: 768px) {
  .solutionPage .bttBannerSection .bttBlueLight {
    display: none;
  }
}
.solutionPage .bttBannerSection .bttBannerBg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solutionPage .bttBannerSection .bttBannerBg.tablet {
  object-fit: contain;
  display: none;
}
.solutionPage .bttBannerSection .bttBannerBg.mobile {
  display: none;
  height: 150vw;
  min-height: 800px;
  object-position: top;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttBannerSection .bttBannerBg {
    display: none;
  }
  .solutionPage .bttBannerSection .bttBannerBg.tablet {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .solutionPage .bttBannerSection .bttBannerBg.tablet {
    display: none;
  }
  .solutionPage .bttBannerSection .bttBannerBg.mobile {
    display: block;
  }
}
.solutionPage .bttBannerSection .bttSectionInfo {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 50%;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttBannerSection .bttSectionInfo {
    padding-inline-end: 52px;
  }
}
@media screen and (max-width: 768px) {
  .solutionPage .bttBannerSection .bttSectionInfo {
    bottom: 36px;
    padding-inline: 24px;
    width: 100%;
  }
}
.solutionPage .bttBannerSection .bttSectionInfo .bttSectionTitle {
  position: relative;
  color: #ffffff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 150%;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttBannerSection .bttSectionInfo .bttSectionTitle {
    font-size: 2.25rem;
    z-index: 2;
  }
}
.solutionPage .bttBannerSection .bttSectionInfo .bttSectionDescription {
  position: relative;
  color: #fff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 200%;
  margin-block-start: 24px;
  max-width: 560px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttBannerSection .bttSectionInfo .bttSectionDescription {
    font-size: 1rem;
    margin-block-start: 6px;
    z-index: 2;
  }
}
.solutionPage .bttBannerSection .bttSectionInfo .bttSectionButton {
  position: relative;
  margin-block-start: 36px;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttBannerSection .bttSectionInfo .bttSectionButton {
    margin-block-start: 16px;
    z-index: 2;
  }
}
.solutionPage .bttBannerSection .bttSectionInfo .bttSectionButton .bttSolidButton {
  display: inline-flex;
  padding: 10px 30px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.2px;
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(40, 112, 243, 0.5);
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttBannerSection .bttSectionInfo .bttSectionButton .bttSolidButton {
    font-size: 1.25rem;
  }
}
.solutionPage .bttCardListSection {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-block: 140px 240px;
  padding-inline: 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardListSection {
    padding-block: 100px 130px;
  }
}
@media screen and (max-width: 768px) {
  .solutionPage .bttCardListSection {
    padding-block: 60px 108px;
    padding-inline: 20px;
  }
}
.solutionPage .bttCardListSection .bttSectionTitle {
  width: 100%;
  text-align: center;
  color: #FFF;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 150%;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardListSection .bttSectionTitle {
    font-size: 2.25rem;
  }
}
.solutionPage .bttCardListSection .bttSectionDescription {
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 200%;
  margin-block-start: 18px;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardListSection .bttSectionDescription {
    margin-block-start: 6px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .solutionPage .bttCardListSection .bttSectionDescription {
    font-size: 1.25rem;
  }
}
.solutionPage .bttCardListSection .bttSectionContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block-start: 120px;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardListSection .bttSectionContainer {
    margin-block-start: 30px;
  }
}
.solutionPage .bttCardListSection .bttSectionContainer::before {
  position: absolute;
  bottom: 0;
  content: "";
  background-color: #020B3F;
  width: 100%;
  height: 428px;
}
@media screen and (max-width: 520px) {
  .solutionPage .bttCardListSection .bttSectionContainer::before {
    height: 200px;
  }
}
.solutionPage .bttCardListSection .bttSectionContainer::after {
  position: absolute;
  bottom: 1px;
  content: "";
  background-image: url("../images/blue_triangle_bg.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
  width: 100%;
  height: 428px;
  z-index: 2;
}
.solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper {
  position: relative;
  display: flex;
  margin-block-start: 100px;
  width: 100%;
  max-width: 1204px;
  z-index: 3;
}
.solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper:first-child {
  margin-block-start: 0;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper {
    flex-direction: column;
    max-width: 594px;
    margin-block-start: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper {
    margin-block-start: 50px;
  }
}
.solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardImage {
  position: relative;
  width: 360px;
  line-height: 0;
  flex-shrink: 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardImage {
    width: 100%;
  }
}
.solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardImage .bttImage {
  width: 100%;
}
.solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardImage .bttImage.tablet {
  display: none;
}
.solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardImage .bttImage.mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardImage .bttImage {
    display: none;
  }
  .solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardImage .bttImage.tablet {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardImage .bttImage.tablet {
    display: none;
  }
  .solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardImage .bttImage.mobile {
    display: block;
  }
}
.solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-block: 26px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent {
    padding: 24px 0 0 58px;
  }
}
@media screen and (max-width: 768px) {
  .solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent {
    padding: 16px 0 0 58px;
  }
}
.solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent .bttPointLine.mobile {
  display: none;
  position: absolute;
  top: 0px;
  left: 16px;
  height: 97%;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent .bttPointLine {
    display: none;
  }
  .solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent .bttPointLine.mobile {
    display: block;
  }
}
.solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent .bttCardTitle {
  position: relative;
  display: flex;
  align-items: center;
  padding-inline-end: 42px;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent .bttCardTitle {
    justify-content: center;
    padding-inline-end: 0;
  }
}
.solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent .bttCardTitle .bttPointLine {
  position: relative;
  width: 143px;
  margin-inline-start: -43px;
  margin-inline-end: 24px;
}
.solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent .bttCardTitle span {
  color: #B3C7FF;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent .bttCardTitle span {
    font-size: 1.5rem;
  }
}
.solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent .bttCardTitle .bttWhiteStar {
  position: relative;
  width: 26px;
  margin-inline-start: 16px;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent .bttCardTitle .bttWhiteStar {
    width: 22px;
    margin-inline-start: 10px;
  }
}
.solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent .bttCardList {
  position: relative;
  display: flex;
  justify-content: center;
  margin-block-start: 24px;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent .bttCardList {
    margin-block-start: 30px;
  }
  .solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent .bttCardList:nth-child(3) {
    margin-block-start: 24px;
  }
}
@media screen and (max-width: 768px) {
  .solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent .bttCardList {
    margin-block-start: 30px;
  }
  .solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent .bttCardList:nth-child(3) {
    margin-block-start: 16px;
  }
}
.solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent .bttCardList .bttCardIcon {
  position: relative;
  width: 52px;
  margin-inline: 35px;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent .bttCardList .bttCardIcon {
    position: absolute;
    width: 32px;
    margin-inline: 0;
    left: 0;
    top: 4px;
  }
}
.solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent .bttCardList .bttCardListInfo .bttCardListInfoTitle {
  color: #FFB100;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 200%;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent .bttCardList .bttCardListInfo .bttCardListInfoTitle {
    padding-inline-start: 48px;
  }
}
.solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent .bttCardList .bttCardListInfo .bttCardListInfoDescription {
  color: #ffffff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  margin-block-start: 2px;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardListSection .bttSectionContainer .bttCardListWrapper .bttCardContent .bttCardList .bttCardListInfo .bttCardListInfoDescription {
    padding-block-start: 10px;
  }
}
.solutionPage .bttPlanSection {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #020B3F;
  padding-block-start: 46px;
  margin-block-start: -1px;
  box-sizing: border-box;
  z-index: 1;
}
.solutionPage .bttPlanSection::before {
  position: absolute;
  bottom: -1px;
  content: "";
  background-color: #355CC6;
  width: 100%;
  height: 120px;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttPlanSection::before {
    position: absolute;
    bottom: -1px;
    content: "";
    background-color: #355CC6;
    width: 100%;
    height: 62px;
  }
}
@media screen and (max-width: 768px) {
  .solutionPage .bttPlanSection {
    padding-block-start: 40px;
  }
}
.solutionPage .bttPlanSection .bbtEightImage {
  position: absolute;
  right: 62px;
  top: -150px;
  width: 544px;
}
@media screen and (max-width: 768px) {
  .solutionPage .bttPlanSection .bbtEightImage {
    width: 311px;
    top: -78px;
    right: 100px;
  }
}
.solutionPage .bttPlanSection .bbtStarGroup {
  position: absolute;
  right: 200px;
  top: 165px;
  width: 60px;
}
@media screen and (max-width: 768px) {
  .solutionPage .bttPlanSection .bbtStarGroup {
    width: 43px;
    top: -42px;
    right: 176px;
  }
}
.solutionPage .bttPlanSection .bttSectionTitle {
  position: relative;
  color: #ffffff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 150%;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttPlanSection .bttSectionTitle {
    font-size: 2.25rem;
  }
}
.solutionPage .bttPlanSection .bttSectionDescription {
  position: relative;
  text-align: center;
  color: #fff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 200%;
  margin-block-start: 24px;
  max-width: 560px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttPlanSection .bttSectionDescription {
    font-size: 1rem;
    margin-block-start: 18px;
  }
}
@media screen and (max-width: 768px) {
  .solutionPage .bttPlanSection .bttSectionDescription {
    margin-block-start: 6px;
  }
}
.solutionPage .bttPlanSection .bttSectionContainer {
  display: flex;
  padding-block: 97px 60px;
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttPlanSection .bttSectionContainer {
    padding-block: 89px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .solutionPage .bttPlanSection .bttSectionContainer {
    align-items: center;
    padding-block: 99px 0;
    flex-direction: column;
    width: 100%;
  }
}
.solutionPage .bttPlanSection .bttSectionContainer .bttCardListWrapper {
  position: relative;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0px 4px 20px 0px rgba(2, 11, 63, 0.25);
  max-width: 440px;
  width: 100%;
  padding: 30px 40px 40px;
  margin-inline-end: 33px;
  box-sizing: border-box;
}
.solutionPage .bttPlanSection .bttSectionContainer .bttCardListWrapper:nth-child(2) {
  transform: translateY(60px);
}
.solutionPage .bttPlanSection .bttSectionContainer .bttCardListWrapper:last-child {
  margin-inline-end: 0;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttPlanSection .bttSectionContainer .bttCardListWrapper {
    margin-inline-end: 20px;
    margin-block-start: 40px;
    padding: 70px 26px 30px;
    max-width: 353px;
  }
  .solutionPage .bttPlanSection .bttSectionContainer .bttCardListWrapper:first-child {
    margin-inline: 150px;
    margin-block-start: 0;
  }
  .solutionPage .bttPlanSection .bttSectionContainer .bttCardListWrapper:nth-child(2) {
    transform: translateY(0);
  }
  .solutionPage .bttPlanSection .bttSectionContainer .bttCardListWrapper:last-child {
    margin-inline-end: 0;
  }
}
@media screen and (max-width: 768px) {
  .solutionPage .bttPlanSection .bttSectionContainer .bttCardListWrapper {
    margin-block-start: 79px;
    margin-inline-end: 0;
  }
  .solutionPage .bttPlanSection .bttSectionContainer .bttCardListWrapper:first-child {
    margin-inline: 0;
  }
}
.solutionPage .bttPlanSection .bttSectionContainer .bttCardListWrapper .bttCardHead {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-inline-start: 120px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttPlanSection .bttSectionContainer .bttCardListWrapper .bttCardHead {
    padding-inline-start: 0;
  }
}
.solutionPage .bttPlanSection .bttSectionContainer .bttCardListWrapper .bttCardIcon {
  position: absolute;
  left: -21px;
  top: -58px;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttPlanSection .bttSectionContainer .bttCardListWrapper .bttCardIcon {
    left: 0;
    right: 0;
    margin: auto;
    width: 140px;
    top: -76px;
  }
}
.solutionPage .bttPlanSection .bttSectionContainer .bttCardListWrapper .bttCardListInfoTitle {
  color: #020B3F;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 150%;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttPlanSection .bttSectionContainer .bttCardListWrapper .bttCardListInfoTitle {
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
  }
}
.solutionPage .bttPlanSection .bttSectionContainer .bttCardListWrapper .bttCardListInfoFeature {
  color: #355cc6;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 200%;
  margin-block-start: 4px;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttPlanSection .bttSectionContainer .bttCardListWrapper .bttCardListInfoFeature {
    width: 100%;
    text-align: center;
    margin-block-start: 8px;
  }
}
.solutionPage .bttPlanSection .bttSectionContainer .bttCardListWrapper .bttCardListInfoDescription {
  color: #121212;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 200%;
  margin-block-start: 18px;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttPlanSection .bttSectionContainer .bttCardListWrapper .bttCardListInfoDescription {
    font-size: 1rem;
    margin-block-start: 8px;
  }
}
.solutionPage .bttCardSection {
  position: relative;
  width: 100%;
  background-color: #355CC6;
  padding-block: 170px;
  box-sizing: border-box;
}
.solutionPage .bttCardSection .table {
  display: none;
}
.solutionPage .bttCardSection .mobile {
  display: none;
}
@media screen and (max-width: 1468px) {
  .solutionPage .bttCardSection {
    padding-inline: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardSection {
    padding-block: 140px 86px;
  }
  .solutionPage .bttCardSection .pc {
    display: none;
  }
  .solutionPage .bttCardSection .table {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .solutionPage .bttCardSection {
    padding-block: 60px;
  }
  .solutionPage .bttCardSection .mobile {
    display: block;
  }
}
.solutionPage .bttCardSection .bttCircle {
  position: absolute;
  width: 240px;
  top: -84px;
  left: 170px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardSection .bttCircle {
    top: -94px;
    left: 22px;
  }
}
@media screen and (max-width: 768px) {
  .solutionPage .bttCardSection .bttCircle {
    left: -82px;
    top: 186px;
  }
}
.solutionPage .bttCardSection .bbtEightSpaceGroup {
  position: absolute;
  width: 380px;
  bottom: 180px;
  left: -45px;
}
@media screen and (max-width: 768px) {
  .solutionPage .bttCardSection .bbtEightSpaceGroup {
    bottom: -68px;
  }
}
.solutionPage .bttCardSection .bbtSixSpaceGroup {
  position: absolute;
  width: 350px;
  top: 138px;
  right: 78px;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardSection .bbtSixSpaceGroup {
    right: -40px;
    top: 56px;
  }
}
@media screen and (max-width: 768px) {
  .solutionPage .bttCardSection .bbtSixSpaceGroup {
    display: none;
  }
}
.solutionPage .bttCardSection .bbtCircleDivided {
  position: absolute;
  width: 400px;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .solutionPage .bttCardSection .bbtCircleDivided {
    display: none;
  }
}
.solutionPage .bttCardSection .bttEightSpace {
  position: absolute;
  width: 400px;
  left: -87px;
  bottom: 549px;
}
@media screen and (max-width: 768px) {
  .solutionPage .bttCardSection .bttEightSpace {
    left: -82px;
    bottom: 22px;
  }
}
.solutionPage .bttCardSection .bttStarSpaceTop {
  position: absolute;
  width: 54px;
  right: 28px;
  top: 58px;
}
.solutionPage .bttCardSection .bttStarSpace {
  position: absolute;
  width: 84px;
  left: 70px;
  bottom: 250px;
}
@media screen and (max-width: 768px) {
  .solutionPage .bttCardSection .bttStarSpace {
    width: 60px;
    left: initial;
    bottom: 15px;
    right: 62px;
  }
}
.solutionPage .bttCardSection .bttSectionTitle {
  position: relative;
  width: 100%;
  text-align: center;
  color: #FFF;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 150%;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardSection .bttSectionTitle {
    font-size: 2.25rem;
  }
}
.solutionPage .bttCardSection .bttSectionDescription {
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 200%;
  margin-block-start: 18px;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardSection .bttSectionDescription {
    margin-block-start: 12px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .solutionPage .bttCardSection .bttSectionDescription {
    font-size: 1.25rem;
  }
}
.solutionPage .bttCardSection .bttSectionContainer {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  margin-block-start: 80px;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardSection .bttSectionContainer {
    align-items: center;
    flex-direction: column;
    margin-block-start: 44px;
  }
}
@media screen and (max-width: 768px) {
  .solutionPage .bttCardSection .bttSectionContainer {
    margin-block-start: 24px;
  }
}
.solutionPage .bttCardSection .bttSectionContainer .bttCardWrapper {
  display: flex;
  flex-direction: column;
  padding: 40px;
  width: 540px;
  box-sizing: border-box;
  margin-inline-end: 88px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 80px 0px rgba(5, 34, 86, 0.5);
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .solutionPage .bttCardSection .bttSectionContainer .bttCardWrapper {
    margin-inline-end: 0;
    margin-block-start: 40px;
  }
  .solutionPage .bttCardSection .bttSectionContainer .bttCardWrapper:first-of-type {
    margin-block-start: 0;
  }
}
@media screen and (max-width: 768px) {
  .solutionPage .bttCardSection .bttSectionContainer .bttCardWrapper {
    margin-block-start: 20px;
    width: 100%;
    padding: 30px 18px;
  }
}
.solutionPage .bttCardSection .bttSectionContainer .bttCardWrapper:last-of-type {
  margin-inline-end: 0;
}
.solutionPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardHead {
  width: 100%;
}
.solutionPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardHead .bttCardTitle {
  width: 100%;
  text-align: center;
  color: #121212;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 160%;
}
.solutionPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardHead .bttCardImage {
  border-radius: 10px;
  box-shadow: 0px 4px 20px 0px rgba(3, 41, 76, 0.2);
  overflow: hidden;
  line-height: 0;
  margin-block-start: 20px;
}
@media screen and (max-width: 768px) {
  .solutionPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardHead .bttCardImage {
    margin-block-start: 10px;
  }
}
.solutionPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardHead .bttCardImage .bttImage {
  width: 100%;
  border-radius: 10px;
}
.solutionPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardHead .bttCardDescription {
  width: 100%;
  text-align: center;
  color: #121212;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 200%;
  margin-block-start: 30px;
}
@media screen and (max-width: 768px) {
  .solutionPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardHead .bttCardDescription {
    margin-block-start: 16px;
    font-size: 1rem;
  }
}
.solutionPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardButtonBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
  margin-block-start: 30px;
}
@media screen and (max-width: 768px) {
  .solutionPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardButtonBox {
    margin-block-start: 24px;
  }
}
.solutionPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardButtonBox .bttButton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 30px;
  border-radius: 10px;
  border: 1px solid #3351DE;
  background: #ffffff;
  box-sizing: border-box;
  color: #3351DE;
  text-align: center;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 180%;
  transition: all 0.3s ease-in-out;
  margin-block-start: 30px;
}
@media screen and (max-width: 768px) {
  .solutionPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardButtonBox .bttButton {
    font-size: 1.25rem;
    margin-block-start: 16px;
  }
}
.solutionPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardButtonBox .bttButton:hover {
  box-shadow: 0px 3px 20px 0px rgba(40, 112, 243, 0.3);
}
.solutionPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardButtonBox .bttButton:first-of-type {
  margin-block-start: 0;
}
.solutionPage .bttCardSection .bttSectionContainer .bttCardWrapper .bttCardButtonBox .bttButton .bttArrowRight {
  width: 8px;
  margin-inline-start: 20px;
}

html[lang=en-us] .policyPage .bttCardSection .bttSectionContainer .bttSectionContent .bttSectionTitle {
  font-size: 2.25rem;
}
html[lang=en-us] .policyPage .bttCardSection .bttSectionContainer .bttSectionMenu {
  margin-block-start: 70px;
}
html[lang=en-us] .policyPage .bttCardSection .bttSectionContainer .bttSectionMenu .bttSectionMenuList li,
html[lang=en-us] .policyPage .bttCardSection .bttSectionContainer .bttPolicyWrapper .bttPolicyContent ol li {
  list-style-type: decimal;
}

@media screen and (max-width: 1024px) {
  .policyPage .bttBgLightMask {
    display: none;
  }
}
.policyPage .bttCardSection {
  position: relative;
  width: 100%;
  background-color: #355CC6;
  padding-block: 206px;
  padding-inline-end: 177px;
  box-sizing: border-box;
}
@media screen and (max-width: 1468px) {
  .policyPage .bttCardSection {
    padding-inline: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .policyPage .bttCardSection {
    padding-inline-end: 60px;
    padding-block: 136px 40px;
  }
}
@media screen and (max-width: 768px) {
  .policyPage .bttCardSection {
    padding-block: 92px 40px;
    padding-inline-end: 10px;
  }
}
.policyPage .bttCardSection .bttCircle {
  position: absolute;
  width: 240px;
  top: 186px;
  left: 170px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .policyPage .bttCardSection .bttCircle {
    top: -94px;
    left: 22px;
  }
}
@media screen and (max-width: 768px) {
  .policyPage .bttCardSection .bttCircle {
    display: none;
  }
}
.policyPage .bttCardSection .bbtEightSpaceGroup {
  position: absolute;
  width: 380px;
  bottom: 180px;
  left: -45px;
}
@media screen and (max-width: 1024px) {
  .policyPage .bttCardSection .bbtEightSpaceGroup {
    width: 350px;
    bottom: 22px;
  }
}
@media screen and (max-width: 768px) {
  .policyPage .bttCardSection .bbtEightSpaceGroup {
    display: none;
  }
}
.policyPage .bttCardSection .bbtSixSpaceGroup {
  position: absolute;
  width: 350px;
  top: 71px;
  right: 54px;
}
@media screen and (max-width: 1024px) {
  .policyPage .bttCardSection .bbtSixSpaceGroup {
    right: 0px;
    top: 82px;
    width: 188px;
  }
}
@media screen and (max-width: 768px) {
  .policyPage .bttCardSection .bbtSixSpaceGroup {
    display: none;
  }
}
.policyPage .bttCardSection .bbtCircleSpace {
  position: absolute;
  width: 1000px;
  right: -364px;
  bottom: -441px;
}
@media screen and (max-width: 1024px) {
  .policyPage .bttCardSection .bbtCircleSpace {
    position: absolute;
    width: 1000px;
    right: -448px;
    bottom: -442px;
  }
}
@media screen and (max-width: 768px) {
  .policyPage .bttCardSection .bbtCircleSpace {
    display: none;
  }
}
.policyPage .bttCardSection .bttSectionContainer {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  z-index: 1;
}
.policyPage .bttCardSection .bttSectionContainer .bttSectionMenu {
  width: 100%;
  max-width: 418px;
  border-radius: 10px;
  background-color: #020B3F;
  padding: 40px 30px 40px 40px;
  margin-inline-end: 10px;
  margin-block-start: 91px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .policyPage .bttCardSection .bttSectionContainer .bttSectionMenu {
    margin-block-start: 70px;
    max-width: 274px;
    width: 30%;
    padding: 20px;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 768px) {
  .policyPage .bttCardSection .bttSectionContainer .bttSectionMenu {
    display: none;
  }
}
.policyPage .bttCardSection .bttSectionContainer .bttSectionMenu .bttSectionMenuList {
  color: #ffffff;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 150%;
}
@media screen and (max-width: 1024px) {
  .policyPage .bttCardSection .bttSectionContainer .bttSectionMenu .bttSectionMenuList {
    font-size: 1rem;
  }
}
.policyPage .bttCardSection .bttSectionContainer .bttSectionMenu .bttSectionMenuList li {
  list-style: cjk-ideographic;
  list-style-position: inside;
  margin-block-start: 18px;
  cursor: pointer;
}
.policyPage .bttCardSection .bttSectionContainer .bttSectionMenu .bttSectionMenuList li:first-child {
  margin-block-start: 0;
}
.policyPage .bttCardSection .bttSectionContainer .bttSectionContent .bttSectionTitle {
  width: 100%;
  text-align: center;
  color: #FFF;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 150%;
}
@media screen and (max-width: 1024px) {
  .policyPage .bttCardSection .bttSectionContainer .bttSectionContent .bttSectionTitle {
    font-size: 2.25rem;
  }
}
.policyPage .bttCardSection .bttSectionContainer .bttSectionContent .bttPolicyWrapper {
  position: relative;
  max-width: 948px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 50px 10px 0 0;
  margin-block-start: 16px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .policyPage .bttCardSection .bttSectionContainer .bttSectionContent .bttPolicyWrapper {
    padding: 30px 6px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .policyPage .bttCardSection .bttSectionContainer .bttSectionContent .bttPolicyWrapper {
    padding: 30px 0;
  }
}
.policyPage .bttCardSection .bttSectionContainer .bttSectionContent .bttPolicyWrapper .bttPolicyContent {
  width: 100%;
  height: 888px;
  padding: 0 50px 30px 70px;
  box-sizing: border-box;
  overflow-y: scroll;
}
@media screen and (max-width: 1024px) {
  .policyPage .bttCardSection .bttSectionContainer .bttSectionContent .bttPolicyWrapper .bttPolicyContent {
    padding: 0 18px 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .policyPage .bttCardSection .bttSectionContainer .bttSectionContent .bttPolicyWrapper .bttPolicyContent {
    height: auto;
    padding: 0 10px 0 20px;
  }
}
.policyPage .bttCardSection .bttSectionContainer .bttSectionContent .bttPolicyWrapper .bttPolicyContent::-webkit-scrollbar {
  width: 10px;
  height: 100%;
  background-color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .policyPage .bttCardSection .bttSectionContainer .bttSectionContent .bttPolicyWrapper .bttPolicyContent::-webkit-scrollbar {
    width: 6px;
  }
}
.policyPage .bttCardSection .bttSectionContainer .bttSectionContent .bttPolicyWrapper .bttPolicyContent::-webkit-scrollbar-thumb {
  background-color: rgba(39, 76, 176, 0.4);
  border-radius: 20px;
}
.policyPage .bttCardSection .bttSectionContainer .bttSectionContent .bttPolicyWrapper .bttPolicyContent p {
  color: #000000;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 200%;
  margin-block-end: 30px;
}
@media screen and (max-width: 1024px) {
  .policyPage .bttCardSection .bttSectionContainer .bttSectionContent .bttPolicyWrapper .bttPolicyContent p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .policyPage .bttCardSection .bttSectionContainer .bttSectionContent .bttPolicyWrapper .bttPolicyContent p {
    margin-block-end: 20px;
  }
}
.policyPage .bttCardSection .bttSectionContainer .bttSectionContent .bttPolicyWrapper .bttPolicyContent b {
  color: #000000;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 200%;
}
@media screen and (max-width: 1024px) {
  .policyPage .bttCardSection .bttSectionContainer .bttSectionContent .bttPolicyWrapper .bttPolicyContent b {
    font-size: 1rem;
  }
}
.policyPage .bttCardSection .bttSectionContainer .bttSectionContent .bttPolicyWrapper .bttPolicyContent ol li {
  list-style: cjk-ideographic;
  list-style-position: inside;
  color: #274CB0;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 200%;
}
@media screen and (max-width: 1024px) {
  .policyPage .bttCardSection .bttSectionContainer .bttSectionContent .bttPolicyWrapper .bttPolicyContent ol li {
    font-size: 1rem;
  }
}

html.fixed {
  overflow: hidden;
}

#bttContactForm {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bttPopUpBackground {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.bttCloseIcon {
  position: absolute;
  right: 42px;
  top: 42px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .bttCloseIcon {
    width: 18px;
    height: 18px;
    right: 20px;
    top: 20px;
  }
}

.bttPopUpBox {
  position: fixed;
  height: 100%;
  width: 100%;
  right: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  background: #ffffff;
  box-sizing: border-box;
  z-index: 101;
  border-radius: 10px;
  padding: 100px;
  box-sizing: border-box;
  overflow-y: scroll;
}
@media screen and (max-width: 1024px) {
  .bttPopUpBox {
    height: auto;
    max-height: 90%;
    width: calc(100% - 104px);
  }
}
@media screen and (max-width: 768px) {
  .bttPopUpBox {
    padding: 50px;
    width: calc(100% - 40px);
  }
}
.bttPopUpBox .bttPopUpContainer {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .bttPopUpBox .bttPopUpContainer {
    flex-direction: column;
  }
}
.bttPopUpBox .bttPopUpContainer .bttPopUpLeftArea {
  display: flex;
  flex-direction: column;
  width: 40%;
  padding-inline-end: 90px;
}
@media screen and (max-width: 1024px) {
  .bttPopUpBox .bttPopUpContainer .bttPopUpLeftArea {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .bttPopUpBox .bttPopUpContainer .bttPopUpLeftArea {
    padding-inline-end: 0;
  }
}
.bttPopUpBox .bttPopUpContainer .bttPopUpLeftArea .bttPopUpTitle {
  display: flex;
  align-items: center;
  color: #121212;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .bttPopUpBox .bttPopUpContainer .bttPopUpLeftArea .bttPopUpTitle {
    font-size: 2.25rem;
  }
}
.bttPopUpBox .bttPopUpContainer .bttPopUpLeftArea .bttPopUpTitle .bttMailIcon {
  width: 50px;
  margin-inline-end: 24px;
}
@media screen and (max-width: 768px) {
  .bttPopUpBox .bttPopUpContainer .bttPopUpLeftArea .bttPopUpTitle .bttMailIcon {
    width: 40px;
    margin-inline-end: 20px;
  }
}
.bttPopUpBox .bttPopUpContainer .bttPopUpLeftArea .bttPopUpDescription {
  color: #121212;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 200%;
  margin-block-start: 20px;
}
@media screen and (max-width: 1024px) {
  .bttPopUpBox .bttPopUpContainer .bttPopUpLeftArea .bttPopUpDescription {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .bttPopUpBox .bttPopUpContainer .bttPopUpLeftArea .bttPopUpDescription {
    margin-block-start: 10px;
  }
}
.bttPopUpBox .bttPopUpContainer .bttPopUpRightArea {
  display: flex;
  flex-direction: column;
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .bttPopUpBox .bttPopUpContainer .bttPopUpRightArea {
    width: 100%;
    margin-block-start: 76px;
  }
}
@media screen and (max-width: 1024px) {
  .bttPopUpBox .bttPopUpContainer .bttPopUpRightArea {
    margin-block-start: 40px;
  }
}
.bttPopUpBox .bttPopUpContainer .bttPopUpFooter {
  position: absolute;
  left: 100px;
  bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .bttPopUpBox .bttPopUpContainer .bttPopUpFooter {
    position: relative;
    width: 100%;
    left: initial;
    bottom: initial;
    margin-block-start: 76px;
  }
}
@media screen and (max-width: 768px) {
  .bttPopUpBox .bttPopUpContainer .bttPopUpFooter {
    margin-block-start: 66px;
  }
}
.bttPopUpBox .bttPopUpContainer .bttPopUpFooter .bttPopUpLogo {
  width: 140px;
  margin-block-start: 24px;
}
.bttPopUpBox .bttPopUpContainer .bttPopUpFooter .bttFooterInfo {
  display: flex;
  flex-direction: column;
  display: flex;
  margin-inline-end: 100px;
}
@media screen and (max-width: 1024px) {
  .bttPopUpBox .bttPopUpContainer .bttPopUpFooter .bttFooterInfo {
    width: 50%;
    margin-inline-end: 0;
  }
}
@media screen and (max-width: 768px) {
  .bttPopUpBox .bttPopUpContainer .bttPopUpFooter .bttFooterInfo {
    width: 100%;
    margin-block-start: 50px;
  }
}
.bttPopUpBox .bttPopUpContainer .bttPopUpFooter .bttFooterInfo .bttFooterAddress {
  color: #121212;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%;
  margin-block-start: 18px;
}
@media screen and (max-width: 768px) {
  .bttPopUpBox .bttPopUpContainer .bttPopUpFooter .bttFooterInfo .bttFooterAddress {
    font-size: 1rem;
    margin-block-start: 14px;
  }
}
.bttPopUpBox .bttPopUpContainer .bttPopUpFooter .bttFooterInfo a {
  color: #121212;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%;
  margin-block-start: 18px;
}
@media screen and (max-width: 768px) {
  .bttPopUpBox .bttPopUpContainer .bttPopUpFooter .bttFooterInfo a {
    font-size: 1rem;
    margin-block-start: 14px;
  }
}

html[lang=en-us] .bttFormInputBox {
  letter-spacing: normal;
}

.bttFormInputGroup {
  display: flex;
  margin-block-start: 50px;
}
.bttFormInputGroup:first-child {
  margin-block-start: 0;
}
.bttFormInputGroup .bttFormInputBox {
  margin-block-start: 0;
  margin-inline-end: 50px;
}
.bttFormInputGroup .bttFormInputBox:last-child {
  margin-inline-end: 0;
}
@media screen and (max-width: 1024px) {
  .bttFormInputGroup .bttFormInputBox {
    margin-inline-end: 60px;
  }
}
@media screen and (max-width: 768px) {
  .bttFormInputGroup {
    flex-direction: column;
  }
  .bttFormInputGroup .bttFormInputBox {
    margin-block-start: 40px;
  }
  .bttFormInputGroup .bttFormInputBox:first-child {
    margin-block-start: 0;
  }
}

.bttFormInputBox {
  width: 100%;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.5px;
  color: #434F73;
  background: #FFFFFF;
  border-radius: 4px;
  margin-block-start: 50px;
  box-sizing: border-box;
}
.bttFormInputBox.error .bttFormInput {
  border-bottom: 1px solid #cb1b1b;
}
.bttFormInputBox.error .bttErrorText {
  display: block;
}

.bttErrorText {
  display: none;
  color: #cb1b1b;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 200%;
}

.bttFormTitle {
  color: #121212;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 200%;
}
.bttFormTitle span {
  color: #FFB100;
  margin-inline-start: 6px;
}

.bttFormInput {
  color: #121212;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 200%;
  min-height: 48px;
  padding: 0;
  border: none;
  border-bottom: 1px solid #121212;
  width: 100%;
  margin-block-start: 6px;
  box-sizing: border-box;
}
.bttFormInput::placeholder {
  color: #c8c8c8;
}
@media screen and (max-width: 1024px) {
  .bttFormInput {
    margin-block-start: 10px;
  }
}
@media screen and (max-width: 768px) {
  .bttFormInput {
    margin-block-start: 8px;
  }
}

.bttFormTextArea {
  color: #121212;
  font-family: "PingFang TC", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 200%;
  border: none;
  border-bottom: 1px solid #121212;
  min-height: 132px;
  width: 100%;
}
.bttFormTextArea::placeholder {
  color: #c8c8c8;
}

.bttButtonBox {
  display: flex;
  justify-content: center;
  margin-block-start: 70px;
}
@media screen and (max-width: 1024px) {
  .bttButtonBox {
    width: 100%;
    margin-block-start: 80px;
  }
}
@media screen and (max-width: 768px) {
  .bttButtonBox {
    margin-block-start: 70px;
  }
}
.bttButtonBox .bbtSendButton {
  background: linear-gradient(99deg, #385CEA 0%, #163EDC 100%);
  box-shadow: 0px 3px 20px 0px rgba(40, 112, 243, 0.3);
  color: #ffffff;
  padding: 10px 30px;
  min-width: 160px;
  min-height: 62px;
}

html[lang=en-us] .bttWhiteSolidButton {
  letter-spacing: normal;
}

.bttWhiteSolidButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 10px;
  color: #3351DE;
  background: #FFF;
  box-shadow: 0px 3px 20px 0px rgba(40, 112, 243, 0.3);
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 180%;
  box-sizing: border-box;
}

.checkBoxClick {
  display: flex;
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
}
.checkBoxClick::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  height: 18px;
  width: 18px;
  background: #ffffff;
  border: 1px solid #C8C8C8;
  box-sizing: border-box;
  border-radius: 5px;
  cursor: pointer;
}
.checkBoxClick::after {
  opacity: 0;
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  height: 18px;
  width: 18px;
  background: green url("../images/check.svg") no-repeat center;
  background-size: 9px 7px;
  border: 1px solid green;
  box-sizing: border-box;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/*# sourceMappingURL=bbt.css.map */
