/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-modal,
.ant-image-preview {
  pointer-events: none;
}
.ant-modal.zoom-enter,
.ant-modal.zoom-appear,
.ant-image-preview.zoom-enter,
.ant-image-preview.zoom-appear {
  transform: none;
  opacity: 0;
  animation-duration: 0.3s;
  user-select: none;
}
.ant-modal-mask,
.ant-image-preview-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  filter: alpha(opacity=50);
}
.ant-modal-mask-hidden,
.ant-image-preview-mask-hidden {
  display: none;
}
.ant-modal-wrap,
.ant-image-preview-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  outline: 0;
  -webkit-overflow-scrolling: touch;
}
.ant-modal {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  top: 100px;
  width: auto;
  max-width: calc(100vw - 32px);
  margin: 0 auto;
  padding-bottom: 24px;
}
.ant-modal-wrap {
  z-index: 1000;
}
.ant-modal-title {
  margin: 0;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  word-wrap: break-word;
}
.ant-modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  pointer-events: auto;
}
.ant-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 0;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  transition: color 0.3s;
}
.ant-modal-close-x {
  display: block;
  width: 56px;
  height: 56px;
  font-size: 16px;
  font-style: normal;
  line-height: 56px;
  text-align: center;
  text-transform: none;
  text-rendering: auto;
}
.ant-modal-close:focus,
.ant-modal-close:hover {
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
}
.ant-modal-header {
  padding: 16px 24px;
  color: rgba(0, 0, 0, 0.85);
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 2px 2px 0 0;
}
.ant-modal-body {
  padding: 24px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}
.ant-modal-footer {
  padding: 10px 16px;
  text-align: right;
  background: transparent;
  border-top: 1px solid #f0f0f0;
  border-radius: 0 0 2px 2px;
}
.ant-modal-footer button + button {
  margin-bottom: 0;
  margin-left: 8px;
}
.ant-modal-open {
  overflow: hidden;
}
.ant-modal-centered {
  text-align: center;
}
.ant-modal-centered::before {
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
  content: '';
}
.ant-modal-centered .ant-modal {
  top: 0;
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .ant-modal {
    max-width: calc(100vw - 16px);
    margin: 8px auto;
  }
  .ant-modal-centered .ant-modal {
    flex: 1;
  }
}
.ant-modal-confirm .ant-modal-header {
  display: none;
}
.ant-modal-confirm .ant-modal-close {
  display: none;
}
.ant-modal-confirm .ant-modal-body {
  padding: 32px 32px 24px;
}
.ant-modal-confirm-body-wrapper::before {
  display: table;
  content: '';
}
.ant-modal-confirm-body-wrapper::after {
  display: table;
  clear: both;
  content: '';
}
.ant-modal-confirm-body .ant-modal-confirm-title {
  display: block;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
}
.ant-modal-confirm-body .ant-modal-confirm-content {
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
}
.ant-modal-confirm-body > .anticon {
  float: left;
  margin-right: 16px;
  font-size: 22px;
}
.ant-modal-confirm-body > .anticon + .ant-modal-confirm-title + .ant-modal-confirm-content {
  margin-left: 38px;
}
.ant-modal-confirm .ant-modal-confirm-btns {
  float: right;
  margin-top: 24px;
}
.ant-modal-confirm .ant-modal-confirm-btns button + button {
  margin-bottom: 0;
  margin-left: 8px;
}
.ant-modal-confirm-error .ant-modal-confirm-body > .anticon {
  color: #ff4d4f;
}
.ant-modal-confirm-warning .ant-modal-confirm-body > .anticon,
.ant-modal-confirm-confirm .ant-modal-confirm-body > .anticon {
  color: #faad14;
}
.ant-modal-confirm-info .ant-modal-confirm-body > .anticon {
  color: #004eff;
}
.ant-modal-confirm-success .ant-modal-confirm-body > .anticon {
  color: #52c41a;
}
.ant-modal-wrap-rtl {
  direction: rtl;
}
.ant-modal-wrap-rtl .ant-modal-close {
  right: initial;
  left: 0;
}
.ant-modal-wrap-rtl .ant-modal-footer {
  text-align: left;
}
.ant-modal-wrap-rtl .ant-modal-footer button + button {
  margin-right: 8px;
  margin-left: 0;
}
.ant-modal-wrap-rtl .ant-modal-confirm-body {
  direction: rtl;
}
.ant-modal-wrap-rtl .ant-modal-confirm-body > .anticon {
  float: right;
  margin-right: 0;
  margin-left: 16px;
}
.ant-modal-wrap-rtl .ant-modal-confirm-body > .anticon + .ant-modal-confirm-title + .ant-modal-confirm-content {
  margin-right: 38px;
  margin-left: 0;
}
.ant-modal-wrap-rtl .ant-modal-confirm-btns {
  float: left;
}
.ant-modal-wrap-rtl .ant-modal-confirm-btns button + button {
  margin-right: 8px;
  margin-left: 0;
}
.ant-modal-wrap-rtl.ant-modal-centered .ant-modal {
  text-align: right;
}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___IRVjm{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___1Ypuc{width:100%;margin:0 auto}.full-width___2sFn0{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___1Ypuc{max-width:1440px;margin:0 auto;padding:0}.full-width___2sFn0{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___2b98n{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___2b98n{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___2b98n{padding:0 16px}}.btn-default___1D6-q{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___1D6-q:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___2VZ8V{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___2VZ8V:hover{color:#fff;background:#0045CA}.btn-dark____iKpa{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark____iKpa:hover{color:#fff;background:#2C3444}.btn-dark2___3Xct_{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___3Xct_:hover{color:#fff;background:#2C3444}.btn-default2___2aRlE{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___2aRlE:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___16UqL{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.accredited-investor___3EaPj{padding:40px 24px 22px;box-shadow:0 -4px 4px 2px rgba(0,0,0,0.05);display:flex;flex-direction:column;justify-content:center;align-items:center}.accredited-investor___3EaPj .card-investor___jKPxR{width:300px;padding:0}.accredited-investor___3EaPj .card-investor___jKPxR .heading-container___3jIGn{display:flex;justify-content:flex-start;align-items:center;margin:0 0 10px 0}.accredited-investor___3EaPj .card-investor___jKPxR .heading-container___3jIGn .icon-container___2FTpw{width:42px;height:50px;flex-shrink:0}.accredited-investor___3EaPj .card-investor___jKPxR .heading-container___3jIGn .icon-container___2FTpw img{width:100%;height:100%;object-fit:contain}.accredited-investor___3EaPj .card-investor___jKPxR .heading-container___3jIGn h3{font-size:24px;line-height:1;font-weight:700;text-align:left;margin:0 0 10px 10px}.accredited-investor___3EaPj .card-investor___jKPxR ul{list-style:none;padding:0;margin-bottom:20px}.accredited-investor___3EaPj .card-investor___jKPxR ul li{display:flex;justify-content:flex-start;align-items:flex-start;margin-bottom:2px}.accredited-investor___3EaPj .card-investor___jKPxR ul li span{display:flex;justify-content:center;align-items:center;flex-shrink:0;width:14px;height:14px;margin:4px 8px 0 0}.accredited-investor___3EaPj .card-investor___jKPxR ul li h4{font-size:14px;font-weight:400}.accredited-investor___3EaPj .card-investor___jKPxR ul li.criteria-or___3ysVh{font-size:14px;font-weight:400;margin-left:22px}.accredited-investor___3EaPj h3.cta-accredited-investor___QYrqw{font-size:16px;font-weight:400;width:300px}.accredited-investor___3EaPj h3.cta-accredited-investor___QYrqw a{color:#004eff;text-decoration:none;margin-left:4px;font-size:18px;font-weight:400}.accredited-investor___3EaPj h3.cta-accredited-investor___QYrqw a:focus{outline:none}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___2pP6h{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___gWjX8{width:100%;margin:0 auto}.full-width___yhhq3{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___gWjX8{max-width:1440px;margin:0 auto;padding:0}.full-width___yhhq3{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___1qJHJ{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___1qJHJ{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___1qJHJ{padding:0 16px}}.btn-default___1_usI{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___1_usI:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___38A3x{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___38A3x:hover{color:#fff;background:#0045CA}.btn-dark___2WTav{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___2WTav:hover{color:#fff;background:#2C3444}.btn-dark2___3B0zi{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___3B0zi:hover{color:#fff;background:#2C3444}.btn-default2___1OMrl{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___1OMrl:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___3ADdr{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}@media only screen and (min-width: 992px){.digital-securities-modal___2w4R6{width:50% !important}.digital-securities-modal___2w4R6 section h1{font-size:48px;padding-bottom:10px}.digital-securities-modal___2w4R6 section p{font-size:14px}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___1K1CV{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___1D8UQ{width:100%;margin:0 auto}.full-width___EXzg4{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___1D8UQ{max-width:1440px;margin:0 auto;padding:0}.full-width___EXzg4{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___3r-Bi{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___3r-Bi{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___3r-Bi{padding:0 16px}}.btn-default___2Qlth{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___2Qlth:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___1O9YA{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___1O9YA:hover{color:#fff;background:#0045CA}.btn-dark___2GLUJ{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___2GLUJ:hover{color:#fff;background:#2C3444}.btn-dark2___W4zoi{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___W4zoi:hover{color:#fff;background:#2C3444}.btn-default2___gvXr8{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___gvXr8:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___2sqbc{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.modal___LCybA.team-modal___2FpGZ{top:40px !important;top:0}.modal___LCybA.team-modal___2FpGZ .ant-modal-body{display:flex;align-items:center;justify-content:center}.modal___LCybA.team-modal___2FpGZ .ant-modal-content{pointer-events:auto}.modal___LCybA .arrow-btn___xvuCK,.modal___LCybA .cross-btn___3HDTc{border:none;display:flex;flex-direction:column;align-items:center;justify-content:center;background-color:inherit}.modal___LCybA .arrow-btn___xvuCK span,.modal___LCybA .cross-btn___3HDTc span{font-size:14px;color:#004eff;text-transform:uppercase;margin-top:12px}.modal___LCybA .cross-btn___3HDTc{position:absolute;right:0;top:0;background-color:#C4C4C4;z-index:999;height:32px;width:32px}.modal___LCybA .arrow-btn___xvuCK{padding-top:20px}.modal___LCybA section{padding:30px 0}.modal___LCybA section h1{font-size:48px;font-weight:700;line-height:1.2;padding-bottom:30px;margin-bottom:10px;border-bottom:1px solid #b3b3b3}@media only screen and (min-width: 992px){.modal___LCybA .cross-btn___3HDTc{position:absolute;right:36px;top:36px;background-color:transparent}}@media only screen and (min-width: 1440px){.modal___LCybA.team-modal___2FpGZ{top:calc((100vh - 627px) / 2) !important}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___2xrOu{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___Xz3Ur{width:100%;margin:0 auto}.full-width___3RpLh{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___Xz3Ur{max-width:1440px;margin:0 auto;padding:0}.full-width___3RpLh{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___LnkC0{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___LnkC0{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___LnkC0{padding:0 16px}}.btn-default___2Dkiy{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___2Dkiy:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___1moMR{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___1moMR:hover{color:#fff;background:#0045CA}.btn-dark___3mKQU{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___3mKQU:hover{color:#fff;background:#2C3444}.btn-dark2___2guyK{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___2guyK:hover{color:#fff;background:#2C3444}.btn-default2___KAdP1{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___KAdP1:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___1oiHH{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.modal___LqRq7 section .card-investor___em4XR{margin:0 0 24px 0}.modal___LqRq7 section .card-investor___em4XR .heading-container___3RHzF{display:flex;justify-content:flex-start;align-items:flex-end;margin:0 0 10px 0}.modal___LqRq7 section .card-investor___em4XR .heading-container___3RHzF .icon-container___2LSn0{width:44px;height:52px}.modal___LqRq7 section .card-investor___em4XR .heading-container___3RHzF .icon-container___2LSn0 img{width:100%;height:auto}.modal___LqRq7 section .card-investor___em4XR .heading-container___3RHzF h2{font-size:16px;text-align:left;margin:0 0 0 10px}.modal___LqRq7 section .card-investor___em4XR ul{list-style:none;padding:0;margin:0}.modal___LqRq7 section .card-investor___em4XR ul li{display:flex;justify-content:flex-start;align-items:flex-start;margin:0 0 10px 0}.modal___LqRq7 section .card-investor___em4XR ul li span{display:flex;justify-content:center;align-items:center;flex-shrink:0;width:14px;height:14px;margin:4px 8px 0 0}.modal___LqRq7 section .card-investor___em4XR ul li h3{font-size:16px;font-weight:400}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___23wPd{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___JkHav{width:100%;margin:0 auto}.full-width___2tAHv{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___JkHav{max-width:1440px;margin:0 auto;padding:0}.full-width___2tAHv{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___1PuVK{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___1PuVK{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___1PuVK{padding:0 16px}}.btn-default___oZWEJ{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___oZWEJ:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___3oHQD{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___3oHQD:hover{color:#fff;background:#0045CA}.btn-dark___8kQ7G{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___8kQ7G:hover{color:#fff;background:#2C3444}.btn-dark2___32s0G{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___32s0G:hover{color:#fff;background:#2C3444}.btn-default2___3MXuD{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___3MXuD:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___1p-QD{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}@media only screen and (min-width: 992px){.fees-modal___2qZGj{width:50% !important}.fees-modal___2qZGj section h1{font-size:48px;font-weight:400;padding-bottom:10px}.fees-modal___2qZGj section p{font-size:14px}}

/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-modal,
.ant-image-preview {
  pointer-events: none;
}
.ant-modal.zoom-enter,
.ant-modal.zoom-appear,
.ant-image-preview.zoom-enter,
.ant-image-preview.zoom-appear {
  transform: none;
  opacity: 0;
  animation-duration: 0.3s;
  user-select: none;
}
.ant-modal-mask,
.ant-image-preview-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  filter: alpha(opacity=50);
}
.ant-modal-mask-hidden,
.ant-image-preview-mask-hidden {
  display: none;
}
.ant-modal-wrap,
.ant-image-preview-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  outline: 0;
  -webkit-overflow-scrolling: touch;
}
.ant-collapse {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  background-color: #004eff;
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  border-radius: 0;
}
.ant-collapse > .ant-collapse-item {
  border-bottom: 1px solid #d9d9d9;
}
.ant-collapse > .ant-collapse-item:last-child,
.ant-collapse > .ant-collapse-item:last-child > .ant-collapse-header {
  border-radius: 0 0 0 0;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header {
  position: relative;
  padding: 12px 24px;
  padding-left: 40px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header::before {
  display: table;
  content: '';
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header::after {
  display: table;
  clear: both;
  content: '';
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow {
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  left: 16px;
  display: inline-block;
  font-size: 12px;
  transform: translateY(-50%);
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow > * {
  line-height: 1;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow svg {
  display: inline-block;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow::before {
  display: none;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow-icon {
  display: block;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow svg {
  transition: transform 0.24s;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-extra {
  float: right;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header:focus {
  outline: none;
}
.ant-collapse > .ant-collapse-item.ant-collapse-no-arrow > .ant-collapse-header {
  padding-left: 12px;
}
.ant-collapse-icon-position-right > .ant-collapse-item > .ant-collapse-header {
  padding: 12px 24px;
  padding-right: 40px;
}
.ant-collapse-icon-position-right > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow {
  right: 16px;
  left: auto;
}
.ant-collapse-anim-active {
  transition: height 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ant-collapse-content {
  overflow: hidden;
  color: rgba(0, 0, 0, 0.85);
  background-color: #004eff;
  border-top: 1px solid #d9d9d9;
}
.ant-collapse-content > .ant-collapse-content-box {
  padding: 24px;
}
.ant-collapse-content-inactive {
  display: none;
}
.ant-collapse-item:last-child > .ant-collapse-content {
  border-radius: 0 0 0 0;
}
.ant-collapse-borderless {
  background-color: #004eff;
  border: 0;
}
.ant-collapse-borderless > .ant-collapse-item {
  border-bottom: 1px solid #d9d9d9;
}
.ant-collapse-borderless > .ant-collapse-item:last-child,
.ant-collapse-borderless > .ant-collapse-item:last-child .ant-collapse-header {
  border-radius: 0;
}
.ant-collapse-borderless > .ant-collapse-item > .ant-collapse-content {
  background-color: transparent;
  border-top: 0;
}
.ant-collapse-borderless > .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box {
  padding-top: 4px;
}
.ant-collapse-ghost {
  background-color: transparent;
  border: 0;
}
.ant-collapse-ghost > .ant-collapse-item {
  border-bottom: 0;
}
.ant-collapse-ghost > .ant-collapse-item > .ant-collapse-content {
  background-color: transparent;
  border-top: 0;
}
.ant-collapse-ghost > .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box {
  padding-top: 12px;
  padding-bottom: 12px;
}
.ant-collapse .ant-collapse-item-disabled > .ant-collapse-header,
.ant-collapse .ant-collapse-item-disabled > .ant-collapse-header > .arrow {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-collapse-rtl {
  direction: rtl;
}
.ant-collapse-rtl .ant-collapse > .ant-collapse-item > .ant-collapse-header {
  padding: 12px 24px;
  padding-right: 40px;
}
.ant-collapse-rtl.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow svg {
  transform: rotate(180deg);
}
.ant-collapse-rtl.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-extra {
  float: left;
}
.ant-collapse-rtl.ant-collapse > .ant-collapse-item.ant-collapse-no-arrow > .ant-collapse-header {
  padding-right: 12px;
  padding-left: 0;
}

/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-modal,
.ant-image-preview {
  pointer-events: none;
}
.ant-modal.zoom-enter,
.ant-modal.zoom-appear,
.ant-image-preview.zoom-enter,
.ant-image-preview.zoom-appear {
  transform: none;
  opacity: 0;
  animation-duration: 0.3s;
  user-select: none;
}
.ant-modal-mask,
.ant-image-preview-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  filter: alpha(opacity=50);
}
.ant-modal-mask-hidden,
.ant-image-preview-mask-hidden {
  display: none;
}
.ant-modal-wrap,
.ant-image-preview-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  outline: 0;
  -webkit-overflow-scrolling: touch;
}
.ant-menu-item-danger.ant-menu-item {
  color: #ff4d4f;
}
.ant-menu-item-danger.ant-menu-item:hover,
.ant-menu-item-danger.ant-menu-item-active {
  color: #ff4d4f;
}
.ant-menu-item-danger.ant-menu-item:active {
  background: #fff1f0;
}
.ant-menu-item-danger.ant-menu-item-selected {
  color: #ff4d4f;
}
.ant-menu-item-danger.ant-menu-item-selected > a,
.ant-menu-item-danger.ant-menu-item-selected > a:hover {
  color: #ff4d4f;
}
.ant-menu:not(.ant-menu-horizontal) .ant-menu-item-danger.ant-menu-item-selected {
  background-color: #fff1f0;
}
.ant-menu-inline .ant-menu-item-danger.ant-menu-item::after {
  border-right-color: #ff4d4f;
}
.ant-menu-dark .ant-menu-item-danger.ant-menu-item,
.ant-menu-dark .ant-menu-item-danger.ant-menu-item:hover,
.ant-menu-dark .ant-menu-item-danger.ant-menu-item > a {
  color: #ff4d4f;
}
.ant-menu-dark.ant-menu-dark:not(.ant-menu-horizontal) .ant-menu-item-danger.ant-menu-item-selected {
  color: #fff;
  background-color: #ff4d4f;
}
.ant-menu {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-variant: tabular-nums;
  line-height: 1.5;
  font-feature-settings: 'tnum';
  margin-bottom: 0;
  padding-left: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  line-height: 0;
  text-align: left;
  list-style: none;
  background: #fff;
  outline: none;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  transition: background 0.3s, width 0.3s cubic-bezier(0.2, 0, 0, 1) 0s;
}
.ant-menu::before {
  display: table;
  content: '';
}
.ant-menu::after {
  display: table;
  clear: both;
  content: '';
}
.ant-menu ul,
.ant-menu ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ant-menu-hidden {
  display: none;
}
.ant-menu-item-group-title {
  height: 1.5;
  padding: 8px 16px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 1.5;
  transition: all 0.3s;
}
.ant-menu-horizontal .ant-menu-submenu {
  transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-submenu,
.ant-menu-submenu-inline {
  transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-submenu-selected {
  color: #004eff;
}
.ant-menu-item:active,
.ant-menu-submenu-title:active {
  background: #e6f1ff;
}
.ant-menu-submenu .ant-menu-sub {
  cursor: initial;
  transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-item a {
  color: rgba(0, 0, 0, 0.85);
}
.ant-menu-item a:hover {
  color: #004eff;
}
.ant-menu-item a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  content: '';
}
.ant-menu-item > .ant-badge a {
  color: rgba(0, 0, 0, 0.85);
}
.ant-menu-item > .ant-badge a:hover {
  color: #004eff;
}
.ant-menu-item-divider {
  height: 1px;
  overflow: hidden;
  line-height: 0;
  background-color: #f0f0f0;
}
.ant-menu-item:hover,
.ant-menu-item-active,
.ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open,
.ant-menu-submenu-active,
.ant-menu-submenu-title:hover {
  color: #004eff;
}
.ant-menu-horizontal .ant-menu-item,
.ant-menu-horizontal .ant-menu-submenu {
  margin-top: -1px;
}
.ant-menu-horizontal > .ant-menu-item:hover,
.ant-menu-horizontal > .ant-menu-item-active,
.ant-menu-horizontal > .ant-menu-submenu .ant-menu-submenu-title:hover {
  background-color: transparent;
}
.ant-menu-item-selected {
  color: #004eff;
}
.ant-menu-item-selected a,
.ant-menu-item-selected a:hover {
  color: #004eff;
}
.ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected {
  background-color: #e6f1ff;
}
.ant-menu-inline,
.ant-menu-vertical,
.ant-menu-vertical-left {
  border-right: 1px solid #f0f0f0;
}
.ant-menu-vertical-right {
  border-left: 1px solid #f0f0f0;
}
.ant-menu-vertical.ant-menu-sub,
.ant-menu-vertical-left.ant-menu-sub,
.ant-menu-vertical-right.ant-menu-sub {
  min-width: 160px;
  max-height: calc(100vh - 100px);
  padding: 0;
  overflow: hidden;
  border-right: 0;
  transform-origin: 0 0;
}
.ant-menu-vertical.ant-menu-sub:not([class*='-active']),
.ant-menu-vertical-left.ant-menu-sub:not([class*='-active']),
.ant-menu-vertical-right.ant-menu-sub:not([class*='-active']) {
  overflow-x: hidden;
  overflow-y: auto;
}
.ant-menu-vertical.ant-menu-sub .ant-menu-item,
.ant-menu-vertical-left.ant-menu-sub .ant-menu-item,
.ant-menu-vertical-right.ant-menu-sub .ant-menu-item {
  left: 0;
  margin-left: 0;
  border-right: 0;
}
.ant-menu-vertical.ant-menu-sub .ant-menu-item::after,
.ant-menu-vertical-left.ant-menu-sub .ant-menu-item::after,
.ant-menu-vertical-right.ant-menu-sub .ant-menu-item::after {
  border-right: 0;
}
.ant-menu-vertical.ant-menu-sub > .ant-menu-item,
.ant-menu-vertical-left.ant-menu-sub > .ant-menu-item,
.ant-menu-vertical-right.ant-menu-sub > .ant-menu-item,
.ant-menu-vertical.ant-menu-sub > .ant-menu-submenu,
.ant-menu-vertical-left.ant-menu-sub > .ant-menu-submenu,
.ant-menu-vertical-right.ant-menu-sub > .ant-menu-submenu {
  transform-origin: 0 0;
}
.ant-menu-horizontal.ant-menu-sub {
  min-width: 114px;
}
.ant-menu-horizontal .ant-menu-item,
.ant-menu-horizontal .ant-menu-submenu-title {
  transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-item,
.ant-menu-submenu-title {
  position: relative;
  display: block;
  margin: 0;
  padding: 0 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-item .anticon,
.ant-menu-submenu-title .anticon {
  min-width: 14px;
  margin-right: 10px;
  font-size: 14px;
  transition: font-size 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-item .anticon + span,
.ant-menu-submenu-title .anticon + span {
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-item.ant-menu-item-only-child > .anticon,
.ant-menu-submenu-title.ant-menu-item-only-child > .anticon {
  margin-right: 0;
}
.ant-menu > .ant-menu-item-divider {
  height: 1px;
  margin: 1px 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  background-color: #f0f0f0;
}
.ant-menu-submenu-popup {
  position: absolute;
  z-index: 1050;
  border-radius: 2px;
  box-shadow: none;
}
.ant-menu-submenu-popup::before {
  position: absolute;
  top: -7px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.0001;
  content: ' ';
}
.ant-menu-submenu-placement-rightTop::before {
  top: 0;
  left: -7px;
}
.ant-menu-submenu > .ant-menu {
  background-color: #fff;
  border-radius: 2px;
}
.ant-menu-submenu > .ant-menu-submenu-title::after {
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-submenu-popup > .ant-menu {
  background-color: #fff;
}
.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::after {
  position: absolute;
  width: 6px;
  height: 1.5px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85));
  border-radius: 2px;
  transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  content: '';
}
.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  transform: rotate(45deg) translateY(-2px);
}
.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::after {
  transform: rotate(-45deg) translateY(2px);
}
.ant-menu-submenu-vertical > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::after,
.ant-menu-submenu-inline > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::before,
.ant-menu-submenu-inline > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::before {
  background: linear-gradient(to right, #004eff, #004eff);
}
.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  transform: rotate(45deg) translateY(-2px);
}
.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::after {
  transform: rotate(-45deg) translateY(2px);
}
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  transform: rotate(-45deg) translateX(2px);
}
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::after {
  transform: rotate(45deg) translateX(-2px);
}
.ant-menu-submenu-open.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow {
  transform: translateY(-2px);
}
.ant-menu-submenu-open.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::after {
  transform: rotate(-45deg) translateX(-2px);
}
.ant-menu-submenu-open.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  transform: rotate(45deg) translateX(2px);
}
.ant-menu-vertical .ant-menu-submenu-selected,
.ant-menu-vertical-left .ant-menu-submenu-selected,
.ant-menu-vertical-right .ant-menu-submenu-selected {
  color: #004eff;
}
.ant-menu-horizontal {
  line-height: 46px;
  white-space: nowrap;
  border: 0;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: none;
}
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu {
  margin: 0 20px;
  margin-top: -1px;
  margin-bottom: 0;
  padding: 0 20px;
  padding-right: 0;
  padding-left: 0;
}
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item:hover,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu:hover,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item-active,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu-active,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item-open,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu-open,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item-selected,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu-selected {
  color: #004eff;
  border-bottom: 2px solid #004eff;
}
.ant-menu-horizontal > .ant-menu-item,
.ant-menu-horizontal > .ant-menu-submenu {
  position: relative;
  top: 1px;
  display: inline-block;
  vertical-align: bottom;
  border-bottom: 2px solid transparent;
}
.ant-menu-horizontal > .ant-menu-submenu > .ant-menu-submenu-title {
  padding: 0;
}
.ant-menu-horizontal > .ant-menu-item a {
  color: rgba(0, 0, 0, 0.85);
}
.ant-menu-horizontal > .ant-menu-item a:hover {
  color: #004eff;
}
.ant-menu-horizontal > .ant-menu-item a::before {
  bottom: -2px;
}
.ant-menu-horizontal > .ant-menu-item-selected a {
  color: #004eff;
}
.ant-menu-horizontal::after {
  display: block;
  clear: both;
  height: 0;
  content: ' ';
}
.ant-menu-vertical .ant-menu-item,
.ant-menu-vertical-left .ant-menu-item,
.ant-menu-vertical-right .ant-menu-item,
.ant-menu-inline .ant-menu-item {
  position: relative;
}
.ant-menu-vertical .ant-menu-item::after,
.ant-menu-vertical-left .ant-menu-item::after,
.ant-menu-vertical-right .ant-menu-item::after,
.ant-menu-inline .ant-menu-item::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-right: 3px solid #004eff;
  transform: scaleY(0.0001);
  opacity: 0;
  transition: transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  content: '';
}
.ant-menu-vertical .ant-menu-item,
.ant-menu-vertical-left .ant-menu-item,
.ant-menu-vertical-right .ant-menu-item,
.ant-menu-inline .ant-menu-item,
.ant-menu-vertical .ant-menu-submenu-title,
.ant-menu-vertical-left .ant-menu-submenu-title,
.ant-menu-vertical-right .ant-menu-submenu-title,
.ant-menu-inline .ant-menu-submenu-title {
  height: 40px;
  margin-top: 4px;
  margin-bottom: 4px;
  padding: 0 16px;
  overflow: hidden;
  line-height: 40px;
  text-overflow: ellipsis;
}
.ant-menu-vertical .ant-menu-submenu,
.ant-menu-vertical-left .ant-menu-submenu,
.ant-menu-vertical-right .ant-menu-submenu,
.ant-menu-inline .ant-menu-submenu {
  padding-bottom: 0.02px;
}
.ant-menu-vertical .ant-menu-item:not(:last-child),
.ant-menu-vertical-left .ant-menu-item:not(:last-child),
.ant-menu-vertical-right .ant-menu-item:not(:last-child),
.ant-menu-inline .ant-menu-item:not(:last-child) {
  margin-bottom: 8px;
}
.ant-menu-vertical > .ant-menu-item,
.ant-menu-vertical-left > .ant-menu-item,
.ant-menu-vertical-right > .ant-menu-item,
.ant-menu-inline > .ant-menu-item,
.ant-menu-vertical > .ant-menu-submenu > .ant-menu-submenu-title,
.ant-menu-vertical-left > .ant-menu-submenu > .ant-menu-submenu-title,
.ant-menu-vertical-right > .ant-menu-submenu > .ant-menu-submenu-title,
.ant-menu-inline > .ant-menu-submenu > .ant-menu-submenu-title {
  height: 40px;
  line-height: 40px;
}
.ant-menu-vertical .ant-menu-submenu-title {
  padding-right: 34px;
}
.ant-menu-inline {
  width: 100%;
}
.ant-menu-inline .ant-menu-selected::after,
.ant-menu-inline .ant-menu-item-selected::after {
  transform: scaleY(1);
  opacity: 1;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-inline .ant-menu-item,
.ant-menu-inline .ant-menu-submenu-title {
  width: calc(100% + 1px);
}
.ant-menu-inline .ant-menu-submenu-title {
  padding-right: 34px;
}
.ant-menu-inline-collapsed {
  width: 80px;
}
.ant-menu-inline-collapsed > .ant-menu-item,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title,
.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title {
  left: 0;
  padding: 0 32px;
  text-overflow: clip;
}
.ant-menu-inline-collapsed > .ant-menu-item .ant-menu-submenu-arrow,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .ant-menu-submenu-arrow,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .ant-menu-submenu-arrow {
  display: none;
}
.ant-menu-inline-collapsed > .ant-menu-item .anticon,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .anticon,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title .anticon,
.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .anticon {
  margin: 0;
  font-size: 16px;
  line-height: 40px;
}
.ant-menu-inline-collapsed > .ant-menu-item .anticon + span,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .anticon + span,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title .anticon + span,
.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .anticon + span {
  display: inline-block;
  max-width: 0;
  opacity: 0;
}
.ant-menu-inline-collapsed .anticon {
  display: inline-block;
}
.ant-menu-inline-collapsed-tooltip {
  pointer-events: none;
}
.ant-menu-inline-collapsed-tooltip .anticon {
  display: none;
}
.ant-menu-inline-collapsed-tooltip a {
  color: rgba(255, 255, 255, 0.85);
}
.ant-menu-inline-collapsed .ant-menu-item-group-title {
  padding-right: 4px;
  padding-left: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-menu-item-group-list {
  margin: 0;
  padding: 0;
}
.ant-menu-item-group-list .ant-menu-item,
.ant-menu-item-group-list .ant-menu-submenu-title {
  padding: 0 16px 0 28px;
}
.ant-menu-root.ant-menu-vertical,
.ant-menu-root.ant-menu-vertical-left,
.ant-menu-root.ant-menu-vertical-right,
.ant-menu-root.ant-menu-inline {
  box-shadow: none;
}
.ant-menu-root.ant-menu-inline-collapsed .ant-menu-item > .ant-menu-inline-collapsed-noicon,
.ant-menu-root.ant-menu-inline-collapsed .ant-menu-submenu .ant-menu-submenu-title > .ant-menu-inline-collapsed-noicon {
  font-size: 16px;
  text-align: center;
}
.ant-menu-sub.ant-menu-inline {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.ant-menu-sub.ant-menu-inline > .ant-menu-item,
.ant-menu-sub.ant-menu-inline > .ant-menu-submenu > .ant-menu-submenu-title {
  height: 40px;
  line-height: 40px;
  list-style-position: inside;
  list-style-type: disc;
}
.ant-menu-sub.ant-menu-inline .ant-menu-item-group-title {
  padding-left: 32px;
}
.ant-menu-item-disabled,
.ant-menu-submenu-disabled {
  color: rgba(0, 0, 0, 0.25) !important;
  background: none;
  border-color: transparent !important;
  cursor: not-allowed;
}
.ant-menu-item-disabled a,
.ant-menu-submenu-disabled a {
  color: rgba(0, 0, 0, 0.25) !important;
  pointer-events: none;
}
.ant-menu-item-disabled > .ant-menu-submenu-title,
.ant-menu-submenu-disabled > .ant-menu-submenu-title {
  color: rgba(0, 0, 0, 0.25) !important;
  cursor: not-allowed;
}
.ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after {
  background: rgba(0, 0, 0, 0.25) !important;
}
.ant-layout-header .ant-menu {
  line-height: inherit;
}
.ant-menu.ant-menu-dark,
.ant-menu-dark .ant-menu-sub,
.ant-menu.ant-menu-dark .ant-menu-sub {
  color: rgba(255, 255, 255, 0.65);
  background: #001529;
}
.ant-menu.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow {
  opacity: 0.45;
  transition: all 0.3s;
}
.ant-menu.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  background: #fff;
}
.ant-menu-dark.ant-menu-submenu-popup {
  background: transparent;
}
.ant-menu-dark .ant-menu-inline.ant-menu-sub {
  background: #000c17;
}
.ant-menu-dark.ant-menu-horizontal {
  border-bottom: 0;
}
.ant-menu-dark.ant-menu-horizontal > .ant-menu-item,
.ant-menu-dark.ant-menu-horizontal > .ant-menu-submenu {
  top: 0;
  margin-top: 0;
  padding: 0 20px;
  border-color: #001529;
  border-bottom: 0;
}
.ant-menu-dark.ant-menu-horizontal > .ant-menu-item:hover {
  background-color: #004eff;
}
.ant-menu-dark.ant-menu-horizontal > .ant-menu-item > a::before {
  bottom: 0;
}
.ant-menu-dark .ant-menu-item,
.ant-menu-dark .ant-menu-item-group-title,
.ant-menu-dark .ant-menu-item > a,
.ant-menu-dark .ant-menu-item > span > a {
  color: rgba(255, 255, 255, 0.65);
}
.ant-menu-dark.ant-menu-inline,
.ant-menu-dark.ant-menu-vertical,
.ant-menu-dark.ant-menu-vertical-left,
.ant-menu-dark.ant-menu-vertical-right {
  border-right: 0;
}
.ant-menu-dark.ant-menu-inline .ant-menu-item,
.ant-menu-dark.ant-menu-vertical .ant-menu-item,
.ant-menu-dark.ant-menu-vertical-left .ant-menu-item,
.ant-menu-dark.ant-menu-vertical-right .ant-menu-item {
  left: 0;
  margin-left: 0;
  border-right: 0;
}
.ant-menu-dark.ant-menu-inline .ant-menu-item::after,
.ant-menu-dark.ant-menu-vertical .ant-menu-item::after,
.ant-menu-dark.ant-menu-vertical-left .ant-menu-item::after,
.ant-menu-dark.ant-menu-vertical-right .ant-menu-item::after {
  border-right: 0;
}
.ant-menu-dark.ant-menu-inline .ant-menu-item,
.ant-menu-dark.ant-menu-inline .ant-menu-submenu-title {
  width: 100%;
}
.ant-menu-dark .ant-menu-item:hover,
.ant-menu-dark .ant-menu-item-active,
.ant-menu-dark .ant-menu-submenu-active,
.ant-menu-dark .ant-menu-submenu-open,
.ant-menu-dark .ant-menu-submenu-selected,
.ant-menu-dark .ant-menu-submenu-title:hover {
  color: #fff;
  background-color: transparent;
}
.ant-menu-dark .ant-menu-item:hover > a,
.ant-menu-dark .ant-menu-item-active > a,
.ant-menu-dark .ant-menu-submenu-active > a,
.ant-menu-dark .ant-menu-submenu-open > a,
.ant-menu-dark .ant-menu-submenu-selected > a,
.ant-menu-dark .ant-menu-submenu-title:hover > a,
.ant-menu-dark .ant-menu-item:hover > span > a,
.ant-menu-dark .ant-menu-item-active > span > a,
.ant-menu-dark .ant-menu-submenu-active > span > a,
.ant-menu-dark .ant-menu-submenu-open > span > a,
.ant-menu-dark .ant-menu-submenu-selected > span > a,
.ant-menu-dark .ant-menu-submenu-title:hover > span > a {
  color: #fff;
}
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow {
  opacity: 1;
}
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before {
  background: #fff;
}
.ant-menu-dark .ant-menu-item:hover {
  background-color: transparent;
}
.ant-menu-dark.ant-menu-dark:not(.ant-menu-horizontal) .ant-menu-item-selected {
  background-color: #004eff;
}
.ant-menu-dark .ant-menu-item-selected {
  color: #fff;
  border-right: 0;
}
.ant-menu-dark .ant-menu-item-selected::after {
  border-right: 0;
}
.ant-menu-dark .ant-menu-item-selected > a,
.ant-menu-dark .ant-menu-item-selected > span > a,
.ant-menu-dark .ant-menu-item-selected > a:hover,
.ant-menu-dark .ant-menu-item-selected > span > a:hover {
  color: #fff;
}
.ant-menu-dark .ant-menu-item-selected .anticon {
  color: #fff;
}
.ant-menu-dark .ant-menu-item-selected .anticon + span {
  color: #fff;
}
.ant-menu.ant-menu-dark .ant-menu-item-selected,
.ant-menu-submenu-popup.ant-menu-dark .ant-menu-item-selected {
  background-color: #004eff;
}
.ant-menu-dark .ant-menu-item-disabled,
.ant-menu-dark .ant-menu-submenu-disabled,
.ant-menu-dark .ant-menu-item-disabled > a,
.ant-menu-dark .ant-menu-submenu-disabled > a,
.ant-menu-dark .ant-menu-item-disabled > span > a,
.ant-menu-dark .ant-menu-submenu-disabled > span > a {
  color: rgba(255, 255, 255, 0.35) !important;
  opacity: 0.8;
}
.ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title,
.ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title {
  color: rgba(255, 255, 255, 0.35) !important;
}
.ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after {
  background: rgba(255, 255, 255, 0.35) !important;
}
.ant-menu.ant-menu-rtl {
  direction: rtl;
  text-align: right;
}
.ant-menu-rtl .ant-menu-item-group-title {
  text-align: right;
}
.ant-menu-rtl.ant-menu-inline,
.ant-menu-rtl.ant-menu-vertical {
  border-right: none;
  border-left: 1px solid #f0f0f0;
}
.ant-menu-rtl.ant-menu-dark.ant-menu-inline,
.ant-menu-rtl.ant-menu-dark.ant-menu-vertical {
  border-left: none;
}
.ant-menu-rtl.ant-menu-vertical.ant-menu-sub,
.ant-menu-rtl.ant-menu-vertical-left.ant-menu-sub,
.ant-menu-rtl.ant-menu-vertical-right.ant-menu-sub {
  transform-origin: top right;
}
.ant-menu-rtl.ant-menu-vertical.ant-menu-sub > .ant-menu-item,
.ant-menu-rtl.ant-menu-vertical-left.ant-menu-sub > .ant-menu-item,
.ant-menu-rtl.ant-menu-vertical-right.ant-menu-sub > .ant-menu-item,
.ant-menu-rtl.ant-menu-vertical.ant-menu-sub > .ant-menu-submenu,
.ant-menu-rtl.ant-menu-vertical-left.ant-menu-sub > .ant-menu-submenu,
.ant-menu-rtl.ant-menu-vertical-right.ant-menu-sub > .ant-menu-submenu {
  transform-origin: top right;
}
.ant-menu-rtl .ant-menu-item .anticon,
.ant-menu-rtl .ant-menu-submenu-title .anticon {
  margin-right: auto;
  margin-left: 10px;
}
.ant-menu-rtl .ant-menu-item.ant-menu-item-only-child > .anticon,
.ant-menu-rtl .ant-menu-submenu-title.ant-menu-item-only-child > .anticon {
  margin-left: 0;
}
.ant-menu-rtl .ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu-rtl .ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu-rtl .ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu-rtl .ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow {
  right: auto;
  left: 16px;
}
.ant-menu-rtl .ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-rtl .ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-rtl .ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  transform: rotate(-45deg) translateY(-2px);
}
.ant-menu-rtl .ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-rtl .ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-rtl .ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::after {
  transform: rotate(45deg) translateY(2px);
}
.ant-menu-rtl.ant-menu-vertical .ant-menu-item::after,
.ant-menu-rtl.ant-menu-vertical-left .ant-menu-item::after,
.ant-menu-rtl.ant-menu-vertical-right .ant-menu-item::after,
.ant-menu-rtl.ant-menu-inline .ant-menu-item::after {
  right: auto;
  left: 0;
}
.ant-menu-rtl.ant-menu-vertical .ant-menu-item,
.ant-menu-rtl.ant-menu-vertical-left .ant-menu-item,
.ant-menu-rtl.ant-menu-vertical-right .ant-menu-item,
.ant-menu-rtl.ant-menu-inline .ant-menu-item,
.ant-menu-rtl.ant-menu-vertical .ant-menu-submenu-title,
.ant-menu-rtl.ant-menu-vertical-left .ant-menu-submenu-title,
.ant-menu-rtl.ant-menu-vertical-right .ant-menu-submenu-title,
.ant-menu-rtl.ant-menu-inline .ant-menu-submenu-title {
  text-align: right;
}
.ant-menu-rtl.ant-menu-inline .ant-menu-submenu-title {
  padding-right: 0;
  padding-left: 34px;
}
.ant-menu-rtl.ant-menu-vertical .ant-menu-submenu-title {
  padding-right: 16px;
  padding-left: 34px;
}
.ant-menu-rtl.ant-menu-inline-collapsed.ant-menu-vertical .ant-menu-submenu-title {
  padding: 0 32px;
}
.ant-menu-rtl .ant-menu-item-group-list .ant-menu-item,
.ant-menu-rtl .ant-menu-item-group-list .ant-menu-submenu-title {
  padding: 0 28px 0 16px;
}
.ant-menu-sub.ant-menu-inline {
  border: 0;
}
.ant-menu-rtl.ant-menu-sub.ant-menu-inline .ant-menu-item-group-title {
  padding-right: 32px;
  padding-left: 0;
}

/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-modal,
.ant-image-preview {
  pointer-events: none;
}
.ant-modal.zoom-enter,
.ant-modal.zoom-appear,
.ant-image-preview.zoom-enter,
.ant-image-preview.zoom-appear {
  transform: none;
  opacity: 0;
  animation-duration: 0.3s;
  user-select: none;
}
.ant-modal-mask,
.ant-image-preview-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  filter: alpha(opacity=50);
}
.ant-modal-mask-hidden,
.ant-image-preview-mask-hidden {
  display: none;
}
.ant-modal-wrap,
.ant-image-preview-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  outline: 0;
  -webkit-overflow-scrolling: touch;
}
.ant-dropdown-menu-item.ant-dropdown-menu-item-danger {
  color: #ff4d4f;
}
.ant-dropdown-menu-item.ant-dropdown-menu-item-danger:hover {
  color: #fff;
  background-color: #ff4d4f;
}
.ant-dropdown {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 1050;
  display: block;
}
.ant-dropdown::before {
  position: absolute;
  top: -7px;
  right: 0;
  bottom: -7px;
  left: -7px;
  z-index: -9999;
  opacity: 0.0001;
  content: ' ';
}
.ant-dropdown-wrap {
  position: relative;
}
.ant-dropdown-wrap .ant-btn > .anticon-down {
  display: inline-block;
  font-size: 10px;
}
.ant-dropdown-wrap .anticon-down::before {
  transition: transform 0.2s;
}
.ant-dropdown-wrap-open .anticon-down::before {
  transform: rotate(180deg);
}
.ant-dropdown-hidden,
.ant-dropdown-menu-hidden {
  display: none;
}
.ant-dropdown-show-arrow.ant-dropdown-placement-topCenter,
.ant-dropdown-show-arrow.ant-dropdown-placement-topLeft,
.ant-dropdown-show-arrow.ant-dropdown-placement-topRight {
  padding-bottom: 10px;
}
.ant-dropdown-show-arrow.ant-dropdown-placement-bottomCenter,
.ant-dropdown-show-arrow.ant-dropdown-placement-bottomLeft,
.ant-dropdown-show-arrow.ant-dropdown-placement-bottomRight {
  padding-top: 10px;
}
.ant-dropdown-arrow {
  position: absolute;
  z-index: 1;
  display: block;
  width: 8.48528137px;
  height: 8.48528137px;
  background: transparent;
  border-style: solid;
  border-width: 4.24264069px;
  transform: rotate(45deg);
}
.ant-dropdown-placement-topCenter > .ant-dropdown-arrow,
.ant-dropdown-placement-topLeft > .ant-dropdown-arrow,
.ant-dropdown-placement-topRight > .ant-dropdown-arrow {
  bottom: 6.2px;
  border-top-color: transparent;
  border-right-color: #fff;
  border-bottom-color: #fff;
  border-left-color: transparent;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
}
.ant-dropdown-placement-topCenter > .ant-dropdown-arrow {
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.ant-dropdown-placement-topLeft > .ant-dropdown-arrow {
  left: 16px;
}
.ant-dropdown-placement-topRight > .ant-dropdown-arrow {
  right: 16px;
}
.ant-dropdown-placement-bottomCenter > .ant-dropdown-arrow,
.ant-dropdown-placement-bottomLeft > .ant-dropdown-arrow,
.ant-dropdown-placement-bottomRight > .ant-dropdown-arrow {
  top: 6px;
  border-top-color: #fff;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #fff;
  box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.06);
}
.ant-dropdown-placement-bottomCenter > .ant-dropdown-arrow {
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.ant-dropdown-placement-bottomLeft > .ant-dropdown-arrow {
  left: 16px;
}
.ant-dropdown-placement-bottomRight > .ant-dropdown-arrow {
  right: 16px;
}
.ant-dropdown-menu {
  position: relative;
  margin: 0;
  padding: 4px 0;
  text-align: left;
  list-style-type: none;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 2px;
  outline: none;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}
.ant-dropdown-menu-item-group-title {
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.45);
  transition: all 0.3s;
}
.ant-dropdown-menu-submenu-popup {
  position: absolute;
  z-index: 1050;
  background: transparent;
  box-shadow: none;
}
.ant-dropdown-menu-submenu-popup > .ant-dropdown-menu {
  transform-origin: 0 0;
}
.ant-dropdown-menu-submenu-popup ul,
.ant-dropdown-menu-submenu-popup li {
  list-style: none;
}
.ant-dropdown-menu-submenu-popup ul {
  margin-right: 0.3em;
  margin-left: 0.3em;
}
.ant-dropdown-menu-item,
.ant-dropdown-menu-submenu-title {
  clear: both;
  margin: 0;
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-dropdown-menu-item > .anticon:first-child,
.ant-dropdown-menu-submenu-title > .anticon:first-child,
.ant-dropdown-menu-item > span > .anticon:first-child,
.ant-dropdown-menu-submenu-title > span > .anticon:first-child {
  min-width: 12px;
  margin-right: 8px;
  font-size: 12px;
}
.ant-dropdown-menu-item > a,
.ant-dropdown-menu-submenu-title > a {
  display: block;
  margin: -5px -12px;
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.85);
  transition: all 0.3s;
}
.ant-dropdown-menu-item > a:hover,
.ant-dropdown-menu-submenu-title > a:hover {
  color: rgba(0, 0, 0, 0.85);
}
.ant-dropdown-menu-item > .anticon + span > a,
.ant-dropdown-menu-submenu-title > .anticon + span > a {
  color: rgba(0, 0, 0, 0.85);
  transition: all 0.3s;
}
.ant-dropdown-menu-item > .anticon + span > a:hover,
.ant-dropdown-menu-submenu-title > .anticon + span > a:hover {
  color: rgba(0, 0, 0, 0.85);
}
.ant-dropdown-menu-item-selected,
.ant-dropdown-menu-submenu-title-selected,
.ant-dropdown-menu-item-selected > a,
.ant-dropdown-menu-submenu-title-selected > a {
  color: #004eff;
  background-color: #e6f1ff;
}
.ant-dropdown-menu-item:hover,
.ant-dropdown-menu-submenu-title:hover {
  background-color: #f5f5f5;
}
.ant-dropdown-menu-item-disabled,
.ant-dropdown-menu-submenu-title-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-dropdown-menu-item-disabled:hover,
.ant-dropdown-menu-submenu-title-disabled:hover {
  color: rgba(0, 0, 0, 0.25);
  background-color: #fff;
  cursor: not-allowed;
}
.ant-dropdown-menu-item-divider,
.ant-dropdown-menu-submenu-title-divider {
  height: 1px;
  margin: 4px 0;
  overflow: hidden;
  line-height: 0;
  background-color: #f0f0f0;
}
.ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow,
.ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow {
  position: absolute;
  right: 8px;
}
.ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow-icon,
.ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon {
  margin-right: 0 !important;
  color: rgba(0, 0, 0, 0.45);
  font-style: normal;
  display: inline-block;
  font-size: 10px;
}
.ant-dropdown-menu-item-group-list {
  margin: 0 8px;
  padding: 0;
  list-style: none;
}
.ant-dropdown-menu-submenu-title {
  padding-right: 24px;
}
.ant-dropdown-menu-submenu-vertical {
  position: relative;
}
.ant-dropdown-menu-submenu-vertical > .ant-dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 100%;
  margin-left: 4px;
  transform-origin: 0 0;
}
.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title,
.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon {
  color: rgba(0, 0, 0, 0.25);
  background-color: #fff;
  cursor: not-allowed;
}
.ant-dropdown-menu-submenu-selected .ant-dropdown-menu-submenu-title {
  color: #004eff;
}
.ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomLeft,
.ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomLeft,
.ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomCenter,
.ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomCenter,
.ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomRight,
.ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomRight {
  animation-name: antSlideUpIn;
}
.ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topLeft,
.ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topLeft,
.ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topCenter,
.ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topCenter,
.ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topRight,
.ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topRight {
  animation-name: antSlideDownIn;
}
.ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomLeft,
.ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomCenter,
.ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomRight {
  animation-name: antSlideUpOut;
}
.ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topLeft,
.ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topCenter,
.ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topRight {
  animation-name: antSlideDownOut;
}
.ant-dropdown-trigger > .anticon.anticon-down,
.ant-dropdown-link > .anticon.anticon-down,
.ant-dropdown-button > .anticon.anticon-down {
  vertical-align: baseline;
  display: inline-block;
  font-size: 10px;
}
.ant-dropdown-button {
  white-space: nowrap;
}
.ant-dropdown-button.ant-btn-group > .ant-btn:last-child:not(:first-child):not(.ant-btn-icon-only) {
  padding-right: 8px;
  padding-left: 8px;
}
.ant-dropdown-menu-dark,
.ant-dropdown-menu-dark .ant-dropdown-menu {
  background: #001529;
}
.ant-dropdown-menu-dark .ant-dropdown-menu-item,
.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title,
.ant-dropdown-menu-dark .ant-dropdown-menu-item > a,
.ant-dropdown-menu-dark .ant-dropdown-menu-item > .anticon + span > a {
  color: rgba(255, 255, 255, 0.65);
}
.ant-dropdown-menu-dark .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow::after,
.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow::after,
.ant-dropdown-menu-dark .ant-dropdown-menu-item > a .ant-dropdown-menu-submenu-arrow::after,
.ant-dropdown-menu-dark .ant-dropdown-menu-item > .anticon + span > a .ant-dropdown-menu-submenu-arrow::after {
  color: rgba(255, 255, 255, 0.65);
}
.ant-dropdown-menu-dark .ant-dropdown-menu-item:hover,
.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title:hover,
.ant-dropdown-menu-dark .ant-dropdown-menu-item > a:hover,
.ant-dropdown-menu-dark .ant-dropdown-menu-item > .anticon + span > a:hover {
  color: #fff;
  background: transparent;
}
.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected,
.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected:hover,
.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected > a {
  color: #fff;
  background: #004eff;
}
.ant-dropdown-rtl {
  direction: rtl;
}
.ant-dropdown-rtl.ant-dropdown::before {
  right: -7px;
  left: 0;
}
.ant-dropdown-menu.ant-dropdown-menu-rtl {
  direction: rtl;
  text-align: right;
}
.ant-dropdown-rtl .ant-dropdown-menu-item-group-title {
  direction: rtl;
  text-align: right;
}
.ant-dropdown-rtl .ant-dropdown-menu-submenu-popup ul,
.ant-dropdown-rtl .ant-dropdown-menu-submenu-popup li {
  text-align: right;
}
.ant-dropdown-rtl .ant-dropdown-menu-item,
.ant-dropdown-rtl .ant-dropdown-menu-submenu-title {
  text-align: right;
}
.ant-dropdown-rtl .ant-dropdown-menu-item > .anticon:first-child,
.ant-dropdown-rtl .ant-dropdown-menu-submenu-title > .anticon:first-child,
.ant-dropdown-rtl .ant-dropdown-menu-item > span > .anticon:first-child,
.ant-dropdown-rtl .ant-dropdown-menu-submenu-title > span > .anticon:first-child {
  margin-right: 0;
  margin-left: 8px;
}
.ant-dropdown-rtl .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow,
.ant-dropdown-rtl .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow {
  right: auto;
  left: 8px;
}
.ant-dropdown-rtl .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow-icon,
.ant-dropdown-rtl .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon {
  margin-left: 0 !important;
  transform: scaleX(-1);
}
.ant-dropdown-rtl .ant-dropdown-menu-submenu-title {
  padding-right: 12px;
  padding-left: 24px;
}
.ant-dropdown-rtl .ant-dropdown-menu-submenu-vertical > .ant-dropdown-menu {
  right: 100%;
  left: 0;
  margin-right: 4px;
  margin-left: 0;
}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___3MmDo{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___2V7CK{width:100%;margin:0 auto}.full-width___1EAay{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___2V7CK{max-width:1440px;margin:0 auto;padding:0}.full-width___1EAay{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___2psQP{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___2psQP{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___2psQP{padding:0 16px}}.btn-default___23dHW{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___23dHW:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___l923-{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___l923-:hover{color:#fff;background:#0045CA}.btn-dark___20HJ5{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___20HJ5:hover{color:#fff;background:#2C3444}.btn-dark2___qwowN{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___qwowN:hover{color:#fff;background:#2C3444}.btn-default2___3PREI{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___3PREI:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___3Bn3o{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}@-moz-keyframes spinner-loader____yApD{0%{-moz-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes spinner-loader____yApD{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-loader____yApD{0%{-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-loader____yApD:not(:required){-moz-animation:spinner-loader____yApD 1500ms infinite linear;-webkit-animation:spinner-loader____yApD 1500ms infinite linear;animation:spinner-loader____yApD 1500ms infinite linear;-moz-border-radius:0.5em;-webkit-border-radius:0.5em;border-radius:0.5em;-moz-box-shadow:rgba(0,0,51,0.3) 1.5em 0 0 0,rgba(0,0,51,0.3) 1.1em 1.1em 0 0,rgba(0,0,51,0.3) 0 1.5em 0 0,rgba(0,0,51,0.3) -1.1em 1.1em 0 0,rgba(0,0,51,0.3) -1.5em 0 0 0,rgba(0,0,51,0.3) -1.1em -1.1em 0 0,rgba(0,0,51,0.3) 0 -1.5em 0 0,rgba(0,0,51,0.3) 1.1em -1.1em 0 0;-webkit-box-shadow:rgba(0,0,51,0.3) 1.5em 0 0 0,rgba(0,0,51,0.3) 1.1em 1.1em 0 0,rgba(0,0,51,0.3) 0 1.5em 0 0,rgba(0,0,51,0.3) -1.1em 1.1em 0 0,rgba(0,0,51,0.3) -1.5em 0 0 0,rgba(0,0,51,0.3) -1.1em -1.1em 0 0,rgba(0,0,51,0.3) 0 -1.5em 0 0,rgba(0,0,51,0.3) 1.1em -1.1em 0 0;box-shadow:rgba(0,0,51,0.3) 1.5em 0 0 0,rgba(0,0,51,0.3) 1.1em 1.1em 0 0,rgba(0,0,51,0.3) 0 1.5em 0 0,rgba(0,0,51,0.3) -1.1em 1.1em 0 0,rgba(0,0,51,0.3) -1.5em 0 0 0,rgba(0,0,51,0.3) -1.1em -1.1em 0 0,rgba(0,0,51,0.3) 0 -1.5em 0 0,rgba(0,0,51,0.3) 1.1em -1.1em 0 0;display:inline-block;font-size:10px;width:1em;height:1em;margin:1.5em;overflow:hidden;text-indent:100%}.modal___26Q0T button{border:none;display:flex;flex-direction:column;align-items:center;justify-content:center;background-color:inherit}.modal___26Q0T button span{color:#004eff}.modal___26Q0T section{padding:10px 0 20px}.modal___26Q0T section h1{padding-bottom:10px;margin-bottom:10px;border-bottom:1px solid #8e96a6}.modal___26Q0T form{display:flex;flex-direction:column;align-items:center}.modal___26Q0T form svg{margin:24px 0}.modal___26Q0T form p{color:#fff;text-align:center;margin:0 0 24px}.modal___26Q0T form .feedback___8X8B0{height:240px;display:flex;justify-content:center;align-items:center}.modal___26Q0T form .feedback___8X8B0 h3{font-size:16px;color:#00040c;font-weight:400;display:flex;align-items:flex-end}.modal___26Q0T form .feedback___8X8B0 h3 span{margin-right:4px}.modal___26Q0T form .feedback___8X8B0 h3 span svg{margin:0;width:14px;height:14px}.modal___26Q0T form .input-group___3TX1P{width:100%}.modal___26Q0T form input{height:48px;width:100%;border-radius:4px;font-size:16px;color:#8e96a6;text-align:center;border:1px solid #8e96a6;margin-bottom:12px}.modal___26Q0T form input::-webkit-input-placeholder{color:#8e96a6;font-size:16px;text-align:center}.modal___26Q0T form input:-moz-placeholder{color:#8e96a6;font-size:16px;text-align:center}.modal___26Q0T form input::-moz-placeholder{color:#8e96a6;font-size:16px;text-align:center}.modal___26Q0T form input:-ms-input-placeholder{color:#8e96a6;font-size:16px;text-align:center}.modal___26Q0T form input:last-of-type{border:none;background-color:#004eff;color:#fff}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___bvAiG{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___1YCUq{width:100%;margin:0 auto}.full-width___5pb85{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___1YCUq{max-width:1440px;margin:0 auto;padding:0}.full-width___5pb85{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___20d3q{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___20d3q{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___20d3q{padding:0 16px}}.btn-default___3NBhl{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___3NBhl:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___vva09{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___vva09:hover{color:#fff;background:#0045CA}.btn-dark___2wIGR{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___2wIGR:hover{color:#fff;background:#2C3444}.btn-dark2___3rqDN{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___3rqDN:hover{color:#fff;background:#2C3444}.btn-default2___yT4vw{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___yT4vw:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___27IL6{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}@media only screen and (min-width: 992px){.private-market-modal___8jCnl{width:50% !important}.private-market-modal___8jCnl section h1{font-size:48px;padding-bottom:10px}.private-market-modal___8jCnl section p{font-size:14px}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___3VDeA{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___1epiJ{width:100%;margin:0 auto}.full-width___3a4Jc{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___1epiJ{max-width:1440px;margin:0 auto;padding:0}.full-width___3a4Jc{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___33MWd{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___33MWd{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___33MWd{padding:0 16px}}.btn-default___3Ct2p{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___3Ct2p:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___UhYhe{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___UhYhe:hover{color:#fff;background:#0045CA}.btn-dark___3-FJV{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___3-FJV:hover{color:#fff;background:#2C3444}.btn-dark2___n1PKO{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___n1PKO:hover{color:#fff;background:#2C3444}.btn-default2___3Uvcd{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___3Uvcd:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___r39vC{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.modal___2L9af .ant-modal-content{pointer-events:none}.modal___2L9af .basic-layout___2_Ug7{padding:0;position:relative;top:-30px}.modal___2L9af .basic-layout___2_Ug7 .profile-left___3bt_o .profile___3h_U3{display:flex;justify-content:space-between;align-items:flex-end;padding:0 0 10px 0;margin:0 0 10px 0;border-bottom:1px solid #b3b3b3}.modal___2L9af .basic-layout___2_Ug7 .profile-left___3bt_o .profile___3h_U3 .name-title___1UR25 h2,.modal___2L9af .basic-layout___2_Ug7 .profile-left___3bt_o .profile___3h_U3 .name-title___1UR25 h3{font-size:16px}.modal___2L9af .basic-layout___2_Ug7 .profile-left___3bt_o .profile___3h_U3 .name-title___1UR25 h2{font-weight:700}.modal___2L9af .basic-layout___2_Ug7 .profile-left___3bt_o .profile___3h_U3 .name-title___1UR25 h3{font-weight:400}.modal___2L9af .basic-layout___2_Ug7 .profile-left___3bt_o .profile___3h_U3 .image-container___I700x{width:104px;height:104px;border-radius:999px;overflow:hidden}.modal___2L9af .basic-layout___2_Ug7 .profile-left___3bt_o .profile___3h_U3 .image-container___I700x img{width:100%;height:100%;object-fit:cover;object-position:left}.modal___2L9af .basic-layout___2_Ug7 .profile-left___3bt_o p{font-size:14px;margin:0 0 20px 0}.modal___2L9af .basic-layout___2_Ug7 .profile-right___2pu01{display:none}.modal___2L9af .the-team-layout___3PJ5w{padding:0;position:relative;top:0;display:flex;flex-direction:column}.modal___2L9af .the-team-layout___3PJ5w .profile-left___3bt_o{width:calc(100% + 48px);height:350px;position:relative;left:-24px;top:-24px}.modal___2L9af .the-team-layout___3PJ5w .profile-left___3bt_o .image-container___I700x{width:100%;height:100%}.modal___2L9af .the-team-layout___3PJ5w .profile-left___3bt_o .image-container___I700x img{width:100%;height:100%;object-fit:cover;object-position:top -0 right 0}.modal___2L9af .the-team-layout___3PJ5w .profile-right___2pu01 .profile___3h_U3{display:flex;flex-direction:column}.modal___2L9af .the-team-layout___3PJ5w .profile-right___2pu01 .profile___3h_U3 .name-title___1UR25{width:100%;margin-bottom:24px}.modal___2L9af .the-team-layout___3PJ5w .profile-right___2pu01 .profile___3h_U3 .name-title___1UR25 h2{font-weight:700;font-size:16px}.modal___2L9af .the-team-layout___3PJ5w .profile-right___2pu01 .profile___3h_U3 .name-title___1UR25 h3{font-weight:400;font-size:12px}.modal___2L9af .the-team-layout___3PJ5w .profile-right___2pu01 .profile___3h_U3 .bio___1Jbf8 p{font-size:14px;margin:0 0 20px 0}.modal___2L9af .the-team-layout___3PJ5w .profile-right___2pu01 .profile___3h_U3 .linkedin___v__Gp{z-index:999999}.modal___2L9af .the-team-layout___3PJ5w .profile-right___2pu01 .profile___3h_U3 .linkedin___v__Gp a{display:flex;justify-content:flex-start;align-items:center;text-decoration:none;cursor:pointer}.modal___2L9af .the-team-layout___3PJ5w .profile-right___2pu01 .profile___3h_U3 .linkedin___v__Gp a img{margin-right:8px}.modal___2L9af .the-team-layout___3PJ5w .profile-right___2pu01 .profile___3h_U3 .linkedin___v__Gp a p{font-size:12px}.modal___2L9af .the-team-layout___3PJ5w .profile-right___2pu01 .profile___3h_U3 .linkedin___v__Gp a:hover{text-decoration:none;color:#000}@media only screen and (min-width: 380px){.modal___2L9af{width:375px !important}.modal___2L9af .the-team-layout___3PJ5w .profile-left___3bt_o{height:380px}}@media only screen and (min-width: 992px){.modal___2L9af{width:90% !important}.modal___2L9af .ant-modal-body{padding:0 80px 0 80px;min-height:500px;height:calc(100vh - 80px)}.modal___2L9af .ant-modal-content{position:relative;min-height:500px;height:calc(100vh - 80px)}.modal___2L9af .basic-layout___2_Ug7{padding:0;position:static;top:0px;display:flex;margin-top:50px}.modal___2L9af .basic-layout___2_Ug7 .profile-left___3bt_o{width:45%}.modal___2L9af .basic-layout___2_Ug7 .profile-left___3bt_o .profile___3h_U3{display:flex;justify-content:space-between;align-items:flex-end;padding:0 0 10px 0;margin:0 0 10px 0;border-bottom:1px solid #b3b3b3}.modal___2L9af .basic-layout___2_Ug7 .profile-left___3bt_o .profile___3h_U3 .name-title___1UR25 h2,.modal___2L9af .basic-layout___2_Ug7 .profile-left___3bt_o .profile___3h_U3 .name-title___1UR25 h3{font-size:16px}.modal___2L9af .basic-layout___2_Ug7 .profile-left___3bt_o .profile___3h_U3 .name-title___1UR25 h2{font-weight:700}.modal___2L9af .basic-layout___2_Ug7 .profile-left___3bt_o .profile___3h_U3 .name-title___1UR25 h3{font-weight:400}.modal___2L9af .basic-layout___2_Ug7 .profile-left___3bt_o .profile___3h_U3 .image-container___I700x{display:none}.modal___2L9af .basic-layout___2_Ug7 .profile-left___3bt_o p{font-size:14px;margin:0 0 20px 0}.modal___2L9af .basic-layout___2_Ug7 .profile-right___2pu01{position:static;width:50%;display:block}.modal___2L9af .basic-layout___2_Ug7 .profile-right___2pu01 .image-container___I700x{position:absolute;top:0;right:0;width:40%;height:100%}.modal___2L9af .basic-layout___2_Ug7 .profile-right___2pu01 .image-container___I700x img{width:100%;height:100%;object-fit:cover}.modal___2L9af.team-modal___1aOdD .ant-modal-content .ant-modal-body{height:calc(100vh - 80px)}.modal___2L9af .the-team-layout___3PJ5w{padding:60px;position:relative;height:520px;top:0;display:flex;flex-direction:row;justify-content:space-between;align-items:center}.modal___2L9af .the-team-layout___3PJ5w .profile-left___3bt_o{top:0;width:323px;height:100%}.modal___2L9af .the-team-layout___3PJ5w .profile-left___3bt_o .image-container___I700x{width:100%;height:399px;overflow:hidden;display:flex;align-items:center;border-radius:6px}.modal___2L9af .the-team-layout___3PJ5w .profile-left___3bt_o .image-container___I700x img{width:100%;height:400px;object-fit:cover;object-position:top;border-radius:6px}.modal___2L9af .the-team-layout___3PJ5w .profile-left___3bt_o p{font-size:14px;margin:0 0 20px 0}.modal___2L9af .the-team-layout___3PJ5w .profile-right___2pu01{width:calc(100% - 360px);display:flex;height:100%;align-items:center}.modal___2L9af .the-team-layout___3PJ5w .profile-right___2pu01 .profile___3h_U3{display:flex;flex-direction:column;align-items:flex-start}.modal___2L9af .the-team-layout___3PJ5w .profile-right___2pu01 .profile___3h_U3 .name-title___1UR25 h2{font-weight:600;font-size:21px;line-height:26px}.modal___2L9af .the-team-layout___3PJ5w .profile-right___2pu01 .profile___3h_U3 .name-title___1UR25 h3{font-weight:300;font-size:12px;line-height:30px;opacity:0.9}.modal___2L9af .the-team-layout___3PJ5w .profile-right___2pu01 .profile___3h_U3 .bio___1Jbf8 p{max-width:540px}.modal___2L9af .the-team-layout___3PJ5w .profile-right___2pu01 .profile___3h_U3 .linkedin___v__Gp{justify-content:space-between}.modal___2L9af .the-team-layout___3PJ5w .profile-right___2pu01 .profile___3h_U3 .linkedin___v__Gp p{font-size:12px}}@media only screen and (min-width: 1440px){.modal___2L9af{width:1296px !important;align-items:center}.modal___2L9af .ant-modal-body{padding:0 80px 0 80px;height:627px}.modal___2L9af .ant-modal-content{height:627px}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___xUnCa{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___2H51D{width:100%;margin:0 auto}.full-width___1f2ql{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___2H51D{max-width:1440px;margin:0 auto;padding:0}.full-width___1f2ql{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___2lIWH{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___2lIWH{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___2lIWH{padding:0 16px}}.btn-default___1KPzR{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___1KPzR:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___CWmOr{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___CWmOr:hover{color:#fff;background:#0045CA}.btn-dark___2eBYG{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___2eBYG:hover{color:#fff;background:#2C3444}.btn-dark2___3Dqlp{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___3Dqlp:hover{color:#fff;background:#2C3444}.btn-default2___8_xVX{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___8_xVX:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___2n2f3{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}@-moz-keyframes spinner-loader___2XGIw{0%{-moz-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes spinner-loader___2XGIw{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-loader___2XGIw{0%{-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-loader___2XGIw:not(:required){-moz-animation:spinner-loader___2XGIw 1500ms infinite linear;-webkit-animation:spinner-loader___2XGIw 1500ms infinite linear;animation:spinner-loader___2XGIw 1500ms infinite linear;-moz-border-radius:0.5em;-webkit-border-radius:0.5em;border-radius:0.5em;-moz-box-shadow:rgba(0,0,51,0.3) 1.5em 0 0 0,rgba(0,0,51,0.3) 1.1em 1.1em 0 0,rgba(0,0,51,0.3) 0 1.5em 0 0,rgba(0,0,51,0.3) -1.1em 1.1em 0 0,rgba(0,0,51,0.3) -1.5em 0 0 0,rgba(0,0,51,0.3) -1.1em -1.1em 0 0,rgba(0,0,51,0.3) 0 -1.5em 0 0,rgba(0,0,51,0.3) 1.1em -1.1em 0 0;-webkit-box-shadow:rgba(0,0,51,0.3) 1.5em 0 0 0,rgba(0,0,51,0.3) 1.1em 1.1em 0 0,rgba(0,0,51,0.3) 0 1.5em 0 0,rgba(0,0,51,0.3) -1.1em 1.1em 0 0,rgba(0,0,51,0.3) -1.5em 0 0 0,rgba(0,0,51,0.3) -1.1em -1.1em 0 0,rgba(0,0,51,0.3) 0 -1.5em 0 0,rgba(0,0,51,0.3) 1.1em -1.1em 0 0;box-shadow:rgba(0,0,51,0.3) 1.5em 0 0 0,rgba(0,0,51,0.3) 1.1em 1.1em 0 0,rgba(0,0,51,0.3) 0 1.5em 0 0,rgba(0,0,51,0.3) -1.1em 1.1em 0 0,rgba(0,0,51,0.3) -1.5em 0 0 0,rgba(0,0,51,0.3) -1.1em -1.1em 0 0,rgba(0,0,51,0.3) 0 -1.5em 0 0,rgba(0,0,51,0.3) 1.1em -1.1em 0 0;display:inline-block;font-size:10px;width:1em;height:1em;margin:1.5em;overflow:hidden;text-indent:100%}.modal___3HN5k{width:640px !important;margin-top:40px}.modal___3HN5k button span{color:#fff}.modal___3HN5k .ant-modal-content{border-radius:5px}.modal___3HN5k .ant-modal-body{padding:0}.modal___3HN5k .ant-modal-body .ant-form-item-label label{color:#5C6370;font-size:13px}.modal___3HN5k .ant-modal-body .ant-form-item-has-error .ant-input{border:1px solid #eb4d3d}.modal___3HN5k .ant-modal-body .ant-input-textarea textarea{border:none;background-color:#f8f9fb !important;color:#000;border-radius:4px}.modal___3HN5k .ant-modal-close{background-color:transparent}.modal___3HN5k .ant-modal-close .ant-modal-close-x{font-size:22px}.modal___3HN5k section h1{font-size:20px;font-weight:600;padding-bottom:6px;color:#fff}.modal___3HN5k section h2{color:#fff;font-size:15px}.modal___3HN5k section .header___1TBDE{padding:30px;background-size:cover !important;background-repeat:no-repeat !important;height:180px;display:flex;flex-direction:column;justify-content:center}.modal___3HN5k section .header___1TBDE h1{width:215px}.modal___3HN5k section .header___1TBDE h2{width:162px;font-weight:400}.modal___3HN5k form{padding:30px}.modal___3HN5k form button{border:none;display:flex;flex-direction:column;align-items:center;justify-content:center;width:213px;height:48px;background-color:#0762C8;margin:auto;font-size:16px;margin-top:24px;border-radius:4px;font-weight:600}.modal___3HN5k form button span{color:#fff}.modal___3HN5k form svg{margin:24px 0}.modal___3HN5k form p{color:#000;text-align:center;margin:0 0 24px}.modal___3HN5k form .feedback___qhPEn{height:240px;display:flex;justify-content:center;align-items:center}.modal___3HN5k form .feedback___qhPEn h3{font-size:16px;color:#00040c;font-weight:400;display:flex;align-items:flex-end}.modal___3HN5k form .feedback___qhPEn h3 span{margin-right:4px}.modal___3HN5k form .feedback___qhPEn h3 span svg{margin:0;width:14px;height:14px}.modal___3HN5k form .input-group___GxjaF{width:100%}.modal___3HN5k form input{height:48px;width:100%;border-radius:4px;font-size:16px;color:#000;text-align:left;border:transparent}.modal___3HN5k form input::-webkit-input-placeholder{color:#000;font-size:16px;text-align:left}.modal___3HN5k form input:-moz-placeholder{color:#000;font-size:16px;text-align:left}.modal___3HN5k form input::-moz-placeholder{color:#000;font-size:16px;text-align:left}.modal___3HN5k form input:-ms-input-placeholder{color:#000;font-size:16px;text-align:left}.modal___3HN5k form input:last-of-type{background-color:#f8f9fb !important;color:#000}.modal___3HN5k form .disclaimer___mcTV0 p{font-size:11px;color:#5C6370;text-align:left}.modal___3HN5k form .disclaimer___mcTV0 p a{text-decoration:none;color:#0762C8;font-size:11px}@media only screen and (min-width: 768px){.modal___3HN5k section h1{font-size:24px;font-weight:600;padding-bottom:6px;color:#fff}.modal___3HN5k section h2{color:#fff;font-size:15px}.modal___3HN5k section .header___1TBDE{padding:70px 50px;height:170px}.modal___3HN5k section .header___1TBDE h1{width:252px}.modal___3HN5k section .header___1TBDE h2{width:170px}.modal___3HN5k form{padding:45px 50px}.modal___3HN5k form button{width:213px;font-size:16px}.modal___3HN5k form .disclaimer___mcTV0 p{font-size:12px}.modal___3HN5k form .disclaimer___mcTV0 p a{font-size:12px}}@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape){section h2{color:#fff;font-size:15px}section .header___1TBDE h2{width:300px !important}}@media only screen and (min-width: 1200px){.modal___3HN5k section h1{font-size:24px;font-weight:600;padding-bottom:6px;color:#fff}.modal___3HN5k section h2{color:#fff;font-size:16px}.modal___3HN5k section .header___1TBDE{padding:0px 55px;background-size:cover !important;background-repeat:no-repeat !important;height:183px}.modal___3HN5k section .header___1TBDE h1{width:256px}.modal___3HN5k section .header___1TBDE h2{width:100%}.modal___3HN5k form{padding:55px}.modal___3HN5k form button{width:213px;font-size:16px}}

/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-modal,
.ant-image-preview {
  pointer-events: none;
}
.ant-modal.zoom-enter,
.ant-modal.zoom-appear,
.ant-image-preview.zoom-enter,
.ant-image-preview.zoom-appear {
  transform: none;
  opacity: 0;
  animation-duration: 0.3s;
  user-select: none;
}
.ant-modal-mask,
.ant-image-preview-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  filter: alpha(opacity=50);
}
.ant-modal-mask-hidden,
.ant-image-preview-mask-hidden {
  display: none;
}
.ant-modal-wrap,
.ant-image-preview-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  outline: 0;
  -webkit-overflow-scrolling: touch;
}
.ant-select-single .ant-select-selector {
  display: flex;
}
.ant-select-single .ant-select-selector .ant-select-selection-search {
  position: absolute;
  top: 0;
  right: 11px;
  bottom: 0;
  left: 11px;
}
.ant-select-single .ant-select-selector .ant-select-selection-search-input {
  width: 100%;
}
.ant-select-single .ant-select-selector .ant-select-selection-item,
.ant-select-single .ant-select-selector .ant-select-selection-placeholder {
  padding: 0;
  line-height: 30px;
  transition: all 0.3s;
}
@supports (-moz-appearance: meterbar) {
  .ant-select-single .ant-select-selector .ant-select-selection-item,
  .ant-select-single .ant-select-selector .ant-select-selection-placeholder {
    line-height: 30px;
  }
}
.ant-select-single .ant-select-selector .ant-select-selection-item {
  position: relative;
  user-select: none;
}
.ant-select-single .ant-select-selector .ant-select-selection-placeholder {
  pointer-events: none;
}
.ant-select-single .ant-select-selector::after,
.ant-select-single .ant-select-selector .ant-select-selection-item::after,
.ant-select-single .ant-select-selector .ant-select-selection-placeholder::after {
  display: inline-block;
  width: 0;
  visibility: hidden;
  content: '\A0';
}
.ant-select-single.ant-select-show-arrow .ant-select-selection-search {
  right: 25px;
}
.ant-select-single.ant-select-show-arrow .ant-select-selection-item,
.ant-select-single.ant-select-show-arrow .ant-select-selection-placeholder {
  padding-right: 18px;
}
.ant-select-single.ant-select-open .ant-select-selection-item {
  color: #bfbfbf;
}
.ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
  position: relative;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
  height: 32px;
  padding: 0 11px;
}
.ant-select-single:not(.ant-select-customize-input) .ant-select-selector input {
  cursor: pointer;
}
.ant-select-show-search.ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
  cursor: text;
}
.ant-select-show-search.ant-select-single:not(.ant-select-customize-input) .ant-select-selector input {
  cursor: auto;
}
.ant-select-focused:not(.ant-select-disabled).ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
  border-color: #2970ff;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(0, 78, 255, 0.2);
}
.ant-select-disabled.ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  cursor: not-allowed;
}
.ant-select-disabled.ant-select-single:not(.ant-select-customize-input) .ant-select-selector input {
  cursor: not-allowed;
}
.ant-select-single:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
}
.ant-select-single:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input::-webkit-search-cancel-button {
  display: none;
  -webkit-appearance: none;
}
.ant-select-single:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input {
  height: 30px;
}
.ant-select-single:not(.ant-select-customize-input) .ant-select-selector::after {
  line-height: 30px;
}
.ant-select-single.ant-select-customize-input .ant-select-selector::after {
  display: none;
}
.ant-select-single.ant-select-customize-input .ant-select-selector .ant-select-selection-search {
  position: static;
  width: 100%;
}
.ant-select-single.ant-select-customize-input .ant-select-selector .ant-select-selection-placeholder {
  position: absolute;
  right: 0;
  left: 0;
  padding: 0 11px;
}
.ant-select-single.ant-select-customize-input .ant-select-selector .ant-select-selection-placeholder::after {
  display: none;
}
.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector {
  height: 40px;
}
.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector::after,
.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-item,
.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-placeholder {
  line-height: 38px;
}
.ant-select-single.ant-select-lg:not(.ant-select-customize-input):not(.ant-select-customize-input) .ant-select-selection-search-input {
  height: 38px;
}
.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector {
  height: 24px;
}
.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector::after,
.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-item,
.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-placeholder {
  line-height: 22px;
}
.ant-select-single.ant-select-sm:not(.ant-select-customize-input):not(.ant-select-customize-input) .ant-select-selection-search-input {
  height: 22px;
}
.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selection-search {
  right: 7px;
  left: 7px;
}
.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector {
  padding: 0 7px;
}
.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-search {
  right: 28px;
}
.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-item,
.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-placeholder {
  padding-right: 21px;
}
.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector {
  padding: 0 11px;
}
/**
 * Do not merge `height` & `line-height` under style with `selection` & `search`,
 * since chrome may update to redesign with its align logic.
 */
.ant-select-multiple .ant-select-selector {
  position: relative;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.5px 4.5px;
}
.ant-select-multiple .ant-select-selector input {
  cursor: pointer;
}
.ant-select-show-search.ant-select-multiple .ant-select-selector {
  cursor: text;
}
.ant-select-show-search.ant-select-multiple .ant-select-selector input {
  cursor: auto;
}
.ant-select-focused:not(.ant-select-disabled).ant-select-multiple .ant-select-selector {
  border-color: #2970ff;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(0, 78, 255, 0.2);
}
.ant-select-disabled.ant-select-multiple .ant-select-selector {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  cursor: not-allowed;
}
.ant-select-disabled.ant-select-multiple .ant-select-selector input {
  cursor: not-allowed;
}
.ant-select-multiple .ant-select-selector .ant-select-selection-search-input {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
}
.ant-select-multiple .ant-select-selector .ant-select-selection-search-input::-webkit-search-cancel-button {
  display: none;
  -webkit-appearance: none;
}
.ant-select-show-search.ant-select-multiple .ant-select-selector {
  cursor: text;
}
.ant-select-disabled.ant-select-multiple .ant-select-selector {
  background: #f5f5f5;
  cursor: not-allowed;
}
.ant-select-multiple .ant-select-selector::after {
  display: inline-block;
  width: 0;
  margin: 3px 0;
  line-height: 23px;
  content: '\A0';
}
.ant-select-multiple.ant-select-show-arrow .ant-select-selector,
.ant-select-multiple.ant-select-allow-clear .ant-select-selector {
  padding-right: 24px;
}
.ant-select-multiple .ant-select-selection-item {
  position: relative;
  display: flex;
  flex: none;
  box-sizing: border-box;
  max-width: 100%;
  height: 23px;
  margin-top: 3px;
  margin-right: 4.5px;
  margin-bottom: 3px;
  padding: 0 4px 0 8px;
  line-height: 21px;
  background: #f5f5f5;
  border: 1px solid #f0f0f0;
  border-radius: 2px;
  cursor: default;
  transition: font-size 0.3s, line-height 0.3s, height 0.3s;
  user-select: none;
}
.ant-select-disabled.ant-select-multiple .ant-select-selection-item {
  color: #bfbfbf;
  border-color: #d9d9d9;
  cursor: not-allowed;
}
.ant-select-multiple .ant-select-selection-item-content {
  display: inline-block;
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-select-multiple .ant-select-selection-item-remove {
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: rgba(0, 0, 0, 0.45);
  font-weight: bold;
  font-size: 12px;
  line-height: inherit;
  cursor: pointer;
  display: inline-block;
  font-size: 10px;
}
.ant-select-multiple .ant-select-selection-item-remove > * {
  line-height: 1;
}
.ant-select-multiple .ant-select-selection-item-remove svg {
  display: inline-block;
}
.ant-select-multiple .ant-select-selection-item-remove::before {
  display: none;
}
.ant-select-multiple .ant-select-selection-item-remove .ant-select-multiple .ant-select-selection-item-remove-icon {
  display: block;
}
.ant-select-multiple .ant-select-selection-item-remove > .anticon {
  vertical-align: -0.2em;
}
.ant-select-multiple .ant-select-selection-item-remove:hover {
  color: rgba(0, 0, 0, 0.75);
}
.ant-select-multiple .ant-select-selection-search {
  position: relative;
  margin-left: 0.25px;
}
.ant-select-multiple .ant-select-selection-search-input,
.ant-select-multiple .ant-select-selection-search-mirror {
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  transition: all 0.3s;
}
.ant-select-multiple .ant-select-selection-search-input {
  width: 100%;
  min-width: 4.1px;
}
.ant-select-multiple .ant-select-selection-search-mirror {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  white-space: nowrap;
  visibility: hidden;
}
.ant-select-multiple .ant-select-selection-search:first-child .ant-select-selection-search-input {
  margin-left: 6.5px;
}
.ant-select-multiple .ant-select-selection-placeholder {
  position: absolute;
  top: 50%;
  right: 11px;
  left: 11px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.ant-select-multiple.ant-select-lg .ant-select-selector::after {
  line-height: 31px;
}
.ant-select-multiple.ant-select-lg .ant-select-selection-item {
  height: 31px;
  line-height: 29px;
}
.ant-select-multiple.ant-select-lg .ant-select-selection-search {
  height: 31.5px;
  line-height: 31.5px;
}
.ant-select-multiple.ant-select-lg .ant-select-selection-search-input,
.ant-select-multiple.ant-select-lg .ant-select-selection-search-mirror {
  height: 31px;
  line-height: 29px;
}
.ant-select-multiple.ant-select-sm .ant-select-selector::after {
  line-height: 15px;
}
.ant-select-multiple.ant-select-sm .ant-select-selection-item {
  height: 15px;
  line-height: 13px;
}
.ant-select-multiple.ant-select-sm .ant-select-selection-search {
  height: 15.5px;
  line-height: 15.5px;
}
.ant-select-multiple.ant-select-sm .ant-select-selection-search-input,
.ant-select-multiple.ant-select-sm .ant-select-selection-search-mirror {
  height: 15px;
  line-height: 13px;
}
.ant-select-multiple.ant-select-sm .ant-select-selection-placeholder {
  left: 7px;
}
.ant-select-multiple.ant-select-sm .ant-select-selection-search:first-child .ant-select-selection-search-input {
  margin-left: 3px;
}
.ant-select-multiple.ant-select-lg .ant-select-selection-item {
  height: 32px;
  line-height: 32px;
}
.ant-select-disabled .ant-select-selection-item-remove {
  display: none;
}
/* Reset search input style */
.ant-select {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.ant-select:not(.ant-select-disabled):hover .ant-select-selector {
  border-color: #2970ff;
  border-right-width: 1px !important;
}
.ant-select-selection-item {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media all and (-ms-high-contrast: none) {
  .ant-select-selection-item *::-ms-backdrop,
  .ant-select-selection-item {
    flex: auto;
  }
}
.ant-select-selection-placeholder {
  flex: 1;
  overflow: hidden;
  color: #bfbfbf;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media all and (-ms-high-contrast: none) {
  .ant-select-selection-placeholder *::-ms-backdrop,
  .ant-select-selection-placeholder {
    flex: auto;
  }
}
.ant-select-arrow {
  display: inline-block;
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 53%;
  right: 11px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 12px;
  line-height: 1;
  text-align: center;
  pointer-events: none;
}
.ant-select-arrow > * {
  line-height: 1;
}
.ant-select-arrow svg {
  display: inline-block;
}
.ant-select-arrow::before {
  display: none;
}
.ant-select-arrow .ant-select-arrow-icon {
  display: block;
}
.ant-select-arrow .anticon {
  vertical-align: top;
  transition: transform 0.3s;
}
.ant-select-arrow .anticon > svg {
  vertical-align: top;
}
.ant-select-arrow .anticon:not(.ant-select-suffix) {
  pointer-events: auto;
}
.ant-select-disabled .ant-select-arrow {
  cursor: not-allowed;
}
.ant-select-clear {
  position: absolute;
  top: 50%;
  right: 11px;
  z-index: 1;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 12px;
  font-style: normal;
  line-height: 1;
  text-align: center;
  text-transform: none;
  background: #fff;
  cursor: pointer;
  opacity: 0;
  transition: color 0.3s ease, opacity 0.15s ease;
  text-rendering: auto;
}
.ant-select-clear::before {
  display: block;
}
.ant-select-clear:hover {
  color: rgba(0, 0, 0, 0.45);
}
.ant-select:hover .ant-select-clear {
  opacity: 1;
}
.ant-select-dropdown {
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 1050;
  box-sizing: border-box;
  padding: 4px 0;
  overflow: hidden;
  font-size: 14px;
  font-variant: initial;
  background-color: #fff;
  border-radius: 2px;
  outline: none;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}
.ant-select-dropdown.slide-up-enter.slide-up-enter-active.ant-select-dropdown-placement-bottomLeft,
.ant-select-dropdown.slide-up-appear.slide-up-appear-active.ant-select-dropdown-placement-bottomLeft {
  animation-name: antSlideUpIn;
}
.ant-select-dropdown.slide-up-enter.slide-up-enter-active.ant-select-dropdown-placement-topLeft,
.ant-select-dropdown.slide-up-appear.slide-up-appear-active.ant-select-dropdown-placement-topLeft {
  animation-name: antSlideDownIn;
}
.ant-select-dropdown.slide-up-leave.slide-up-leave-active.ant-select-dropdown-placement-bottomLeft {
  animation-name: antSlideUpOut;
}
.ant-select-dropdown.slide-up-leave.slide-up-leave-active.ant-select-dropdown-placement-topLeft {
  animation-name: antSlideDownOut;
}
.ant-select-dropdown-hidden {
  display: none;
}
.ant-select-dropdown-empty {
  color: rgba(0, 0, 0, 0.25);
}
.ant-select-item-empty {
  position: relative;
  display: block;
  min-height: 32px;
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.25);
}
.ant-select-item {
  position: relative;
  display: block;
  min-height: 32px;
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.ant-select-item-group {
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  cursor: default;
}
.ant-select-item-option {
  display: flex;
}
.ant-select-item-option-content {
  flex: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-select-item-option-state {
  flex: none;
}
.ant-select-item-option-active:not(.ant-select-item-option-disabled) {
  background-color: #f5f5f5;
}
.ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 600;
  background-color: #e6f1ff;
}
.ant-select-item-option-selected:not(.ant-select-item-option-disabled) .ant-select-item-option-state {
  color: #004eff;
}
.ant-select-item-option-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-select-item-option-grouped {
  padding-left: 24px;
}
.ant-select-lg {
  font-size: 16px;
}
.ant-select-borderless .ant-select-selector {
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.ant-select-rtl {
  direction: rtl;
}
.ant-select-rtl .ant-select-arrow {
  right: initial;
  left: 11px;
}
.ant-select-rtl .ant-select-clear {
  right: initial;
  left: 11px;
}
.ant-select-dropdown-rtl {
  direction: rtl;
}
.ant-select-dropdown-rtl .ant-select-item-option-grouped {
  padding-right: 24px;
  padding-left: 12px;
}
.ant-select-rtl.ant-select-multiple.ant-select-show-arrow .ant-select-selector,
.ant-select-rtl.ant-select-multiple.ant-select-allow-clear .ant-select-selector {
  padding-right: 4.5px;
  padding-left: 24px;
}
.ant-select-rtl.ant-select-multiple .ant-select-selection-item {
  margin-right: 0;
  margin-left: 4.5px;
  padding: 0 8px 0 4px;
  text-align: right;
}
.ant-select-rtl.ant-select-multiple .ant-select-selection-item-content {
  margin-right: 0;
  margin-left: 4px;
  text-align: right;
}
.ant-select-rtl.ant-select-multiple .ant-select-selection-search {
  margin-right: 0.25px;
  margin-left: 4.5px;
}
.ant-select-rtl.ant-select-multiple .ant-select-selection-search-mirror {
  right: 0;
  left: auto;
}
.ant-select-rtl.ant-select-multiple .ant-select-selection-placeholder {
  right: 11px;
  left: auto;
}
.ant-select-rtl.ant-select-multiple.ant-select-sm .ant-select-selection-placeholder {
  right: 7px;
}
.ant-select-rtl.ant-select-single .ant-select-selector .ant-select-selection-item,
.ant-select-rtl.ant-select-single .ant-select-selector .ant-select-selection-placeholder {
  right: 0;
  left: 9px;
  text-align: right;
}
.ant-select-rtl.ant-select-single.ant-select-show-arrow .ant-select-selection-search {
  right: 11px;
  left: 25px;
}
.ant-select-rtl.ant-select-single.ant-select-show-arrow .ant-select-selection-item,
.ant-select-rtl.ant-select-single.ant-select-show-arrow .ant-select-selection-placeholder {
  padding-right: 0;
  padding-left: 18px;
}
.ant-select-rtl.ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
  padding: 0 11px;
}
.ant-select-rtl.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-search {
  right: 0;
}
.ant-select-rtl.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-item,
.ant-select-rtl.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-placeholder {
  padding-right: 0;
  padding-left: 21px;
}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___L_V7K{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___fE6De{width:100%;margin:0 auto}.full-width___2ei7E{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___fE6De{max-width:1440px;margin:0 auto;padding:0}.full-width___2ei7E{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___1EU4Q{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___1EU4Q{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___1EU4Q{padding:0 16px}}.btn-default___VaTcV{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___VaTcV:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___52YXt{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___52YXt:hover{color:#fff;background:#0045CA}.btn-dark___1scbi{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___1scbi:hover{color:#fff;background:#2C3444}.btn-dark2___1bOCY{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___1bOCY:hover{color:#fff;background:#2C3444}.btn-default2___3_kAL{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___3_kAL:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___2tgK3{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}@-moz-keyframes spinner-loader___cXQZb{0%{-moz-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes spinner-loader___cXQZb{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-loader___cXQZb{0%{-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-loader___cXQZb:not(:required){-moz-animation:spinner-loader___cXQZb 1500ms infinite linear;-webkit-animation:spinner-loader___cXQZb 1500ms infinite linear;animation:spinner-loader___cXQZb 1500ms infinite linear;-moz-border-radius:0.5em;-webkit-border-radius:0.5em;border-radius:0.5em;-moz-box-shadow:rgba(0,0,51,0.3) 1.5em 0 0 0,rgba(0,0,51,0.3) 1.1em 1.1em 0 0,rgba(0,0,51,0.3) 0 1.5em 0 0,rgba(0,0,51,0.3) -1.1em 1.1em 0 0,rgba(0,0,51,0.3) -1.5em 0 0 0,rgba(0,0,51,0.3) -1.1em -1.1em 0 0,rgba(0,0,51,0.3) 0 -1.5em 0 0,rgba(0,0,51,0.3) 1.1em -1.1em 0 0;-webkit-box-shadow:rgba(0,0,51,0.3) 1.5em 0 0 0,rgba(0,0,51,0.3) 1.1em 1.1em 0 0,rgba(0,0,51,0.3) 0 1.5em 0 0,rgba(0,0,51,0.3) -1.1em 1.1em 0 0,rgba(0,0,51,0.3) -1.5em 0 0 0,rgba(0,0,51,0.3) -1.1em -1.1em 0 0,rgba(0,0,51,0.3) 0 -1.5em 0 0,rgba(0,0,51,0.3) 1.1em -1.1em 0 0;box-shadow:rgba(0,0,51,0.3) 1.5em 0 0 0,rgba(0,0,51,0.3) 1.1em 1.1em 0 0,rgba(0,0,51,0.3) 0 1.5em 0 0,rgba(0,0,51,0.3) -1.1em 1.1em 0 0,rgba(0,0,51,0.3) -1.5em 0 0 0,rgba(0,0,51,0.3) -1.1em -1.1em 0 0,rgba(0,0,51,0.3) 0 -1.5em 0 0,rgba(0,0,51,0.3) 1.1em -1.1em 0 0;display:inline-block;font-size:10px;width:1em;height:1em;margin:1.5em;overflow:hidden;text-indent:100%}.modal___3VTbB{width:640px !important}.modal___3VTbB .ant-modal-body{padding:0}.modal___3VTbB .ant-modal-close{color:#000}.modal___3VTbB .ant-modal-close .ant-modal-close-x{font-size:22px}.modal___3VTbB section h1{font-size:26px;font-weight:600;line-height:33px;padding-bottom:24px}.modal___3VTbB section h2{font-size:15px;font-weight:400;line-height:23px}.modal___3VTbB section .header___3XOBO{padding:70px 55px;display:flex;flex-direction:column;align-items:center}@media only screen and (min-width: 768px){.modal___3VTbB section h1{font-size:43px;font-weight:600;line-height:26px;padding-bottom:24px}.modal___3VTbB section h2{font-size:18px;font-weight:400;line-height:15px}}@media only screen and (min-width: 992px){.modal___3VTbB section h1{font-size:30px;font-weight:600;line-height:38px;padding-bottom:24px}.modal___3VTbB section h2{font-size:18px;font-weight:400;line-height:23px}}

/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-modal,
.ant-image-preview {
  pointer-events: none;
}
.ant-modal.zoom-enter,
.ant-modal.zoom-appear,
.ant-image-preview.zoom-enter,
.ant-image-preview.zoom-appear {
  transform: none;
  opacity: 0;
  animation-duration: 0.3s;
  user-select: none;
}
.ant-modal-mask,
.ant-image-preview-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  filter: alpha(opacity=50);
}
.ant-modal-mask-hidden,
.ant-image-preview-mask-hidden {
  display: none;
}
.ant-modal-wrap,
.ant-image-preview-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  outline: 0;
  -webkit-overflow-scrolling: touch;
}
.ant-empty {
  margin: 0 8px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
.ant-empty-image {
  height: 100px;
  margin-bottom: 8px;
}
.ant-empty-image img {
  height: 100%;
}
.ant-empty-image svg {
  height: 100%;
  margin: auto;
}
.ant-empty-description {
  margin: 0;
}
.ant-empty-footer {
  margin-top: 16px;
}
.ant-empty-normal {
  margin: 32px 0;
  color: rgba(0, 0, 0, 0.25);
}
.ant-empty-normal .ant-empty-image {
  height: 40px;
}
.ant-empty-small {
  margin: 8px 0;
  color: rgba(0, 0, 0, 0.25);
}
.ant-empty-small .ant-empty-image {
  height: 35px;
}
.ant-empty-img-default-ellipse {
  fill-opacity: 0.8;
  fill: #f5f5f5;
}
.ant-empty-img-default-path-1 {
  fill: #aeb8c2;
}
.ant-empty-img-default-path-2 {
  fill: url(#linearGradient-1);
}
.ant-empty-img-default-path-3 {
  fill: #f5f5f7;
}
.ant-empty-img-default-path-4 {
  fill: #dce0e6;
}
.ant-empty-img-default-path-5 {
  fill: #dce0e6;
}
.ant-empty-img-default-g {
  fill: #fff;
}
.ant-empty-img-simple-ellipse {
  fill: #f5f5f5;
}
.ant-empty-img-simple-g {
  stroke: #d9d9d9;
}
.ant-empty-img-simple-path {
  fill: #fafafa;
}
.ant-empty-rtl {
  direction: rtl;
}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___1zo9r{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___uERp8{width:100%;margin:0 auto}.full-width___2QOgM{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___uERp8{max-width:1440px;margin:0 auto;padding:0}.full-width___2QOgM{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___3Y8bI{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___3Y8bI{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___3Y8bI{padding:0 16px}}.btn-default___303Rv{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___303Rv:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___3Evuy{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___3Evuy:hover{color:#fff;background:#0045CA}.btn-dark___38hLK{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___38hLK:hover{color:#fff;background:#2C3444}.btn-dark2___2hxyn{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___2hxyn:hover{color:#fff;background:#2C3444}.btn-default2___1qL9Z{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___1qL9Z:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___un3k3{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}@-moz-keyframes spinner-loader___13x-y{0%{-moz-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes spinner-loader___13x-y{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-loader___13x-y{0%{-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-loader___13x-y:not(:required){-moz-animation:spinner-loader___13x-y 1500ms infinite linear;-webkit-animation:spinner-loader___13x-y 1500ms infinite linear;animation:spinner-loader___13x-y 1500ms infinite linear;-moz-border-radius:0.5em;-webkit-border-radius:0.5em;border-radius:0.5em;-moz-box-shadow:rgba(0,0,51,0.3) 1.5em 0 0 0,rgba(0,0,51,0.3) 1.1em 1.1em 0 0,rgba(0,0,51,0.3) 0 1.5em 0 0,rgba(0,0,51,0.3) -1.1em 1.1em 0 0,rgba(0,0,51,0.3) -1.5em 0 0 0,rgba(0,0,51,0.3) -1.1em -1.1em 0 0,rgba(0,0,51,0.3) 0 -1.5em 0 0,rgba(0,0,51,0.3) 1.1em -1.1em 0 0;-webkit-box-shadow:rgba(0,0,51,0.3) 1.5em 0 0 0,rgba(0,0,51,0.3) 1.1em 1.1em 0 0,rgba(0,0,51,0.3) 0 1.5em 0 0,rgba(0,0,51,0.3) -1.1em 1.1em 0 0,rgba(0,0,51,0.3) -1.5em 0 0 0,rgba(0,0,51,0.3) -1.1em -1.1em 0 0,rgba(0,0,51,0.3) 0 -1.5em 0 0,rgba(0,0,51,0.3) 1.1em -1.1em 0 0;box-shadow:rgba(0,0,51,0.3) 1.5em 0 0 0,rgba(0,0,51,0.3) 1.1em 1.1em 0 0,rgba(0,0,51,0.3) 0 1.5em 0 0,rgba(0,0,51,0.3) -1.1em 1.1em 0 0,rgba(0,0,51,0.3) -1.5em 0 0 0,rgba(0,0,51,0.3) -1.1em -1.1em 0 0,rgba(0,0,51,0.3) 0 -1.5em 0 0,rgba(0,0,51,0.3) 1.1em -1.1em 0 0;display:inline-block;font-size:10px;width:1em;height:1em;margin:1.5em;overflow:hidden;text-indent:100%}.ant-select-item-option-content{text-overflow:clip;white-space:break-spaces}.bb-modal___1bRNU{width:640px !important;margin-top:40px}.bb-modal___1bRNU button span{color:#fff}.bb-modal___1bRNU .ant-modal-content{border-radius:5px}.bb-modal___1bRNU .ant-modal-body{padding:0}.bb-modal___1bRNU .ant-modal-body .ant-form-item-label label{color:#5C6370;font-size:13px}.bb-modal___1bRNU .ant-modal-body .ant-form-item-has-error .ant-select-selector{border:1px solid #eb4d3d}.bb-modal___1bRNU .ant-modal-body .ant-form-item-has-error .ant-input{border:1px solid #eb4d3d}.bb-modal___1bRNU .ant-modal-body .ant-input-textarea textarea{border:none;background-color:#f8f9fb !important;color:#000}.bb-modal___1bRNU .ant-select .ant-select-selector{height:48px;border:none;background-color:#f8f9fb;box-shadow:none !important;border-radius:4px}.bb-modal___1bRNU .ant-select .ant-select-selector .ant-select-selection-search input{height:45px}.bb-modal___1bRNU .ant-select .ant-select-selector .ant-select-selection-item:after{line-height:50px}.bb-modal___1bRNU .ant-modal-close{background-color:transparent}.bb-modal___1bRNU .ant-modal-close .ant-modal-close-x{font-size:22px}.bb-modal___1bRNU section h1{font-size:20px;font-weight:600;padding-bottom:6px;color:#fff}.bb-modal___1bRNU section h2{color:#fff;font-size:15px}.bb-modal___1bRNU section .header___17FTr{padding:0px 30px;background-size:cover !important;background-repeat:no-repeat !important;height:180px;display:flex;flex-direction:column;justify-content:center}.bb-modal___1bRNU section .header___17FTr h1{width:265px}.bb-modal___1bRNU section .header___17FTr h2{width:158px;font-weight:400}.bb-modal___1bRNU form{padding:30px}.bb-modal___1bRNU form .contactNumber___nnRAe .ant-form-item-explain{display:flex}.bb-modal___1bRNU form .contactNumber___nnRAe .ant-form-item-explain div:nth-of-type(2){padding-left:30px}.bb-modal___1bRNU form button{border:none;display:flex;flex-direction:column;align-items:center;justify-content:center;width:213px;height:48px;background-color:#051C2C;margin:auto;font-size:16px;margin-top:24px;border-radius:4px;font-weight:600}.bb-modal___1bRNU form button:hover{background-color:#051C2C}.bb-modal___1bRNU form button span{color:#fff}.bb-modal___1bRNU form p{color:#000;text-align:center;margin:0 0 24px}.bb-modal___1bRNU form .feedback___1GpRp{height:240px;display:flex;justify-content:center;align-items:center}.bb-modal___1bRNU form .feedback___1GpRp h3{font-size:16px;color:#00040c;font-weight:400;display:flex;align-items:flex-end}.bb-modal___1bRNU form .feedback___1GpRp h3 span{margin-right:4px}.bb-modal___1bRNU form .feedback___1GpRp h3 span svg{margin:0;width:14px;height:14px}.bb-modal___1bRNU form .input-group___3GoFg{width:100%}.bb-modal___1bRNU form input{height:48px;width:100%;border-radius:4px;font-size:16px;color:#000;text-align:left;border:transparent}.bb-modal___1bRNU form input::-webkit-input-placeholder{color:#000;font-size:16px;text-align:left}.bb-modal___1bRNU form input:-moz-placeholder{color:#000;font-size:16px;text-align:left}.bb-modal___1bRNU form input::-moz-placeholder{color:#000;font-size:16px;text-align:left}.bb-modal___1bRNU form input:-ms-input-placeholder{color:#000;font-size:16px;text-align:left}.bb-modal___1bRNU form input:last-of-type{background-color:#f8f9fb !important;color:#000}.bb-modal___1bRNU form .disclaimer___3uDe9 p{font-size:11px;color:#5C6370;text-align:left}.bb-modal___1bRNU form .disclaimer___3uDe9 p a{text-decoration:none;color:#0762C8;font-size:11px}@media only screen and (min-width: 768px){.bb-modal___1bRNU section h1{font-size:24px;font-weight:600;padding-bottom:6px;color:#fff}.bb-modal___1bRNU section h2{color:#fff;font-size:15px}.bb-modal___1bRNU section .header___17FTr{padding:0px 50px;background-size:contain !important;background-repeat:no-repeat !important;height:192px}.bb-modal___1bRNU section .header___17FTr h1{width:252px}.bb-modal___1bRNU section .header___17FTr h2{width:230px}.bb-modal___1bRNU form{padding:45px 50px}.bb-modal___1bRNU form button{width:213px;font-size:16px}.bb-modal___1bRNU form .disclaimer___3uDe9 p{font-size:12px}.bb-modal___1bRNU form .disclaimer___3uDe9 p a{font-size:12px}}@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape){section h2{color:#fff;font-size:15px}section .header___17FTr h2{width:250px !important}}@media only screen and (min-width: 1200px){.bb-modal___1bRNU section h1{font-size:24px;font-weight:600;padding-bottom:6px;color:#fff;line-height:33px}.bb-modal___1bRNU section h2{color:#fff;font-size:16px;line-height:23px}.bb-modal___1bRNU section .header___17FTr{padding:0px 55px;background-size:cover !important;background-repeat:no-repeat !important;height:183px}.bb-modal___1bRNU section .header___17FTr h1{width:286px}.bb-modal___1bRNU section .header___17FTr h2{width:265px}.bb-modal___1bRNU form{padding:55px}.bb-modal___1bRNU form button{width:213px;font-size:16px}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___27w81{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___13Z9W{width:100%;margin:0 auto}.full-width___234Sy{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___13Z9W{max-width:1440px;margin:0 auto;padding:0}.full-width___234Sy{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___1DhZk{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___1DhZk{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___1DhZk{padding:0 16px}}.btn-default___21XLG{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___21XLG:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___12LPt{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___12LPt:hover{color:#fff;background:#0045CA}.btn-dark___2vdjp{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___2vdjp:hover{color:#fff;background:#2C3444}.btn-dark2___36tgg{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___36tgg:hover{color:#fff;background:#2C3444}.btn-default2___2Nv0l{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___2Nv0l:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___Rg_tp{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}@-moz-keyframes spinner-loader___2FR25{0%{-moz-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes spinner-loader___2FR25{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-loader___2FR25{0%{-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-loader___2FR25:not(:required){-moz-animation:spinner-loader___2FR25 1500ms infinite linear;-webkit-animation:spinner-loader___2FR25 1500ms infinite linear;animation:spinner-loader___2FR25 1500ms infinite linear;-moz-border-radius:0.5em;-webkit-border-radius:0.5em;border-radius:0.5em;-moz-box-shadow:rgba(0,0,51,0.3) 1.5em 0 0 0,rgba(0,0,51,0.3) 1.1em 1.1em 0 0,rgba(0,0,51,0.3) 0 1.5em 0 0,rgba(0,0,51,0.3) -1.1em 1.1em 0 0,rgba(0,0,51,0.3) -1.5em 0 0 0,rgba(0,0,51,0.3) -1.1em -1.1em 0 0,rgba(0,0,51,0.3) 0 -1.5em 0 0,rgba(0,0,51,0.3) 1.1em -1.1em 0 0;-webkit-box-shadow:rgba(0,0,51,0.3) 1.5em 0 0 0,rgba(0,0,51,0.3) 1.1em 1.1em 0 0,rgba(0,0,51,0.3) 0 1.5em 0 0,rgba(0,0,51,0.3) -1.1em 1.1em 0 0,rgba(0,0,51,0.3) -1.5em 0 0 0,rgba(0,0,51,0.3) -1.1em -1.1em 0 0,rgba(0,0,51,0.3) 0 -1.5em 0 0,rgba(0,0,51,0.3) 1.1em -1.1em 0 0;box-shadow:rgba(0,0,51,0.3) 1.5em 0 0 0,rgba(0,0,51,0.3) 1.1em 1.1em 0 0,rgba(0,0,51,0.3) 0 1.5em 0 0,rgba(0,0,51,0.3) -1.1em 1.1em 0 0,rgba(0,0,51,0.3) -1.5em 0 0 0,rgba(0,0,51,0.3) -1.1em -1.1em 0 0,rgba(0,0,51,0.3) 0 -1.5em 0 0,rgba(0,0,51,0.3) 1.1em -1.1em 0 0;display:inline-block;font-size:10px;width:1em;height:1em;margin:1.5em;overflow:hidden;text-indent:100%}.see-benifits-modal-wrap___3hoqq{backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px)}.see-benifits-modal___1kZiV{width:calc(100% - 96px) !important;max-width:1400px}.see-benifits-modal___1kZiV button span{color:#fff}.see-benifits-modal___1kZiV.isready___3T0YY .ant-modal-content{background:none}.see-benifits-modal___1kZiV .ant-modal-content{border-radius:20px}.see-benifits-modal___1kZiV .ant-modal-body{padding:0;height:calc(56.28vw - 54px) !important;max-height:788px;border-radius:20px;overflow:hidden}.see-benifits-modal___1kZiV .ant-modal-body .ant-form-item-label label{color:#5C6370}.see-benifits-modal___1kZiV .ant-modal-body .ant-input-textarea textarea{border:none;background-color:#f8f9fb;color:#000}.see-benifits-modal___1kZiV .ant-modal-close{background-color:transparent}.see-benifits-modal___1kZiV .ant-modal-close .ant-modal-close-x{font-size:22px}.see-benifits-modal___1kZiV .icon-close___2hNOK{width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;background:#000;position:absolute;top:-68px;right:0}@media only screen and (max-width: 1200px){.see-benifits-modal___1kZiV{width:100% !important;max-width:100vw}.see-benifits-modal___1kZiV .ant-modal-content{border-radius:0}.see-benifits-modal___1kZiV .ant-modal-body{height:56.317vw !important;border-radius:0}.see-benifits-modal___1kZiV .icon-close___2hNOK{position:fixed;right:16px;top:16px}}@media only screen and (max-width: 768px){.see-benifits-modal___1kZiV .icon-close___2hNOK{width:36px;height:36px}.see-benifits-modal___1kZiV .icon-close___2hNOK .pic___2HwkF{width:18px}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___1vfDn{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___1NGGo{width:100%;margin:0 auto}.full-width___1WE6s{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___1NGGo{max-width:1440px;margin:0 auto;padding:0}.full-width___1WE6s{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___2QDV3{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___2QDV3{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___2QDV3{padding:0 16px}}.btn-default___2e5-G{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___2e5-G:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___1-qxL{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___1-qxL:hover{color:#fff;background:#0045CA}.btn-dark___2y7hB{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___2y7hB:hover{color:#fff;background:#2C3444}.btn-dark2___2blDJ{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___2blDJ:hover{color:#fff;background:#2C3444}.btn-default2___3YlS5{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___3YlS5:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___2BlCM{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.button___39tL1{width:100%;height:48px;margin:0;border-radius:4px;font-size:16px;line-height:24px;font-weight:500;display:flex;align-items:center;justify-content:center;text-decoration:none}.button___39tL1 span{margin:0 5px 0 0;display:flex;justify-content:center;align-items:center}.button___39tL1:hover{color:#fff}.solid___1OjTn{background-color:#004eff;color:#fff;border:none}.outline___3B657{background-color:#fff;color:#004eff;border:1px solid #004eff}.outline___3B657:hover{color:#004eff}.invert___3SfYZ{background-color:#004eff;color:#fff;border:1px solid #fff}.solid-green___3kk_X{background-color:#3be4c1;color:#fff;border:none}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___2AsBB{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___1I-qS{width:100%;margin:0 auto}.full-width___354NX{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___1I-qS{max-width:1440px;margin:0 auto;padding:0}.full-width___354NX{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___3RTGX{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___3RTGX{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___3RTGX{padding:0 16px}}.btn-default___28vMD{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___28vMD:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___3VHrY{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___3VHrY:hover{color:#fff;background:#0045CA}.btn-dark___2VhnC{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___2VhnC:hover{color:#fff;background:#2C3444}.btn-dark2___ofUeR{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___ofUeR:hover{color:#fff;background:#2C3444}.btn-default2___1nq4i{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___1nq4i:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___1ohQX{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.card___3_Tfl{margin:0 0 20px 0}.card___3_Tfl .heading-wrapper___2blce{display:flex;align-items:center;padding-bottom:4px;margin-bottom:10px;border-bottom:1px solid #8e96a6}.card___3_Tfl .heading-wrapper___2blce .icon-wrapper___Cd4Qm{width:17px;height:17px;display:flex;justify-content:center;align-items:center;margin:0 5px 0 0;flex-shrink:0}.card___3_Tfl .heading-wrapper___2blce .icon-wrapper___Cd4Qm img{width:100%;height:100%}.card___3_Tfl .heading-wrapper___2blce h2{font-size:16px;line-height:30px;font-weight:700}.card___3_Tfl p{margin-bottom:18px}.card___3_Tfl p:last-of-type{margin-bottom:0}

@font-face{{font-family:'swiper-icons';src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");font-weight:400;font-style:normal}}:root{--swiper-theme-color: #007aff}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px, 0, 0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform, height}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-wrapper,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-cube-shadow{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-slide-shadow-bottom{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left, rgba(0,0,0,0.5), rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___1_0on{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___3TkU0{width:100%;margin:0 auto}.full-width___1wqmA{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___3TkU0{max-width:1440px;margin:0 auto;padding:0}.full-width___1wqmA{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___3FlIC{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___3FlIC{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___3FlIC{padding:0 16px}}.btn-default___w0AOH{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___w0AOH:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___3edDb{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___3edDb:hover{color:#fff;background:#0045CA}.btn-dark___45W3t{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___45W3t:hover{color:#fff;background:#2C3444}.btn-dark2___3_eRj{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___3_eRj:hover{color:#fff;background:#2C3444}.btn-default2___37SA6{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___37SA6:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___s_PkO{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.desktop-faq___3ZYro{padding:24px 80px 47px;box-shadow:0 -4px 4px 2px rgba(0,0,0,0.05);display:flex}.desktop-faq___3ZYro .faq-banner-wrapper___3nOoJ{width:50%}.desktop-faq___3ZYro .faq-banner-wrapper___3nOoJ .faq-banner___38BiY{display:block;width:580px;height:580px}.desktop-faq___3ZYro .faq-banner-wrapper___3nOoJ .faq-banner___38BiY img{width:100%;height:100%;object-fit:contain}.desktop-faq___3ZYro .faq-accordion-wrapper___1b9Ba{width:50%}.desktop-faq___3ZYro .faq-accordion-wrapper___1b9Ba h2{font-size:36px;margin-bottom:40px;margin-top:40px}.desktop-faq___3ZYro .faq-accordion-wrapper___1b9Ba .ant-collapse{background-color:inherit;border:none}.desktop-faq___3ZYro .faq-accordion-wrapper___1b9Ba .ant-collapse .ant-collapse-item{border-bottom:1px solid #00040c}.desktop-faq___3ZYro .faq-accordion-wrapper___1b9Ba .ant-collapse .ant-collapse-item .ant-collapse-header{border:none;padding:20px 0;font-weight:700;color:#00040c}.desktop-faq___3ZYro .faq-accordion-wrapper___1b9Ba .ant-collapse .ant-collapse-item .ant-collapse-header h3{font-size:20px;width:90%}.desktop-faq___3ZYro .faq-accordion-wrapper___1b9Ba .ant-collapse .ant-collapse-content{background-color:inherit;border:none}.desktop-faq___3ZYro .faq-accordion-wrapper___1b9Ba .ant-collapse .ant-collapse-content .ant-collapse-content-box{padding:0 0 12px}.desktop-faq___3ZYro .faq-accordion-wrapper___1b9Ba .ant-collapse .ant-collapse-content .ant-collapse-content-box p{text-align:left;margin:0 0 12px 0;font-size:20px}.desktop-faq___3ZYro .faq-accordion-wrapper___1b9Ba .ant-collapse .ant-collapse-content .ant-collapse-content-box li{font-size:20px}.desktop-faq___3ZYro .faq-accordion-wrapper___1b9Ba .ant-collapse .ant-collapse-content .ant-collapse-content-box a{color:#004eff}.desktop-faq___3ZYro .faq-accordion-wrapper___1b9Ba .ant-collapse .ant-collapse-content .ant-collapse-content-box ul{list-style-type:'- ';list-style-position:inside}.desktop-faq___3ZYro .faq-accordion-wrapper___1b9Ba .ant-collapse .ant-collapse-content .ant-collapse-content-box ul li{margin-bottom:10px}.desktop-faq___3ZYro .faq-accordion-wrapper___1b9Ba .ant-collapse .ant-collapse-content .ant-collapse-content-box ul li p{display:inline}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___3dbz_{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___25jvK{width:100%;margin:0 auto}.full-width___3OMN4{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___25jvK{max-width:1440px;margin:0 auto;padding:0}.full-width___3OMN4{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___10B3W{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___10B3W{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___10B3W{padding:0 16px}}.btn-default___36xyl{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___36xyl:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___2Uk8F{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___2Uk8F:hover{color:#fff;background:#0045CA}.btn-dark___3gkKX{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___3gkKX:hover{color:#fff;background:#2C3444}.btn-dark2___3Xtha{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___3Xtha:hover{color:#fff;background:#2C3444}.btn-default2___owd47{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___owd47:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___39JBs{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.aside___1DZ9g{box-shadow:0px -5px 16px 0px rgba(0,0,0,0.2);width:100%;padding:16px 12px;background-color:#00040c;display:flex;position:fixed;left:0;bottom:0;z-index:20}.aside___1DZ9g.visible___bOeNR{display:flex}.aside___1DZ9g.hidden___2jlmw{display:none}.aside___1DZ9g nav{display:flex;align-items:center;justify-content:space-between;width:100%}.aside___1DZ9g nav .button-link___2TFhV{width:114px;height:44px;margin-right:14px}.aside___1DZ9g nav .image-container___37aJ3{width:124px}.aside___1DZ9g nav .image-container___37aJ3 img{height:44px;width:auto}.aside___1DZ9g button{border:none;background-color:transparent;padding:0;margin:0;display:flex;align-items:flex-start;justify-content:flex-end;position:relative;top:2px;right:2px;height:14px}.aside___1DZ9g button svg{width:14px;height:14px}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___2eIeW{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___2sDTI{width:100%;margin:0 auto}.full-width___1wxY_{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___2sDTI{max-width:1440px;margin:0 auto;padding:0}.full-width___1wxY_{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___3emE8{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___3emE8{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___3emE8{padding:0 16px}}.btn-default___3IQrz{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___3IQrz:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___18imF{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___18imF:hover{color:#fff;background:#0045CA}.btn-dark___mwd4V{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___mwd4V:hover{color:#fff;background:#2C3444}.btn-dark2___3kFO_{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___3kFO_:hover{color:#fff;background:#2C3444}.btn-default2___HBap7{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___HBap7:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___3dixg{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.card-redesigned___2YNri{position:relative;overflow:hidden;width:100%;min-height:526px;display:flex;flex-direction:column;padding-bottom:12px;background-color:#f8f9fb;border-radius:4px}.card-redesigned___2YNri section.top___1RoR-{padding:0;display:flex;flex-direction:column;justify-content:center;align-items:center;padding-bottom:36px}.card-redesigned___2YNri section.top___1RoR- .banner-container___1XfKL{height:225px;width:100%;overflow:hidden;position:relative}.card-redesigned___2YNri section.top___1RoR- .banner-container___1XfKL img{object-fit:cover;object-position:center;width:100%;height:100%}.card-redesigned___2YNri section.top___1RoR- .banner-container___1XfKL .tags___AKwg9{position:relative}.card-redesigned___2YNri section.top___1RoR- .banner-container___1XfKL svg{position:absolute;bottom:0;left:0}.card-redesigned___2YNri section.top___1RoR- .banner-container___1XfKL>h3{position:absolute;bottom:15px;right:15px;font-size:10px;font-weight:700;padding:4px 10px;border-radius:4px;color:#fff;background-color:#3be4c1}.card-redesigned___2YNri section.top___1RoR- .tags___AKwg9{position:absolute;top:24px;left:24px;display:flex;justify-content:center;align-items:center;margin-bottom:10px}.card-redesigned___2YNri section.top___1RoR- .tags___AKwg9 span.tag___1viWz{color:#fff;background-color:#8e96a6;font-size:10px;font-weight:600;line-height:1.5;padding:6px 12px;border-radius:4px;margin:0 11px 0 0;text-align:center}.card-redesigned___2YNri section.top___1RoR- .tags___AKwg9 span:last-of-type.tag___1viWz{background-color:#fff;color:#8e96a6}.card-redesigned___2YNri section.top___1RoR- .logo-container___3-GCl{width:60px;height:60px;background-color:white;border-radius:200px;position:absolute;top:190px;left:24px}.card-redesigned___2YNri section.top___1RoR- .logo-container___3-GCl img{object-fit:contain;width:100%;height:auto;border-radius:200px;border:1px solid #e2e8f0}.card-redesigned___2YNri section.bottom___2yV91{padding:0;align-items:left}.card-redesigned___2YNri section.bottom___2yV91 h3{font-size:21px;font-weight:700;text-align:left;padding:0 20px}.card-redesigned___2YNri section.bottom___2yV91 h4{font-size:16px;text-align:left;padding:0 20px;line-height:32px}.card-redesigned___2YNri section.bottom___2yV91 .description___3Hzf1{margin:14px 0;width:100%;padding:0}.card-redesigned___2YNri section.bottom___2yV91 .description___3Hzf1 h4{font-size:11px;padding:0 20px;margin-bottom:10px;font-weight:400;text-align:left;line-height:initial}.card-redesigned___2YNri section.bottom___2yV91 .description___3Hzf1 h5{font-size:10px;padding:0 20px;color:gray;line-height:initial;text-align:left}.card-redesigned___2YNri section.bottom___2yV91 .fee___VyOc1{position:absolute;top:330px}.card-redesigned___2YNri section.bottom___2yV91 .fee___VyOc1 h5{color:#808080;font-size:14px;text-align:left}.card-redesigned___2YNri section.bottom___2yV91 .fee___VyOc1 h5 span{color:#000000}.card-redesigned___2YNri section.bottom___2yV91 .how-to-start-description___3GfBX{position:absolute;top:370px}.card-redesigned___2YNri section.bottom___2yV91 .how-to-start-description___3GfBX p{font-size:11px;text-align:left !important;padding:0 24px !important;width:100% !important;line-height:20px}.card-redesigned___2YNri section.bottom___2yV91 .full-name-spacer___2LluT{height:26px}.card-redesigned___2YNri section.bottom___2yV91 .metric-container___1rIbH{width:100%;margin:0 auto;display:flex;flex-direction:column;position:absolute;align-items:center;top:424px}.card-redesigned___2YNri section.bottom___2yV91 .metric-container___1rIbH .financial-info___1lA1v{width:calc(100% - 40px);margin:10px auto;display:flex;justify-content:space-between}.card-redesigned___2YNri section.bottom___2yV91 .metric-container___1rIbH .financial-info___1lA1v div{width:calc(50% - 10px);flex-direction:column}.card-redesigned___2YNri section.bottom___2yV91 .metric-container___1rIbH .financial-info___1lA1v div.single-metric___zc0F5{width:100%;text-align:center}.card-redesigned___2YNri section.bottom___2yV91 .metric-container___1rIbH .financial-info___1lA1v div p{font-size:12px;font-weight:700;color:gray;line-height:1.1}.card-redesigned___2YNri section.bottom___2yV91 .metric-container___1rIbH .financial-info___1lA1v div p:nth-of-type(2){font-size:13px;font-weight:700;line-height:1.1;font-weight:700;color:#00040c}.card-redesigned___2YNri section.bottom___2yV91 .metric-container___1rIbH .financial-info___1lA1v div hr{background-color:#b3b3b3;height:1px;border:none;margin:4px 0}.card-redesigned___2YNri section.bottom___2yV91 .metric-container___1rIbH h5{font-size:10px;padding:0 20px;color:gray;line-height:initial;text-align:left}.card-redesigned___2YNri section.bottom___2yV91 h5{text-align:center;color:gray;font-size:8px;padding:0 24px}@media only screen and (min-width: 992px){.card-redesigned___2YNri{min-width:375px;width:375px;min-height:526px}.card-redesigned___2YNri section.top___1RoR- .description___3Hzf1{display:block}}@media only screen and (max-width: 347px){.card-redesigned___2YNri{min-width:100%;width:100%}.card-redesigned___2YNri section.bottom___2yV91 .description___3Hzf1 h5{display:none}.card-redesigned___2YNri section.bottom___2yV91 .metric-container___1rIbH>.financial-info___1lA1v>div>p{font-size:11px}}

.swiper-pagination{position:absolute;text-align:center;transition:300ms opacity;transform:translate3d(0, 0, 0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-fraction,.swiper-pagination-custom,.swiper-container-horizontal>.swiper-pagination-bullets{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(0.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(0.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(0.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(0.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(0.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:0.2}.swiper-pagination-bullet button{border:none;margin:0;padding:0;box-shadow:none;appearance:none}.swiper-pagination-clickable___2Wbbs .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:var(--swiper-pagination-color, var(--swiper-theme-color))}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px, -50%, 0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:200ms transform, 200ms top}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:200ms transform, 200ms left}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:200ms transform, 200ms right}.swiper-pagination-white{--swiper-pagination-color: #fff}.swiper-pagination-black{--swiper-pagination-color: #000}.swiper-pagination-lock{display:none}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___29Wih{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___acX-c{width:100%;margin:0 auto}.full-width___3Vipc{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___acX-c{max-width:1440px;margin:0 auto;padding:0}.full-width___3Vipc{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___1XZMI{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___1XZMI{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___1XZMI{padding:0 16px}}.btn-default___3db3W{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___3db3W:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___3AQZV{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___3AQZV:hover{color:#fff;background:#0045CA}.btn-dark___3GW5J{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___3GW5J:hover{color:#fff;background:#2C3444}.btn-dark2___k-ErN{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___k-ErN:hover{color:#fff;background:#2C3444}.btn-default2___2eoVg{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___2eoVg:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter____oCkG{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.card___uv8XO{box-shadow:0 0 5px 4px rgba(0,0,0,0.1);border-radius:4px 4px 0 0;position:relative;overflow:hidden;max-width:300px;min-height:441px;display:flex;flex-direction:column;justify-content:space-between;padding-bottom:12px}.card___uv8XO section.top___3MYGJ{padding:0;display:flex;flex-direction:column;justify-content:center;align-items:center}.card___uv8XO section.top___3MYGJ .banner-container___1Kci0{border-bottom:2px solid #fff;height:146px;width:100%;overflow:hidden;position:relative}.card___uv8XO section.top___3MYGJ .banner-container___1Kci0 img{object-fit:cover;object-position:top;width:100%;height:100%}.card___uv8XO section.top___3MYGJ .banner-container___1Kci0 svg{position:absolute;bottom:0;left:0}.card___uv8XO section.top___3MYGJ .banner-container___1Kci0>h3{position:absolute;top:15px;left:15px;font-size:10px;font-weight:400;padding:4px 10px;border-radius:4px;color:#fff;background-color:#3be4c1}.card___uv8XO section.top___3MYGJ h3{font-size:21px;text-align:center;padding:0 8px}.card___uv8XO section.top___3MYGJ h4{font-size:16px;text-align:center;padding:0 20px}.card___uv8XO section.top___3MYGJ .full-name-spacer___xLwl6{height:26px}.card___uv8XO section.top___3MYGJ .financial-info___1AfXO{width:calc(100% - 40px);margin:10px auto;display:flex;justify-content:space-between}.card___uv8XO section.top___3MYGJ .financial-info___1AfXO div{width:calc(50% - 10px);flex-direction:column}.card___uv8XO section.top___3MYGJ .financial-info___1AfXO div.single-metric___pxmBl{width:100%;text-align:center}.card___uv8XO section.top___3MYGJ .financial-info___1AfXO div p{font-size:12px;font-weight:700;color:gray;line-height:1.1}.card___uv8XO section.top___3MYGJ .financial-info___1AfXO div p:nth-of-type(2){font-size:13px;font-weight:700;line-height:1.1;font-weight:700;color:#00040c}.card___uv8XO section.top___3MYGJ .financial-info___1AfXO div hr{background-color:#b3b3b3;height:1px;border:none;margin:4px 0}.card___uv8XO section.top___3MYGJ table.financial-info___1AfXO{width:90%;margin-bottom:10px}.card___uv8XO section.top___3MYGJ table.financial-info___1AfXO tr{width:100%}.card___uv8XO section.top___3MYGJ table.financial-info___1AfXO tr th{font-size:12px;font-weight:700;color:gray;line-height:2;width:50%}.card___uv8XO section.top___3MYGJ table.financial-info___1AfXO tr th span{width:100%;display:inline-block;border-bottom:1px solid gray;margin:0;width:90%}.card___uv8XO section.top___3MYGJ table.financial-info___1AfXO tr td{font-size:13px;font-weight:700;line-height:1.3;font-weight:700;vertical-align:text-top}.card___uv8XO section.top___3MYGJ table.financial-info___1AfXO tr:last-of-type td{padding-top:4px}.card___uv8XO section.top___3MYGJ .description___3-8XZ{margin-bottom:14px;width:100%}.card___uv8XO section.top___3MYGJ .description___3-8XZ h4{font-size:11px;padding:0 20px;margin-bottom:10px;font-weight:400;text-align:left}.card___uv8XO section.top___3MYGJ .description___3-8XZ h5{font-size:10px;padding:0 20px;color:gray}.card___uv8XO section.bottom___1H71A{padding:0}.card___uv8XO section.bottom___1H71A .tags___3dK19{display:flex;justify-content:center;align-items:center;margin-bottom:10px}.card___uv8XO section.bottom___1H71A .tags___3dK19 span.tag___2ZwFl{color:#fff;background-color:gray;font-size:10px;font-weight:600;line-height:1.5;padding:6px 12px;border-radius:4px;margin:0 11px 0 0;text-align:center}.card___uv8XO section.bottom___1H71A .tags___3dK19 span:last-of-type.tag___2ZwFl{background-color:#fff;color:gray;border:1px solid gray}.card___uv8XO section.bottom___1H71A h5{text-align:center;color:gray;font-size:8px;padding:0 24px}@media only screen and (min-width: 992px){.card___uv8XO{min-height:380px}.card___uv8XO section.top___3MYGJ .description___3-8XZ{display:block}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___1J5xq{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___2IVzC{width:100%;margin:0 auto}.full-width___1HuBo{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___2IVzC{max-width:1440px;margin:0 auto;padding:0}.full-width___1HuBo{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___1E7uC{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___1E7uC{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___1E7uC{padding:0 16px}}.btn-default___TS1Al{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___TS1Al:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___1ginZ{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___1ginZ:hover{color:#fff;background:#0045CA}.btn-dark___VQz14{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___VQz14:hover{color:#fff;background:#2C3444}.btn-dark2___1EACF{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___1EACF:hover{color:#fff;background:#2C3444}.btn-default2___1PzHm{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___1PzHm:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___1urTE{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.quote___1mle7 .speech-bubble___31zhm{display:flex;margin:16px}.quote___1mle7 .speech-bubble___31zhm span{left:20px;background-color:#fff}.quote___1mle7 .speech-bubble___31zhm p{text-align:center;font-style:italic;font-size:16px;margin:0 16px}.quote___1mle7 .speech-bubble___31zhm .image-container___36OMf{position:absolute;bottom:-72px;right:4.5px;width:95px;height:95px;border:5px solid #fff;border-radius:999px;overflow:hidden}.quote___1mle7 .speech-bubble___31zhm .image-container___36OMf img{width:100%;height:100%;object-fit:cover;object-position:center}.quote___1mle7 .source___3kjEX{margin:16px 0;padding-bottom:28px;width:100%}.quote___1mle7 .source___3kjEX p{font-size:16px;color:#004eff;text-align:center}@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___1J5xq{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___2IVzC{width:100%;margin:0 auto}.full-width___1HuBo{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___2IVzC{max-width:1440px;margin:0 auto;padding:0}.full-width___1HuBo{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___1E7uC{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___1E7uC{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___1E7uC{padding:0 16px}}.btn-default___TS1Al{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___TS1Al:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___1ginZ{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___1ginZ:hover{color:#fff;background:#0045CA}.btn-dark___VQz14{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___VQz14:hover{color:#fff;background:#2C3444}.btn-dark2___1EACF{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___1EACF:hover{color:#fff;background:#2C3444}.btn-default2___1PzHm{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___1PzHm:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___1urTE{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}@media only screen and (min-width: 992px){.quote___1mle7 .speech-bubble___31zhm{margin:0 20px}.quote___1mle7 .speech-bubble___31zhm p{font-size:20px}.quote___1mle7 .source___3kjEX p{font-size:20px}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___1BRYH{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___2ywez{width:100%;margin:0 auto}.full-width___2DUlX{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___2ywez{max-width:1440px;margin:0 auto;padding:0}.full-width___2DUlX{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___1Fey9{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___1Fey9{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___1Fey9{padding:0 16px}}.btn-default___3OniC{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___3OniC:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___2tIEY{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___2tIEY:hover{color:#fff;background:#0045CA}.btn-dark___2Z_Wm{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___2Z_Wm:hover{color:#fff;background:#2C3444}.btn-dark2___3MSyC{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___3MSyC:hover{color:#fff;background:#2C3444}.btn-default2___1xbyN{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___1xbyN:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___Yza4Q{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.read-next___3SXrG{padding:20px 24px;display:flex;flex-direction:column;justify-content:center;align-items:center}.read-next___3SXrG h2{font-size:36px;line-height:30px;font-weight:700;margin-bottom:20px;text-align:center}.read-next___3SXrG .readNextRow___1egWk{display:flex;justify-content:center;align-items:center}.read-next___3SXrG .readNextRow___1egWk .call-to-action___2co2S{width:300px;margin-bottom:10px}.read-next___3SXrG .readNextRow___1egWk .call-to-action___2co2S:hover{color:#6695ff}.read-next___3SXrG .icon-container___2piy_{height:20px;width:auto;display:flex;justify-content:center;align-items:center;margin:0 12px 0 0}.read-next___3SXrG .icon-container___2piy_ img{width:100%;height:100%}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___3gBwD{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___1UOk8{width:100%;margin:0 auto}.full-width___CEuWm{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___1UOk8{max-width:1440px;margin:0 auto;padding:0}.full-width___CEuWm{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___3Wmoa{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___3Wmoa{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___3Wmoa{padding:0 16px}}.btn-default___1qvWQ{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___1qvWQ:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___3524Y{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___3524Y:hover{color:#fff;background:#0045CA}.btn-dark___3wahb{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___3wahb:hover{color:#fff;background:#2C3444}.btn-dark2___3UjUt{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___3UjUt:hover{color:#fff;background:#2C3444}.btn-default2___3N2Op{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___3N2Op:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___3xeZ3{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.ready-to-invest___12VA5{padding:36px 24px 0 !important;background-position:bottom;background-size:cover;background-repeat:no-repeat}.ready-to-invest___12VA5 .heading___1TAGb{font-size:24px;font-weight:700;text-align:center;padding-bottom:9px}.ready-to-invest___12VA5 .subheading___3lFVg{text-align:center;font-size:16px;font-weight:400;margin-bottom:40px}.ready-to-invest___12VA5 .investor-cards___2JyDt{width:100%;display:flex;flex-direction:column;justify-content:center}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF{background-color:transparent;width:100%;padding:0;margin-bottom:40px;border-radius:4px;display:flex;flex-direction:column;justify-content:space-between}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF .heading-container___FwMMr{display:flex;justify-content:center;align-items:flex-end;margin:0 0 20px 0}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF .heading-container___FwMMr .icon-container___iFDsR{width:60px;height:auto;flex-shrink:0}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF .heading-container___FwMMr .icon-container___iFDsR img{width:100%;height:auto}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF .heading-container___FwMMr h3{font-size:28px;font-weight:700;line-height:1.2;text-align:center;margin:0 0 0 10px}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF ul{list-style:none;padding:0;margin:0 0 20px 0}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF ul li{display:flex;justify-content:flex-start;align-items:flex-start;margin:0 0 4px 0}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF ul li span{display:flex;justify-content:center;align-items:center;flex-shrink:0;width:14px;height:14px;margin:4px 8px 0 0}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF ul li h4{font-size:18px;font-weight:400;line-height:24px}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF ul li.criteria-or___3l64t{font-size:18px;font-weight:400;margin-left:22px}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF .cta-ready-to-invest___1y-sM{width:100%;margin:0 auto}.ready-to-invest___12VA5 .cta-institutional-investor___Z-IGc{text-align:center;font-size:20px;font-weight:400}.ready-to-invest___12VA5 .cta-institutional-investor___Z-IGc a{font-size:20px;font-weight:400;margin-left:4px;color:#004eff}.ready-to-invest___12VA5 .cta-learn-more___uHqeP{width:100%;margin:0 auto;background-color:#004eff;color:#ffffff;border:none;height:48px;border-radius:4px;font-size:16px;line-height:24px;font-weight:500;display:flex;align-items:center;justify-content:center;text-decoration:none}@media only screen and (min-width: 992px){.ready-to-invest___12VA5{padding:68px 0 36px !important;background-position:center;background-size:cover;background-repeat:no-repeat}.ready-to-invest___12VA5 .heading___1TAGb{font-size:48px;font-weight:700;text-align:center;padding-bottom:16px}.ready-to-invest___12VA5 .subheading___3lFVg{text-align:center;font-size:20px;font-weight:400;margin-bottom:40px}.ready-to-invest___12VA5 .investor-cards___2JyDt{display:flex;flex-direction:row;justify-content:center;margin-bottom:0}.ready-to-invest___12VA5 .investor-cards___2JyDt>div:nth-of-type(1){margin-right:72px}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF{background-color:#fff;width:497px;padding:40px 60px;margin-bottom:40px;border-radius:4px;display:flex;flex-direction:column;justify-content:space-between}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF .heading-container___FwMMr{display:flex;justify-content:center;align-items:flex-end;margin:0 0 20px 0}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF .heading-container___FwMMr .icon-container___iFDsR{width:60px;height:auto;flex-shrink:0}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF .heading-container___FwMMr .icon-container___iFDsR img{width:100%;height:auto}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF .heading-container___FwMMr h3{font-size:28px;font-weight:700;line-height:1.2;text-align:center;margin:0 0 0 10px}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF ul{list-style:none;padding:0;margin:0 0 20px 0}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF ul li{display:flex;justify-content:flex-start;align-items:flex-start;margin:0 0 4px 0}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF ul li span{display:flex;justify-content:center;align-items:center;flex-shrink:0;width:14px;height:14px;margin:4px 8px 0 0}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF ul li h4{font-size:18px;font-weight:400;line-height:24px}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF ul li.criteria-or___3l64t{font-size:18px;font-weight:400;margin-left:22px}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF .cta-ready-to-invest___1y-sM{width:200px;margin:0 auto}.ready-to-invest___12VA5 .investor-cards___2JyDt .card-investor___3pMoF .cta-learn-more___uHqeP{width:200px;margin:0 auto;background-color:#004eff;color:#ffffff;border:none;height:48px;border-radius:4px;font-size:16px;line-height:24px;font-weight:500;display:flex;align-items:center;justify-content:center;text-decoration:none}.ready-to-invest___12VA5 .cta-institutional-investor___Z-IGc{text-align:center;font-size:20px;font-weight:400}.ready-to-invest___12VA5 .cta-institutional-investor___Z-IGc a{font-size:20px;font-weight:400;margin-left:4px;color:#004eff}.ready-to-invest___12VA5 .cta-learn-more___uHqeP{width:100%;margin:0 auto;background-color:#004eff;color:#ffffff;border:none;height:48px;border-radius:4px;font-size:16px;line-height:24px;font-weight:500;display:flex;align-items:center;justify-content:center;text-decoration:none}}@media only screen and (min-width: 992px){.ready-to-invest___12VA5{padding:0;background-position:center;background-size:cover;background-repeat:no-repeat}.ready-to-invest___12VA5 .full-width-image___1YJck{width:100%;position:relative;z-index:-30;height:fit-content;min-height:620px}.ready-to-invest___12VA5 .full-width-image___1YJck img{height:auto;position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover}.ready-to-invest___12VA5 .content-container___PEA9Z{position:absolute;top:0;height:100%;width:100%}.ready-to-invest___12VA5 .content-container___PEA9Z .heading___1TAGb{font-size:48px;font-weight:700;text-align:center;padding-bottom:16px;padding-top:60px}.ready-to-invest___12VA5 .content-container___PEA9Z .subheading___3lFVg{text-align:center;font-size:20px;font-weight:400;margin-bottom:40px}.ready-to-invest___12VA5 .content-container___PEA9Z .investor-cards___2JyDt{display:flex;flex-direction:row;justify-content:center;margin-bottom:0}.ready-to-invest___12VA5 .content-container___PEA9Z .investor-cards___2JyDt>div:nth-of-type(1){margin-right:72px}.ready-to-invest___12VA5 .content-container___PEA9Z .investor-cards___2JyDt .card-investor___3pMoF{background-color:#fff;width:497px;padding:40px 60px;margin-bottom:40px;border-radius:4px;display:flex;flex-direction:column;justify-content:space-between}.ready-to-invest___12VA5 .content-container___PEA9Z .investor-cards___2JyDt .card-investor___3pMoF .heading-container___FwMMr{display:flex;justify-content:center;align-items:flex-end;margin:0 auto 20px}.ready-to-invest___12VA5 .content-container___PEA9Z .investor-cards___2JyDt .card-investor___3pMoF .heading-container___FwMMr div{width:100%}.ready-to-invest___12VA5 .content-container___PEA9Z .investor-cards___2JyDt .card-investor___3pMoF .heading-container___FwMMr .icon-container___iFDsR{width:60px;height:auto;flex-shrink:0}.ready-to-invest___12VA5 .content-container___PEA9Z .investor-cards___2JyDt .card-investor___3pMoF .heading-container___FwMMr .icon-container___iFDsR img{width:100%;height:auto}.ready-to-invest___12VA5 .content-container___PEA9Z .investor-cards___2JyDt .card-investor___3pMoF .heading-container___FwMMr h3{font-size:28px;font-weight:700;line-height:1.2;text-align:center}.ready-to-invest___12VA5 .content-container___PEA9Z .investor-cards___2JyDt .card-investor___3pMoF ul{list-style:none;padding:0;margin:0 0 20px 0}.ready-to-invest___12VA5 .content-container___PEA9Z .investor-cards___2JyDt .card-investor___3pMoF ul li{display:flex;justify-content:flex-start;align-items:flex-start;margin:0 0 4px 0}.ready-to-invest___12VA5 .content-container___PEA9Z .investor-cards___2JyDt .card-investor___3pMoF ul li span{display:flex;justify-content:center;align-items:center;flex-shrink:0;width:14px;height:14px;margin:4px 8px 0 0}.ready-to-invest___12VA5 .content-container___PEA9Z .investor-cards___2JyDt .card-investor___3pMoF ul li h4{font-size:18px;font-weight:400;line-height:24px}.ready-to-invest___12VA5 .content-container___PEA9Z .investor-cards___2JyDt .card-investor___3pMoF ul li.criteria-or___3l64t{font-size:18px;font-weight:400;margin-left:22px}.ready-to-invest___12VA5 .content-container___PEA9Z .investor-cards___2JyDt .card-investor___3pMoF .cta-ready-to-invest___1y-sM{width:200px;margin:0 auto}.ready-to-invest___12VA5 .content-container___PEA9Z .investor-cards___2JyDt .card-investor___3pMoF .cta-learn-more___uHqeP{width:200px;margin:0 auto;background-color:#004eff;color:#ffffff;border:none;height:48px;border-radius:4px;font-size:16px;line-height:24px;font-weight:500;display:flex;align-items:center;justify-content:center;text-decoration:none}.ready-to-invest___12VA5 .content-container___PEA9Z .cta-institutional-investor___Z-IGc{text-align:center;font-size:20px;font-weight:400}.ready-to-invest___12VA5 .content-container___PEA9Z .cta-institutional-investor___Z-IGc a{font-size:20px;font-weight:400;margin-left:4px;color:#004eff}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___2G0mS{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___2sO3R{width:100%;margin:0 auto}.full-width___ByTmI{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___2sO3R{max-width:1440px;margin:0 auto;padding:0}.full-width___ByTmI{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___1O2DP{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___1O2DP{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___1O2DP{padding:0 16px}}.btn-default___1BsZm{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___1BsZm:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___2q3jQ{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___2q3jQ:hover{color:#fff;background:#0045CA}.btn-dark___2iVjf{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___2iVjf:hover{color:#fff;background:#2C3444}.btn-dark2___2YnOz{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___2YnOz:hover{color:#fff;background:#2C3444}.btn-default2___3bfLL{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___3bfLL:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___2RcPp{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.ready-to-invest___2dSEN{box-shadow:0 -4px 4px 2px rgba(0,0,0,0.05);padding:46px 80px}.ready-to-invest___2dSEN .heading___8L9ej{font-size:36px;text-align:center;padding-bottom:16px}.ready-to-invest___2dSEN .subheading___2mF2l{text-align:center;font-size:20px;font-weight:400;margin-bottom:40px}.ready-to-invest___2dSEN .investor-cards___1Y28-{display:flex;justify-content:center;margin-bottom:40px}.ready-to-invest___2dSEN .investor-cards___1Y28->div:nth-of-type(1){margin-right:72px}.ready-to-invest___2dSEN .investor-cards___1Y28- .card-investor___25DWW{width:497px;padding:40px 60px 40px;border-radius:4px;box-shadow:0px 0px 10px rgba(0,0,0,0.25);display:flex;flex-direction:column;justify-content:space-between}.ready-to-invest___2dSEN .investor-cards___1Y28- .card-investor___25DWW .heading-container___3qaU0{display:flex;justify-content:flex-start;align-items:flex-end;margin:0 0 20px 0}.ready-to-invest___2dSEN .investor-cards___1Y28- .card-investor___25DWW .heading-container___3qaU0 .icon-container___C27G4{width:60px;height:auto;flex-shrink:0}.ready-to-invest___2dSEN .investor-cards___1Y28- .card-investor___25DWW .heading-container___3qaU0 .icon-container___C27G4 img{width:100%;height:auto}.ready-to-invest___2dSEN .investor-cards___1Y28- .card-investor___25DWW .heading-container___3qaU0 h3{font-size:28px;font-weight:700;line-height:1.2;text-align:left;margin:0 0 0 10px}.ready-to-invest___2dSEN .investor-cards___1Y28- .card-investor___25DWW ul{list-style:none;padding:0;margin:0 0 20px 0}.ready-to-invest___2dSEN .investor-cards___1Y28- .card-investor___25DWW ul li{display:flex;justify-content:flex-start;align-items:flex-start;margin:0 0 4px 0}.ready-to-invest___2dSEN .investor-cards___1Y28- .card-investor___25DWW ul li span{display:flex;justify-content:center;align-items:center;flex-shrink:0;width:14px;height:14px;margin:4px 8px 0 0}.ready-to-invest___2dSEN .investor-cards___1Y28- .card-investor___25DWW ul li h4{font-size:18px;font-weight:400}.ready-to-invest___2dSEN .investor-cards___1Y28- .card-investor___25DWW ul li.criteria-or___2o3C5{font-size:18px;font-weight:400;margin-left:22px}.ready-to-invest___2dSEN .investor-cards___1Y28- .card-investor___25DWW .cta-ready-to-invest___3fBPA{width:50%;margin:0 auto}.ready-to-invest___2dSEN .cta-institutional-investor___3_T6i{text-align:center;font-size:20px;font-weight:400}.ready-to-invest___2dSEN .cta-institutional-investor___3_T6i a{font-size:20px;font-weight:400;margin-left:4px;color:#004eff}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___JPk56{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___3oAW0{width:100%;margin:0 auto}.full-width___GvOHf{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___3oAW0{max-width:1440px;margin:0 auto;padding:0}.full-width___GvOHf{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___2mJf-{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___2mJf-{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___2mJf-{padding:0 16px}}.btn-default___2BlGT{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___2BlGT:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___1jf4s{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___1jf4s:hover{color:#fff;background:#0045CA}.btn-dark___1sOlg{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___1sOlg:hover{color:#fff;background:#2C3444}.btn-dark2___3IXc_{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___3IXc_:hover{color:#fff;background:#2C3444}.btn-default2___11u-M{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___11u-M:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___26YpR{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.banner___2yPFN{width:100%;padding:12px 0;background:#161A23;display:flex;justify-content:center;text-align:center}.banner___2yPFN .banner-container___dAnCy{display:flex;align-items:center;justify-content:center;width:100%;max-width:1600px;margin:0 48px;position:relative}.banner___2yPFN.visible___1_zJN{display:flex}.banner___2yPFN.hidden___3UiR-{display:none !important}.banner___2yPFN a{text-decoration:none;cursor:pointer}.banner___2yPFN h4{font-size:16px;font-weight:500;width:100%;line-height:16px;color:#fff;letter-spacing:-0.48px;padding:0 75px;display:flex;align-items:center;justify-content:center}.banner___2yPFN h4 span{vertical-align:middle}.banner___2yPFN h4 span:last-of-type{white-space:nowrap;margin-left:4px}.banner___2yPFN h4 span:last-of-type a{font-weight:500;text-decoration:underline;text-underline-offset:2px;color:#fff}.banner___2yPFN button{border:none;outline:none;background:transparent;position:absolute;right:0;padding:0 1px 0 0;opacity:1;cursor:pointer}@media screen and (max-width: 1200px){.banner___2yPFN .banner-container___dAnCy{margin:0}.banner___2yPFN button{right:16px}.banner___2yPFN h4{padding:0 40px 0 15px}}@media screen and (max-width: 768px){.banner___2yPFN h4{font-size:14px;letter-spacing:-0.28px;line-height:20px}.banner___2yPFN h4 a{font-size:14px}}@media screen and (max-width: 576px){.banner___2yPFN h4 .text-container___29wvF{flex:1;text-align:center}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___2_CXb{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___1gkG_{width:100%;margin:0 auto}.full-width___1U9tN{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___1gkG_{max-width:1440px;margin:0 auto;padding:0}.full-width___1U9tN{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___1B-Iy{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___1B-Iy{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___1B-Iy{padding:0 16px}}.btn-default___7iufR{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___7iufR:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___14R00{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___14R00:hover{color:#fff;background:#0045CA}.btn-dark___1VECr{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___1VECr:hover{color:#fff;background:#2C3444}.btn-dark2___3pdNw{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___3pdNw:hover{color:#fff;background:#2C3444}.btn-default2___1ncJr{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___1ncJr:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___2sQ_1{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.header___1OMw5{width:100%;background:rgba(255,255,255,0.8);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);height:74px;padding:0 48px;transition:.3s;position:relative;z-index:1}.header___1OMw5 *{transition:.3s}.header___1OMw5 .header-container___15Vmw{width:100%;height:100%;max-width:1600px;margin:0 auto;display:flex;align-items:center;justify-content:flex-start}.header___1OMw5 .brand-wrapper___2Gmqs{display:flex;align-items:flex-end}.header___1OMw5 .brand-wrapper___2Gmqs a{text-decoration:none}.header___1OMw5 .brand-wrapper___2Gmqs a .logo-wrapper___3PusK{width:68px;height:18px;display:flex;align-items:center;margin-right:48px}.header___1OMw5 .brand-wrapper___2Gmqs a .logo-wrapper___3PusK svg,.header___1OMw5 .brand-wrapper___2Gmqs a .logo-wrapper___3PusK img{display:block;width:100%;height:auto}.header___1OMw5 .brand-wrapper___2Gmqs h3{margin-left:8px;margin-right:2px;color:#8e96a6;font-weight:400;font-size:14px;line-height:1.2}.header___1OMw5 .cta-wrapper___35lWq{display:flex;width:100%;justify-content:flex-end}.header___1OMw5 .cta-wrapper___35lWq .cta-sign-up___1Xp4S{width:102px;height:30px;font-size:16px;background-color:#FFFFFF;color:#0762C8;padding:16px;border-radius:4px;font-weight:700}.header___1OMw5 .cta-wrapper___35lWq .cta-b2b___19l2z{color:#253746}.header___1OMw5.transparent___HIEfT{background:transparent;backdrop-filter:blur(0);-webkit-backdrop-filter:blur(0)}.header___1OMw5.black___1aB6l{background:rgba(5,28,44,0.8);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px)}.header___1OMw5.menu-visible___3P-xJ{background:#fff;backdrop-filter:blur(0);-webkit-backdrop-filter:blur(0)}.header___1OMw5.menu-visible___3P-xJ .logo-icon___2Gblm svg path{fill:#161A23 !important}.bg-menu___l9T-e{background:#fff}.header-menu___257t9{display:flex;width:100%}.header-menu___257t9 .nav___1UM87{width:100%;display:flex;justify-content:flex-start;padding-left:48}.header-menu___257t9 .nav___1UM87 a,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a{height:42px;font-size:15px;font-weight:500;text-decoration:none;display:flex;align-items:center;justify-content:flex-start;padding-right:32px;color:#161A23;letter-spacing:-0.3px;position:relative}.header-menu___257t9 .nav___1UM87 a.no-right___1thsE,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a.no-right___1thsE{padding-right:0}.header-menu___257t9 .nav___1UM87 a span,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a span{margin-right:5px;display:flex;justify-content:center;align-items:center}.header-menu___257t9 .nav___1UM87 a svg,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a svg{margin-left:0.25rem}.header-menu___257t9 .nav___1UM87 a .arrow___2al8n,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .arrow___2al8n{width:12px;height:12px;background-color:#fff;position:absolute;top:-5px;transform:rotate(45deg)}.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv{background:#fff;position:absolute;top:42px;left:-32px;border-radius:20px;box-shadow:0px 2px 8px 0px rgba(22,26,35,0.1);border:1px solid #E7EAF0;cursor:default;display:none}.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv h2,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv h2{font-size:12px;font-weight:500;color:#6D7688;line-height:1.3;padding-bottom:28px;letter-spacing:0.12px;text-transform:uppercase}.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv h1,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv h1{font-size:15px;line-height:1.3;font-weight:450;padding-bottom:4px;color:#161A23;letter-spacing:-0.375px}.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv h3,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv h3{font-size:12px;font-weight:450;line-height:16px;color:#6D7688;letter-spacing:-0.36px}.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .menu-item___1vM1W,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .menu-item___1vM1W{text-decoration:none;flex-direction:column;align-items:flex-start;height:auto;padding-bottom:28px}.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .menu-item___1vM1W:last-child,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .menu-item___1vM1W:last-child{padding-bottom:0}.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .menu-item___1vM1W:hover h1,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .menu-item___1vM1W:hover h1{color:#0762C8}.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .card-menu___Ig4jV,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .card-menu___Ig4jV{text-decoration:none;display:flex;font-size:15px;line-height:18px;font-weight:600;padding-bottom:12px;color:#0D111A;letter-spacing:0.01px;height:auto;cursor:default}.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .card-menu___Ig4jV .pointer-cursor___1oXBC,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .card-menu___Ig4jV .pointer-cursor___1oXBC{cursor:pointer}.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .card-menu___Ig4jV:hover span,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .card-menu___Ig4jV:hover span{color:#0762C8}.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .invest-menu___1XWta,.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .learn-menu___38kPl,.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .about-menu___2l6o1,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .invest-menu___1XWta,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .learn-menu___38kPl,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .about-menu___2l6o1{cursor:default}.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .invest-menu___1XWta h3,.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .learn-menu___38kPl h3,.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .about-menu___2l6o1 h3,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .invest-menu___1XWta h3,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .learn-menu___38kPl h3,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .about-menu___2l6o1 h3{width:224px}.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .first-time-investor___2Lvht,.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .insights___1Bmwa,.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .webinars___9f4Cx,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .first-time-investor___2Lvht,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .insights___1Bmwa,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .webinars___9f4Cx{cursor:default}.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .first-time-investor___2Lvht h3,.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .insights___1Bmwa h3,.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .webinars___9f4Cx h3,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .first-time-investor___2Lvht h3,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .insights___1Bmwa h3,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .webinars___9f4Cx h3{width:224px}.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .blog-menu___3EOIB .blog-menu-content___24UCH,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .blog-menu___3EOIB .blog-menu-content___24UCH{cursor:pointer;border-radius:20px;transition:.1s;background:#F5F7F9}.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .blog-menu___3EOIB .blog-menu-content___24UCH:hover,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .blog-menu___3EOIB .blog-menu-content___24UCH:hover{background:#E7EAF0}.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .blog-menu___3EOIB .blog-menu-content___24UCH .img-content___m07Io,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .blog-menu___3EOIB .blog-menu-content___24UCH .img-content___m07Io{padding:12px 12px 0;overflow:hidden}.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .blog-menu___3EOIB .blog-menu-content___24UCH .img-content___m07Io .pic___24BRo,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .blog-menu___3EOIB .blog-menu-content___24UCH .img-content___m07Io .pic___24BRo{border-radius:12px}.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .blog-menu___3EOIB .blog-menu-content___24UCH .desc-content___2LPhZ,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .blog-menu___3EOIB .blog-menu-content___24UCH .desc-content___2LPhZ{padding:28px}.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .blog-menu___3EOIB .blog-menu-content___24UCH .desc-content___2LPhZ h1,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .blog-menu___3EOIB .blog-menu-content___24UCH .desc-content___2LPhZ h1{font-size:24px;font-weight:500;letter-spacing:-0.96px;color:#161A23;padding:0}.header-menu___257t9 .nav___1UM87 a .slider-menu___2e1yv .blog-menu___3EOIB .blog-menu-content___24UCH .desc-content___2LPhZ h3,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a .slider-menu___2e1yv .blog-menu___3EOIB .blog-menu-content___24UCH .desc-content___2LPhZ h3{font-size:16px;font-weight:600;letter-spacing:-0.4px;color:#0762C8;margin-top:4px}.header-menu___257t9 .nav___1UM87 a:hover,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a:hover{color:#0762C8}.header-menu___257t9 .nav___1UM87 a:hover .slider-menu___2e1yv,.header-menu___257t9 .nav___1UM87 .link-group___1iM1I>a:hover .slider-menu___2e1yv{display:block !important;animation:fadeInAnimation___2_CXb 300ms linear;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___2_CXb{0%{opacity:0}100%{opacity:1}}.header-menu___257t9 .nav___1UM87 .link-group___1iM1I{display:flex;align-items:center;justify-content:center}.header-menu___257t9 .nav___1UM87 .link-group___1iM1I button{background-color:inherit;border:none}.header-menu___257t9 .nav___1UM87 .link-group___1iM1I button:focus{outline:none}.header-menu___257t9 .nav___1UM87 .link-group___1iM1I button:hover{cursor:pointer;color:#0762C8}.header-menu___257t9 .nav___1UM87 .link-group___1iM1I button.active-link-group___CrcAU{color:#0762C8;position:relative}.header-menu___257t9 .nav___1UM87 .link-group___1iM1I .dropdown-menu___1Vnjq{box-shadow:0 0 8px 2px rgba(0,0,0,0.2),0 4px 8px -10px rgba(0,0,0,0.2);position:absolute;border-radius:4px;top:60px;left:0;width:191px;padding:25px 0;background-color:#fff}.header-menu___257t9 .nav___1UM87 .link-group___1iM1I .dropdown-menu___1Vnjq a{padding:0 25px;height:100%;padding-bottom:20px;font-weight:400;font-size:14px;color:#0762C8}.header-menu___257t9 .nav___1UM87 .link-group___1iM1I .dropdown-menu___1Vnjq a:last-of-type{padding-bottom:0}.header-menu___257t9 .nav___1UM87 .link-group___1iM1I .dropdown-menu___1Vnjq svg{position:absolute;top:-10px;left:25px;width:21px;height:18px}.header-menu___257t9 .cta-app___1I8kf{display:flex;justify-content:flex-end;align-items:center}.header-menu___257t9 .cta-app___1I8kf a{text-decoration:none}.header-menu___257t9 .cta-app___1I8kf .globe-icon___2Bj3- svg{display:block}.header-menu___257t9 .cta-app___1I8kf .cta-log-in___3wj_b{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center;margin-right:8px;margin-left:20px}.header-menu___257t9 .cta-app___1I8kf .cta-log-in___3wj_b:hover{color:#161A23;background:rgba(0,0,0,0.05)}.header-menu___257t9 .cta-app___1I8kf .cta-sign-up___1Xp4S{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.header-menu___257t9 .cta-app___1I8kf .cta-sign-up___1Xp4S:hover{color:#fff;background:#0045CA}.header-menu___257t9 .cta-app___1I8kf .cta-primary-advantage___3OZO7{width:100px;height:32px;margin-right:12px;font-size:16px;background-color:#004eff;color:#ffffff;border:none;border-radius:4px;line-height:24px;font-weight:500;display:flex;align-items:center;justify-content:center}.header-menu___257t9 .cta-app___1I8kf .app-store-icon___3gp_p,.header-menu___257t9 .cta-app___1I8kf .google-play-icon___8eJzq{display:block;width:32px;height:32px}.header-menu___257t9 .cta-app___1I8kf .app-store-icon___3gp_p svg,.header-menu___257t9 .cta-app___1I8kf .google-play-icon___8eJzq svg{width:100%;height:100%}.header-menu___257t9 .cta-app___1I8kf .app-store-icon___3gp_p{margin-left:12px}.globe-dropdown___28P_j .ant-dropdown-menu{box-shadow:0px 2px 8px 0px rgba(22,26,35,0.1);padding:20px 20px;border-radius:16px}.globe-dropdown___28P_j .ant-dropdown-menu-item{font-size:15px;font-weight:450;letter-spacing:-0.375px;margin-top:18px}.globe-dropdown___28P_j .ant-dropdown-menu-item:first-child{margin-top:0}.globe-dropdown___28P_j .ant-dropdown-menu-item:hover{background:none}.header___1OMw5.transparent___HIEfT .nav___1UM87 .link-group___1iM1I>a,.header___1OMw5.black___1aB6l .nav___1UM87 .link-group___1iM1I>a{color:#fff}.header___1OMw5.transparent___HIEfT .logo-icon___2Gblm svg path,.header___1OMw5.black___1aB6l .logo-icon___2Gblm svg path{fill:#fff}.header___1OMw5.transparent___HIEfT .cta-app___1I8kf .globe-icon___2Bj3- svg path,.header___1OMw5.black___1aB6l .cta-app___1I8kf .globe-icon___2Bj3- svg path{stroke:#fff}.header___1OMw5.transparent___HIEfT .cta-app___1I8kf .cta-log-in___3wj_b,.header___1OMw5.black___1aB6l .cta-app___1I8kf .cta-log-in___3wj_b{color:#fff;border-color:#fff}.header___1OMw5.transparent___HIEfT .cta-app___1I8kf .cta-sign-up___1Xp4S,.header___1OMw5.black___1aB6l .cta-app___1I8kf .cta-sign-up___1Xp4S{background:#fff;color:#051C2C}.header___1OMw5.transparent___HIEfT.investments___1w6YQ .cta-app___1I8kf .cta-sign-up___1Xp4S,.header___1OMw5.black___1aB6l.investments___1w6YQ .cta-app___1I8kf .cta-sign-up___1Xp4S{color:#0762C8}.header___1OMw5.no-height___3zs6g{position:absolute;bottom:0;transform:translateY(100%)}@media screen and (max-width: 1199px){.header___1OMw5{height:60px;padding:0 16px 0 20px}.header___1OMw5 .header-container___15Vmw{display:flex;justify-content:space-between}.header___1OMw5.menu-visible___3P-xJ{position:fixed;left:0;top:0;z-index:1000;transform:translateY(0)}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___9xfDE{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___2hXkH{width:100%;margin:0 auto}.full-width___3BRMp{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___2hXkH{max-width:1440px;margin:0 auto;padding:0}.full-width___3BRMp{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___2MzK3{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___2MzK3{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___2MzK3{padding:0 16px}}.btn-default___1K7N3{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___1K7N3:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___3oBoh{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___3oBoh:hover{color:#fff;background:#0045CA}.btn-dark___1Nnzb{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___1Nnzb:hover{color:#fff;background:#2C3444}.btn-dark2___16K1L{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___16K1L:hover{color:#fff;background:#2C3444}.btn-default2___1TDIn{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___1TDIn:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___2SfE6{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.cny-hero___bHZy0{padding:0 !important;display:flex;flex-direction:column}.cny-hero___bHZy0 .hero-row___2JxmZ{display:flex;flex-direction:column}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x{order:2;padding:0 24px}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .heading___AXLQX{padding:28px 0;margin:0}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .heading___AXLQX h1{font-size:37px}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .heading___AXLQX h2{font-size:22px;line-height:24px;font-weight:400}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .cta-hero-wrapper___3CSrv{background-color:#004eff;color:#fff;width:100%;height:65px;border:none;border-radius:4px;display:flex;padding:12px}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .cta-hero-wrapper___3CSrv>a{display:flex;flex-direction:column;height:51px;width:60%;font-size:19px;line-height:normal;align-self:center}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .cta-hero-wrapper___3CSrv>a span{font-size:11px}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .cta-hero-wrapper___3CSrv .code-wrapper___3oWLd{text-align:center;display:flex;flex-direction:column;background-color:#fff;border-radius:6px;height:51px;width:176px;align-self:center;justify-content:center}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .cta-hero-wrapper___3CSrv .code-wrapper___3oWLd h4{color:#004eff;line-height:normal;font-size:18px}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .cta-hero-wrapper___3CSrv .code-wrapper___3oWLd h6{color:#004eff}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .text-wrapper___3VG1b{margin-top:10px}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .text-wrapper___3VG1b p{font-weight:600;font-size:10px;line-height:15px;color:#8e96a6}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .text-wrapper___3VG1b .documents-link___3Nf-H{font-weight:600;font-size:10px;line-height:15px;display:flex;align-items:center;text-decoration-line:underline;color:#3956bc}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .awards-wrapper___29d0e{width:100%;display:flex;margin:32px 0}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .awards-wrapper___29d0e ul{display:flex;justify-content:space-between;width:100%}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .awards-wrapper___29d0e ul li{width:calc((100% - 21px) / 4)}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .awards-wrapper___29d0e ul li .image-container___kTj49{width:100%;height:auto}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .awards-wrapper___29d0e ul li .image-container___kTj49 img{width:100%;height:auto;object-fit:cover}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-right___1Abwl{order:1;display:flex}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-right___1Abwl .image-container___kTj49{width:100%;height:auto}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-right___1Abwl .image-container___kTj49 img{width:100%;height:auto}@media only screen and (min-width: 992px){.cny-hero___bHZy0{display:flex;flex-direction:column}.cny-hero___bHZy0 .hero-row___2JxmZ{display:flex;flex-direction:row;justify-content:space-between}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x{padding:0;order:1;width:600px;position:absolute;display:flex;flex-direction:column;align-items:flex-start;flex-wrap:wrap;top:193px;left:132px}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .heading___AXLQX{padding:0;margin-bottom:36px}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .heading___AXLQX h1{font-size:55px;line-height:normal}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .heading___AXLQX h2{font-size:24px;line-height:35px;font-weight:400;margin-top:16px;width:90%}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .cta-hero-wrapper___3CSrv{background-color:#004eff;color:#fff;width:374px;height:74px;border:none;border-radius:4px;display:flex;padding:12px}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .cta-hero-wrapper___3CSrv>a{display:flex;flex-direction:column;height:51px;width:60%;font-size:21px}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .cta-hero-wrapper___3CSrv>a span{font-size:11px}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .cta-hero-wrapper___3CSrv .code-wrapper___3oWLd{text-align:center;display:flex;flex-direction:column;background-color:#fff;border-radius:6px;height:51px;width:176px;align-self:center;justify-content:center}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .cta-hero-wrapper___3CSrv .code-wrapper___3oWLd h4{color:#004eff;line-height:normal;font-size:24px}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .cta-hero-wrapper___3CSrv .code-wrapper___3oWLd h6{color:#004eff}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .text-wrapper___3VG1b{margin-top:10px}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .text-wrapper___3VG1b p{font-weight:600;font-size:10px;line-height:15px;color:#8e96a6}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .text-wrapper___3VG1b .documents-link___3Nf-H{font-weight:600;font-size:10px;line-height:15px;display:flex;align-items:center;text-decoration-line:underline;color:#3956bc}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .awards-wrapper___29d0e{width:342px;display:flex;margin-top:32px}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .awards-wrapper___29d0e ul{display:flex;justify-content:space-between;width:100%}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .awards-wrapper___29d0e ul li .image-container___kTj49{height:72px;width:auto}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x .awards-wrapper___29d0e ul li .image-container___kTj49 img{width:auto;height:100%;object-fit:cover}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x h3{font-size:20px;font-weight:400;width:70%;padding-bottom:60px}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-right___1Abwl{position:relative;order:2;display:flex;width:65%;margin-left:35%;z-index:-33;justify-content:flex-end;height:100%}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-right___1Abwl .image-container___kTj49{width:auto;height:100%;display:flex;justify-self:flex-end}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-right___1Abwl .image-container___kTj49 img{width:100%;height:620px;display:flex;justify-self:flex-end;object-fit:cover}}@media only screen and (min-width: 1445px){.cny-hero___bHZy0 .hero-row___2JxmZ .hero-left___25O4x{top:260px;left:257px}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-right___1Abwl .image-container___kTj49{width:auto;height:100%}.cny-hero___bHZy0 .hero-row___2JxmZ .hero-right___1Abwl .image-container___kTj49 img{width:100%;height:800px}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___vN7yE{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___i2cpy{width:100%;margin:0 auto}.full-width___1dPP2{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___i2cpy{max-width:1440px;margin:0 auto;padding:0}.full-width___1dPP2{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___3_rF6{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___3_rF6{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___3_rF6{padding:0 16px}}.btn-default___3R9sX{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___3R9sX:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___3_bob{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___3_bob:hover{color:#fff;background:#0045CA}.btn-dark___KCsbb{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___KCsbb:hover{color:#fff;background:#2C3444}.btn-dark2___3G6wZ{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___3G6wZ:hover{color:#fff;background:#2C3444}.btn-default2___Us-Ri{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___Us-Ri:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___2W8Ya{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.secure-tab___3kCgQ{width:100%;padding:24px 0 !important}.secure-tab___3kCgQ .secure-tab-main___3Zn4r{width:100%;display:flex;flex-direction:column}.secure-tab___3kCgQ .secure-tab-main___3Zn4r .section-subheading___I3gaB{margin-bottom:30px}.secure-tab___3kCgQ .secure-tab-main___3Zn4r .section-subheading___I3gaB h3{font-weight:700;line-height:34px;text-align:center}.secure-tab___3kCgQ .secure-tab-main___3Zn4r ul{width:100%;display:flex;flex-direction:column}.secure-tab___3kCgQ .secure-tab-main___3Zn4r ul .secure-row___3q2Ma{display:flex;flex-direction:row;justify-content:space-between;margin-bottom:32px}.secure-tab___3kCgQ .secure-tab-main___3Zn4r ul .secure-row___3q2Ma .image-container___LAJ7s{margin-top:4px;width:80px;height:auto}.secure-tab___3kCgQ .secure-tab-main___3Zn4r ul .secure-row___3q2Ma .image-container___LAJ7s img{width:100%;height:auto;object-fit:contain}.secure-tab___3kCgQ .secure-tab-main___3Zn4r ul .secure-row___3q2Ma .content-container___rftuY{width:calc(100% - 100px);max-width:calc(100% - 90px)}.secure-tab___3kCgQ .secure-tab-main___3Zn4r ul .secure-row___3q2Ma .content-container___rftuY p:first-of-type{font-size:20px;margin-bottom:24px}.secure-tab___3kCgQ .secure-tab-main___3Zn4r ul .secure-row___3q2Ma .content-container___rftuY p:last-of-type{font-size:18px;color:#808080}@media only screen and (min-width: 768px){.secure-tab___3kCgQ{width:700px;margin:0 auto;padding:60px 0 0 !important}.secure-tab___3kCgQ .secure-tab-main___3Zn4r{width:100%;display:flex;align-items:center}.secure-tab___3kCgQ .secure-tab-main___3Zn4r .section-subheading___I3gaB{width:480px;margin-bottom:60px}.secure-tab___3kCgQ .secure-tab-main___3Zn4r .section-subheading___I3gaB h3{font-size:36px;line-height:45px}.secure-tab___3kCgQ .secure-tab-main___3Zn4r ul{width:100%}.secure-tab___3kCgQ .secure-tab-main___3Zn4r ul .secure-row___3q2Ma{height:150px;margin-bottom:60px}.secure-tab___3kCgQ .secure-tab-main___3Zn4r ul .secure-row___3q2Ma .image-container___LAJ7s{margin-top:4px;width:133px;height:121px}.secure-tab___3kCgQ .secure-tab-main___3Zn4r ul .secure-row___3q2Ma .content-container___rftuY{width:510px}.secure-tab___3kCgQ .secure-tab-main___3Zn4r ul .secure-row___3q2Ma .content-container___rftuY p:first-of-type{font-size:20px;margin-bottom:24px}.secure-tab___3kCgQ .secure-tab-main___3Zn4r ul .secure-row___3q2Ma .content-container___rftuY p:last-of-type{font-size:18px}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___23TUo{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___10_wx{width:100%;margin:0 auto}.full-width___19w9y{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___10_wx{max-width:1440px;margin:0 auto;padding:0}.full-width___19w9y{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___1pK4M{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___1pK4M{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___1pK4M{padding:0 16px}}.btn-default___2RWfI{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___2RWfI:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___2THG3{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___2THG3:hover{color:#fff;background:#0045CA}.btn-dark___2hK8V{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___2hK8V:hover{color:#fff;background:#2C3444}.btn-dark2___3NBJc{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___3NBJc:hover{color:#fff;background:#2C3444}.btn-default2___jwpmW{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___jwpmW:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___3G_e2{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.selective-tab___2k9-f{padding:24px 0 !important}.selective-tab___2k9-f .selective-tab-main___svlm8{padding:0}.selective-tab___2k9-f .selective-tab-main___svlm8 .content-container___3ggfT h3{margin-bottom:30px;font-weight:700;line-height:34px;text-align:center;font-size:24px}.selective-tab___2k9-f .selective-tab-main___svlm8 .content-container___3ggfT .selective-advantage___3X_8X{text-align:left}.selective-tab___2k9-f .selective-tab-main___svlm8 .content-container___3ggfT h5{color:#004eff;font-size:20px;font-weight:700}.selective-tab___2k9-f .selective-tab-main___svlm8 .content-container___3ggfT p{margin-bottom:24px}.selective-tab___2k9-f .selective-tab-main___svlm8 .content-container___3ggfT p a{font-size:inherit;font-weight:700;text-underline-offset:1px;color:#004eff}.selective-tab___2k9-f .selective-tab-main___svlm8 .content-container___3ggfT p a:active,.selective-tab___2k9-f .selective-tab-main___svlm8 .content-container___3ggfT p a:hover{text-decoration:underline;cursor:pointer}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf{padding:0;width:100%}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .swiper-container{width:100%}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .swiper-container .swiper-wrapper{align-items:center;margin-bottom:32px}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .swiper-container .swiper-wrapper .swiper-slide{width:100%}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .profile___2XkOy{width:100%;height:460px;position:relative;margin-bottom:24px;box-shadow:0px 0px 10px rgba(0,0,0,0.25);border-radius:4px 0px 0px 4px;background-color:#ffffff}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .profile___2XkOy .top___2W1bL{width:100%;height:270px;padding:0}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .profile___2XkOy .top___2W1bL .banner-container___3epVE{width:100%;height:100%}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .profile___2XkOy .top___2W1bL .banner-container___3epVE img{width:100%;height:100%;object-fit:cover;object-position:center}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .profile___2XkOy .bottom___aT221{width:100%;height:190px;padding:16px 24px}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .profile___2XkOy .bottom___aT221 h3{font-size:24px;font-weight:700;margin-bottom:12px}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .profile___2XkOy .bottom___aT221 h4{font-size:11px;font-weight:400;margin-bottom:8px;line-height:18px}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .profile___2XkOy .bottom___aT221 .image-logo-container___3XYCd{position:absolute;bottom:16px;display:flex;justify-items:flex-start;align-items:baseline}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .profile___2XkOy .bottom___aT221 .image-logo-container___3XYCd .logo-container___1enkt{height:36px}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .profile___2XkOy .bottom___aT221 .image-logo-container___3XYCd .logo-container___1enkt img{height:100%;width:auto}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .profile___2XkOy .bottom___aT221 .image-logo-container___3XYCd .additional-logo___nQnJP{height:28px;margin-left:16px}@media only screen and (min-width: 768px){.selective-tab___2k9-f .selective-tab-main___svlm8{display:flex;flex-direction:row;align-items:center;justify-content:space-around;padding:80px 160px}.selective-tab___2k9-f .selective-tab-main___svlm8 .content-container___3ggfT{width:50%}.selective-tab___2k9-f .selective-tab-main___svlm8 .content-container___3ggfT h3{font-size:36px;line-height:45px;font-weight:700;text-align:left;max-width:420px}.selective-tab___2k9-f .selective-tab-main___svlm8 .content-container___3ggfT p{font-size:20px;margin:24px 0;width:520px}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf{width:40%}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .swiper-container{width:100%}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .swiper-container .swiper-wrapper{width:600px;align-items:center;margin-bottom:32px}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .swiper-container .swiper-wrapper .swiper-slide{width:600px}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .swiper-container .swiper-pagination{bottom:0}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .profile___2XkOy{width:325px;height:470px;margin:0 auto}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .profile___2XkOy .top___2W1bL{width:325px;height:290px;padding:0}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .profile___2XkOy .top___2W1bL .banner-container___3epVE{width:100%;height:100%}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .profile___2XkOy .top___2W1bL .banner-container___3epVE img{width:100%;height:100%;object-fit:cover;object-position:top}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .profile___2XkOy .bottom___aT221{width:100%;height:169px;padding:16px 24px}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .profile___2XkOy .bottom___aT221 h3{font-size:24px;font-weight:700;margin-bottom:12px}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .profile___2XkOy .bottom___aT221 h4{font-size:11px;font-weight:400;margin-bottom:8px;line-height:18px}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .profile___2XkOy .bottom___aT221 .image-logo-container___3XYCd{position:absolute;bottom:16px;display:flex;justify-items:flex-start;align-items:baseline}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .profile___2XkOy .bottom___aT221 .image-logo-container___3XYCd .logo-container___1enkt{height:36px}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .profile___2XkOy .bottom___aT221 .image-logo-container___3XYCd .logo-container___1enkt img{height:100%;width:auto}.selective-tab___2k9-f .selective-tab-main___svlm8 .listing-committee___Yj_Rf .profile___2XkOy .bottom___aT221 .image-logo-container___3XYCd .additional-logo___nQnJP{height:28px;margin-left:32px}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___2PSjv{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___320x3{width:100%;margin:0 auto}.full-width___11ClB{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___320x3{max-width:1440px;margin:0 auto;padding:0}.full-width___11ClB{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___1v8lw{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___1v8lw{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___1v8lw{padding:0 16px}}.btn-default___HoSmN{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___HoSmN:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___1SsM_{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___1SsM_:hover{color:#fff;background:#0045CA}.btn-dark___3nnQd{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___3nnQd:hover{color:#fff;background:#2C3444}.btn-dark2___2UcV5{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___2UcV5:hover{color:#fff;background:#2C3444}.btn-default2___Q-BFk{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___Q-BFk:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___CVQcu{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.trusted-tab___Dwmvw{width:100%;padding:24px 0 !important}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy{width:100%;display:flex;flex-direction:column}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .section-subheading___32Zpu{margin-bottom:30px}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .section-subheading___32Zpu h3{font-weight:700;line-height:34px;text-align:center}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .ant-tabs-nav{width:100%;margin:0 auto !important}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .ant-tabs-nav-list{justify-content:center}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .ant-tabs-nav::before{border-bottom:none}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .ant-tabs-nav-wrap{justify-content:center}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .ant-tabs-tab-btn{width:100%;display:block;text-align:center;border:none;font-size:10px}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .ant-tabs-tab{width:auto;border:none;padding:0 16px;border-radius:4px !important;height:48px;margin-right:0}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .ant-tabs-tab-active{background:transparent;font-weight:700}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .logos___P0RON{padding:40px 0 20px;display:flex;justify-content:center;align-items:center;flex-wrap:wrap}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .logos___P0RON div.logo-container___12_x5{width:50%;height:60px;display:flex;justify-content:center}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .logos___P0RON div.logo-container___12_x5 div.image-container___2vzRf{width:100px;height:auto;display:flex;justify-content:center;align-items:center;overflow:hidden}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .logos___P0RON div.logo-container___12_x5 div.image-container___2vzRf img{width:100%;height:100%;object-fit:contain}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .logos___P0RON div:nth-of-type(8){width:50%;height:90px;margin-bottom:20px}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .logos___P0RON div:nth-of-type(8) div.image-container___2vzRf{width:90px}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .logos___P0RON div:nth-of-type(11){width:50%;height:90px;margin-bottom:20px}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .logos___P0RON div:nth-of-type(11) div.image-container___2vzRf{transform:scale(0.75)}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .logos___P0RON div:nth-of-type(12){width:50%;height:90px;margin-bottom:20px}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .logos___P0RON div:nth-of-type(12) div.image-container___2vzRf{transform:scale(2.5)}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .logos___P0RON div:nth-of-type(13){width:50%;height:90px;margin-bottom:20px}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .logos___P0RON div:nth-of-type(13) div.image-container___2vzRf{transform:scale(2.5)}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .corporate___wH6Xg{margin-bottom:80px}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .corporate___wH6Xg div.image-container___2vzRf{width:20%;height:80px !important;display:flex;align-items:center}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .corporate___wH6Xg div.image-container___2vzRf:nth-of-type(2){height:100px;width:15%}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .corporate___wH6Xg div.image-container___2vzRf img{width:100%;height:100%;object-fit:contain}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .corporate___wH6Xg div:first-of-type{height:120px;width:50%}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg a{margin:0 auto;display:block;text-align:center;width:fit-content;margin-bottom:42px;color:#004eff;text-decoration:underline}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg a:hover{text-decoration:underline}@media only screen and (min-width: 768px){.trusted-tab___Dwmvw{width:calc(100% - 160px);margin:0 auto;padding:60px 0 0 !important}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy{width:100%;display:flex;align-items:center}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .section-subheading___32Zpu{margin-bottom:70px}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .section-subheading___32Zpu h3{font-size:36px;line-height:45px}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg a{margin:0 auto;display:block;text-align:center;width:fit-content;margin-bottom:42px;color:#004eff;text-decoration:underline}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg a:hover{text-decoration:underline}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .ant-tabs-nav{width:1020px !important;margin:0 auto !important}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .ant-tabs-nav::before{border-bottom:none}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .ant-tabs-nav-wrap{justify-content:center}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .ant-tabs-tab-btn{width:100%;display:block;text-align:center;border:none;font-size:20px}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .ant-tabs-tab{width:calc(100% / 3);border:none;padding:0;border-radius:4px !important;color:#808080;height:48px}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .ant-tabs-tab.disclaimer{position:absolute;font-size:14px;bottom:20px}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .ant-tabs-tab-active{background:transparent;font-weight:700}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .logos___P0RON{padding:80px 0 20px;display:flex;justify-content:center;align-items:center;flex-wrap:wrap}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .logos___P0RON div.logo-container___12_x5{width:20%;height:60px;display:flex;justify-content:center;margin-bottom:70px}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .logos___P0RON div.logo-container___12_x5 div.image-container___2vzRf{width:65%;height:auto;display:flex;justify-content:center;align-items:center;overflow:hidden}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .logos___P0RON div.logo-container___12_x5 div.image-container___2vzRf img{width:100%;height:100%;object-fit:contain}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .logos___P0RON div:nth-of-type(8){width:13%;height:90px}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .logos___P0RON div:nth-of-type(8) div.image-container___2vzRf{width:90px}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .logos___P0RON div:nth-of-type(11){width:25%;height:90px;margin-bottom:20px}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .logos___P0RON div:nth-of-type(11) div.image-container___2vzRf{transform:scale(1.25)}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .logos___P0RON div:nth-of-type(12){width:25%;height:90px;margin-bottom:20px}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .logos___P0RON div:nth-of-type(12) div.image-container___2vzRf{transform:scale(3)}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .shareholders___k4kFl div:nth-of-type(8){width:13%;height:90px}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .shareholders___k4kFl div:nth-of-type(8) div.image-container___2vzRf{width:90px}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .shareholders___k4kFl div:nth-of-type(4) div.image-container___2vzRf{width:50%}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .shareholders___k4kFl div:nth-of-type(5) div.image-container___2vzRf{width:60%}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .shareholders___k4kFl div:nth-of-type(3) div.image-container___2vzRf{width:130px}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .shareholders___k4kFl div:nth-of-type(6){width:23%}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .shareholders___k4kFl div:nth-of-type(7){width:21%}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .shareholders___k4kFl div:nth-of-type(10) div.image-container___2vzRf{width:90%}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .shareholders___k4kFl div:nth-of-type(2){width:17%}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .shareholders___k4kFl div:nth-of-type(2) div.image-container___2vzRf{width:90%}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .shareholders___k4kFl div:first-of-type.logo-container___12_x5{margin-left:0;margin-right:0}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .corporate___wH6Xg{margin-bottom:80px}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .corporate___wH6Xg div.image-container___2vzRf{width:20%;height:80px !important;display:flex;align-items:center}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .corporate___wH6Xg div.image-container___2vzRf:nth-of-type(2){height:100px;width:15%}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .corporate___wH6Xg div.image-container___2vzRf img{width:100%;height:100%;object-fit:contain}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .corporate___wH6Xg div:first-of-type{height:90px;width:13%}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .corporate___wH6Xg div:nth-of-type(3).image-container___2vzRf{height:74px !important}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .corporate___wH6Xg div:nth-of-type(3).image-container___2vzRf img{height:54px;width:auto}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .corporate___wH6Xg div:nth-of-type(4) img{width:77%}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .corporate___wH6Xg div:nth-of-type(5){width:25%}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .media___2feTW div.image-container___2vzRf{width:20%;height:80px !important;display:flex;align-items:center}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .media___2feTW div.image-container___2vzRf img{width:100%;height:100%;object-fit:contain}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .media___2feTW div:last-of-type{height:100px;width:104px;margin-bottom:0}.trusted-tab___Dwmvw .trusted-tab-main___GDZpy .nested-tabs___L8ugg .media___2feTW div:last-of-type.image-container___2vzRf{width:100%}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___3v8tv{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___2ajnr{width:100%;margin:0 auto}.full-width___3r_ZQ{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___2ajnr{max-width:1440px;margin:0 auto;padding:0}.full-width___3r_ZQ{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___2QU6E{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___2QU6E{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___2QU6E{padding:0 16px}}.btn-default___xctuB{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___xctuB:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___3SlXb{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___3SlXb:hover{color:#fff;background:#0045CA}.btn-dark___2we1z{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___2we1z:hover{color:#fff;background:#2C3444}.btn-dark2___1Sts6{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___1Sts6:hover{color:#fff;background:#2C3444}.btn-default2___29AQV{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___29AQV:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___2534j{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.awards-wrapper___8kr9G{width:100%;display:flex;margin-top:32px}.awards-wrapper___8kr9G ul{display:flex;justify-content:space-between;width:100%}.awards-wrapper___8kr9G ul li .image-container___3p1Gp{height:70px;width:auto}.awards-wrapper___8kr9G ul li .image-container___3p1Gp img{width:auto;height:100%;object-fit:cover}@media only screen and (min-width: 992px){.awards-wrapper___8kr9G{width:380px;margin-top:32px}.awards-wrapper___8kr9G ul li .image-container___3p1Gp{height:85px}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___1QJZL{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___3eGzR{width:100%;margin:0 auto}.full-width___3XpUY{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___3eGzR{max-width:1440px;margin:0 auto;padding:0}.full-width___3XpUY{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___359Xo{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___359Xo{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___359Xo{padding:0 16px}}.btn-default___z2R7f{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___z2R7f:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___BKcw4{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___BKcw4:hover{color:#fff;background:#0045CA}.btn-dark___12fuC{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___12fuC:hover{color:#fff;background:#2C3444}.btn-dark2___3Sraf{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___3Sraf:hover{color:#fff;background:#2C3444}.btn-default2___1rKwp{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___1rKwp:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___1AUs1{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.card___1amVN{margin:24px 0}.card___1amVN .heading-wrapper___1XkuK{max-width:250px;margin:0 auto}.card___1amVN .heading-wrapper___1XkuK.regular___3f6FO .icon-wrapper___2ttuB{margin-bottom:12px}.card___1amVN .heading-wrapper___1XkuK.regular___3f6FO .icon-wrapper___2ttuB img{width:100px;height:auto}.card___1amVN .heading-wrapper___1XkuK.regular___3f6FO h2{font-size:24px;font-style:normal;font-weight:700;color:#262626;margin-bottom:16px;margin-top:24px}.card___1amVN .heading-wrapper___1XkuK.regular___3f6FO h2 svg{display:none}.card___1amVN .heading-wrapper___1XkuK.regular___3f6FO p{font-size:18px;font-style:normal;font-weight:400;line-height:26px;max-width:250px;margin:0 auto}.card___1amVN .heading-wrapper___1XkuK.person___13g3O .icon-wrapper___2ttuB{margin-top:30px;text-align:center}.card___1amVN .heading-wrapper___1XkuK.person___13g3O .icon-wrapper___2ttuB img{width:auto;height:56px}.card___1amVN .heading-wrapper___1XkuK.person___13g3O p{font-size:18px;font-style:normal;font-weight:400;line-height:26px}.card___1amVN .heading-wrapper___1XkuK.person___13g3O .person-wrapper___2QCKD{max-width:290px;margin-bottom:21px}.card___1amVN .heading-wrapper___1XkuK.person___13g3O .person-wrapper___2QCKD h3{font-size:16px;font-style:normal;font-weight:700;color:#000000;margin-bottom:0;line-height:22.5px;margin-top:24px}.card___1amVN .heading-wrapper___1XkuK.person___13g3O .person-wrapper___2QCKD p{font-size:16px;font-style:normal;font-weight:400;line-height:22.5px}.card___1amVN .heading-wrapper___1XkuK.custom___3uRGB .icon-wrapper___2ttuB{margin-bottom:12px}.card___1amVN .heading-wrapper___1XkuK.custom___3uRGB .icon-wrapper___2ttuB img{width:80px;height:auto}.card___1amVN .heading-wrapper___1XkuK.custom___3uRGB h2{font-size:80px;font-weight:700;line-height:78px;letter-spacing:0em;color:#004eff;margin-bottom:16px;padding-left:32px}.card___1amVN .heading-wrapper___1XkuK.custom___3uRGB h2 svg{position:relative;bottom:60px;height:11px;left:-30px}.card___1amVN p{padding-bottom:18px}.card___1amVN p:last-of-type{padding-bottom:0}@media only screen and (max-device-width: 480px){.card___1amVN .heading-wrapper___1XkuK{max-width:250px;margin:0 auto}.card___1amVN .heading-wrapper___1XkuK.custom___3uRGB .icon-wrapper___2ttuB{margin-bottom:30px}.card___1amVN .heading-wrapper___1XkuK.custom___3uRGB .icon-wrapper___2ttuB h2{line-height:80px;letter-spacing:0}.card___1amVN .heading-wrapper___1XkuK.custom___3uRGB p{font-size:18px;padding-bottom:18px}.card___1amVN .heading-wrapper___1XkuK.person___13g3O h3{font-size:24px;font-style:normal;font-weight:700;color:#262626;margin-bottom:16px;margin-top:24px}.card___1amVN .heading-wrapper___1XkuK.person___13g3O p{font-size:16px;font-style:normal;font-weight:400;line-height:23px}.card___1amVN .heading-wrapper___1XkuK.person___13g3O .person-wrapper___2QCKD{max-width:300px;margin-bottom:21px}.card___1amVN .heading-wrapper___1XkuK.person___13g3O .person-wrapper___2QCKD h3{font-size:16px;font-style:normal;font-weight:700;color:#000000;margin-bottom:0;line-height:22.5px;margin-top:0}.card___1amVN .heading-wrapper___1XkuK.person___13g3O .person-wrapper___2QCKD p{font-size:14px;font-style:normal;font-weight:400;line-height:23px}}@media only screen and (min-device-width: 992px){.card___1amVN .heading-wrapper___1XkuK.custom___3uRGB p{font-size:20px;padding-bottom:18px}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___1A0yj{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___1rhu2{width:100%;margin:0 auto}.full-width___3SbmH{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___1rhu2{max-width:1440px;margin:0 auto;padding:0}.full-width___3SbmH{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___umutf{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___umutf{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___umutf{padding:0 16px}}.btn-default___s4mYQ{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___s4mYQ:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___3oaru{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___3oaru:hover{color:#fff;background:#0045CA}.btn-dark___xr0u-{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___xr0u-:hover{color:#fff;background:#2C3444}.btn-dark2___zMg4o{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___zMg4o:hover{color:#fff;background:#2C3444}.btn-default2___3xlPB{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___3xlPB:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___QGAve{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.card___2NqpV .heading-wrapper___2z0CQ{width:300px;margin:24px auto}.card___2NqpV .heading-wrapper___2z0CQ.wide___EcrCl{width:350px}.card___2NqpV .heading-wrapper___2z0CQ .heading___E8cdW{font-style:normal;font-weight:bold;font-size:27px;line-height:55px}.card___2NqpV .heading-wrapper___2z0CQ p{font-weight:500;font-size:16px;line-height:25px;color:#00040c}.card___2NqpV .icon-wrapper___Aswck img{max-width:100%;height:auto}.card___2NqpV .action___1npNf{width:200px;margin:auto}.card___2NqpV p{margin-bottom:18px}.card___2NqpV p:last-of-type{margin-bottom:0}@media only screen and (max-device-width: 480px){.card___2NqpV .heading-wrapper___2z0CQ{width:210px;margin:32px auto}.card___2NqpV .heading-wrapper___2z0CQ.wide___EcrCl{width:210px}.card___2NqpV .heading-wrapper___2z0CQ .heading___E8cdW{font-size:24px;line-height:30.5px;padding-bottom:15px}.card___2NqpV .heading-wrapper___2z0CQ p{font-size:16px;line-height:24px}.card___2NqpV .action___1npNf{width:calc(100% - 48px);margin:auto}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___365qE{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___2L2QY{width:100%;margin:0 auto}.full-width___1fSd1{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___2L2QY{max-width:1440px;margin:0 auto;padding:0}.full-width___1fSd1{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___3Nd1I{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___3Nd1I{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___3Nd1I{padding:0 16px}}.btn-default___1KNxw{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___1KNxw:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___1Z54j{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___1Z54j:hover{color:#fff;background:#0045CA}.btn-dark___d6gak{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___d6gak:hover{color:#fff;background:#2C3444}.btn-dark2___2UpNe{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___2UpNe:hover{color:#fff;background:#2C3444}.btn-default2___P2cVm{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___P2cVm:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter____LsLK{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.desktop-faq___I3GGO{padding-bottom:24px;width:318px;margin:auto}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs h2{font-size:21px;font-weight:600;line-height:29px;margin:40px 0;text-align:center;color:#000}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse{background-color:inherit;border:none}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-item{background:#ffffff;border-radius:4px;padding:20px 17px;margin-bottom:17px;border:1px solid #d8dce4}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-item.ant-collapse-item-active h3{color:#0762C8}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-item .ant-collapse-header{border:none;padding:0;font-weight:700;color:#00040c}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-item .ant-collapse-header .ant-collapse-arrow{right:2px}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-item .ant-collapse-header h3{font-size:14px;line-height:20px;font-weight:600;width:90%}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content{background-color:inherit;border:none}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content .ant-collapse-content-box{color:#5c6370;padding:20px 0 12px}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content .ant-collapse-content-box p{text-align:left;margin:0 0 12px 0;font-size:14px;line-height:22px;padding-right:35px}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content .ant-collapse-content-box p a{color:#0762C8 !important}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content .ant-collapse-content-box li{font-size:14px;line-height:24px}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content .ant-collapse-content-box a{color:#0762C8;font-size:14px;padding-right:2px}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content .ant-collapse-content-box ul{list-style-type:"- ";list-style-position:inside}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content .ant-collapse-content-box ul li{margin-bottom:10px}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content .ant-collapse-content-box ul li p{display:inline}@media only screen and (min-width: 576px){.desktop-faq___I3GGO{padding-bottom:24px;width:508px;margin:auto}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs h2{margin:40px 0;font-size:24px}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse{background-color:inherit;border:none}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-item{padding:22px 35px}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-item .ant-collapse-header{border:none;padding:0px 0;font-weight:700;color:#00040c}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-item .ant-collapse-header h3{font-size:15px;line-height:25px;width:90%;font-weight:600}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content{background-color:inherit;border:none}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content .ant-collapse-content-box{padding:20px 0 12px}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content .ant-collapse-content-box p{color:#000;text-align:left;margin:0 0 12px 0;font-size:15px}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content .ant-collapse-content-box li{font-size:15px}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content .ant-collapse-content-box a{color:#004eff}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content .ant-collapse-content-box ul{list-style-type:"- ";list-style-position:inside}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content .ant-collapse-content-box ul li{margin-bottom:10px}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content .ant-collapse-content-box ul li p{display:inline}}@media only screen and (min-width: 1200px){.desktop-faq___I3GGO{padding-bottom:48px;width:870px;margin:auto}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs h2{margin:60px 0;font-size:36px}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse{background-color:inherit;border:none}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-item{padding:33px 35px}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-item .ant-collapse-header{border:none;padding:0px 0;font-weight:600;color:#00040c}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-item .ant-collapse-header h3{font-size:18px;width:90%;font-weight:600;line-height:1.5}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content{background-color:inherit;border:none}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content .ant-collapse-content-box{padding:20px 0 12px}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content .ant-collapse-content-box p{text-align:left;margin:0 0 12px 0;font-size:18px;line-height:30px}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content .ant-collapse-content-box li{font-size:20px}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content .ant-collapse-content-box a{color:#004eff}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content .ant-collapse-content-box ul{list-style-type:"- ";list-style-position:inside}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content .ant-collapse-content-box ul li{margin-bottom:10px}.desktop-faq___I3GGO .faq-accordion-wrapper___3H5Vs .ant-collapse .ant-collapse-content .ant-collapse-content-box ul li p{display:inline}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___3I3OT{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___3x77P{width:100%;margin:0 auto}.full-width_____0eU{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___3x77P{max-width:1440px;margin:0 auto;padding:0}.full-width_____0eU{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___3c5Ix{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___3c5Ix{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___3c5Ix{padding:0 16px}}.btn-default___1OHiK{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___1OHiK:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___2QqcL{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___2QqcL:hover{color:#fff;background:#0045CA}.btn-dark___10zEj{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___10zEj:hover{color:#fff;background:#2C3444}.btn-dark2___stMJG{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___stMJG:hover{color:#fff;background:#2C3444}.btn-default2___1vQ1n{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___1vQ1n:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___12EJz{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.desktop-faq___20vpq{width:100%}.desktop-faq___20vpq .faq-accordion-wrapper___3VqGb h2{font-size:21px;font-weight:600;line-height:29px;margin:40px 0;text-align:center;color:#000}.desktop-faq___20vpq .faq-accordion-wrapper___3VqGb .ant-collapse{background-color:inherit;border:none}.desktop-faq___20vpq .faq-accordion-wrapper___3VqGb .ant-collapse .ant-collapse-item:first-child{border-top:1px solid #E7EAF0}.desktop-faq___20vpq .faq-accordion-wrapper___3VqGb .ant-collapse .ant-collapse-item{background:#ffffff;padding:24px 0;border-bottom:1px solid #E7EAF0}.desktop-faq___20vpq .faq-accordion-wrapper___3VqGb .ant-collapse .ant-collapse-item .ant-collapse-header{border:none;padding:0;color:#00040c}.desktop-faq___20vpq .faq-accordion-wrapper___3VqGb .ant-collapse .ant-collapse-item .ant-collapse-header .ant-collapse-arrow{right:2px}.desktop-faq___20vpq .faq-accordion-wrapper___3VqGb .ant-collapse .ant-collapse-item .ant-collapse-header h3{font-size:20px;line-height:1.3;font-weight:450;letter-spacing:-0.6px;padding-right:48px}.desktop-faq___20vpq .faq-accordion-wrapper___3VqGb .ant-collapse .ant-collapse-item.ant-collapse-item .ant-collapse-arrow img{transition:.3s}.desktop-faq___20vpq .faq-accordion-wrapper___3VqGb .ant-collapse .ant-collapse-item.ant-collapse-item-active .ant-collapse-arrow img{transform:rotate(-180deg)}.desktop-faq___20vpq .faq-accordion-wrapper___3VqGb .ant-collapse .ant-collapse-item .ant-motion-collapse-legacy-active{transition:height 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) !important}.desktop-faq___20vpq .faq-accordion-wrapper___3VqGb .ant-collapse .ant-collapse-content{background-color:inherit;border:none}.desktop-faq___20vpq .faq-accordion-wrapper___3VqGb .ant-collapse .ant-collapse-content .ant-collapse-content-box{color:#5c6370;padding:32px 0 16px}.desktop-faq___20vpq .faq-accordion-wrapper___3VqGb .ant-collapse .ant-collapse-content .ant-collapse-content-box p{text-align:left;margin:0 0 12px 0;font-size:16px;line-height:1.5}.desktop-faq___20vpq .faq-accordion-wrapper___3VqGb .ant-collapse .ant-collapse-content .ant-collapse-content-box p:last-child{margin-bottom:0}.desktop-faq___20vpq .faq-accordion-wrapper___3VqGb .ant-collapse .ant-collapse-content .ant-collapse-content-box p a{color:#0762C8 !important}.desktop-faq___20vpq .faq-accordion-wrapper___3VqGb .ant-collapse .ant-collapse-content .ant-collapse-content-box li{font-size:16px;line-height:1.5}.desktop-faq___20vpq .faq-accordion-wrapper___3VqGb .ant-collapse .ant-collapse-content .ant-collapse-content-box a{color:#0762C8;font-size:16px;padding-right:2px}.desktop-faq___20vpq .faq-accordion-wrapper___3VqGb .ant-collapse .ant-collapse-content .ant-collapse-content-box ul{list-style-type:"- ";list-style-position:inside}.desktop-faq___20vpq .faq-accordion-wrapper___3VqGb .ant-collapse .ant-collapse-content .ant-collapse-content-box ul li{margin-bottom:10px}.desktop-faq___20vpq .faq-accordion-wrapper___3VqGb .ant-collapse .ant-collapse-content .ant-collapse-content-box ul li p{display:inline}@media screen and (max-width: 768px){.desktop-faq___20vpq .faq-accordion-wrapper___3VqGb .ant-collapse .ant-collapse-item .ant-collapse-header h3{font-size:18px;font-weight:500;letter-spacing:-0.9px;padding-right:40px}.desktop-faq___20vpq .faq-accordion-wrapper___3VqGb .ant-collapse .ant-collapse-item.ant-collapse-item .ant-collapse-arrow img{width:16px}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___fqGUC{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___2k7xj{width:100%;margin:0 auto}.full-width___2npUU{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___2k7xj{max-width:1440px;margin:0 auto;padding:0}.full-width___2npUU{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___2pHIS{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___2pHIS{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___2pHIS{padding:0 16px}}.btn-default___1VsfN{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___1VsfN:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___GjstI{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___GjstI:hover{color:#fff;background:#0045CA}.btn-dark___NnSqi{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___NnSqi:hover{color:#fff;background:#2C3444}.btn-dark2___2M5Rq{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___2M5Rq:hover{color:#fff;background:#2C3444}.btn-default2___1thMV{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___1thMV:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___3oGkj{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.disclaimer-main___1_0s2{margin-bottom:16px;margin-left:18px}.disclaimer-main___1_0s2 p{font-style:normal;font-weight:normal;font-size:8px !important;line-height:26px;color:#00040c}.disclaimer-main___1_0s2 p:nth-of-type(2){margin-left:21px}.disclaimer-main___1_0s2 svg{float:left;height:5px;margin-top:4px}@media only screen and (min-width: 992px){.disclaimer-main___1_0s2{margin-left:0}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___3sPqB{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___1Q9Ez{width:100%;margin:0 auto}.full-width___jqLbC{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___1Q9Ez{max-width:1440px;margin:0 auto;padding:0}.full-width___jqLbC{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___1IG4b{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___1IG4b{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___1IG4b{padding:0 16px}}.btn-default___20gT3{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___20gT3:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___3FXRJ{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___3FXRJ:hover{color:#fff;background:#0045CA}.btn-dark___3cvun{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___3cvun:hover{color:#fff;background:#2C3444}.btn-dark2___1I3Pz{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___1I3Pz:hover{color:#fff;background:#2C3444}.btn-default2___ArAQz{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___ArAQz:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___2i6PP{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.have-questions-main___36e7G{display:flex;flex-direction:column;align-items:center}.have-questions-main___36e7G .primary-header___tslhH{font-size:25px;font-weight:700;line-height:32px;letter-spacing:0.01em;text-align:center;color:#262626}.have-questions-main___36e7G .secondary-header___3G-A0{font-size:16px;font-weight:400;line-height:30px;color:#5C6370;margin-top:20px;margin-bottom:20px}.have-questions-main___36e7G .action___1BUrq{margin:20px auto 0px;font-size:20px;line-height:24px;background-color:#004eff;border:none;border-radius:4px;font-weight:400;color:#ffffff;width:69%;height:48px;cursor:pointer;display:flex;align-items:center;justify-content:center;text-decoration:none}@media only screen and (min-width: 992px){.have-questions-main___36e7G .primary-header___tslhH{font-weight:bold;font-size:36px;line-height:54px;color:#262626}.have-questions-main___36e7G .secondary-header___3G-A0{font-size:25px;font-style:normal;font-weight:400;line-height:36px;margin:24px 0 24px}.have-questions-main___36e7G .action___1BUrq{width:230px;margin:10px auto 20px;font-size:18px}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___2ur1H{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___1OW5Z{width:100%;margin:0 auto}.full-width___3PPcA{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___1OW5Z{max-width:1440px;margin:0 auto;padding:0}.full-width___3PPcA{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___wLKdz{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___wLKdz{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___wLKdz{padding:0 16px}}.btn-default___zrAyY{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___zrAyY:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___1559j{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___1559j:hover{color:#fff;background:#0045CA}.btn-dark___3Jr6N{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___3Jr6N:hover{color:#fff;background:#2C3444}.btn-dark2___3HOjV{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___3HOjV:hover{color:#fff;background:#2C3444}.btn-default2___2UiOL{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___2UiOL:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___3m6A4{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.ready-to-boost___3vsLD{background-size:contain;background-repeat:no-repeat;background-position:bottom;padding:30px 0;text-align:center;height:510px}.ready-to-boost___3vsLD .container-wrapper-large___Whl29{width:calc(100% - 50px);margin:auto}.ready-to-boost___3vsLD .container-wrapper-large___Whl29 .heading-b___sH-Zo{max-width:292px;margin:auto}.ready-to-boost___3vsLD .container-wrapper-large___Whl29 .heading-b___sH-Zo .primary-b___1KXn2{font-size:34px;font-weight:700;line-height:42px;padding-bottom:12px}.ready-to-boost___3vsLD .container-wrapper-large___Whl29 .heading-b___sH-Zo .secondary-b___2KAxL{font-size:20px;font-weight:400;line-height:29px;margin-bottom:24px}.ready-to-boost___3vsLD .container-wrapper-large___Whl29 .heading-b___sH-Zo .action___1cC0T{font-size:20px;font-weight:400;line-height:24px;background-color:#004eff;border:none;border-radius:4px;font-size:20px;line-height:24px;font-weight:700;color:#ffffff;width:100%;height:48px;cursor:pointer;display:flex;align-items:center;justify-content:center;text-decoration:none;margin:0}@media only screen and (min-width: 992px){.ready-to-boost___3vsLD{background-color:#f8f9fb;background-size:contain;background-repeat:no-repeat;background-position:100% 50%;height:498px;padding:90px 0;text-align:left}.ready-to-boost___3vsLD .container-wrapper-large___Whl29{max-width:1140px;margin:0 auto;padding:0}.ready-to-boost___3vsLD .container-wrapper-large___Whl29 .heading-b___sH-Zo{max-width:540px;margin:initial}.ready-to-boost___3vsLD .container-wrapper-large___Whl29 .heading-b___sH-Zo .primary-b___1KXn2{font-weight:bold;font-size:50px;line-height:56px;padding-bottom:12px}.ready-to-boost___3vsLD .container-wrapper-large___Whl29 .heading-b___sH-Zo .secondary-b___2KAxL{font-size:26px;font-weight:400;line-height:36px;margin-bottom:24px}.ready-to-boost___3vsLD .container-wrapper-large___Whl29 .heading-b___sH-Zo .action___1cC0T{width:200px;font-weight:400}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___1kXVJ{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___38Uia{width:100%;margin:0 auto}.full-width___1Br-9{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___38Uia{max-width:1440px;margin:0 auto;padding:0}.full-width___1Br-9{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___3Xvf9{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___3Xvf9{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___3Xvf9{padding:0 16px}}.btn-default___Tz-_f{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___Tz-_f:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___273m2{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___273m2:hover{color:#fff;background:#0045CA}.btn-dark___1hGtH{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___1hGtH:hover{color:#fff;background:#2C3444}.btn-dark2___2xu8f{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___2xu8f:hover{color:#fff;background:#2C3444}.btn-default2___3r-r4{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___3r-r4:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___d8yOo{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.custom-swiper___kODo_ .swiper-container{height:480px}.custom-swiper___kODo_ .swiper-wrapper{transform:translate3d(-204px, 0px, 0px)}.custom-swiper___kODo_ .swiper-slide{width:303px;height:458px}.custom-swiper___kODo_ .swiper-slide-active{margin-bottom:10px}.custom-swiper___kODo_ .swiper-button-disabled{opacity:0.3}.custom-swiper___kODo_ .swiper-slide{opacity:0.6}.custom-swiper___kODo_ .swiper-slide a{text-decoration:none}.custom-swiper___kODo_ .swiper-slide-prev,.custom-swiper___kODo_ .swiper-slide-next{opacity:0.9}.custom-swiper___kODo_ .swiper-slide-active{opacity:1}.custom-swiper___kODo_ .arrow-container___H1xaE{width:85%;position:absolute;top:45%;left:4%}.custom-swiper___kODo_ .arrow-container___H1xaE .prev___28ufx{display:inline-flex;position:absolute;left:16%;z-index:1;cursor:pointer}.custom-swiper___kODo_ .arrow-container___H1xaE .next___3ynoB{display:inline-flex;position:absolute;right:16%;z-index:1;cursor:pointer}@media only screen and (max-device-width: 480px){.custom-swiper___kODo_ .swiper-container{height:480}.custom-swiper___kODo_ .swiper-slide-prev,.custom-swiper___kODo_ .swiper-slide-next{opacity:1}.custom-swiper___kODo_ .swiper-slide-active{transform:translate3d(-70px, 0px, 0px) rotateX(0deg) rotateY(0deg) !important}.custom-swiper___kODo_ .swiper-slide-next{transform:translate3d(-190px, 0px, -200px) rotateX(0deg) rotateY(0deg) !important}.custom-swiper___kODo_ .swiper-slide-prev{transform:translate3d(54px, 0px, -200px) rotateX(0deg) rotateY(0deg) !important}}@media only screen and (min-width: 576px) and (max-device-width: 992px){.custom-swiper___kODo_ .swiper-container{height:480}.custom-swiper___kODo_ .swiper-slide-prev,.custom-swiper___kODo_ .swiper-slide-next{opacity:1}.custom-swiper___kODo_ .swiper-slide-active{transform:translate3d(-70px, 0px, 0px) rotateX(0deg) rotateY(0deg) !important}.custom-swiper___kODo_ .swiper-slide-next{transform:translate3d(-198px, 0px, -200px) rotateX(0deg) rotateY(0deg) !important}.custom-swiper___kODo_ .swiper-slide-prev{transform:translate3d(58px, 0px, -200px) rotateX(0deg) rotateY(0deg) !important}}@media only screen and (min-width: 576px) and (max-device-width: 1200px) and (orientation: landscape){.custom-swiper___kODo_ .swiper-container{height:480}.custom-swiper___kODo_ .swiper-slide-prev,.custom-swiper___kODo_ .swiper-slide-next{opacity:1}.custom-swiper___kODo_ .swiper-slide-active{transform:translate3d(-70px, 0px, 0px) rotateX(0deg) rotateY(0deg) !important}.custom-swiper___kODo_ .swiper-slide-next{transform:translate3d(-198px, 0px, -200px) rotateX(0deg) rotateY(0deg) !important}.custom-swiper___kODo_ .swiper-slide-prev{transform:translate3d(68px, 0px, -200px) rotateX(0deg) rotateY(0deg) !important}}@media only screen and (min-width: 375px) and (max-device-width: 576px){.custom-swiper___kODo_ .swiper-container{height:480}.custom-swiper___kODo_ .swiper-slide-prev,.custom-swiper___kODo_ .swiper-slide-next{opacity:1}.custom-swiper___kODo_ .swiper-slide-active{transform:translate3d(-70px, 0px, 0px) rotateX(0deg) rotateY(0deg) !important}.custom-swiper___kODo_ .swiper-slide-next{transform:translate3d(-198px, 0px, -200px) rotateX(0deg) rotateY(0deg) !important}.custom-swiper___kODo_ .swiper-slide-prev{transform:translate3d(50px, 0px, -200px) rotateX(0deg) rotateY(0deg) !important}}

@font-face{font-family:'swiper-icons';src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");font-weight:400;font-style:normal}:root{--swiper-theme-color: #007aff}.swiper-container___1lVRs{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical___Nt4Wz>.swiper-wrapper___33J7S{flex-direction:column}.swiper-wrapper___33J7S{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android___2DRBy .swiper-slide___1wBt-,.swiper-wrapper___33J7S{transform:translate3d(0px, 0, 0)}.swiper-container-multirow___1Zdsc>.swiper-wrapper___33J7S{flex-wrap:wrap}.swiper-container-multirow-column___23-nl>.swiper-wrapper___33J7S{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode___1N9TP>.swiper-wrapper___33J7S{transition-timing-function:ease-out;margin:0 auto}.swiper-slide___1wBt-{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank___WWBnL{visibility:hidden}.swiper-container-autoheight___2tHei,.swiper-container-autoheight___2tHei .swiper-slide___1wBt-{height:auto}.swiper-container-autoheight___2tHei .swiper-wrapper___33J7S{align-items:flex-start;transition-property:transform, height}.swiper-container-3d___29Gh4{perspective:1200px}.swiper-container-3d___29Gh4 .swiper-wrapper___33J7S,.swiper-container-3d___29Gh4 .swiper-slide___1wBt-,.swiper-container-3d___29Gh4 .swiper-slide-shadow-left___36FHm,.swiper-container-3d___29Gh4 .swiper-slide-shadow-right___3aQQX,.swiper-container-3d___29Gh4 .swiper-slide-shadow-top___1X2ot,.swiper-container-3d___29Gh4 .swiper-slide-shadow-bottom___2aeHw,.swiper-container-3d___29Gh4 .swiper-cube-shadow___pVRsF{transform-style:preserve-3d}.swiper-container-3d___29Gh4 .swiper-slide-shadow-left___36FHm,.swiper-container-3d___29Gh4 .swiper-slide-shadow-right___3aQQX,.swiper-container-3d___29Gh4 .swiper-slide-shadow-top___1X2ot,.swiper-container-3d___29Gh4 .swiper-slide-shadow-bottom___2aeHw{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d___29Gh4 .swiper-slide-shadow-left___36FHm{background-image:linear-gradient(to left, rgba(0,0,0,0.5), rgba(0,0,0,0))}.swiper-container-3d___29Gh4 .swiper-slide-shadow-right___3aQQX{background-image:linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0))}.swiper-container-3d___29Gh4 .swiper-slide-shadow-top___1X2ot{background-image:linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0))}.swiper-container-3d___29Gh4 .swiper-slide-shadow-bottom___2aeHw{background-image:linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0))}.swiper-container-css-mode___3WRKr>.swiper-wrapper___33J7S{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode___3WRKr>.swiper-wrapper___33J7S::-webkit-scrollbar{display:none}.swiper-container-css-mode___3WRKr>.swiper-wrapper___33J7S>.swiper-slide___1wBt-{scroll-snap-align:start start}.swiper-container-horizontal___6md6R.swiper-container-css-mode___3WRKr>.swiper-wrapper___33J7S{scroll-snap-type:x mandatory}.swiper-container-vertical___Nt4Wz.swiper-container-css-mode___3WRKr>.swiper-wrapper___33J7S{scroll-snap-type:y mandatory}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___H7FaA{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___2O4vc{width:100%;margin:0 auto}.full-width___1dtG9{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___2O4vc{max-width:1440px;margin:0 auto;padding:0}.full-width___1dtG9{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___3mB7W{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___3mB7W{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___3mB7W{padding:0 16px}}.btn-default___CX1o0{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___CX1o0:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___3lZ5x{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___3lZ5x:hover{color:#fff;background:#0045CA}.btn-dark___2JJJK{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___2JJJK:hover{color:#fff;background:#2C3444}.btn-dark2___kc3DM{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___kc3DM:hover{color:#fff;background:#2C3444}.btn-default2___2F_Wz{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___2F_Wz:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___3yv3L{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.card___2UP3c{box-shadow:4px 4px 8px rgba(96,96,96,0.1);border-radius:16px;position:relative;overflow:hidden;width:303px;height:470px;display:flex;flex-direction:column;justify-content:space-between;padding-bottom:12px;background-color:#fff}.card___2UP3c section.top___36ZO9{padding:0;display:flex;flex-direction:column;justify-content:center}.card___2UP3c section.top___36ZO9 .logo-container___31MLi{background-repeat:no-repeat !important;background-size:contain !important;background-origin:content-box !important;height:50px;transform:scale(0.85)}.card___2UP3c section.top___36ZO9 .banner-container___3JytQ{border-bottom:2px solid #fff;height:103px;width:100%;overflow:hidden;position:relative;padding-bottom:12px}.card___2UP3c section.top___36ZO9 .banner-container___3JytQ img{object-fit:cover;object-position:top;width:100%;height:100%}.card___2UP3c section.top___36ZO9 .banner-container___3JytQ svg{position:absolute;bottom:0;left:0}.card___2UP3c section.top___36ZO9 .banner-container___3JytQ>h3{position:absolute;top:15px;left:15px;font-size:10px;font-weight:400;padding:4px 10px;border-radius:4px;color:#fff;background-color:#3be4c1}.card___2UP3c section.top___36ZO9 h3{font-size:18px;font-weight:600;color:#000;text-align:center;padding:0 22px;text-align:left;padding-top:6px}.card___2UP3c section.top___36ZO9 h4{font-size:14px;font-weight:600;color:#000;padding:0 22px;text-align:left}.card___2UP3c section.top___36ZO9 h5{font-size:9.5px;padding:0 22px;color:#5C6370;font-weight:400;height:16px;margin-top:6px}.card___2UP3c section.top___36ZO9 .full-name-spacer___2QdGs{height:26px}.card___2UP3c section.top___36ZO9 .short-description-spacer___1rZT-{height:16px;margin-top:6px}.card___2UP3c section.top___36ZO9 .financial-info___1ejt2{margin:0 22px;display:flex;justify-content:space-between}.card___2UP3c section.top___36ZO9 .financial-info___1ejt2 div{width:100%}.card___2UP3c section.top___36ZO9 .financial-info___1ejt2 div.single-metric___2PwF-{width:100%;text-align:center}.card___2UP3c section.top___36ZO9 .financial-info___1ejt2 div .multi-metric___1D3we:nth-child(even){padding-left:28px}.card___2UP3c section.top___36ZO9 .financial-info___1ejt2 div .multi-metric___1D3we:nth-child(odd) p:nth-of-type(2){width:190px}.card___2UP3c section.top___36ZO9 .financial-info___1ejt2 div p{font-size:12px;font-weight:400;color:#5C6370;line-height:24px}.card___2UP3c section.top___36ZO9 .financial-info___1ejt2 div p:nth-of-type(2){font-size:14px;font-weight:600;color:#000;padding-bottom:10px}.card___2UP3c section.top___36ZO9 .financial-info___1ejt2 div hr{background-color:#b3b3b3;height:1px;border:none;margin:4px 0}.card___2UP3c section.top___36ZO9 table.financial-info___1ejt2{width:90%;margin-bottom:10px}.card___2UP3c section.top___36ZO9 table.financial-info___1ejt2 tr{width:100%}.card___2UP3c section.top___36ZO9 table.financial-info___1ejt2 tr th{font-size:12px;font-weight:700;color:gray;line-height:2;width:50%}.card___2UP3c section.top___36ZO9 table.financial-info___1ejt2 tr th span{width:100%;display:inline-block;border-bottom:1px solid gray;margin:0;width:90%}.card___2UP3c section.top___36ZO9 table.financial-info___1ejt2 tr td{font-size:13px;font-weight:700;line-height:1.3;font-weight:700;vertical-align:text-top}.card___2UP3c section.top___36ZO9 table.financial-info___1ejt2 tr:last-of-type td{padding-top:4px}.card___2UP3c section.top___36ZO9 .divider___1MAfk{margin:0 22px;border:none;border-bottom:0.4px solid #8E96A6}.card___2UP3c section.top___36ZO9 .description___37Lev{margin-top:8px;margin-bottom:12px;width:100%;padding:0px}.card___2UP3c section.top___36ZO9 .description___37Lev h4{height:54px;font-size:13px;margin-bottom:20px;font-weight:400;text-align:left}.card___2UP3c section.bottom___3espJ{padding:0}.card___2UP3c section.bottom___3espJ .tags___25sU5{display:flex;justify-content:center;align-items:center;margin-bottom:10px}.card___2UP3c section.bottom___3espJ .tags___25sU5 span.tag___3wPUx{color:#fff;background-color:gray;font-size:10px;font-weight:600;line-height:1.5;padding:6px 12px;border-radius:4px;margin:0 11px 0 0;text-align:center}.card___2UP3c section.bottom___3espJ .tags___25sU5 span:last-of-type.tag___3wPUx{background-color:#fff;color:gray;border:1px solid gray}.card___2UP3c section.bottom___3espJ h5{text-align:center;color:gray;font-size:8px;padding:0 24px}@media only screen and (min-width: 992px){.card___2UP3c{min-height:380px}.card___2UP3c section.top___36ZO9 .description___37Lev{display:block}}

/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-modal,
.ant-image-preview {
  pointer-events: none;
}
.ant-modal.zoom-enter,
.ant-modal.zoom-appear,
.ant-image-preview.zoom-enter,
.ant-image-preview.zoom-appear {
  transform: none;
  opacity: 0;
  animation-duration: 0.3s;
  user-select: none;
}
.ant-modal-mask,
.ant-image-preview-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  filter: alpha(opacity=50);
}
.ant-modal-mask-hidden,
.ant-image-preview-mask-hidden {
  display: none;
}
.ant-modal-wrap,
.ant-image-preview-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  outline: 0;
  -webkit-overflow-scrolling: touch;
}
.ant-rate {
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  font-feature-settings: 'tnum';
  display: inline-block;
  margin: 0;
  padding: 0;
  color: #fadb14;
  font-size: 20px;
  line-height: unset;
  list-style: none;
  outline: none;
}
.ant-rate-disabled .ant-rate-star {
  cursor: default;
}
.ant-rate-disabled .ant-rate-star:hover {
  transform: scale(1);
}
.ant-rate-star {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-rate-star:not(:last-child) {
  margin-right: 8px;
}
.ant-rate-star > div:focus {
  outline: 0;
}
.ant-rate-star > div:hover,
.ant-rate-star > div:focus {
  transform: scale(1.1);
}
.ant-rate-star-first,
.ant-rate-star-second {
  color: #f0f0f0;
  transition: all 0.3s;
  user-select: none;
}
.ant-rate-star-first .anticon,
.ant-rate-star-second .anticon {
  vertical-align: middle;
}
.ant-rate-star-first {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
}
.ant-rate-star-half .ant-rate-star-first,
.ant-rate-star-half .ant-rate-star-second {
  opacity: 1;
}
.ant-rate-star-half .ant-rate-star-first,
.ant-rate-star-full .ant-rate-star-second {
  color: inherit;
}
.ant-rate-text {
  display: inline-block;
  margin: 0 8px;
  font-size: 14px;
}
.ant-rate-rtl {
  direction: rtl;
}
.ant-rate-rtl .ant-rate-star:not(:last-child) {
  margin-right: 0;
  margin-left: 8px;
}
.ant-rate-rtl .ant-rate-star-first {
  right: 0;
  left: auto;
}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___2MVdo{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___1Phqj{width:100%;margin:0 auto}.full-width___2t5E8{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___1Phqj{max-width:1440px;margin:0 auto;padding:0}.full-width___2t5E8{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___37-EO{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___37-EO{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___37-EO{padding:0 16px}}.btn-default___KZDmQ{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___KZDmQ:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___2_zXK{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___2_zXK:hover{color:#fff;background:#0045CA}.btn-dark___2Ce1n{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___2Ce1n:hover{color:#fff;background:#2C3444}.btn-dark2___q1ZrQ{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___q1ZrQ:hover{color:#fff;background:#2C3444}.btn-default2___21KWX{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___21KWX:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___3AU4R{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.smart-app-banner___2m7Cb .sc-bcXHqe{display:flex;align-items:center;justify-content:center;box-shadow:none;background:#fff}.smart-app-banner___2m7Cb .sc-bcXHqe .sc-dkrFOg{background:transparent}.smart-app-banner___2m7Cb .sc-bcXHqe .sc-hLBbgP img{width:64px}.smart-app-banner___2m7Cb .sc-bcXHqe .sc-jSUZER{padding:0;padding-left:8px}.smart-app-banner___2m7Cb .sc-bcXHqe .sc-jSUZER .sc-gKPRtg{font-size:14px;line-height:14px;font-weight:400;color:#090B0A}.smart-app-banner___2m7Cb .sc-bcXHqe .sc-jSUZER .sc-iBYQkv{font-size:11px;font-weight:400;line-height:12px;color:#848489}.smart-app-banner___2m7Cb .sc-bcXHqe .sc-ftTHYK{margin-right:0}.smart-app-banner___2m7Cb .sc-bcXHqe .sc-ftTHYK a{min-width:50px}.smart-app-banner___2m7Cb .sc-bcXHqe .sc-ftTHYK a img{width:53px;height:42px}.smart-app-banner___2m7Cb .sc-bcXHqe .sc-iBYQkv .ant-rate{font-size:12px;color:#F1A33B}.smart-app-banner___2m7Cb .sc-bcXHqe .sc-iBYQkv .ant-rate .ant-rate-star:not(:last-child){margin-right:1px}.smart-app-banner___2m7Cb .sc-bcXHqe .sc-iBYQkv h4{font-size:12px;line-height:12px;font-weight:400;color:#848489;padding-top:6px}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___3LC-K{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___3JJOZ{width:100%;margin:0 auto}.full-width___2yrqQ{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___3JJOZ{max-width:1440px;margin:0 auto;padding:0}.full-width___2yrqQ{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___1lQpp{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___1lQpp{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___1lQpp{padding:0 16px}}.btn-default___2PNBD{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___2PNBD:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___2GqZ4{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___2GqZ4:hover{color:#fff;background:#0045CA}.btn-dark___3e4rv{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___3e4rv:hover{color:#fff;background:#2C3444}.btn-dark2___2abwJ{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___2abwJ:hover{color:#fff;background:#2C3444}.btn-default2___1Z_Is{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___1Z_Is:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___2UNY-{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.blog-card___1aDx2{box-shadow:4px 4px 8px rgba(96,96,96,0.1);border-radius:8px;position:relative;overflow:hidden;width:100%;display:flex;flex-direction:column;justify-content:space-between;background-color:#fff}.blog-card___1aDx2 section.top___vXmz_{padding:0;display:flex;flex-direction:column;justify-content:center}.blog-card___1aDx2 section.top___vXmz_ .banner-container___2S3gG{border-bottom:2px solid #fff;width:100%;overflow:hidden;position:relative;padding-bottom:12px}.blog-card___1aDx2 section.top___vXmz_ .banner-container___2S3gG img{object-fit:cover;object-position:top;width:100%;height:100%}.blog-card___1aDx2 section.top___vXmz_ .info-container___3ilI2{padding:24px;height:180px;display:flex;flex-direction:column;justify-content:space-between}.blog-card___1aDx2 section.top___vXmz_ .info-container___3ilI2 h2{font-size:20px}.blog-card___1aDx2 section.top___vXmz_ .info-container___3ilI2 .tag___2uK_g span{padding:6px 22px;font-size:13px;background-color:#ebf1fe;color:#0762C8;border:1px solid #0762C8;border-radius:50px}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___D6l1a{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___3bt5s{width:100%;margin:0 auto}.full-width___3MsCy{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___3bt5s{max-width:1440px;margin:0 auto;padding:0}.full-width___3MsCy{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___18-al{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___18-al{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___18-al{padding:0 16px}}.btn-default___15sew{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___15sew:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___3xL9k{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___3xL9k:hover{color:#fff;background:#0045CA}.btn-dark___27J7R{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___27J7R:hover{color:#fff;background:#2C3444}.btn-dark2___p81Ap{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___p81Ap:hover{color:#fff;background:#2C3444}.btn-default2___1yBw_{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___1yBw_:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___1UaEU{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.search-section___1-G-E{min-height:62px;background:#f8f9fb;padding:10px 80px;width:100%;position:fixed;display:flex;flex-direction:column;justify-content:center;padding:20px 80px;z-index:100;height:auto}.search-section___1-G-E .ant-input-affix-wrapper{border-radius:5px}.search-section___1-G-E .ant-input-affix-wrapper .ant-icon{font-size:18px}.search-section___1-G-E .filter-tag___2mEXr span{display:inline-flex;padding:6px 22px;font-size:13px;border-radius:50px;margin-right:10px;border:1px solid #d8dde8;background-color:#fff}.search-section___1-G-E .filter-tag___2mEXr span:hover{color:#0762C8;border:1px solid #0762C8;background-color:#ebf1fe}.search-section___1-G-E .filter-tag___2mEXr .active___12yxH{color:#0762C8;border:1px solid #0762C8;background-color:#ebf1fe}.search-section___1-G-E .search-results___1a14o .search-result-item___2jwYG{text-align:left;line-height:2;color:#7889af;padding:0.3rem 0;display:flex;text-decoration:none}.search-section___1-G-E .search-results___1a14o .search-result-item___2jwYG:first-child{padding-top:20px}.search-section___1-G-E .search-results___1a14o .search-result-item___2jwYG:hover{color:#0762C8}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___3BiXs{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___3psrr{width:100%;margin:0 auto}.full-width___1q4-s{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___3psrr{max-width:1440px;margin:0 auto;padding:0}.full-width___1q4-s{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___2ZalX{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___2ZalX{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___2ZalX{padding:0 16px}}.btn-default___3kYtb{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___3kYtb:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___3D-gQ{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___3D-gQ:hover{color:#fff;background:#0045CA}.btn-dark___3Hvi2{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___3Hvi2:hover{color:#fff;background:#2C3444}.btn-dark2___14iQf{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___14iQf:hover{color:#fff;background:#2C3444}.btn-default2___XZR9u{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___XZR9u:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___3CLmH{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.contact-us-section___2-Dk8{background-color:#f8f9fb;padding:45px 32px 60px}.contact-us-section___2-Dk8 .addressItem___2cIvp{padding-top:32px;width:248px}.contact-us-section___2-Dk8 .addressItem___2cIvp h2{font-weight:700;font-size:15px;line-height:22px}.contact-us-section___2-Dk8 .addressItem___2cIvp p{color:#5C6370;font-size:15px;font-weight:400;line-height:23px}.contact-us-section___2-Dk8 .addressItem___2cIvp p a{color:#0762C8}.contact-us-section___2-Dk8 .addressItem___2cIvp p:nth-of-type(2){padding-top:0px}.contact-us-section___2-Dk8 .whatsapp-info___13jku .addressItem___2cIvp{width:180px}.contact-us-section___2-Dk8 .whatsapp-info___13jku .addressItem___2cIvp p{width:135px}.contact-us-section___2-Dk8 .whatsapp-info___13jku .addressItem___2cIvp p:nth-of-type(1){display:none}.contact-us-section___2-Dk8 .whatsapp-info___13jku .addressItem___2cIvp p a{color:#0762C8}.contact-us-section___2-Dk8 .whatsapp-info___13jku .qr-image___1tVno{display:flex;align-items:flex-end}.contact-us-section___2-Dk8 .whatsapp-info___13jku .qr-image___1tVno img{width:85px;height:85px}.contact-us-section___2-Dk8 .contact-address-item___3rG9J{padding-top:32px;width:265px}.contact-us-section___2-Dk8 .contact-address-item___3rG9J h2{font-weight:700;font-size:15px;line-height:22px}.contact-us-section___2-Dk8 .contact-address-item___3rG9J p{color:#5C6370;font-size:15px}.contact-us-section___2-Dk8 .contact-address-item___3rG9J p a{color:#0762C8}.contact-us-section___2-Dk8 .contact-address-item___3rG9J p:nth-of-type(2){padding-top:0px}@media only screen and (min-width: 768px){.contact-us-section___2-Dk8{background-color:#f8f9fb;padding:45px 50px}.contact-us-section___2-Dk8 h1{font-size:24px;font-weight:700;letter-spacing:-0.2px}.contact-us-section___2-Dk8 .addressItem___2cIvp{width:196px}.contact-us-section___2-Dk8 .addressItem___2cIvp h2{font-weight:700;padding-bottom:10px;font-size:14px;line-height:19px}.contact-us-section___2-Dk8 .addressItem___2cIvp p{color:#5C6370;font-size:14px;font-weight:400}.contact-us-section___2-Dk8 .contact-address-item___3rG9J{width:212px;padding-left:10px}.contact-us-section___2-Dk8 .contact-address-item___3rG9J h2{font-weight:700;font-size:14px;line-height:19px;padding-bottom:10px}.contact-us-section___2-Dk8 .contact-address-item___3rG9J p{color:#5C6370;font-size:14px;font-weight:400}.contact-us-section___2-Dk8 .whatsapp-info___13jku .addressItem___2cIvp{width:136px}.contact-us-section___2-Dk8 .whatsapp-info___13jku .addressItem___2cIvp h2{font-weight:700;font-size:14px;line-height:19px;padding-bottom:10px}.contact-us-section___2-Dk8 .whatsapp-info___13jku .addressItem___2cIvp p{color:#5C6370;font-size:14px;font-weight:400}.contact-us-section___2-Dk8 .whatsapp-info___13jku .addressItem___2cIvp p:nth-of-type(1){width:130px;display:block}.contact-us-section___2-Dk8 .whatsapp-info___13jku .addressItem___2cIvp p:nth-of-type(2){display:none}.contact-us-section___2-Dk8 .whatsapp-info___13jku .addressItem___2cIvp p:nth-of-type(2){padding-top:0px}.contact-us-section___2-Dk8 .whatsapp-info___13jku .qr-image___1tVno{display:flex;align-items:flex-end;padding-bottom:30px}.contact-us-section___2-Dk8 .whatsapp-info___13jku .qr-image___1tVno img{width:54px;height:54px}}@media only screen and (min-width: 1200px){.contact-us-section___2-Dk8{background-color:#f8f9fb;padding:90px 210px}.contact-us-section___2-Dk8 h1{font-size:36px;letter-spacing:-0.4px}.contact-us-section___2-Dk8 .addressItem___2cIvp{padding-top:32px;width:248px}.contact-us-section___2-Dk8 .addressItem___2cIvp h2{font-weight:700;font-size:16px;line-height:22px}.contact-us-section___2-Dk8 .addressItem___2cIvp p{color:#5C6370;font-size:16px}.contact-us-section___2-Dk8 .whatsapp-info___13jku .addressItem___2cIvp{width:180px}.contact-us-section___2-Dk8 .whatsapp-info___13jku .addressItem___2cIvp h2{font-weight:700;font-size:16px;line-height:22px}.contact-us-section___2-Dk8 .whatsapp-info___13jku .addressItem___2cIvp p{width:145px;font-size:16px}.contact-us-section___2-Dk8 .whatsapp-info___13jku .addressItem___2cIvp p:nth-of-type(1){width:145px;display:block}.contact-us-section___2-Dk8 .whatsapp-info___13jku .addressItem___2cIvp p:nth-of-type(2){display:none}.contact-us-section___2-Dk8 .whatsapp-info___13jku .qr-image___1tVno{display:flex;align-items:flex-end;padding-bottom:30px}.contact-us-section___2-Dk8 .whatsapp-info___13jku .qr-image___1tVno img{width:90px;height:90px}.contact-us-section___2-Dk8 .contact-address-item___3rG9J{padding-top:32px;width:265px}.contact-us-section___2-Dk8 .contact-address-item___3rG9J h2{font-weight:700;font-size:16px;line-height:22px}.contact-us-section___2-Dk8 .contact-address-item___3rG9J p{color:#5C6370;font-size:16px}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___2MlJk{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___1C48t{width:100%;margin:0 auto}.full-width___2tQW5{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___1C48t{max-width:1440px;margin:0 auto;padding:0}.full-width___2tQW5{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___3dNOR{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___3dNOR{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___3dNOR{padding:0 16px}}.btn-default___wKgSS{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___wKgSS:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___3yLcB{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___3yLcB:hover{color:#fff;background:#0045CA}.btn-dark____qImS{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark____qImS:hover{color:#fff;background:#2C3444}.btn-dark2___OHm5h{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___OHm5h:hover{color:#fff;background:#2C3444}.btn-default2___BaRdB{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___BaRdB:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___2yfCh{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.list-wrapper___2l8Gt h2{padding:30px 0 10px;font-weight:600}.list-wrapper___2l8Gt .sub-category___xjnz-{font-weight:700;padding-top:24px;padding-bottom:8px}.list-wrapper___2l8Gt .info-section___bKE-Y{display:flex;align-items:center;justify-content:space-between;padding:14px 0;text-decoration:none;color:#8e96a6}.list-wrapper___2l8Gt .info-section___bKE-Y .title___3bR-q{width:90%}.list-wrapper___2l8Gt .info-section___bKE-Y .title___3bR-q h1{font-size:15px;font-weight:400;letter-spacing:-0.2px;line-height:23px}.list-wrapper___2l8Gt .info-section___bKE-Y:hover{cursor:pointer;text-decoration:underline;color:#8e96a6}.list-wrapper___2l8Gt .no-records___3UXTt{display:flex;flex-direction:column;align-items:center;justify-content:center;padding-top:50px;padding-bottom:100px}.list-wrapper___2l8Gt .no-records___3UXTt .info___1NVRe{text-align:center;padding-top:20px}.list-wrapper___2l8Gt .no-records___3UXTt .info___1NVRe h2{padding:16px 0 10px}.list-wrapper___2l8Gt .no-records___3UXTt .info___1NVRe h3{width:75%;margin:auto}@media only screen and (min-width: 768px){.list-wrapper___2l8Gt h2{color:#000;padding:36px 0 10px;font-weight:600 !important}.list-wrapper___2l8Gt .info-section___bKE-Y .title___3bR-q{width:100%}.list-wrapper___2l8Gt .info-section___bKE-Y .title___3bR-q h1{line-height:23px;width:92%}}@media only screen and (min-width: 768px) and (orientation: landscape){.list-wrapper___2l8Gt .info-section___bKE-Y .title___3bR-q{width:95%}}@media only screen and (min-width: 1200px){.list-wrapper___2l8Gt h2{padding:36px 0 10px;font-weight:600 !important}.list-wrapper___2l8Gt .info-section___bKE-Y{justify-content:space-between}.list-wrapper___2l8Gt .info-section___bKE-Y .title___3bR-q{width:100%;padding-right:30px}.list-wrapper___2l8Gt .info-section___bKE-Y .title___3bR-q h1{font-size:18px;width:100%;line-height:30px}.list-wrapper___2l8Gt .no-records___3UXTt{padding-top:80px}.list-wrapper___2l8Gt .no-records___3UXTt .info___1NVRe{text-align:center;padding-top:20px}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___3V3J5{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___2tiQR{width:100%;margin:0 auto}.full-width___2dAkg{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___2tiQR{max-width:1440px;margin:0 auto;padding:0}.full-width___2dAkg{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___35U6k{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___35U6k{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___35U6k{padding:0 16px}}.btn-default___DoWy_{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___DoWy_:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___3Ug4q{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___3Ug4q:hover{color:#fff;background:#0045CA}.btn-dark___db95x{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___db95x:hover{color:#fff;background:#2C3444}.btn-dark2___1IaRH{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___1IaRH:hover{color:#fff;background:#2C3444}.btn-default2___2SQ3d{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___2SQ3d:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___3tS1b{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.details-wrapper___ndXSC h2{color:#000;padding:30px 0 20px;font-weight:600 !important;line-height:30px}.details-wrapper___ndXSC .last-updated___3Iwmm{font-size:14px;font-weight:400;color:#8e96a6}.details-wrapper___ndXSC .description___I9Dsz{padding:30px 0 70px;font-size:15px;font-weight:400;line-height:23px}.details-wrapper___ndXSC .description___I9Dsz img{width:100%}.details-wrapper___ndXSC .description___I9Dsz a{word-break:break-all;font-size:15px !important;color:#0762C8 !important;font-weight:400}.details-wrapper___ndXSC .description___I9Dsz li{list-style:disc;margin-left:30px;padding-left:5px}.details-wrapper___ndXSC .description___I9Dsz p{font-size:15px;font-weight:400;line-height:23px}@media only screen and (min-width: 1200px){.details-wrapper___ndXSC h2{line-height:38px}.details-wrapper___ndXSC .description___I9Dsz p{font-size:18px;font-weight:400;line-height:30px}.details-wrapper___ndXSC .description___I9Dsz p a{word-break:break-all;font-size:18px !important}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___1j0JF{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___1Y7zE{width:100%;margin:0 auto}.full-width___2mQgE{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___1Y7zE{max-width:1440px;margin:0 auto;padding:0}.full-width___2mQgE{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___1DQps{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___1DQps{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___1DQps{padding:0 16px}}.btn-default___2idY-{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___2idY-:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___1fG2O{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___1fG2O:hover{color:#fff;background:#0045CA}.btn-dark___2GDX5{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___2GDX5:hover{color:#fff;background:#2C3444}.btn-dark2___3U71H{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___3U71H:hover{color:#fff;background:#2C3444}.btn-default2___25_b6{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___25_b6:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___14i7x{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.broker-section___Pc4Y0 .conent-section___JMIoL h1{font-size:26px;font-weight:500;line-height:33px;letter-spacing:-0.4px;width:278px;color:#fff;padding:20px 0 30px}.broker-section___Pc4Y0 .conent-section___JMIoL h3{font-size:15px;font-weight:400;line-height:23px;letter-spacing:-0.2px;text-align:left !important}.broker-section___Pc4Y0 .benefit-cards___Kgvix{padding:50px 0}.broker-section___Pc4Y0 .benefit-cards___Kgvix .card-item___2woto .card-item-wrapper___uXbas{background-color:#0B2D45;border-radius:8px;padding:30px 15px 30px}.broker-section___Pc4Y0 .benefit-cards___Kgvix .card-item___2woto .card-item-wrapper___uXbas .header___3n1D0{border-bottom:0.5px solid #5C6370}.broker-section___Pc4Y0 .benefit-cards___Kgvix .card-item___2woto .card-item-wrapper___uXbas .header___3n1D0 h2{font-size:17px;font-weight:600;line-height:24px;width:200px;margin-bottom:20px;color:#fff;text-align:left}.broker-section___Pc4Y0 .benefit-cards___Kgvix .card-item___2woto .card-item-wrapper___uXbas .header___3n1D0 img{width:50px;height:50px;margin-bottom:20px}.broker-section___Pc4Y0 .benefit-cards___Kgvix .card-item___2woto .card-item-wrapper___uXbas p{padding-top:15px;font-size:15px;font-weight:400;line-height:23px;color:#fff}@media only screen and (min-width: 576px){.broker-section___Pc4Y0 .conent-section___JMIoL{padding:0px 30px 0}.broker-section___Pc4Y0 .conent-section___JMIoL h1{font-size:24px;line-height:30px;width:256px}.broker-section___Pc4Y0 .conent-section___JMIoL h3{font-size:15px;line-height:23px;padding:20px 30px 0}.broker-section___Pc4Y0 .benefit-cards___Kgvix{padding:50px 0}.broker-section___Pc4Y0 .benefit-cards___Kgvix .card-item___2woto .card-item-wrapper___uXbas{height:390px;padding:30px 14px 30px}.broker-section___Pc4Y0 .benefit-cards___Kgvix .card-item___2woto .card-item-wrapper___uXbas .header___3n1D0 h2{font-size:15px;line-height:24px;width:135px;margin-bottom:20px;height:86px}.broker-section___Pc4Y0 .benefit-cards___Kgvix .card-item___2woto .card-item-wrapper___uXbas .header___3n1D0 img{width:40px;height:40px;margin-bottom:10px}.broker-section___Pc4Y0 .benefit-cards___Kgvix .card-item___2woto .card-item-wrapper___uXbas p{font-size:14px;line-height:20px;width:100%}}@media only screen and (min-width: 1200px){.broker-section___Pc4Y0 .conent-section___JMIoL{padding:0px 150px 0}.broker-section___Pc4Y0 .conent-section___JMIoL h1{font-size:36px;line-height:46px;width:385px}.broker-section___Pc4Y0 .conent-section___JMIoL h3{font-size:18px;line-height:30px;padding:20px 40px 0}.broker-section___Pc4Y0 .benefit-cards___Kgvix{padding:60px 0px 80px}.broker-section___Pc4Y0 .benefit-cards___Kgvix .card-item___2woto .card-item-wrapper___uXbas{padding:32px 32px 46px;height:100%}.broker-section___Pc4Y0 .benefit-cards___Kgvix .card-item___2woto .card-item-wrapper___uXbas .header___3n1D0 h2{font-size:20px;line-height:30px;width:100%;margin-bottom:24px}.broker-section___Pc4Y0 .benefit-cards___Kgvix .card-item___2woto .card-item-wrapper___uXbas .header___3n1D0 img{width:58px;height:58px;margin-bottom:16px}.broker-section___Pc4Y0 .benefit-cards___Kgvix .card-item___2woto .card-item-wrapper___uXbas p{font-size:16px;line-height:25px;width:100%}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___8c5ej{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___3xMzc{width:100%;margin:0 auto}.full-width___2hr4z{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___3xMzc{max-width:1440px;margin:0 auto;padding:0}.full-width___2hr4z{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___29_bu{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___29_bu{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___29_bu{padding:0 16px}}.btn-default___2Bhhv{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___2Bhhv:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___ScRrU{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___ScRrU:hover{color:#fff;background:#0045CA}.btn-dark___22QR1{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___22QR1:hover{color:#fff;background:#2C3444}.btn-dark2___16IB6{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___16IB6:hover{color:#fff;background:#2C3444}.btn-default2___1dUtA{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___1dUtA:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___2zCCp{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.card___3VPGO{box-shadow:4px 4px 8px rgba(96,96,96,0.1);border-radius:16px;position:relative;overflow:hidden;max-width:328px;height:320px;display:flex;flex-direction:column;justify-content:space-between;padding-bottom:12px;background-color:#fff}.card___3VPGO section.top___3d_Ua{padding:0;display:flex;flex-direction:column;justify-content:center}.card___3VPGO section.top___3d_Ua .logo-container___rziXt{background-repeat:no-repeat !important;background-size:contain !important;background-origin:content-box !important;height:50px;transform:scale(0.85)}.card___3VPGO section.top___3d_Ua .banner-container___2_OsA{border-bottom:2px solid #fff;height:103px;width:100%;overflow:hidden;position:relative;padding-bottom:12px}.card___3VPGO section.top___3d_Ua .banner-container___2_OsA img{object-fit:cover;object-position:top;width:100%;height:100%}.card___3VPGO section.top___3d_Ua .banner-container___2_OsA svg{position:absolute;bottom:0;left:0}.card___3VPGO section.top___3d_Ua .banner-container___2_OsA>h3{position:absolute;top:15px;left:15px;font-size:10px;font-weight:400;padding:4px 10px;border-radius:4px;color:#fff;background-color:#3be4c1}.card___3VPGO section.top___3d_Ua h3{font-size:18px;font-weight:600;color:#000;text-align:center;padding:0 22px;text-align:left;padding-top:6px}.card___3VPGO section.top___3d_Ua h4{font-size:14px;font-weight:600;color:#000;padding:0 22px;text-align:left}.card___3VPGO section.top___3d_Ua h5{font-size:9.5px;padding:0 22px;color:#5C6370;font-weight:400;height:16px;margin-top:6px}.card___3VPGO section.top___3d_Ua .full-name-spacer___1WH9j{height:26px}.card___3VPGO section.top___3d_Ua .short-description-spacer___1EHhx{height:16px;margin-top:6px}.card___3VPGO section.top___3d_Ua .financial-info___3rF0T{margin:0 22px;display:flex;justify-content:space-between}.card___3VPGO section.top___3d_Ua .financial-info___3rF0T div{width:100%}.card___3VPGO section.top___3d_Ua .financial-info___3rF0T div.single-metric___BcvFT{width:100%;text-align:center}.card___3VPGO section.top___3d_Ua .financial-info___3rF0T div .multi-metric___S9JNc:nth-child(even){padding-left:28px}.card___3VPGO section.top___3d_Ua .financial-info___3rF0T div .multi-metric___S9JNc:nth-child(odd) p:nth-of-type(2){width:190px}.card___3VPGO section.top___3d_Ua .financial-info___3rF0T div p{font-size:12px;font-weight:400;color:#5C6370;line-height:24px}.card___3VPGO section.top___3d_Ua .financial-info___3rF0T div p:nth-of-type(2){font-size:14px;font-weight:600;color:#000;padding-bottom:10px}.card___3VPGO section.top___3d_Ua .financial-info___3rF0T div hr{background-color:#b3b3b3;height:1px;border:none;margin:4px 0}.card___3VPGO section.top___3d_Ua table.financial-info___3rF0T{width:90%;margin-bottom:10px}.card___3VPGO section.top___3d_Ua table.financial-info___3rF0T tr{width:100%}.card___3VPGO section.top___3d_Ua table.financial-info___3rF0T tr th{font-size:12px;font-weight:700;color:gray;line-height:2;width:50%}.card___3VPGO section.top___3d_Ua table.financial-info___3rF0T tr th span{width:100%;display:inline-block;border-bottom:1px solid gray;margin:0;width:90%}.card___3VPGO section.top___3d_Ua table.financial-info___3rF0T tr td{font-size:13px;font-weight:700;line-height:1.3;font-weight:700;vertical-align:text-top}.card___3VPGO section.top___3d_Ua table.financial-info___3rF0T tr:last-of-type td{padding-top:4px}.card___3VPGO section.top___3d_Ua .divider___3gYjS{margin:0 22px;border:none;border-bottom:0.4px solid #8E96A6}.card___3VPGO section.top___3d_Ua .description___3Tioy{margin-top:8px;margin-bottom:12px;width:100%;padding:0px}.card___3VPGO section.top___3d_Ua .description___3Tioy h4{height:50px;font-size:13px;margin-bottom:10px;font-weight:400;text-align:left}.card___3VPGO section.bottom___34Jh0{padding:0}.card___3VPGO section.bottom___34Jh0 .tags___3cb1x{display:flex;justify-content:center;align-items:center;margin-bottom:10px}.card___3VPGO section.bottom___34Jh0 .tags___3cb1x span.tag___M8xVS{color:#fff;background-color:gray;font-size:10px;font-weight:600;line-height:1.5;padding:6px 12px;border-radius:4px;margin:0 11px 0 0;text-align:center}.card___3VPGO section.bottom___34Jh0 .tags___3cb1x span:last-of-type.tag___M8xVS{background-color:#fff;color:gray;border:1px solid gray}.card___3VPGO section.bottom___34Jh0 h5{text-align:center;color:gray;font-size:8px;padding:0 24px}@media only screen and (min-width: 992px){.card___3VPGO{min-height:300px}.card___3VPGO section.top___3d_Ua .description___3Tioy{display:block}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___23hqJ{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___1YrKb{width:100%;margin:0 auto}.full-width___hfXMS{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___1YrKb{max-width:1440px;margin:0 auto;padding:0}.full-width___hfXMS{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___24b1k{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___24b1k{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___24b1k{padding:0 16px}}.btn-default___xwNlO{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___xwNlO:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___3R532{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___3R532:hover{color:#fff;background:#0045CA}.btn-dark___2AeH4{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___2AeH4:hover{color:#fff;background:#2C3444}.btn-dark2___3j5nL{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___3j5nL:hover{color:#fff;background:#2C3444}.btn-default2___dDmsc{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___dDmsc:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___1Til2{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}:root{--doc-height: 100%}.sacm-alert___2JYyf{width:100%;border-radius:10px;overflow:hidden;padding:0}.sacm-alert___2JYyf .btn-understand___2qzf9{color:#fff;font-size:16px;font-weight:500;letter-spacing:-0.4px;line-height:32px;padding:8px 20px;border-radius:8px;background:#0066D6;border:none;cursor:pointer}.sacm-alert___2JYyf .ant-modal-body{padding:24px 32px;max-height:calc(100vh - 260px);overflow-y:auto}.sacm-alert___2JYyf .ant-modal-header{padding:24px 32px}.sacm-alert___2JYyf .ant-modal-header .ant-modal-title{color:#F70000;font-size:18px;font-weight:600;letter-spacing:-0.54px}.sacm-alert___2JYyf .ant-modal-footer{padding:24px 32px;text-align:center}.sacm-alert___2JYyf .markdown___1x5y2{width:100%}.sacm-alert___2JYyf .markdown___1x5y2 p,.sacm-alert___2JYyf .markdown___1x5y2 a,.sacm-alert___2JYyf .markdown___1x5y2 ul li{font-size:14px;font-weight:400;line-height:21px;letter-spacing:-0.28px}.sacm-alert___2JYyf .markdown___1x5y2 p strong,.sacm-alert___2JYyf .markdown___1x5y2 a strong,.sacm-alert___2JYyf .markdown___1x5y2 ul li strong{font-weight:600}.sacm-alert___2JYyf .markdown___1x5y2 p{margin-top:16px}.sacm-alert___2JYyf .markdown___1x5y2 p:first-child{margin-top:0}.sacm-alert___2JYyf .markdown___1x5y2 a{text-decoration:underline;text-underline-offset:3px}.sacm-alert___2JYyf .markdown___1x5y2 ul{padding-left:20px}.sacm-alert___2JYyf .markdown___1x5y2 ul li{position:relative}.sacm-alert___2JYyf .markdown___1x5y2 ul li::marker{display:none}.sacm-alert___2JYyf .markdown___1x5y2 ul li::before{content:'';display:block;width:4px;height:4px;border-radius:4px;background:#292b2c;position:absolute;left:-15px;top:11px;transform:translateY(-50%)}@media screen and (max-width: 768px){.sacm-alert___2JYyf .ant-modal-body{padding:24px;max-height:calc(100vh - 200px);overflow-y:auto}@supports (-webkit-touch-callout: none){.sacm-alert___2JYyf .ant-modal-body{max-height:calc(var(--doc-height) - 200px)}}.sacm-alert___2JYyf .ant-modal-header{padding:24px}.sacm-alert___2JYyf .ant-modal-footer{padding:24px}}

/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-affix {
  position: fixed;
  z-index: 10;
}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___AaTgD{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___EwyDp{width:100%;margin:0 auto}.full-width___25ei7{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___EwyDp{max-width:1440px;margin:0 auto;padding:0}.full-width___25ei7{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___u1cwQ{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___u1cwQ{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___u1cwQ{padding:0 16px}}.btn-default___aLEr5{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___aLEr5:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___1B658{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___1B658:hover{color:#fff;background:#0045CA}.btn-dark___1aNtD{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___1aNtD:hover{color:#fff;background:#2C3444}.btn-dark2___1v-Td{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___1v-Td:hover{color:#fff;background:#2C3444}.btn-default2___2Pt6K{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___2Pt6K:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___2I8SK{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.desktop-footer___3nJGA{background:#fff;padding:88px 0;border-top:1px solid #E7EAF0}.desktop-footer___3nJGA .footer-links___ZeLjU{display:flex;gap:32px;padding-bottom:88px}.desktop-footer___3nJGA .footer-links___ZeLjU .column1___1YDjd{width:326px}.desktop-footer___3nJGA .footer-links___ZeLjU .column1___1YDjd .logo___q0Mch svg{width:116px;height:30px}.desktop-footer___3nJGA .footer-links___ZeLjU .column1___1YDjd h3{font-size:16px;font-weight:450;line-height:1.5;letter-spacing:-0.4px;color:#434D60;padding:24px 0}.desktop-footer___3nJGA .footer-links___ZeLjU .column1___1YDjd .app-stores___3XUQ4{display:flex}.desktop-footer___3nJGA .footer-links___ZeLjU .column1___1YDjd .app-stores___3XUQ4 a{min-width:110px;height:44px;padding:3px 11px;border:1px solid #D7DCE5;border-radius:8px;margin-right:8px}.desktop-footer___3nJGA .footer-links___ZeLjU .column1___1YDjd .app-stores___3XUQ4 a img{max-width:100%}.desktop-footer___3nJGA .footer-links___ZeLjU .column1___1YDjd .app-stores___3XUQ4 a:first-child img{width:120px}.desktop-footer___3nJGA .footer-links___ZeLjU .column1___1YDjd .app-stores___3XUQ4 a:last-child img{width:116px}.desktop-footer___3nJGA .footer-links___ZeLjU .column-right___3R0gD{flex:1;display:flex;justify-content:flex-end;gap:32px}.desktop-footer___3nJGA .footer-links___ZeLjU .footer-menu___1eo9C{display:none;margin-top:56px;border-top:1px solid #E7EAF0}.desktop-footer___3nJGA .footer-links___ZeLjU .footer-menu___1eo9C .ant-collapse{background-color:inherit;border:none}.desktop-footer___3nJGA .footer-links___ZeLjU .footer-menu___1eo9C .ant-collapse .ant-collapse-item{background:#ffffff;padding:20px 0;border-bottom:1px solid #E7EAF0}.desktop-footer___3nJGA .footer-links___ZeLjU .footer-menu___1eo9C .ant-collapse .ant-collapse-item .ant-collapse-header{border:none;padding:0;color:#161A23;font-size:16px;font-weight:500;letter-spacing:-0.48px}.desktop-footer___3nJGA .footer-links___ZeLjU .footer-menu___1eo9C .ant-collapse .ant-collapse-item .ant-collapse-header .ant-collapse-arrow{right:2px}.desktop-footer___3nJGA .footer-links___ZeLjU .footer-menu___1eo9C .ant-collapse .ant-collapse-item .ant-collapse-content{background:none;border:none}.desktop-footer___3nJGA .footer-links___ZeLjU .footer-menu___1eo9C .ant-collapse .ant-collapse-item .ant-collapse-content-box{padding:8px 0 4px}.desktop-footer___3nJGA .footer-links___ZeLjU .footer-menu___1eo9C .ant-collapse .ant-collapse-item.ant-collapse-item .ant-collapse-arrow img{width:16px;transition:.3s}.desktop-footer___3nJGA .footer-links___ZeLjU .footer-menu___1eo9C .ant-collapse .ant-collapse-item.ant-collapse-item-active .ant-collapse-arrow img{transform:rotate(-180deg)}.desktop-footer___3nJGA .footer-links___ZeLjU .footer-menu___1eo9C .ant-collapse .ant-collapse-item .ant-motion-collapse-legacy-active{transition:height 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) !important}.desktop-footer___3nJGA .footer-links___ZeLjU .footer-menu___1eo9C .column-row___1Pyml a,.desktop-footer___3nJGA .footer-links___ZeLjU .footer-menu___1eo9C .column-row___1Pyml p{display:inline-block;font-size:16px;font-weight:450;line-height:1.5;letter-spacing:-0.4px;color:#434D60;text-decoration:none}.desktop-footer___3nJGA .footer-links___ZeLjU .footer-menu___1eo9C .column-row___1Pyml>p{margin-top:20px}.desktop-footer___3nJGA .footer-links___ZeLjU .footer-menu___1eo9C .column-row___1Pyml>a{margin-top:20px}.desktop-footer___3nJGA .footer-links___ZeLjU .column___8ouiI{flex:1;max-width:286px}.desktop-footer___3nJGA .footer-links___ZeLjU .column___8ouiI .column-section___1blJK{display:flex;flex-direction:column;margin-top:40px}.desktop-footer___3nJGA .footer-links___ZeLjU .column___8ouiI .column-section___1blJK:first-child{margin-top:0}.desktop-footer___3nJGA .footer-links___ZeLjU .column___8ouiI h1{font-size:16px;font-weight:500;letter-spacing:-0.48px;color:#161A23}.desktop-footer___3nJGA .footer-links___ZeLjU .column___8ouiI .column-row___1Pyml{margin-top:16px;font-size:16px;font-weight:450;line-height:1.5;letter-spacing:-0.4px;color:#434D60}.desktop-footer___3nJGA .footer-links___ZeLjU .column___8ouiI .column-row___1Pyml:first-child{margin-top:20px}.desktop-footer___3nJGA .footer-links___ZeLjU .column___8ouiI .column-row___1Pyml a{font-size:16px;font-weight:450;line-height:1.5;letter-spacing:-0.4px;color:#434D60;text-decoration:none}.desktop-footer___3nJGA .footer-links___ZeLjU .column___8ouiI .column-row___1Pyml a:hover{color:#2C3444}.desktop-footer___3nJGA .copy-right___3mGZn{width:100%;display:flex;align-items:center;justify-content:space-between;padding:16px 0;border-top:1px solid #E7EAF0;border-bottom:1px solid #E7EAF0}.desktop-footer___3nJGA .copy-right___3mGZn h3{font-size:15px;font-weight:450;line-height:1.3;letter-spacing:-0.375px;color:#6D7688}.desktop-footer___3nJGA .copy-right___3mGZn .social-list___3MKq8{display:flex;gap:8px}.desktop-footer___3nJGA .copy-right___3mGZn .social-list___3MKq8 a{width:32px;height:32px;border-radius:4px;background:#F5F7F9;transition:.1s;display:flex;justify-content:center;align-items:center}.desktop-footer___3nJGA .copy-right___3mGZn .social-list___3MKq8 a:hover{background:#E7EAF0}.desktop-footer___3nJGA .disclaimer___1Czwo{padding-top:24px}.desktop-footer___3nJGA .disclaimer___1Czwo p{font-size:12px;letter-spacing:-0.36px;font-weight:450;color:#6D7688;margin-bottom:10px}@media screen and (max-width: 1440px){.desktop-footer___3nJGA{padding:88px 0}}@media screen and (max-width: 1200px){.desktop-footer___3nJGA{padding:56px 0 88px}.desktop-footer___3nJGA .footer-links___ZeLjU{display:block;padding-bottom:56px}.desktop-footer___3nJGA .footer-links___ZeLjU .column-right___3R0gD{justify-content:space-between;margin-top:56px}.desktop-footer___3nJGA .footer-links___ZeLjU .column___8ouiI{max-width:368px}}@media screen and (max-width: 768px){.desktop-footer___3nJGA .footer-links___ZeLjU .column1___1YDjd{width:100%}.desktop-footer___3nJGA .footer-links___ZeLjU .column-right___3R0gD{display:none}.desktop-footer___3nJGA .footer-links___ZeLjU .footer-menu___1eo9C{display:block}.desktop-footer___3nJGA .copy-right___3mGZn{flex-direction:column-reverse;padding:0;border:none;align-items:flex-start;gap:56px}.desktop-footer___3nJGA .copy-right___3mGZn h3{font-weight:400;letter-spacing:-0.3px}.desktop-footer___3nJGA .disclaimer___1Czwo{padding-top:56px}.desktop-footer___3nJGA .disclaimer___1Czwo p{letter-spacing:-0.2px}}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___2I6gh{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___1VlGv{width:100%;margin:0 auto}.full-width___MlUSc{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___1VlGv{max-width:1440px;margin:0 auto;padding:0}.full-width___MlUSc{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___18jqs{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___18jqs{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___18jqs{padding:0 16px}}.btn-default___1kTBQ{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___1kTBQ:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___1Iql3{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___1Iql3:hover{color:#fff;background:#0045CA}.btn-dark___NL_XU{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___NL_XU:hover{color:#fff;background:#2C3444}.btn-dark2___ShRav{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___ShRav:hover{color:#fff;background:#2C3444}.btn-default2___2K2od{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___2K2od:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___2Q7fd{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.button___20-ac{display:flex;flex-direction:column;border:none;padding:14px 0;background-color:inherit;cursor:pointer}.button___20-ac:focus{outline:none}.hamburger___2RuGy{padding:1px 3px}.hamburger___2RuGy .line___QUHu0{width:18px;height:2px;background-color:#161A23;display:block;margin:4px auto;transition:0.3s}.hamburger___2RuGy:hover{cursor:pointer}.is-active___1paC_{padding:1px 0}.is-active___1paC_ .line___QUHu0{width:30px}.is-active___1paC_ .line___QUHu0:nth-child(1){transform:translateY(6px) rotate(45deg) scale(0.75)}.is-active___1paC_ .line___QUHu0:nth-child(2){transform:scale(0)}.is-active___1paC_ .line___QUHu0:nth-child(3){transform:translateY(-6px) rotate(-45deg) scale(0.75)}.color-white___1Ex9V .line___QUHu0{background-color:#fff}

/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-modal,
.ant-image-preview {
  pointer-events: none;
}
.ant-modal.zoom-enter,
.ant-modal.zoom-appear,
.ant-image-preview.zoom-enter,
.ant-image-preview.zoom-appear {
  transform: none;
  opacity: 0;
  animation-duration: 0.3s;
  user-select: none;
}
.ant-modal-mask,
.ant-image-preview-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  filter: alpha(opacity=50);
}
.ant-modal-mask-hidden,
.ant-image-preview-mask-hidden {
  display: none;
}
.ant-modal-wrap,
.ant-image-preview-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  outline: 0;
  -webkit-overflow-scrolling: touch;
}
.ant-drawer {
  position: fixed;
  z-index: 1000;
  width: 0%;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1), height 0s ease 0.3s, width 0s ease 0.3s;
}
.ant-drawer > * {
  transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1), box-shadow 0.3s cubic-bezier(0.7, 0.3, 0.1, 1);
}
.ant-drawer-content-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
}
.ant-drawer .ant-drawer-content {
  width: 100%;
  height: 100%;
}
.ant-drawer-left,
.ant-drawer-right {
  top: 0;
  width: 0%;
  height: 100%;
}
.ant-drawer-left .ant-drawer-content-wrapper,
.ant-drawer-right .ant-drawer-content-wrapper {
  height: 100%;
}
.ant-drawer-left.ant-drawer-open,
.ant-drawer-right.ant-drawer-open {
  width: 100%;
  transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1);
}
.ant-drawer-left {
  left: 0;
}
.ant-drawer-left .ant-drawer-content-wrapper {
  left: 0;
}
.ant-drawer-left.ant-drawer-open .ant-drawer-content-wrapper {
  box-shadow: 6px 0 16px -8px rgba(0, 0, 0, 0.08), 9px 0 28px 0 rgba(0, 0, 0, 0.05), 12px 0 48px 16px rgba(0, 0, 0, 0.03);
}
.ant-drawer-right {
  right: 0;
}
.ant-drawer-right .ant-drawer-content-wrapper {
  right: 0;
}
.ant-drawer-right.ant-drawer-open .ant-drawer-content-wrapper {
  box-shadow: -6px 0 16px -8px rgba(0, 0, 0, 0.08), -9px 0 28px 0 rgba(0, 0, 0, 0.05), -12px 0 48px 16px rgba(0, 0, 0, 0.03);
}
.ant-drawer-right.ant-drawer-open.no-mask {
  right: 1px;
  transform: translateX(1px);
}
.ant-drawer-top,
.ant-drawer-bottom {
  left: 0;
  width: 100%;
  height: 0%;
}
.ant-drawer-top .ant-drawer-content-wrapper,
.ant-drawer-bottom .ant-drawer-content-wrapper {
  width: 100%;
}
.ant-drawer-top.ant-drawer-open,
.ant-drawer-bottom.ant-drawer-open {
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1);
}
.ant-drawer-top {
  top: 0;
}
.ant-drawer-top.ant-drawer-open .ant-drawer-content-wrapper {
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.08), 0 9px 28px 0 rgba(0, 0, 0, 0.05), 0 12px 48px 16px rgba(0, 0, 0, 0.03);
}
.ant-drawer-bottom {
  bottom: 0;
}
.ant-drawer-bottom .ant-drawer-content-wrapper {
  bottom: 0;
}
.ant-drawer-bottom.ant-drawer-open .ant-drawer-content-wrapper {
  box-shadow: 0 -6px 16px -8px rgba(0, 0, 0, 0.08), 0 -9px 28px 0 rgba(0, 0, 0, 0.05), 0 -12px 48px 16px rgba(0, 0, 0, 0.03);
}
.ant-drawer-bottom.ant-drawer-open.no-mask {
  bottom: 1px;
  transform: translateY(1px);
}
.ant-drawer.ant-drawer-open .ant-drawer-mask {
  height: 100%;
  opacity: 1;
  transition: none;
  animation: antdDrawerFadeIn 0.3s cubic-bezier(0.7, 0.3, 0.1, 1);
  pointer-events: auto;
}
.ant-drawer-title {
  margin: 0;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}
.ant-drawer-content {
  position: relative;
  z-index: 1;
  overflow: auto;
  background-color: #004eff;
  background-clip: padding-box;
  border: 0;
}
.ant-drawer-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: block;
  padding: 20px;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 700;
  font-size: 16px;
  font-style: normal;
  line-height: 1;
  text-align: center;
  text-transform: none;
  text-decoration: none;
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  transition: color 0.3s;
  text-rendering: auto;
}
.ant-drawer-close:focus,
.ant-drawer-close:hover {
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
}
.ant-drawer-header-no-title .ant-drawer-close {
  margin-right: var(--scroll-bar);
  /* stylelint-disable-next-line function-calc-no-invalid */
  padding-right: calc(20px - var(--scroll-bar));
}
.ant-drawer-header {
  position: relative;
  padding: 16px 24px;
  color: rgba(0, 0, 0, 0.85);
  background: #004eff;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 2px 2px 0 0;
}
.ant-drawer-header-no-title {
  color: rgba(0, 0, 0, 0.85);
  background: #004eff;
}
.ant-drawer-wrapper-body {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
}
.ant-drawer-body {
  flex-grow: 1;
  padding: 0;
  overflow: auto;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}
.ant-drawer-footer {
  flex-shrink: 0;
  padding: 10px 10px;
  border-top: 1px solid #f0f0f0;
}
.ant-drawer-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  filter: alpha(opacity=45);
  transition: opacity 0.3s linear, height 0s ease 0.3s;
  pointer-events: none;
}
.ant-drawer-open-content {
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}
.ant-drawer .ant-picker-clear {
  background: #fff;
}
@keyframes antdDrawerFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ant-drawer-rtl {
  direction: rtl;
}
.ant-drawer-rtl .ant-drawer-close {
  right: auto;
  left: 0;
}

@supports not (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Regular.ttf") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Medium.ttf") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-SemiBold.ttf") format("woff2");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-Bold.ttf") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-ExtraBold.ttf") format("woff2");font-weight:800;font-style:normal;font-display:swap}}@supports (font-variation-settings: normal){@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("woff2");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:"Inter";src:url("/fonts/inter/Inter-VariableFont_slnt,wght_italic.ttf") format("woff2");font-weight:100 900;font-style:italic;font-display:swap}}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Regular.otf") format("opentype");font-style:normal;font-weight:400}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Medium.otf") format("opentype");font-style:normal;font-weight:500}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:600}@font-face{font-family:"Noto";src:url("/fonts/noto/NotoSansSC-Bold.otf") format("opentype");font-style:normal;font-weight:700}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre,mark{margin:0}mark{padding:0;background-color:inherit}html{font-family:"Inter", sans-serif;color:#00040c;scroll-behavior:smooth}html ::-moz-selection{background:#0067C5}html ::selection{background:#0067C5}html h1{letter-spacing:-0.4px}html h2,html h3,html h4,html h6,html p{letter-spacing:-0.2px}html :lang(zh){font-family:"Inter", "Noto", sans-serif}html :lang(zh) h1{letter-spacing:-0.2px}html :lang(zh) h2,html :lang(zh) h3,html :lang(zh) h4,html :lang(zh) p{letter-spacing:0px}header{padding:0 24px}h1{font-size:30px}h2{font-size:20px}h3,p,a{font-size:16px}h4{font-size:14px}h1,h2{font-weight:800}h3,h4{font-weight:700}p{font-weight:400}p mark{font-weight:500}p strong{font-weight:700}a{font-weight:500}h1{line-height:1.333333}h2,h3,h4,p,a{line-height:1.5}h1{letter-spacing:-0.8px}h2{letter-spacing:-0.2px}h3,h4,p,a{letter-spacing:-0.2px}a:active{color:#00b299}ul{list-style:none;padding:0;margin:0}p>a{font-size:inherit}.ant-tooltip{max-width:300px;width:auto}.ant-tooltip .ant-tooltip-inner{color:#FF1700}.ant-popover .ant-popover-content .ant-popover-inner{border-radius:8px;margin-left:-32px}.ant-popover .ant-popover-content .ant-popover-inner .ant-popover-inner-content{padding:0}.ant-popover{animation:fadeInAnimation ease 0.5s;animation-iteration-count:1;animation-fill-mode:forwards}@keyframes fadeInAnimation___3V_d1{0%{opacity:0}100%{opacity:1}}@media screen and (min-width: 992px){ß h1{font-size:45px;line-height:1.222222}h2{font-size:30px;line-height:1.333333}h3{font-size:20px}h4{font-size:16px}header{padding:0 80px}}@media only screen and (max-width: 1440px){.container-wrapper___oAzP6{width:100%;margin:0 auto}.full-width___1tIKc{width:100%}}@media only screen and (min-width: 1440px){.container-wrapper___oAzP6{max-width:1440px;margin:0 auto;padding:0}.full-width___1tIKc{width:100%;padding:0}}@media only screen and (min-width: 1440px){.page-wrapper___3si6C{width:100%;max-width:1496px;margin:0 auto;padding:0 48px}}@media only screen and (max-width: 1440px){.page-wrapper___3si6C{padding:0 48px}}@media only screen and (max-width: 1199px){.page-wrapper___3si6C{padding:0 16px}}.btn-default___3Yvj1{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:15px;font-weight:600;letter-spacing:-0.3px;white-space:nowrap;transition:.1s;text-align:center}.btn-default___3Yvj1:hover{color:#161A23;background:rgba(0,0,0,0.05)}.btn-primary___2BTki{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#1D428A;white-space:nowrap;transition:.1s}.btn-primary___2BTki:hover{color:#fff;background:#0045CA}.btn-dark___1ulWA{text-decoration:none;height:42px;line-height:42px;padding:0 24px;border-radius:8px;color:#fff;font-size:15px;font-weight:600;letter-spacing:-0.3px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark___1ulWA:hover{color:#fff;background:#2C3444}.btn-dark2___1aYYQ{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#fff;font-size:16px;font-weight:600;letter-spacing:-0.4px;background:#161A23;white-space:nowrap;transition:.1s}.btn-dark2___1aYYQ:hover{color:#fff;background:#2C3444}.btn-default2___3_Fog{text-decoration:none;height:59px;line-height:59px;padding:0 24px;border-radius:8px;color:#161A23;border:1px solid #161A23;font-size:16px;font-weight:600;letter-spacing:-0.4px;white-space:nowrap;transition:.1s}.btn-default2___3_Fog:hover{color:#161A23;background:rgba(0,0,0,0.05)}.font-inter___166-V{font-family:'Inter' !important;letter-spacing:0 !important;display:inline !important}.drawer-menu-with-banner___2iWqx{padding-top:60px}.drawer-menu-with-banner___2iWqx.hidden___apSf9{padding:0}.drawer-menu___3vYQb{padding-top:60px}.drawer-menu___3vYQb.hidden___apSf9{padding:0}.nav___LO9rj{display:flex;flex-direction:column;padding:0 16px 20px 20px;height:100%;box-sizing:border-box;overflow-y:auto}.nav___LO9rj h2{font-size:12px;font-weight:500;letter-spacing:0.12px;text-transform:uppercase;line-height:1.3;color:#6D7688;margin-top:16px;margin-bottom:28px}.nav___LO9rj .menu-item___13lIn{margin-bottom:28px;padding-left:16px;display:block}.nav___LO9rj .menu-item___13lIn h1{font-size:15px;font-weight:450;line-height:1.3;letter-spacing:-0.375px;color:#161A23}.nav___LO9rj .menu-item___13lIn h3{margin-top:4px;font-size:12px;font-weight:450;letter-spacing:-0.36px;color:#6D7688}.nav___LO9rj .blog-menu___1GmKJ{display:inline-block;max-width:100%;margin-bottom:28px}.nav___LO9rj .blog-menu___1GmKJ .blog-menu-content___2ajHH{cursor:pointer;border-radius:12px;transition:.1s;background:#F5F7F9}.nav___LO9rj .blog-menu___1GmKJ .blog-menu-content___2ajHH .img-content___2ynwd{padding:12px 12px 0;overflow:hidden}.nav___LO9rj .blog-menu___1GmKJ .blog-menu-content___2ajHH .img-content___2ynwd .pic___2TMpk{border-radius:8px;max-width:100%}.nav___LO9rj .blog-menu___1GmKJ .blog-menu-content___2ajHH .desc-content___1hTSQ{padding:28px}.nav___LO9rj .blog-menu___1GmKJ .blog-menu-content___2ajHH .desc-content___1hTSQ h1{font-size:24px;font-weight:500;letter-spacing:-0.96px;color:#161A23;padding:0}.nav___LO9rj .blog-menu___1GmKJ .blog-menu-content___2ajHH .desc-content___1hTSQ h3{font-size:16px;font-weight:600;letter-spacing:0;color:#0762C8;margin-top:4px}.nav___LO9rj .ant-collapse{border:none;background-color:#fff}.nav___LO9rj .ant-collapse .ant-collapse-item{border-bottom:1px solid #E7EAF0;padding:0}.nav___LO9rj .ant-collapse .ant-collapse-item .ant-collapse-header{padding:20px 0;font-size:18px;font-weight:500;letter-spacing:-0.9px;color:#161A23}.nav___LO9rj .ant-collapse .ant-collapse-item .ant-collapse-header .ant-collapse-arrow{right:0}.nav___LO9rj .ant-collapse .ant-collapse-item .ant-collapse-header .ant-collapse-arrow img{transition:.3s;width:16px}.nav___LO9rj .ant-collapse .ant-collapse-item a{text-decoration:none}.nav___LO9rj .ant-collapse .ant-collapse-item-active .ant-collapse-header .ant-collapse-arrow img{transform:rotate(-180deg)}.panel___3soc9{display:block;padding:20px 0;font-size:18px;font-weight:500;letter-spacing:-0.9px;color:#161A23;border-bottom:1px solid #E7EAF0;text-decoration:none}.panel___3soc9:hover{color:#161A23}.footer-section___11Sqi .appStores___1UvQl{padding:20px 0;display:flex;gap:8px}.footer-section___11Sqi .appStores___1UvQl a{flex:1;display:flex;height:48px;align-items:center;justify-content:center;border-radius:8px;border:1px solid #D7DCE5}.footer-section___11Sqi .appStores___1UvQl a:first-child img{width:120px}.footer-section___11Sqi .appStores___1UvQl a:last-child img{width:116px}.footer-section___11Sqi .cta-login-sign-up___3vvMM{display:flex;gap:12px;border-top:1px solid #E7EAF0;position:absolute;bottom:0;left:0;width:100%;padding:12px 16px 32px 20px;background:#fff;z-index:10}.footer-section___11Sqi .cta-login-sign-up___3vvMM a{flex:1;height:48px;line-height:48px;text-align:center}.globe___3VkDT{position:relative;margin:8px 0}.globe___3VkDT .globe-icon___na_aN{position:absolute;z-index:1;left:0;top:50%;transform:translateY(-50%);pointer-events:none}.select___AjNCy .ant-select-selector{border:none !important;box-shadow:none !important;padding-left:21px !important}.select___AjNCy .ant-select-selector .ant-select-selection-item{text-decoration:none;font-size:15px;font-weight:450;letter-spacing:-0.375px;color:#161A23}.select___AjNCy .ant-select-arrow{top:50%}.select-option___b9T-s{background:none !important}.select-option___b9T-s .ant-select-item-option-content{text-decoration:none;font-size:15px;font-weight:450;letter-spacing:-0.375px;color:#161A23}.drawer___2yUEo .ant-collapse-content{border:none;background:none}.drawer___2yUEo .ant-collapse-content .ant-collapse-content-box{padding:0}.drawer___2yUEo .ant-drawer-content-wrapper{width:100% !important;height:100% !important;position:relative;box-shadow:none;overflow:hidden}.drawer___2yUEo .ant-drawer.ant-drawer-open .ant-drawer-mask{background:#fff}.drawer___2yUEo .ant-drawer-content{background-color:#fff}.drawer___2yUEo .ant-drawer-content .ant-row,.drawer___2yUEo .ant-drawer-content .ant-col{height:100%}

.affix___2h1l7{position:relative}.affix___2h1l7 .ant-affix{z-index:1000}

