/*! @author fed@tigerbrokers.com */
/* Fade */
.transition-fade-enter {
  opacity: 0;
}

.transition-fade-enter-active {
  opacity: 1;
  transition: opacity ease;
}

.transition-fade-exit {
  opacity: 1;
}

.transition-fade-exit-active {
  opacity: 0;
  transition: opacity ease;
}

/* Zoom */
.transition-zoom-enter {
  transform: scale(0);
}

.transition-zoom-enter-active {
  transform: scale(1);
  transition: transform ease;
}

.transition-zoom-exit {
  transform: scale(1);
}

.transition-zoom-exit-active {
  transform: scale(0);
  transition: transform ease;
}

/* Flow */
.transition-flow-enter {
  opacity: 0;
  transform: translateY(-20%);
}

.transition-flow-enter-active {
  transition: transform ease, opacity ease;
  opacity: 1;
  transform: translateY(0);
}

.transition-flow-exit {
  opacity: 1;
  transform: translateY(0);
}

.transition-flow-exit-active {
  opacity: 0;
  transform: translateY(-20%);
  transition: transform ease, opacity ease;
}

/* Flip */
.transition-flip-enter {
  transform: perspective(1000px) rotateX(90deg);
}

.transition-flip-enter-active {
  transform: perspective(1000px) rotateX(0);
  transition: transform ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.transition-flip-exit {
  transform: perspective(1000px) rotateX(0);
}

.transition-flip-exit-active {
  transform: perspective(1000px) rotateX(90deg);
  transition: transform ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* Collapse */
.transition-collapse-active {
  transition: all ease;
  overflow: hidden;
}
.lang-switch-root .dropdown-menu {
  min-width: auto;
}
.menu-switch-root {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  background: none;
  z-index: 12;
  cursor: pointer;
}
.menu-switch-root:before, .menu-switch-root:after,
.menu-switch-root span {
  position: absolute;
  content: "";
  background: #fff;
  height: 2px;
  width: 30px;
  top: 19px;
  left: 5px;
  transition: 0.4s ease;
  transform-origin: 50% 50%;
}
.menu-switch-root:before {
  top: 9px;
}
.menu-switch-root:after {
  top: 29px;
}
.site-nav-opened .menu-switch-root span {
  opacity: 0;
}
.site-nav-opened .menu-switch-root:before, .site-nav-opened .menu-switch-root:after {
  top: 19px;
}
.site-nav-opened .menu-switch-root:before {
  transform: rotate(45deg);
}
.site-nav-opened .menu-switch-root:after {
  transform: rotate(-45deg);
}

.menu-switch-opened span {
  opacity: 0;
}
.menu-switch-opened:before, .menu-switch-opened:after {
  top: 19px;
}
.menu-switch-opened:before {
  transform: rotate(45deg);
}
.menu-switch-opened:after {
  transform: rotate(-45deg);
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.site-header-default {
  background: #333;
}

.site-header-dark {
  background: #333;
}

.site-header-float {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.site-header-primary.site-header .site-nav .nav-link {
  color: #fff;
}
.site-header-primary.site-header .site-nav .nav-link.active {
  color: #ffe002;
}
.site-header-primary.site-header .site-nav .btn-account {
  background: #ffe002;
  color: #000;
}
@media (max-width: 768px) {
  .site-header-primary.site-header .site-nav .nav-link {
    color: #000;
  }
  .site-header-primary.site-header .site-nav .nav-link.active {
    color: #000;
  }
}
.site-header-primary.site-header #logo {
  background: url(../../static/images/logo1.8ef8c7de.png) no-repeat;
  background-size: contain;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  transition: box-shadow 0.8s ease;
}
.site-clear-mode .site-header {
  display: none;
}
.site-header .site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  height: 70px;
}
.site-header .site-nav .site-primary-brand {
  margin: 0;
  line-height: 1;
}
.site-header .site-nav .nav-link {
  display: block;
  color: #fff;
  padding: 25px 18px;
  line-height: 20px;
  position: relative;
}
.site-header .site-nav .nav-link:hover {
  color: #f5ca02;
}
.site-header .site-nav .nav-link + .nav-link:after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  height: 20px;
  border-right: 1px solid #fff;
  margin-top: -10px;
}
.site-header .site-nav .active {
  color: #f5ca02;
}
.site-header .site-nav .btn-account {
  padding: 5px 10px;
  background: #f5ca02;
  border: 0;
  color: #000;
  font-size: inherit;
}
.site-header .header-nav-container {
  display: flex;
  align-items: center;
}
.site-header .header-nav-container .u-web-app {
  background-color: #f5b014;
  margin-left: 18px;
  border: 0;
  padding: 5px 10px;
  font-size: 16px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.site-header .header-nav-container .u-web-app img {
  margin-right: 5px;
}
.site-header a {
  transition: all 0.5s ease;
}
.site-header a:hover, .site-header a:focus {
  text-decoration: none;
}
.site-header .menu-switch-root {
  display: none;
}
@media screen and (max-width: 768px) {
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }
  .site-header .lang-switch-root .dropdown-menu {
    position: relative;
    background-color: #dfc500;
  }
  .site-header .menu-switch-root {
    display: inline-block;
    margin-top: 5px;
  }
  .site-header .site-nav {
    height: 50px;
  }
  .site-header .site-nav .nav-link {
    color: #000;
    padding: 10px;
    width: 100%;
    text-align: center;
  }
  .site-header .site-nav .nav-link:hover {
    color: #000;
    background-color: #dfc500;
  }
  .site-header .site-nav .nav-link + .nav-link:after {
    display: none;
  }
  .site-header .site-nav .active {
    background-color: #dfc500;
  }
  .site-header .site-nav .btn-account {
    padding: 10px;
    border: 0;
    background: none;
    color: #000;
  }
  .site-header .nav-hidden {
    display: none;
  }
  .site-header .header-nav-container {
    flex-direction: column;
    position: absolute;
    top: 50px;
    right: 0;
    background-color: #ffe100;
    overflow: hidden;
    box-shadow: -3px 3px 8px rgba(0, 0, 0, 0.4);
    min-width: 125px;
    z-index: 100;
  }
  .site-header .header-nav-container a {
    margin: 0;
  }
  .site-header .header-nav-container .u-web-app {
    background: none;
    padding: 10px;
    margin: 0;
  }
  .site-header .header-nav-container .u-web-app img {
    display: none;
  }
}

#logo {
  margin: 0;
  display: inline-block;
  width: 200px;
  height: 40px;
  background: url(../../static/images/logo1.8ef8c7de.png) no-repeat;
  background-size: contain;
  transition: none;
  text-indent: -9999px;
}
@media (max-width: 768px) {
  #logo {
    height: 30px;
  }
}

.site-page-brand #logo {
  background: url(../../static/images/logo5.61793418.png) no-repeat;
  background-size: contain;
}

.site-container {
  margin-top: 70px;
  min-height: 600px;
}
@media (max-width: 768px) {
  .site-container {
    margin-top: 50px;
  }
  .site-clear-mode .site-container {
    margin-top: 20px;
  }
}

.email-site-container {
  margin-top: 0;
  height: 100vh;
}
.site-clear-mode .email-site-container {
  margin-top: 0;
}

.app-site-container {
  margin-top: 0;
}
@media (max-width: 768px) {
  .app-site-container .page-help .help-nav {
    top: 0;
  }
}

.site-load-loading {
  margin-top: 100px;
  width: 280px;
}

.site-footer {
  padding: 130px 0;
  background: #ffe100;
  width: 100%;
}
.site-clear-mode .site-footer {
  display: none;
}
.site-footer .black-line {
  border-top: #000 1px solid;
}
.site-footer .links {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
}
.site-footer .links .link {
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}
.site-footer .icons {
  padding-bottom: 20px;
}
.site-footer .icons a {
  margin-left: 10px;
}
.site-footer .icons a:first-child {
  margin-left: 0;
}
.site-footer .icons img {
  width: 44px;
  height: 44px;
}
@media (max-width: 768px) {
  .site-footer .icons {
    padding: 15px 0;
  }
  .site-footer .icons img {
    width: 40px;
    height: 40px;
  }
}
.site-footer .invest-risk {
  margin: 40px 0 20px;
}
.site-footer .services {
  font-size: 14px;
  padding: 18px 0;
  margin: 30px 0 20px;
  border: 1px solid #000;
  border-left: 0;
  border-right: 0;
}
.site-footer .services .highlight {
  border-bottom: 1px solid #000;
}
.site-footer .copyright {
  margin-top: 50px;
  font-size: 12px;
}
.site-footer a {
  color: #000;
  text-decoration: underline;
}
.site-footer .btn-footer-check {
  border: 1px solid #000;
  background: url(../../static/images/check.8fa1436f.png) no-repeat center center;
  background-size: 92% auto;
  padding: 18px 70px;
  font-size: 0;
  float: right;
  margin-top: -28px;
}
.site-footer .brand {
  display: flex;
  flex-wrap: wrap;
  font-family: "Roboto-Medium";
  font-size: 14px;
}
.site-footer .brand a {
  margin-top: 5px;
  color: transparent;
  text-decoration: none;
}
@media (max-width: 768px) {
  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 40px;
  }
  .site-footer .btn-footer-check {
    margin-top: 0;
    padding: 15px 55px;
  }
}
@media (max-width: 576px) {
  .site-footer .links {
    margin-left: -5px;
  }
  .site-footer .links .link {
    display: inline-block;
    padding: 5px;
    font-size: 15px;
  }
}

.app-main {
  width: 100%;
  max-width: 600px;
  min-width: 320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.slider-root .navs {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 1;
}
.slider-root .navs span {
  overflow: hidden;
  display: inline-block;
  zoom: 1;
  width: 13px;
  height: 13px;
  margin: 0 14px;
  background: #b0b0af;
  border-radius: 100%;
  transition: 0.4s ease;
  border: #b0b0af 2px solid;
  cursor: pointer;
}
.slider-root .navs span.active {
  background: #fff;
}
@media (max-width: 768px) {
  .slider-root .navs {
    bottom: 10px;
    display: block;
  }
  .slider-root .navs span {
    width: 10px;
    height: 10px;
    margin: 0 8px;
  }
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.banner-root {
  position: relative;
  min-height: 850px;
}
.banner-root .slide-explain {
  font-size: 12px;
  max-width: 575px;
  color: #333333;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .banner-root .slide-explain {
    margin-top: 20px;
  }
}
.banner-root .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f7f7f7;
  overflow-x: hidden;
}
.banner-root .slides .site-main {
  max-width: 1200px;
  text-align: left;
}
.banner-root .at-tradeup {
  overflow: hidden;
  max-height: 750px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url(../../static/images/trade-bg.beb6d1ca.jpg), linear-gradient(to bottom, transparent, transparent 40%, #fcce82);
  background-position: bottom;
}
@media (max-width: 768px) {
  .banner-root .at-tradeup {
    padding-top: 50px;
    background-image: url(../../static/images/trade-bg-sm.35cb355f.jpg), linear-gradient(to bottom, transparent, transparent 40%, #fcce82);
    background-position: bottom;
  }
}
@media (max-width: 576px) {
  .banner-root .at-tradeup {
    background-position: 100% 80%;
    background-image: url(../../static/images/trade-bg-sm.35cb355f.jpg), linear-gradient(to bottom, transparent, transparent 60%, #fae0af 80%, #fae0af);
  }
}
.banner-root .at-tradeup .site-main {
  padding-top: 150px;
}
@media (max-width: 768px) {
  .banner-root .at-tradeup .site-main {
    width: 80%;
    padding: 10px 10px 0;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .banner-root .at-tradeup .site-main {
    width: 100%;
    padding: 10px 10px 270px;
  }
}
@media (max-width: 576px) and (max-width: 400px) {
  .banner-root .at-tradeup .site-main {
    padding-top: 50px;
  }
}
.banner-root .at-tradeup .banner-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 1300px;
}
@media (max-width: 768px) {
  .banner-root .at-tradeup .banner-container {
    width: 100%;
    flex-direction: column;
  }
}
.banner-root .at-tradeup .banner-container .right {
  width: 660px;
  margin-top: -100px;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .banner-root .at-tradeup .banner-container .right {
    width: 100%;
    margin-top: 20px;
  }
}
.banner-root .at-tradeup .banner-container .right img {
  width: 100%;
}
.banner-root .at-tradeup .slide-title {
  width: 606px;
  letter-spacing: -1px;
  font-size: 65px;
  color: #212121;
}
@media (max-width: 768px) {
  .banner-root .at-tradeup .slide-title {
    width: 100%;
    font-size: 54px;
  }
}
@media (max-width: 576px) {
  .banner-root .at-tradeup .slide-title {
    font-size: 35px;
    width: 100%;
  }
}
.banner-root .at-tradeup .slide-des {
  margin-top: 30px;
  width: 575px;
  font-family: "Roboto-Medium";
  font-size: 30px;
  color: #5d5a3a;
}
@media (max-width: 768px) {
  .banner-root .at-tradeup .slide-des {
    width: 100%;
    margin: 0 auto;
    padding-top: 15px;
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .banner-root .at-tradeup .slide-des {
    margin-left: 0;
    padding: 5px 10px;
    font-size: 16px;
  }
}
.banner-root .at-tradeup .slide-btn {
  display: inline-block;
  margin-top: 50px;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background-color: #ec5a29;
}
@media (max-width: 768px) {
  .banner-root .at-tradeup .slide-btn {
    margin-top: 10px;
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .banner-root .at-tradeup .slide-btn {
    margin-top: 10px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .banner-root .at-tradeup .trade-box {
    display: block;
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .banner-root .at-tradeup .trade-box {
    display: block;
    width: 100%;
  }
}
.banner-root .navs {
  bottom: 120px;
}
.banner-root .reward-banner {
  max-height: 750px;
  padding-top: 70px;
  background: #fff url(../../static/images/banner-bg.07a007fa.png) no-repeat bottom/100% 70%;
}
@media (max-width: 768px) {
  .banner-root .reward-banner {
    padding-top: 50px;
  }
}
@media (max-width: 576px) {
  .banner-root .reward-banner {
    background-size: 140% 70%;
  }
}
.banner-root .reward-banner .reward-banner-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 50px;
}
@media (min-width: 992px) {
  .banner-root .reward-banner .reward-banner-body {
    transform: translateY(12%);
  }
}
@media (max-width: 768px) {
  .banner-root .reward-banner .reward-banner-body {
    flex-direction: column;
    justify-content: center;
  }
}
.banner-root .reward-banner .reward-banner-body .left-title {
  position: relative;
  margin-top: -60px;
  color: #212121;
}
@media (max-width: 768px) {
  .banner-root .reward-banner .reward-banner-body .left-title {
    margin-top: 10px;
  }
}
.banner-root .reward-banner .reward-banner-body .left-title::before {
  position: absolute;
  content: "";
  top: -54px;
  left: 15px;
  width: 30px;
  height: 30px;
  background: linear-gradient(-237deg, #8f8dff, #e9f0fc);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .banner-root .reward-banner .reward-banner-body .left-title::before {
    display: none;
  }
}
.banner-root .reward-banner .reward-banner-body .left-title .first-line,
.banner-root .reward-banner .reward-banner-body .left-title .second-line {
  margin-top: 0;
  font-size: 52px;
  font-family: Roboto-Black;
  line-height: 1;
  font-weight: 900;
}
@media (max-width: 768px) {
  .banner-root .reward-banner .reward-banner-body .left-title .first-line,
.banner-root .reward-banner .reward-banner-body .left-title .second-line {
    text-align: center;
    font-size: 35px;
  }
}
.banner-root .reward-banner .reward-banner-body .left-title .second-line {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .banner-root .reward-banner .reward-banner-body .left-title .second-line {
    white-space: normal;
  }
}
.banner-root .reward-banner .reward-banner-body .right-img {
  max-width: 650px;
}
@media (min-width: 992px) {
  .banner-root .reward-banner .reward-banner-body .right-img {
    transform: translateX(8%);
  }
}
@media (max-width: 768px) {
  .banner-root .reward-banner .reward-banner-body .right-img {
    margin-top: 25px;
    width: 90%;
  }
}
@media (max-width: 576px) {
  .banner-root .reward-banner .reward-banner-body .right-img {
    margin-top: 60px;
    width: 100%;
  }
}
.banner-root .reward-banner .reward-banner-body .link-btn {
  background-color: #fa5b54;
  display: block;
  width: 240px;
  height: 56px;
  line-height: 53px;
  color: #fff;
  border-radius: 5px;
  font-size: 28px;
  font-family: "Roboto-Medium";
  padding: 0;
  margin-top: 70px;
  text-align: center;
}
.banner-root .reward-banner .reward-banner-body .link-btn:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .banner-root .reward-banner .reward-banner-body .link-btn {
    width: 220px;
    height: 60px;
    margin: 30px auto 0;
    font-size: 24px;
    border-radius: 5px;
    line-height: 57px;
  }
}
@media (max-width: 576px) {
  .banner-root .reward-banner .reward-banner-body .link-btn {
    font-size: 16px;
    height: 40px;
    width: 150px;
    border-radius: 5px;
    line-height: 38px;
    margin-top: 20px;
  }
}
.banner-root .welcome-banner, .banner-root .invest-banner, .banner-root .invitation-banner {
  max-height: 750px;
  padding-top: 70px;
  background: #eef1fe;
}
.banner-root .welcome-banner .site-main, .banner-root .invest-banner .site-main, .banner-root .invitation-banner .site-main {
  height: 100%;
}
.banner-root .welcome-banner .welcome-banner-body, .banner-root .invest-banner .welcome-banner-body, .banner-root .invitation-banner .welcome-banner-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.banner-root .welcome-banner .first-line, .banner-root .invest-banner .first-line, .banner-root .invitation-banner .first-line {
  color: #062246;
  font-size: 52px;
}
.banner-root .welcome-banner .second-line, .banner-root .invest-banner .second-line, .banner-root .invitation-banner .second-line {
  font-weight: 400;
  color: #062246;
  font-size: 24px;
  font-family: inherit;
}
.banner-root .welcome-banner .text-symbol, .banner-root .invest-banner .text-symbol, .banner-root .invitation-banner .text-symbol {
  font-size: 26px;
  color: #345db4;
}
.banner-root .welcome-banner .right-img, .banner-root .invest-banner .right-img, .banner-root .invitation-banner .right-img {
  width: 100%;
  max-width: 500px;
  flex-shrink: 0;
}
.banner-root .welcome-banner .link-btn, .banner-root .invest-banner .link-btn, .banner-root .invitation-banner .link-btn {
  background-color: #fec008;
  display: block;
  width: 240px;
  height: 56px;
  line-height: 53px;
  color: #000000;
  border-radius: 30px;
  font-size: 28px;
  font-family: "Roboto-Medium";
  padding: 0;
  margin-top: 70px;
  text-align: center;
}
.banner-root .welcome-banner .link-btn:hover, .banner-root .invest-banner .link-btn:hover, .banner-root .invitation-banner .link-btn:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .banner-root .welcome-banner .link-btn, .banner-root .invest-banner .link-btn, .banner-root .invitation-banner .link-btn {
    width: 220px;
    height: 60px;
    margin: 30px auto 0;
    font-size: 24px;
    border-radius: 30px;
    line-height: 57px;
  }
}
@media (max-width: 576px) {
  .banner-root .welcome-banner .link-btn, .banner-root .invest-banner .link-btn, .banner-root .invitation-banner .link-btn {
    font-size: 16px;
    height: 40px;
    width: 150px;
    border-radius: 20px;
    line-height: 38px;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .banner-root .welcome-banner, .banner-root .invest-banner, .banner-root .invitation-banner {
    padding-top: 50px;
    background-size: 100% 60%;
  }
  .banner-root .welcome-banner .welcome-banner-body, .banner-root .invest-banner .welcome-banner-body, .banner-root .invitation-banner .welcome-banner-body {
    flex-direction: column;
    justify-content: center;
  }
  .banner-root .welcome-banner .text-sm-br, .banner-root .invest-banner .text-sm-br, .banner-root .invitation-banner .text-sm-br {
    display: block;
  }
  .banner-root .welcome-banner .first-line, .banner-root .invest-banner .first-line, .banner-root .invitation-banner .first-line {
    font-size: 36px;
    text-align: center;
  }
  .banner-root .welcome-banner .second-line, .banner-root .invest-banner .second-line, .banner-root .invitation-banner .second-line {
    font-size: 20px;
    text-align: center;
  }
  .banner-root .welcome-banner .text-symbol, .banner-root .invest-banner .text-symbol, .banner-root .invitation-banner .text-symbol {
    font-size: 24px;
  }
  .banner-root .welcome-banner .right-img, .banner-root .invest-banner .right-img, .banner-root .invitation-banner .right-img {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .banner-root .welcome-banner .first-line, .banner-root .invest-banner .first-line, .banner-root .invitation-banner .first-line {
    font-size: 26px;
  }
  .banner-root .welcome-banner .second-line, .banner-root .invest-banner .second-line, .banner-root .invitation-banner .second-line {
    font-size: 14px;
  }
  .banner-root .welcome-banner .text-symbol, .banner-root .invest-banner .text-symbol, .banner-root .invitation-banner .text-symbol {
    font-size: 18px;
  }
}
.banner-root .invitation-banner {
  background: #eef1fe;
}
.banner-root .invitation-banner .right-img.invitation {
  transform: translateY(50px);
}
@media (max-width: 768px) {
  .banner-root .invitation-banner .right-img.invitation {
    transform: none;
  }
}
.banner-root .invest-banner {
  background: #fff url(../../static/images/welcome-bg.8bd68dfa.png) no-repeat right bottom/59.5% 100%;
}
.banner-root .invest-banner .second-line {
  font-weight: 500;
  font-family: Roboto-Black;
}
.banner-root .invest-banner .right-img {
  max-width: 500px;
}
@media (max-width: 768px) {
  .banner-root .invest-banner .right-img {
    max-width: 400px;
  }
}
.banner-root .invest-banner .link-btn {
  background-color: #fa5b54;
  display: block;
  width: 240px;
  height: 56px;
  line-height: 53px;
  color: #fff;
  border-radius: 5px;
  font-size: 28px;
  font-family: "Roboto-Medium";
  padding: 0;
  margin-top: 70px;
  text-align: center;
}
.banner-root .invest-banner .link-btn:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .banner-root .invest-banner .link-btn {
    width: 220px;
    height: 60px;
    margin: 30px auto 0;
    font-size: 24px;
    border-radius: 5px;
    line-height: 57px;
  }
}
@media (max-width: 576px) {
  .banner-root .invest-banner .link-btn {
    font-size: 16px;
    height: 40px;
    width: 150px;
    border-radius: 5px;
    line-height: 38px;
    margin-top: 20px;
  }
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.platform-root {
  padding: 0 0 50px 0;
  position: relative;
  background: #f7f7f7;
}
.platform-root .platform-slides {
  position: relative;
  display: none;
  visibility: hidden;
}
.platform-root .platform-slides .slide {
  border-radius: 10px;
}
.platform-root .platform-des {
  font-size: 18px;
  font-weight: 500;
  font-family: "Roboto-Medium";
  color: #333333;
  line-height: 1.778;
  margin-bottom: 25px;
}
.platform-root .platform-list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.platform-root .platform-list .item {
  max-width: 370px;
  display: flex;
}
.platform-root .platform-list .item:nth-child(2) {
  margin: 0 35px;
}
.platform-root .platform-list .icon {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}
.platform-root .navs {
  visibility: hidden;
  display: none;
}
.platform-root .slide1 {
  background: url(../../static/images/platform1.d5824da7.jpg) no-repeat center/cover;
}
.platform-root .slide2 {
  background: url(../../static/images/platform2.ca9aee9d.jpg) no-repeat center/cover;
}
.platform-root .slide3 {
  background: url(../../static/images/platform3.256c547d.jpg) no-repeat center/cover;
}
@media (max-width: 768px) {
  .platform-root {
    min-height: 300px;
    margin-top: -20px;
  }
  .platform-root .platform-container {
    width: 308px;
    margin: 0 auto;
  }
  .platform-root .site-main {
    padding: 0;
  }
  .platform-root .navs {
    bottom: -38px;
    visibility: visible;
    display: block;
  }
  .platform-root .navs span {
    width: 10px;
    height: 10px;
    margin: 0 8px;
  }
  .platform-root .platform-des {
    max-width: 248px;
    margin: 0 auto 20px;
    font-size: 14px;
    text-align: center;
  }
  .platform-root .platform-slides {
    display: block;
    visibility: visible;
    max-width: 248px;
    margin: 0 auto;
  }
  .platform-root .platform-slides .slides {
    padding-top: 177px;
  }
  .platform-root .platform-slides .slide {
    overflow: visible;
    padding-top: 190px;
    width: 100%;
    text-align: center;
  }
  .platform-root .platform-list {
    visibility: hidden;
    display: none;
  }
}
@media (max-width: 576px) {
  .platform-root {
    margin-top: -60px;
  }
  .platform-root .list {
    visibility: hidden;
  }
  .platform-root .list .item {
    width: 100%;
  }
  .platform-root .platform-des {
    margin-top: 40px;
  }
}
.modal.animation-slide .modal-dialog {
  transform: translate(-50%, 100%);
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0 0 0 50%;
}
.modal.animation-slide .modal-content {
  border: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.modal.animation-slide.show .modal-dialog {
  transform: translate(-50%, 0);
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.android-links-modal {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  min-height: 250px;
  border: 3px solid #ffe100;
  background-color: #fff;
  text-align: center;
}
.android-links-modal a.google-play {
  text-align: center;
}
.android-links-modal a.google-play img {
  margin: 55px auto 0;
  height: 75px;
  display: block;
}
.android-links-modal a.apk {
  color: #4a9976;
  text-align: center;
  margin-bottom: 25px;
}
.android-links-modal hr {
  background-color: #d8d8d8;
  height: 1px;
  width: 80%;
  margin-left: 10%;
}
@media (max-width: 768px) {
  .android-links-modal {
    min-height: 220px;
    border: 2px solid #ffe100;
  }
  .android-links-modal a.google-play img {
    margin: 25px auto 0;
  }
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.free {
  padding: 90px 0;
  background-color: #fff;
}
.free .site-main {
  display: flex;
  align-items: flex-start;
}
.free .site-main > div {
  flex: 1 1;
}
.free .site-main .des-container .service-icon {
  margin-top: 30px;
}
.free .site-main .icon {
  margin-top: 60px;
  width: 75px;
}
.free .site-main .title {
  margin: 60px 0 30px;
  font-size: 52px;
  color: #333333;
  line-height: 1.2;
  text-align: left;
}
.free .site-main .tit {
  font-size: 18px;
  color: #333333;
  line-height: 1.5;
}
.free .site-main .tit-explain {
  margin-top: 100px;
  color: #333333;
}
.free .site-main .graph {
  margin-left: 50px;
  align-self: center;
}
.free .site-main .mockup-pic {
  height: 636px;
}
.free .site-main .des-right {
  text-align: right;
}
.free .site-main .des-right .mockup-pic {
  margin-right: 50px;
}
@media (max-width: 768px) {
  .free {
    padding: 30px 0;
  }
  .free .site-main {
    padding: 0 30px;
  }
  .free .site-main .des .des-container .share-icon,
.free .site-main .graph-right .des-container .share-icon {
    width: 50px;
    height: 50px;
  }
  .free .site-main .des .title,
.free .site-main .graph-right .title {
    margin: 30px 0 30px;
    font-size: 32px;
    line-height: 1.417;
  }
  .free .site-main .des .tit,
.free .site-main .graph-right .tit {
    font-size: 18px;
    line-height: 1.563;
  }
  .free .site-main .des .tit-explain,
.free .site-main .graph-right .tit-explain {
    margin: 20px 0px;
    color: #333333;
  }
  .free .site-main .icon {
    margin-top: 0;
  }
  .free .site-main .mockup-pic {
    width: 208px;
    height: auto;
  }
  .free .service-pic {
    height: 200px;
    width: 200px;
  }
}
@media (max-width: 576px) {
  .free {
    padding: 15px 0;
  }
  .free .site-main-right {
    align-items: center;
    flex-direction: column !important;
  }
  .free .site-main {
    padding: 0 30px;
    min-width: 350px;
    flex-direction: column-reverse;
    align-items: center;
  }
  .free .site-main .des,
.free .site-main .graph-right {
    width: 100%;
    text-align: left;
  }
  .free .site-main .des .des-container,
.free .site-main .graph-right .des-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .free .site-main .des .title,
.free .site-main .graph-right .title {
    margin-bottom: 25px;
  }
  .free .site-main .des .tit-explain,
.free .site-main .graph-right .tit-explain {
    margin-bottom: 50px;
    color: #333333;
  }
  .free .site-main .icon {
    width: 50px;
    height: 36px;
    margin-top: 38px;
  }
  .free .site-main .graph {
    margin-left: 0;
  }
  .free .site-main .des-right {
    text-align: center;
  }
  .free .site-main .des-right .mockup-pic {
    margin-right: 0;
  }
  .free .site-main .service-pic {
    margin-bottom: 75px;
  }
}

.channel {
  position: relative;
  padding: 140px 0 180px 0;
  background: url(../../static/images/channel.1656664c.jpg) no-repeat center/cover;
}
.channel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 31, 22, 0.65);
}
.channel .channel-title {
  font-size: 52px;
  color: #e8e8e8;
  line-height: 1.2;
  text-align: center;
}
.channel .des {
  font-size: 18px;
  color: #e8e8e8;
  line-height: 1.5;
  text-align: center;
  margin: 40px 0 140px;
}
.channel .btn-box {
  text-align: center;
}
.channel .btn-box .btn {
  position: relative;
  z-index: 1;
  width: 146px;
  min-width: 120px;
  height: 42px;
  margin: 0 12px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  color: white;
  padding: 8px 12px 10px;
}
.channel .btn-box img {
  width: 18px;
  height: auto;
  margin: 0 5px 5px 0;
}
.channel .btn-box .ios {
  background-color: #2079ee;
}
.channel .btn-box .android {
  background-color: #7cbf5e;
}
@media (max-width: 768px) {
  .channel {
    padding: 30px 0 50px 0;
    margin-top: 50px;
  }
  .channel .channel-title {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .channel .des {
    font-size: 16px;
    margin: 40px 0 80px;
  }
  .channel .btn-box .btn {
    display: inline-block;
    padding: 8px 12px 16px 12px;
  }
  .channel .channel-img {
    width: 80%;
    margin-bottom: 40px;
    height: auto;
  }
  .channel .additional {
    margin-bottom: 25px;
  }
}
@media (max-width: 576px) {
  .channel .btn-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .channel .btn-box .btn {
    height: 35px;
    width: 100px;
    margin: 5px 5px;
    font-size: 14px;
  }
  .channel .btn-box .btn > img {
    width: 16px;
    height: auto;
  }
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.site-page-home .site-container {
  margin-top: 0 !important;
}

@media (max-width: 768px) {
  .page-home .site-main {
    padding: 0 30px;
  }
}
.page-home p {
  margin: 0;
}
.page-home h1,
.page-home h2,
.page-home h3,
.page-home h4,
.page-home h5,
.page-home h6 {
  font-family: "Roboto-Black";
}
.page-home .notice-bar-root {
  top: 70px;
}
@media screen and (max-width: 768px) {
  .page-home .notice-bar-root {
    top: 50px;
  }
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.site-page-aboutus .site-container {
  margin-top: 0 !important;
}

.page-aboutus {
  font-size: 15px;
  line-height: 1.33;
}
@media (max-width: 768px) {
  .page-aboutus {
    font-size: 12px;
  }
  .page-aboutus .site-main {
    width: 100%;
    padding: 0 15px;
  }
}
.page-aboutus .banner {
  min-height: 650px;
  background: url(../../static/images/aboutus-banner.e956a7a2.jpg) no-repeat center center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
.page-aboutus .banner .banner-info {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.page-aboutus .banner .banner-title {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.4;
}
.page-aboutus .banner .banner-title h3 {
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
  font-weight: normal;
}
.page-aboutus .banner .banner-title h3 .white-link {
  text-decoration: underline;
  color: white;
}
.page-aboutus .banner .banner-title h3.text {
  margin-top: 35px;
}
.page-aboutus .banner .banner-title h1 {
  font-size: 32px;
  margin-top: 25px;
  line-height: 1.5;
  color: #ffe002;
  font-weight: normal;
}
@media (max-width: 768px) {
  .page-aboutus .banner {
    min-height: 500px;
  }
  .page-aboutus .banner .banner-info {
    top: 70px;
  }
  .page-aboutus .banner .banner-title h3 {
    font-size: 16px;
  }
  .page-aboutus .banner .banner-title h3.text {
    margin-top: 20px;
  }
  .page-aboutus .banner .banner-title h1 {
    margin-top: 20px;
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .page-aboutus .banner .banner-info {
    top: 70px;
  }
  .page-aboutus .banner .banner-title h3 {
    font-size: 14px;
  }
  .page-aboutus .banner .banner-title h3.text {
    margin-top: 15px;
  }
  .page-aboutus .banner .banner-title h1 {
    margin-top: 16px;
    font-size: 16px;
  }
}
.page-aboutus .contact {
  background-color: #fff;
  padding: 85px 0 150px;
}
.page-aboutus .contact .contact-title {
  margin-bottom: 55px;
  font-size: 29px;
}
.page-aboutus .contact .contact-list {
  list-style-type: none;
  padding: 0;
  margin-top: 55px;
}
.page-aboutus .contact .email {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.page-aboutus .contact a {
  color: #333;
}
@media (max-width: 768px) {
  .page-aboutus .contact {
    padding: 40px 0 70px;
  }
  .page-aboutus .contact .contact-title {
    font-size: 20px;
  }
}
.btn-round {
  border-radius: 2rem;
}
.errorbox-root {
  margin: 30px auto;
  max-width: 800px;
  text-align: center;
  padding: 0 15px;
}
.errorbox-root .eb-banner {
  display: inline-block;
  max-width: 300px;
  width: 100%;
}
.errorbox-root .error-msg {
  margin-bottom: 20px;
}
.errorbox-root .btn {
  min-width: 80px;
}
.loading-root {
  display: block;
  text-align: center;
  margin: 0.5em;
}
.loading-root.loading-with-tip .spinner-self {
  display: block;
  margin: 0 auto 0.3rem;
}
.loading-root.loading-inline {
  display: inline-block;
}
.agreement .content h3 {
  font-size: 20px;
}
.agreement .content p,
.agreement .content span,
.agreement .content strong,
.agreement .content a,
.agreement .content ul,
.agreement .content li {
  font-size: inherit !important;
}
.page-404 {
  padding: 90px 0 60px;
}
.page-404 .tip-img {
  display: block;
  margin: 0 auto;
  padding: 10% 0;
  max-width: 100%;
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.page-disclaimers {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .page-disclaimers .site-main {
    padding-left: 14px;
    padding-right: 14px;
  }
  .page-disclaimers .title {
    font-size: 18px;
  }
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.brand-market {
  text-align: center;
  background-color: #fed53b;
  padding-top: 30px;
}
.brand-market .item {
  width: 310px;
  padding: 15px;
}
.brand-market h3 {
  font-size: 30px;
  color: #fed700;
  background: #080404;
  display: inline-block;
  border-radius: 60px;
  padding: 12px;
  width: 500px;
  font-family: "Roboto-Medium";
}
.brand-market .content {
  display: flex;
  justify-content: center;
  padding: 50px 0 0;
}
.brand-market .content img {
  width: 70px;
  height: auto;
}
.brand-market .content .title {
  font-family: "Roboto-Black";
  font-size: 16px;
  margin: 20px 0 10px;
}
.brand-market .invest {
  padding: 60px 0;
}
.brand-market .invest .brokerage {
  width: 220px;
}
.brand-market .invest .signature {
  width: 140px;
}
.brand-market .invest .xiao-mi {
  width: 50px;
}
.brand-market .invest .brokerage-desc {
  margin-top: 40px;
}
.brand-market .invest .xiao-mi-desc {
  margin-top: 23px;
}
.brand-market .invest .signature-desc {
  margin-top: 18px;
}
.brand-market .invest p {
  max-width: 180px;
  margin: 0 auto;
}
.brand-market .invest .line {
  border-left: 1px solid;
  border-right: 1px solid;
}
.brand-market .invest .item {
  padding: 0 15px;
}
@media (max-width: 576px) {
  .brand-market h3 {
    font-size: 18px;
    width: 300px;
  }
  .brand-market .content {
    flex-wrap: wrap;
    padding-top: 20px;
  }
  .brand-market .content .item {
    width: 100%;
    padding-bottom: 0;
  }
  .brand-market .content img {
    width: 50px;
  }
  .brand-market .invest .desc {
    margin-top: 10px;
  }
  .brand-market .invest .item {
    margin-bottom: 30px;
  }
  .brand-market .invest img {
    margin-bottom: 20px;
  }
  .brand-market .invest .line {
    border: none;
  }
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.itradeup-root .site-main {
  padding: 80px 180px;
}
.itradeup-root .performance {
  max-height: 700px;
  font-family: "Roboto-Medium";
  background-size: cover;
  background-repeat: no-repeat;
  background: url(../../static/images/trade-performance.e2e76d66.jpg) no-repeat center/cover #ffdf33;
}
.itradeup-root .performance h3 {
  max-width: 500px;
  font-size: 45px;
  line-height: 1.5;
  position: relative;
  padding-bottom: 10px;
}
.itradeup-root .performance h3::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 0;
  border-top: 1px solid;
  bottom: 0;
  left: 0;
}
.itradeup-root .performance p {
  font-size: 23px;
  max-width: 630px;
  margin-top: 10px;
}
@media (max-width: 576px) {
  .itradeup-root .performance h3 {
    font-size: 23px;
  }
  .itradeup-root .performance h3::after {
    width: 260px;
  }
  .itradeup-root .performance p {
    font-size: 16px;
  }
}
.itradeup-root .real-time {
  max-height: 700px;
  font-family: "Roboto-Medium";
  background-size: cover;
  background-repeat: no-repeat;
  background: url(../../static/images/trade-real-time.1fb2b8b9.jpg) no-repeat center/cover #ffdf33;
}
.itradeup-root .real-time h3 {
  font-size: 65px;
  border-top: 1px solid;
  max-width: 450px;
}
.itradeup-root .real-time p {
  font-size: 48px;
  padding-left: 160px;
}
@media (max-width: 768px) {
  .itradeup-root .real-time p {
    font-size: 38px;
  }
}
@media (max-width: 576px) {
  .itradeup-root .real-time h3 {
    max-width: 200px;
    font-size: 30px;
  }
  .itradeup-root .real-time p {
    padding-left: 75px;
    font-size: 20px;
  }
}
.itradeup-root .no-min {
  max-height: 700px;
  font-family: "Roboto-Medium";
  background-size: cover;
  background-repeat: no-repeat;
  background: url(../../static/images/trade-no-min.d67e762f.jpg) no-repeat center/cover #ffdf33;
}
.itradeup-root .no-min h3 {
  font-size: 65px;
  border-top: 1px solid;
  max-width: 378px;
}
.itradeup-root .no-min p {
  font-size: 48px;
  padding-left: 200px;
}
@media (max-width: 768px) {
  .itradeup-root .no-min p {
    font-size: 38px;
  }
}
@media (max-width: 576px) {
  .itradeup-root .no-min h3 {
    max-width: 174px;
    font-size: 30px;
  }
  .itradeup-root .no-min p {
    padding-left: 45px;
    font-size: 20px;
  }
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.upfintech-root .site-main {
  padding: 70px 160px;
}
@media (max-width: 768px) {
  .upfintech-root .site-main {
    padding-left: 90px;
  }
}
@media (max-width: 576px) {
  .upfintech-root .site-main {
    padding: 20px;
  }
}
.upfintech-root .no-commissions {
  max-height: 700px;
  font-family: "Roboto-Medium";
  background-size: cover;
  background-repeat: no-repeat;
  background: url(../../static/images/upfintech-no-commissions.40719efc.jpg) no-repeat center/cover #ffdf33;
}
.upfintech-root .no-commissions .text {
  display: inline-block;
  position: relative;
}
.upfintech-root .no-commissions h3 {
  font-size: 65px;
  line-height: 1.5;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid;
  margin-top: 0;
}
@media (max-width: 768px) {
  .upfintech-root .no-commissions h3 {
    font-size: 55px;
  }
}
@media (max-width: 576px) {
  .upfintech-root .no-commissions h3 {
    font-size: 28px;
  }
}
.upfintech-root .no-commissions p {
  font-size: 33px;
  max-width: 630px;
  margin-bottom: 0px;
  font-family: "Roboto-Black";
}
@media (max-width: 768px) {
  .upfintech-root .no-commissions p {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .upfintech-root .no-commissions p {
    font-size: 14px;
  }
}
.upfintech-root .no-commissions .text-0-img {
  position: absolute;
  width: 350px;
  top: -110px;
  left: 420px;
}
@media (max-width: 768px) {
  .upfintech-root .no-commissions .text-0-img {
    width: 300px;
    left: 350px;
  }
}
@media (max-width: 576px) {
  .upfintech-root .no-commissions .text-0-img {
    width: 120px;
    left: 180px;
    top: -25px;
  }
}
.upfintech-root .spot {
  max-height: 700px;
  font-family: "Roboto-Medium";
  background-size: cover;
  background-repeat: no-repeat;
  background: url(../../static/images/upfintech-spot.14ae75ed.jpg) no-repeat center/cover #ffdf33;
}
.upfintech-root .spot h3 {
  font-size: 74px;
  position: relative;
}
.upfintech-root .spot h3::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 0;
  border-top: 1px solid;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .upfintech-root .spot h3 {
    font-size: 55px;
  }
}
@media (max-width: 576px) {
  .upfintech-root .spot h3 {
    font-size: 25px;
    max-width: 300px;
  }
  .upfintech-root .spot h3::before {
    width: 100px;
  }
}
.upfintech-root .spot p {
  font-size: 38px;
  max-width: 700px;
}
@media (max-width: 576px) {
  .upfintech-root .spot p {
    font-size: 20px;
    padding-left: 0;
  }
}
.upfintech-root .advantage {
  max-height: 700px;
  font-family: "Roboto-Medium";
  background-size: cover;
  background-repeat: no-repeat;
  background: url(../../static/images/upfintech-advantage.5efd5652.jpg) no-repeat center/cover #ffdf33;
}
.upfintech-root .advantage h3 {
  font-size: 90px;
  margin-top: -80px;
  margin-bottom: 40px;
  font-family: "Roboto-Black";
}
@media (max-width: 768px) {
  .upfintech-root .advantage h3 {
    font-size: 50px;
    margin-top: -40px;
  }
}
@media (max-width: 576px) {
  .upfintech-root .advantage h3 {
    font-size: 32px;
    margin-top: -20px;
    margin-bottom: 20px;
  }
}
.upfintech-root .advantage p {
  font-size: 30px;
  margin: 0;
}
.upfintech-root .advantage p span {
  font-family: "Roboto-Black";
}
@media (max-width: 576px) {
  .upfintech-root .advantage p {
    font-size: 16px;
    padding-left: 0;
  }
}
.upfintech-root .advantage .divider {
  width: 80px;
  height: 10px;
  margin: 20px 0;
  border-radius: 10px;
  background-color: #fae04c;
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.huhoo-root .site-main {
  padding: 70px 160px;
}
@media (max-width: 768px) {
  .huhoo-root .site-main {
    padding-left: 90px;
  }
}
@media (max-width: 576px) {
  .huhoo-root .site-main {
    padding: 50px 20px 20px;
  }
}
.huhoo-root .real-time {
  max-height: 700px;
  font-family: "Roboto-Medium";
  background-size: cover;
  background-repeat: no-repeat;
  background: url(../../static/images/huhoo-real-time.c51beb9d.jpg) no-repeat center/cover #ffdf33;
}
.huhoo-root .real-time h3 {
  position: relative;
  display: inline-block;
  line-height: 1.5;
  border-top: 1px solid;
  font-size: 65px;
}
.huhoo-root .real-time p {
  max-width: 630px;
  margin-left: 150px;
  font-size: 33px;
}
@media (max-width: 768px) {
  .huhoo-root .real-time h3 {
    font-size: 55px;
  }
  .huhoo-root .real-time p {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .huhoo-root .real-time h3 {
    font-size: 28px;
  }
  .huhoo-root .real-time p {
    margin-left: 80px;
    font-size: 14px;
  }
}
.huhoo-root .performance {
  max-height: 700px;
  font-family: "Roboto-Medium";
  background-size: cover;
  background-repeat: no-repeat;
  background: url(../../static/images/huhoo-performance.0eb1dee3.jpg) no-repeat center/cover #ffdf33;
}
.huhoo-root .performance h3 {
  font-size: 65px;
  position: relative;
}
.huhoo-root .performance p {
  border-top: 1px solid;
  font-size: 35px;
  max-width: 700px;
}
@media (max-width: 768px) {
  .huhoo-root .performance h3 {
    font-size: 40px;
  }
  .huhoo-root .performance p {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .huhoo-root .performance h3 {
    font-size: 25px;
    max-width: 300px;
  }
  .huhoo-root .performance h3::before {
    width: 100px;
  }
  .huhoo-root .performance p {
    font-size: 14px;
    padding-left: 0;
  }
}
.huhoo-root .no-min {
  max-height: 700px;
  font-family: "Roboto-Medium";
  background-size: cover;
  background-repeat: no-repeat;
  background: url(../../static/images/huhoo-no-min.72eea9f7.jpg) no-repeat center/cover #ffdf33;
}
.huhoo-root .no-min h3 {
  border-top: 1px solid;
  display: inline-block;
  font-size: 65px;
  line-height: 1.5;
  position: relative;
}
.huhoo-root .no-min p {
  font-size: 33px;
}
@media (max-width: 768px) {
  .huhoo-root .no-min h3 {
    font-size: 50px;
  }
  .huhoo-root .no-min p {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .huhoo-root .no-min h3 {
    font-size: 32px;
  }
  .huhoo-root .no-min p {
    font-size: 16px;
    padding-left: 0;
  }
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.laohu-root .site-main {
  padding: 80px 180px;
}
.laohu-root .laohu-performance {
  max-height: 700px;
  font-family: "Roboto-Medium";
  background-size: cover;
  background-repeat: no-repeat;
  background: url(../../static/images/laohu-performance.fb914507.jpg) no-repeat center/cover #ffdf33;
}
.laohu-root .laohu-performance h3 {
  max-width: 500px;
  font-size: 45px;
  line-height: 1.5;
  position: relative;
  padding-bottom: 10px;
}
.laohu-root .laohu-performance h3::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 0;
  border-top: 1px solid;
  bottom: 0;
  left: 0;
}
.laohu-root .laohu-performance p {
  font-size: 33px;
}
@media (max-width: 768px) {
  .laohu-root .laohu-performance p {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .laohu-root .laohu-performance h3 {
    font-size: 28px;
  }
  .laohu-root .laohu-performance p {
    font-size: 14px;
  }
}
.laohu-root .laohu-free {
  max-height: 700px;
  font-family: "Roboto-Medium";
  background-size: cover;
  background-repeat: no-repeat;
  background: url(../../static/images/laohu-free.6e268755.jpg) no-repeat center/cover #ffdf33;
}
.laohu-root .laohu-free h3 {
  position: relative;
  display: inline-block;
  line-height: 1.5;
  border-top: 1px solid;
  font-size: 65px;
}
.laohu-root .laohu-free p {
  max-width: 630px;
  margin-left: 150px;
  font-size: 33px;
}
@media (max-width: 768px) {
  .laohu-root .laohu-free h3 {
    font-size: 55px;
  }
  .laohu-root .laohu-free p {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .laohu-root .laohu-free h3 {
    font-size: 28px;
  }
  .laohu-root .laohu-free p {
    margin-left: 80px;
    font-size: 14px;
  }
}
.laohu-root .laohu-no-min {
  max-height: 700px;
  font-family: "Roboto-Medium";
  background-size: cover;
  background-repeat: no-repeat;
  background: url(../../static/images/laohu-no-min.82ed0eb6.jpg) no-repeat center/cover #ffdf33;
}
.laohu-root .laohu-no-min h3 {
  border-top: 1px solid;
  display: inline-block;
  font-size: 65px;
  line-height: 1.5;
  position: relative;
}
.laohu-root .laohu-no-min p {
  font-size: 33px;
}
@media (max-width: 768px) {
  .laohu-root .laohu-no-min h3 {
    font-size: 50px;
  }
  .laohu-root .laohu-no-min p {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .laohu-root .laohu-no-min h3 {
    font-size: 32px;
  }
  .laohu-root .laohu-no-min p {
    font-size: 16px;
    padding-left: 0;
  }
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.tradeup-root .tradeup-logo {
  display: block;
  width: 230px;
  margin: 30px 0 100px;
}
@media (max-width: 768px) {
  .tradeup-root .tradeup-logo {
    width: 130px;
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .tradeup-root .tradeup-logo {
    width: 100px;
    margin-bottom: 30px;
  }
}
.tradeup-root .site-main {
  padding: 70px 160px;
}
@media (max-width: 768px) {
  .tradeup-root .site-main {
    padding-left: 90px;
  }
}
@media (max-width: 576px) {
  .tradeup-root .site-main {
    padding-top: 20px;
  }
}
.tradeup-root .no-commissions {
  max-height: 700px;
  font-family: "Roboto-Medium";
  background-size: cover;
  background-repeat: no-repeat;
  background: url(../../static/images/tradeup-no-commissions.17ee9cee.jpg) no-repeat center/cover #ffdf33;
}
.tradeup-root .no-commissions .text {
  display: inline-block;
  position: relative;
}
.tradeup-root .no-commissions h3 {
  font-size: 65px;
  line-height: 1.5;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid;
  margin-top: 0;
}
.tradeup-root .no-commissions p {
  font-size: 33px;
  max-width: 630px;
  margin-bottom: 0px;
  font-family: "Roboto-Black";
}
.tradeup-root .no-commissions .text-0-img {
  position: absolute;
  width: 350px;
  top: -110px;
  left: 420px;
}
@media (max-width: 768px) {
  .tradeup-root .no-commissions h3 {
    font-size: 55px;
  }
  .tradeup-root .no-commissions p {
    font-size: 28px;
  }
  .tradeup-root .no-commissions .text-0-img {
    width: 300px;
    left: 350px;
  }
}
@media (max-width: 576px) {
  .tradeup-root .no-commissions h3 {
    font-size: 28px;
  }
  .tradeup-root .no-commissions p {
    font-size: 14px;
  }
  .tradeup-root .no-commissions .text-0-img {
    width: 120px;
    left: 180px;
    top: -25px;
  }
}
.tradeup-root .spot {
  max-height: 700px;
  font-family: "Roboto-Medium";
  background-size: cover;
  background-repeat: no-repeat;
  background: url(../../static/images/tradeup-spot.e7bd9a06.jpg) no-repeat center/cover #ffdf33;
}
.tradeup-root .spot h3 {
  font-size: 74px;
  position: relative;
}
.tradeup-root .spot h3::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 0;
  border-top: 1px solid;
  top: 0;
  left: 0;
}
.tradeup-root .spot p {
  font-size: 38px;
  max-width: 700px;
}
@media (max-width: 768px) {
  .tradeup-root .spot h3 {
    font-size: 55px;
  }
}
@media (max-width: 576px) {
  .tradeup-root .spot h3 {
    font-size: 25px;
    max-width: 300px;
  }
  .tradeup-root .spot h3::before {
    width: 100px;
  }
  .tradeup-root .spot p {
    font-size: 20px;
    padding-left: 0;
  }
}
.tradeup-root .advantage {
  max-height: 700px;
  font-family: "Roboto-Medium";
  background-size: cover;
  background-repeat: no-repeat;
  background: url(../../static/images/tradeup-advantage.36e8a8a8.jpg) no-repeat center/cover #ffdf33;
}
.tradeup-root .advantage h3 {
  font-size: 90px;
  margin-top: -80px;
  margin-bottom: 40px;
  font-family: "Roboto-Black";
}
.tradeup-root .advantage p {
  font-size: 30px;
  margin: 0;
}
.tradeup-root .advantage p span {
  font-family: "Roboto-Black";
}
.tradeup-root .advantage .divider {
  width: 80px;
  height: 10px;
  margin: 20px 0;
  border-radius: 10px;
  background-color: #fae04c;
}
@media (max-width: 576px) {
  .tradeup-root .advantage .divider {
    width: 40px;
    height: 6px;
  }
}
@media (max-width: 768px) {
  .tradeup-root .advantage h3 {
    font-size: 50px;
    margin-top: -40px;
  }
  .tradeup-root .advantage p {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .tradeup-root .advantage .tradeup-logo {
    margin-top: 0;
  }
  .tradeup-root .advantage h3 {
    font-size: 32px;
    margin-top: -20px;
    margin-bottom: 20px;
  }
  .tradeup-root .advantage p {
    font-size: 16px;
    padding-left: 0;
  }
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.site-page-brand .site-container {
  margin-top: 0 !important;
}

.brand-about-root {
  font-size: 15px;
  line-height: 1.33;
}
@media (max-width: 768px) {
  .brand-about-root {
    font-size: 12px;
  }
  .brand-about-root .site-main {
    padding: 0 24px;
  }
}
.brand-about-root .banner {
  overflow: hidden;
  position: relative;
  min-height: 650px;
  background: url(../../static/images/aboutus-banner.e956a7a2.jpg) no-repeat center/cover;
}
@media (max-width: 768px) {
  .brand-about-root .banner {
    min-height: 500px;
  }
}
.brand-about-root .banner .banner-info {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
@media (max-width: 768px) {
  .brand-about-root .banner .banner-info {
    top: 14%;
  }
}
.brand-about-root .banner .banner-title {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.brand-about-root .banner .banner-title .about-header {
  font-size: 30px;
  color: #fff;
}
@media (max-width: 768px) {
  .brand-about-root .banner .banner-title .about-header {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .brand-about-root .banner .banner-title .about-header {
    font-size: 20px;
  }
}
.brand-about-root .banner .banner-title .img-title {
  width: 200px;
}
@media (max-width: 768px) {
  .brand-about-root .banner .banner-title .img-title {
    width: 150px;
  }
}
.brand-about-root .banner .banner-title h3 {
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}
.brand-about-root .banner .banner-title h3.text {
  margin-top: 35px;
}
@media (max-width: 768px) {
  .brand-about-root .banner .banner-title h3 {
    font-size: 16px;
  }
  .brand-about-root .banner .banner-title h3.text {
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  .brand-about-root .banner .banner-title h3 {
    font-size: 12px;
  }
  .brand-about-root .banner .banner-title h3.text {
    margin-top: 15px;
  }
}
.brand-about-root .contact {
  padding: 85px 0 150px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .brand-about-root .contact {
    padding: 40px 0 70px;
  }
}
.brand-about-root .contact .contact-title {
  margin-bottom: 55px;
  font-size: 29px;
}
@media (max-width: 768px) {
  .brand-about-root .contact .contact-title {
    font-size: 20px;
  }
}
.brand-about-root .contact .email {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.brand-about-root .contact a {
  color: #333;
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.upfintech-tiger-root .site-main {
  padding: 70px 160px;
}
@media (max-width: 768px) {
  .upfintech-tiger-root .site-main {
    padding-left: 90px;
  }
}
@media (max-width: 576px) {
  .upfintech-tiger-root .site-main {
    padding: 50px 20px 20px;
  }
}
.upfintech-tiger-root .tradeup {
  max-height: 700px;
  font-family: "Roboto-Medium";
  background-size: cover;
  background-repeat: no-repeat;
  background: url(../../static/images/upfintech-tiger-tradeup.076e8e27.jpg) no-repeat center/cover #ffdf33;
}
.upfintech-tiger-root .tradeup h3 {
  position: relative;
  display: inline-block;
  line-height: 1.5;
  font-size: 65px;
  margin-top: 0;
}
@media (max-width: 768px) {
  .upfintech-tiger-root .tradeup h3 {
    margin-top: -15px;
    font-size: 55px;
  }
}
@media (max-width: 576px) {
  .upfintech-tiger-root .tradeup h3 {
    margin-top: -20px;
    font-size: 28px;
  }
}
.upfintech-tiger-root .tradeup p {
  max-width: 630px;
  font-size: 33px;
  position: relative;
}
.upfintech-tiger-root .tradeup p::before {
  content: "";
  position: absolute;
  width: 63px;
  height: 6px;
  top: -10px;
  border-radius: 6px;
  background: #fedf33;
}
@media (max-width: 768px) {
  .upfintech-tiger-root .tradeup p {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .upfintech-tiger-root .tradeup p {
    font-size: 14px;
  }
  .upfintech-tiger-root .tradeup p::before {
    width: 33px;
    height: 3px;
    top: -7px;
  }
}
.upfintech-tiger-root .market-trends {
  max-height: 700px;
  font-family: "Roboto-Medium";
  background-size: cover;
  background-repeat: no-repeat;
  background: url(../../static/images/upfintech-tiger-market-trends.9e486c65.jpg) no-repeat center/cover #ffdf33;
}
.upfintech-tiger-root .market-trends h3 {
  font-size: 65px;
  position: relative;
}
.upfintech-tiger-root .market-trends h3::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 1px;
  background: black;
}
@media (max-width: 768px) {
  .upfintech-tiger-root .market-trends h3 {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .upfintech-tiger-root .market-trends h3 {
    font-size: 25px;
    max-width: 300px;
  }
  .upfintech-tiger-root .market-trends h3::before {
    width: 100px;
  }
}
.upfintech-tiger-root .market-trends p {
  font-size: 35px;
  max-width: 700px;
}
@media (max-width: 768px) {
  .upfintech-tiger-root .market-trends p {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .upfintech-tiger-root .market-trends p {
    font-size: 14px;
    padding-left: 0;
  }
}
.upfintech-tiger-root .stocks-and-etfs {
  max-height: 700px;
  font-family: "Roboto-Medium";
  background-size: cover;
  background-repeat: no-repeat;
  background: url(../../static/images/upfintech-tiger-stocks-and-etfs.4a4aa3cd.jpg) no-repeat center/cover #ffdf33;
}
.upfintech-tiger-root .stocks-and-etfs .text {
  display: inline-block;
  position: relative;
}
.upfintech-tiger-root .stocks-and-etfs h3 {
  font-size: 65px;
  line-height: 1.5;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid;
  margin-top: 0;
}
@media (max-width: 768px) {
  .upfintech-tiger-root .stocks-and-etfs h3 {
    font-size: 55px;
  }
}
@media (max-width: 576px) {
  .upfintech-tiger-root .stocks-and-etfs h3 {
    font-size: 28px;
  }
}
.upfintech-tiger-root .stocks-and-etfs p {
  font-size: 33px;
  max-width: 630px;
  margin-bottom: 0px;
  font-family: "Roboto-Black";
}
@media (max-width: 768px) {
  .upfintech-tiger-root .stocks-and-etfs p {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .upfintech-tiger-root .stocks-and-etfs p {
    font-size: 14px;
  }
}
.upfintech-tiger-root .stocks-and-etfs .text-0-img {
  position: absolute;
  width: 350px;
  top: -110px;
  left: 420px;
}
@media (max-width: 768px) {
  .upfintech-tiger-root .stocks-and-etfs .text-0-img {
    width: 300px;
    left: 350px;
  }
}
@media (max-width: 576px) {
  .upfintech-tiger-root .stocks-and-etfs .text-0-img {
    width: 120px;
    left: 180px;
    top: -25px;
  }
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.brand-root .banner {
  position: relative;
  min-height: 700px;
}
.brand-root .banner .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f7f7f7;
}
.brand-root .banner .slides .site-main {
  max-width: 1200px;
  text-align: left;
  margin: 0 auto;
}
.brand-root .banner .slides .brand {
  font-size: 30px;
  margin-bottom: 100px;
}
.brand-root .banner .slides h5,
.brand-root .banner .slides h3 {
  font-family: "Roboto-Black";
}
.brand-root .banner .navs {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 1;
  bottom: 50px;
}
@media (max-width: 768px) {
  .brand-root .banner {
    min-height: 500px;
  }
  .brand-root .banner .navs {
    bottom: 20px;
  }
  .brand-root .banner .navs span {
    width: 10px;
    height: 10px;
  }
  .brand-root .banner .slides .site-main {
    padding: 80px 50px 80px 60px;
  }
  .brand-root .banner .slides .brand {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .brand-root .banner {
    min-height: 300px;
  }
  .brand-root .banner .slides .site-main {
    padding: 50px 10px 10px 20px;
  }
  .brand-root .banner .slides .brand {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.page-paid .paid-header {
  position: relative;
  background: url(../../static/images/banner.803b2bcd.jpg) no-repeat center/cover;
  margin-top: 70px;
  min-width: 320px;
  height: 0;
  padding-top: 25%;
}
.page-paid .paid-header .paid-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  padding: 0 20px;
}
.page-paid .paid-header .paid-title {
  margin: 0;
  font-size: 73px;
  font-family: Roboto, Roboto-Medium;
  color: #000;
  line-height: 126px;
}
.page-paid .paid-header .paid-desc {
  width: 550px;
  font-size: 29px;
  font-family: Roboto, Roboto-Regular;
  font-weight: 400;
  text-align: left;
  color: #000;
  line-height: 40px;
}
.page-paid .paid-header .paid-btn {
  display: inline-block;
  align-self: flex-start;
  padding: 0 15px;
  height: 34px;
  line-height: 32px;
  border: 1px solid #000;
  border-radius: 17px;
  background-color: transparent;
  font-size: 18px;
  font-family: Roboto, Roboto-Regular;
  font-weight: 400;
  color: #000;
}
.page-paid .paid-header .paid-btn:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .page-paid .paid-header {
    background: url(../../static/images/banner-md.efdf134f.jpg) no-repeat center/cover;
    margin-top: 50px;
    padding-top: 106%;
    width: 100%;
  }
  .page-paid .paid-header .paid-wrapper {
    padding: 72px 21px 0;
    display: block;
    top: 20%;
    width: 100%;
    text-align: center;
  }
  .page-paid .paid-header .paid-title {
    margin-bottom: 10px;
    font-size: 43px;
    height: 33px;
    line-height: 33px;
  }
  .page-paid .paid-header .paid-desc {
    margin-bottom: 20px;
    width: 100%;
    min-width: 300px;
    font-size: 17px;
    line-height: 24px;
    text-align: center;
  }
  .page-paid .paid-header .paid-btn {
    position: absolute;
    top: 35px;
    right: 18px;
    padding: 3px 10px;
    height: auto;
    line-height: 12px;
    font-size: 8px;
    opacity: 0.55;
    border-radius: 10px;
  }
  .page-paid .paid-header .border-1px {
    border: none;
  }
  .page-paid .paid-header .border-1px::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #000;
    border-radius: 17px;
    box-sizing: border-box;
    width: 200%;
    height: 200%;
    transform: scale(0.5);
    transform-origin: left top;
  }
}
@media screen and (max-width: 576px) {
  .page-paid .paid-header .paid-title {
    font-size: 32px;
  }
}
.page-paid .paid-intro {
  margin: 33px auto 31px;
  width: 1141px;
  height: 276px;
  background-color: #fffce9;
  text-align: center;
}
.page-paid .paid-intro .intro-title {
  margin: 0;
  padding-top: 20px;
  font-size: 39px;
  font-family: Roboto, Roboto-Medium;
  color: #000;
  line-height: 50px;
}
.page-paid .paid-intro .intro-step {
  display: flex;
  justify-content: center;
  margin: 37px 0 24px;
}
.page-paid .paid-intro .intro-step .step-1,
.page-paid .paid-intro .intro-step .step-2 {
  display: flex;
  align-items: center;
  padding-left: 75px;
}
.page-paid .paid-intro .intro-step .step-1 {
  background: url(../../static/images/step-1.73c2448b.png) no-repeat center/cover;
  z-index: 1;
  width: 387px;
  height: 71px;
}
.page-paid .paid-intro .intro-step .step-2 {
  background: url(../../static/images/step-2.97f1b4d6.png) no-repeat center/cover;
  margin-left: -30px;
  width: 357px;
  height: 71px;
}
.page-paid .paid-intro .intro-step .num1,
.page-paid .paid-intro .intro-step .num2 {
  display: inline-block;
  flex-shrink: 0;
  margin: -20px 15px 0 0;
  width: 26px;
  height: 20px;
}
.page-paid .paid-intro .intro-step .num1 {
  background: url(../../static/images/num-1.74025fa0.png) no-repeat center/contain;
}
.page-paid .paid-intro .intro-step .num2 {
  background: url(../../static/images/num-2.e1e7f07c.png) no-repeat center/contain;
}
.page-paid .paid-intro .intro-step .text {
  display: inline-block;
  max-width: 210px;
  font-size: 18px;
  font-family: Roboto, Roboto-Regular;
  font-weight: 400;
  text-align: left;
  color: #000;
  line-height: 25px;
}
@media screen and (max-width: 768px) {
  .page-paid .paid-intro {
    margin: 33px 14px 31px 13px;
    width: auto;
    min-width: 300px;
    height: 227px;
  }
  .page-paid .paid-intro .intro-title {
    font-size: 24px;
    line-height: 19px;
  }
  .page-paid .paid-intro .intro-step {
    display: block;
    margin: 14px 0 13px;
  }
  .page-paid .paid-intro .intro-step .step-1,
.page-paid .paid-intro .intro-step .step-2 {
    width: 281px !important;
    height: 42px !important;
    margin: 8px auto 0 !important;
    padding: 0;
  }
  .page-paid .paid-intro .intro-step .step-1 {
    background-color: #fff7c4;
  }
  .page-paid .paid-intro .intro-step .step-2 {
    background-color: #fff29f;
  }
  .page-paid .paid-intro .intro-step .num1,
.page-paid .paid-intro .intro-step .num2 {
    margin: 0 25px 0 27px;
    width: 15px;
    height: 12px;
  }
  .page-paid .paid-intro .intro-step .num1::after,
.page-paid .paid-intro .intro-step .num2::after {
    display: inline-block;
    content: "";
    margin: -9px 0 0 40px;
    width: 1px;
    height: 26px;
    opacity: 0.24;
    background-color: #000;
  }
  .page-paid .paid-intro .intro-step .text {
    padding-left: 19px;
    font-size: 12px;
    line-height: 15px;
  }
}
@media screen and (max-width: 576px) {
  .page-paid .paid-intro .intro-title {
    font-size: 24px;
    line-height: 19px;
  }
}
.page-paid .paid-intro .intro-start {
  display: inline-block;
  padding: 12px 52px;
  border: none;
  height: 52px;
  line-height: 26px;
  background-color: #ffe100;
  border-radius: 26px;
  font-size: 25px;
  font-family: Roboto, Roboto-Medium;
  font-weight: 500;
  text-align: left;
  color: #000;
}
.page-paid .paid-intro .intro-start:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .page-paid .paid-intro .intro-start {
    padding: 12px 85px;
    height: 44px;
    font-size: 20px;
    line-height: 20px;
    border-radius: 22px;
    background-color: #fdd70c;
  }
}
.page-paid .paid-content {
  padding: 64px 0 66px;
  background-color: #f5f5f5;
}
.page-paid .paid-content .content-title {
  margin: 0 0 34px;
  font-size: 28px;
  font-family: Roboto, Roboto-Medium;
  font-weight: 500;
  text-align: center;
  color: #000;
  line-height: 44px;
}
.page-paid .paid-content .content-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 1050px;
}
.page-paid .paid-content .content-item {
  padding: 30px 15px 33px;
  width: 225px;
  height: 311px;
  background: #ffffff;
}
.page-paid .paid-content .content-item .content-pic {
  margin-bottom: 26px;
  width: 196px;
  height: 137px;
}
.page-paid .paid-content .content-item .content-desc {
  margin-bottom: 20px;
  height: 64px;
  font-size: 16px;
  font-family: Roboto, Roboto-Medium;
  font-weight: 500;
  text-align: left;
  color: #555;
  line-height: 24px;
}
.page-paid .paid-content .content-item .content-line {
  width: 63px;
  height: 5px;
  background: #ffe529;
}
@media screen and (max-width: 768px) {
  .page-paid .paid-content {
    padding: 31px 0 26px;
  }
  .page-paid .paid-content .content-title {
    margin: 0 0 20px;
    font-size: 20px;
    line-height: 32px;
  }
  .page-paid .paid-content .content-list {
    padding: 0 13px;
    width: auto;
  }
  .page-paid .paid-content .content-item {
    margin-bottom: 9px;
    padding: 8px 12px 17px;
    width: 48%;
    min-width: 170px;
    height: 220px;
    text-align: center;
  }
  .page-paid .paid-content .content-item .content-pic {
    margin-bottom: 15px;
    width: 147px;
    height: 103px;
  }
  .page-paid .paid-content .content-item .content-desc {
    height: 48px;
    font-size: 12px;
    line-height: 16px;
  }
  .page-paid .paid-content .content-item .content-line {
    margin: 0 auto;
    width: 45px;
    height: 3px;
  }
}
.page-paid .paid-case {
  padding-bottom: 43px;
  background-color: #f5f5f5;
}
.page-paid .paid-case .case-title {
  margin: 0 0 29px;
  font-size: 28px;
  font-family: Roboto, Roboto-Medium;
  font-weight: 500;
  text-align: center;
  color: #000;
  line-height: 44px;
}
.page-paid .paid-case .case-content {
  margin: 0 auto;
  padding: 42px 40px 67px;
  width: 1013px;
  background-color: #fff;
}
.page-paid .paid-case .case-bg {
  margin: 0 auto 24px;
  background: url(../../static/images/case.41f83428.jpg) no-repeat center/cover;
  width: 102px;
  height: 35px;
  font-size: 20px;
  font-family: Roboto, Roboto-Medium;
  font-weight: 500;
  text-align: center;
  color: #000;
  line-height: 35px;
}
.page-paid .paid-case .case-desc {
  margin: 0;
  font-size: 20px;
  font-family: Roboto, Roboto-Regular;
  font-weight: 400;
  text-align: left;
  color: #555;
  line-height: 34px;
}
.page-paid .paid-case .case-desc:first-of-type {
  margin-bottom: 52px;
}
.page-paid .paid-case .strong {
  color: #000;
}
@media screen and (max-width: 768px) {
  .page-paid .paid-case .case-title {
    margin: 0 0 17px;
    font-size: 20px;
    line-height: 32px;
  }
  .page-paid .paid-case .case-content {
    margin: 0 13px;
    padding: 22px 16px 29px 25px;
    width: auto;
    min-width: 300px;
  }
  .page-paid .paid-case .case-bg {
    margin: 0 auto 24px;
    background: url(../../static/images/case-md.ff94b417.jpg) no-repeat center/cover;
    width: 61px;
    height: 23px;
    font-size: 13px;
    line-height: 23px;
  }
  .page-paid .paid-case .case-desc {
    font-size: 13px;
    line-height: 21px;
  }
  .page-paid .paid-case .case-desc:first-of-type {
    margin-bottom: 24px;
  }
}
.portal-opened {
  overflow: hidden !important;
}
.toast-root {
  position: relative;
  z-index: 1500;
}

.toast-body {
  position: fixed;
  top: 45%;
  left: 50%;
  transform: translate(-55%, -50%);
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  border-radius: 6px;
  padding: 10px;
  min-width: 150px;
  max-width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  flex-direction: column;
}

.toast-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.toast-backdrop-static {
  background-color: rgba(0, 0, 0, 0.1);
}

.toast-loading-root {
  min-height: 80px;
}
.modal-dialog-root .modal-dialog {
  width: auto;
  max-width: 400px;
  margin: 100px auto 0;
  padding: 0 30px;
}
.modal-dialog-root .modal-content {
  border-radius: 20px;
  border: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  padding: 16px;
  color: #4f5364;
}
.modal-dialog-root .modal-header {
  padding: 0 0 20px;
  border-bottom: 0;
}
.modal-dialog-root .modal-header .modal-title {
  font-size: 16px;
  text-align: center;
}
.modal-dialog-root .modal-body {
  padding: 0 0 15px;
}
.modal-dialog-root .content-centered {
  text-align: center;
}
.modal-dialog-root .modal-footer {
  padding: 0 10px;
  display: flex;
  justify-content: center;
  border-top: 0;
}
.modal-dialog-root .modal-footer > .btn {
  flex: 1 1 100%;
}
.modal-dialog-root .modal-footer > .btn + .btn {
  margin-left: 5%;
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.unsubscribe-root {
  width: 55vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5vh 5vw;
}
@media (max-width: 768px) {
  .unsubscribe-root {
    max-width: 500px;
    width: 90vw;
  }
}
.unsubscribe-root .unsubscribe-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.unsubscribe-root .unsubscribe-content > div {
  margin-top: 20px;
}
.unsubscribe-root .unsubscribe-content .unsubscribe-title {
  text-align: center;
  font-family: "Roboto-Black";
  margin: 0;
}
.unsubscribe-root .unsubscribe-content .unsubscribe-desc {
  width: 100%;
  border: 1px solid gray;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.unsubscribe-root .unsubscribe-content .unsubscribe-desc h5 {
  font-weight: bolder;
}
.unsubscribe-root .unsubscribe-content .unsubscribe-desc .unsubscribe-desc-list {
  text-align: center;
  padding: 0;
}
.unsubscribe-root .unsubscribe-content .unsubscribe-desc .unsubscribe-desc-list li {
  display: inline-block;
  list-style: none;
  color: grey;
}
.unsubscribe-root .unsubscribe-content .unsubscribe-desc .unsubscribe-desc-list li:first-child {
  margin-right: 20px;
}
.unsubscribe-root .unsubscribe-content .unsubscribe-desc .unsubscribe-desc-list li::before {
  content: "•";
  color: grey;
  font-size: 16px;
  padding-right: 10px;
}
.unsubscribe-root .unsubscribe-content .unsubscribe-button-list {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.unsubscribe-root .unsubscribe-content .unsubscribe-button-list .unsubscribe-button {
  flex: 1 1;
}
.unsubscribe-root .unsubscribe-content .unsubscribe-button-list .unsubscribe-button:first-child {
  margin-right: 20px;
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.email-root {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.email-root .email-header {
  background: url(../../static/images/email-header.b6d48ffb.png) no-repeat;
  background-size: 100% auto;
  background-color: #ffdb3b;
  height: 13.6vw;
}
@media (max-width: 768px) {
  .email-root .email-header {
    height: 15vh;
    background-size: auto 100%;
  }
}
.email-root .email-body {
  flex: 1 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.applink-root img {
  height: 32px;
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.plarform-root .section-header-root {
  border-bottom: 1px solid #000;
  padding-bottom: 2.5rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .plarform-root .section-header-root {
    margin-top: 2rem;
  }
}
.plarform-root .section-header-root.margin-top {
  margin-top: 14rem;
}
@media screen and (max-width: 768px) {
  .plarform-root .section-header-root.margin-top {
    margin-top: 3rem;
  }
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.platform-section-root {
  margin: 3rem auto;
}
.platform-section-root .container-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .platform-section-root .container-reverse {
    flex-direction: column-reverse;
  }
}
.platform-section-root .platform-section-container {
  display: flex;
  margin: auto;
  width: 90%;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .platform-section-root .platform-section-container {
    flex-direction: column;
    align-items: center;
  }
}
.platform-section-root .platform-section-container .section-img {
  height: 500px;
  width: auto;
}
.platform-section-root .platform-section-container .section-img-432 {
  height: 432px;
}
.platform-section-root .platform-section-container .section-img-583 {
  height: 583px;
}
.platform-section-root .platform-section-container .section-img-569 {
  height: 569px;
}
.platform-section-root .platform-section-container .section-img-380 {
  height: 380px;
}
.platform-section-root .platform-section-container .section-img-350 {
  height: 350px;
}
@media screen and (max-width: 768px) {
  .platform-section-root .platform-section-container .section-img {
    width: 61%;
    height: auto;
  }
  .platform-section-root .platform-section-container .section-pc-img {
    width: 100%;
  }
}
.platform-section-root .platform-section-container .float-content-left {
  margin-right: -17%;
}
.platform-section-root .platform-section-container .float-content-right {
  margin-left: -17%;
}
.platform-section-root .platform-section-container .section-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 40%;
}
@media screen and (max-width: 768px) {
  .platform-section-root .platform-section-container .section-desc {
    align-items: center;
  }
  .platform-section-root .platform-section-container .section-desc .platform-section-header {
    text-align: center;
  }
}
.platform-section-root .platform-section-container .section-desc .header-underline {
  width: 58px;
  height: 6px;
  background-color: #fbe04c;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .platform-section-root .platform-section-container .section-desc .header-underline {
    margin-bottom: 1.5rem;
  }
}
.platform-section-root .platform-section-container .flex-start-desc {
  justify-content: flex-start;
  margin-top: 2rem;
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.plarform-root {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .plarform-root {
    margin-top: 50px;
  }
}
.plarform-root .platform-header {
  height: 500px;
  background: url(../../static/images/platform-banner.e9107d89.jpg) no-repeat center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .plarform-root .platform-header {
    background: url(../../static/images/platform-banner.6d12efde.jpg) no-repeat left;
    background-size: cover;
    width: 100%;
    height: 400px;
  }
}
.plarform-root .platform-header .header-content {
  font-size: 2rem;
  font-family: Roboto-Medium;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  line-height: 1.5;
  white-space: pre-wrap;
}
@media screen and (max-width: 768px) {
  .plarform-root .platform-header .header-content {
    font-size: 24px;
  }
}
.plarform-root .platform-header .header-content .header-content-long {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.plarform-root .platform-header .header-content-explain {
  max-width: 800px;
  font-size: 14px;
  margin-top: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .plarform-root .platform-header .header-content-explain {
    margin: 0px 15px;
    font-size: 12px;
  }
}
.plarform-root .platform-header .applink-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.plarform-root .platform-header .applink-container .applink-item {
  height: 32px;
  margin: 1%;
}
.plarform-root .platform-article {
  padding: 0 10%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.plarform-root .platform-section-header {
  font-size: 37px;
  font-family: Roboto-Medium;
  font-weight: 500;
  text-align: left;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .plarform-root .platform-section-header {
    font-size: 30px;
  }
}
.plarform-root .platform-section-content {
  font-size: 18px;
  text-align: left;
  white-space: pre-wrap;
}
.plarform-root .platform-pc-root .platform-section-container {
  width: 95%;
  justify-content: space-between;
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.dlapp-root {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .dlapp-root {
    margin-top: 50px;
  }
}
.dlapp-root .platform-header {
  height: 600px;
  background: url(../../static/images/platform-banner.e9107d89.jpg) no-repeat center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .dlapp-root .platform-header {
    background: url(../../static/images/platform-banner.6d12efde.jpg) no-repeat left;
    background-size: cover;
    width: 100%;
  }
}
.dlapp-root .platform-header .header-content {
  font-size: 2rem;
  font-family: Roboto-Medium;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  line-height: 1.5;
  white-space: pre-wrap;
}
.dlapp-root .platform-header .header-content .header-content-long {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .dlapp-root .platform-header .header-content {
    font-size: 1.5rem;
  }
}
.dlapp-root .platform-header .applink-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.dlapp-root .platform-header .applink-container .applink-item {
  height: 32px;
  margin: 1%;
}
@charset "UTF-8";
/**
* 不同的dpr选择不同类型的图片
*/
.page-pricing {
  display: flex;
  padding-top: 60px;
}
.page-pricing .pricing-nav-root {
  width: 20%;
  margin-right: 3%;
}
.page-pricing .menu-switch {
  display: none;
}
.page-pricing .pricing-nav {
  height: 100%;
  border-right: 2px solid #fedf33;
}
.page-pricing .pricing-nav a {
  display: block;
  font-size: 16px;
  color: #000;
  text-align: center;
  text-decoration: none;
  padding: 15px 0;
}
.page-pricing .pricing-nav a.active {
  border: 2px solid #fedf33;
  border-right: 0;
}
.page-pricing .pricing-nav a:hover {
  text-decoration: none;
}
.page-pricing .page-pricing-switch {
  width: 77%;
  margin-bottom: 120px;
}
.page-pricing .page-pricing-switch h3 {
  margin: 0;
}
.page-pricing .page-pricing-commissions .pricing-table-wrap tr > td {
  width: 50%;
}
.page-pricing .page-pricing-commissions .pricing-description-wrap {
  margin: 15px 0 30px;
}
.page-pricing .page-pricing-commissions .pricing-description-wrap hr {
  border-top: 1px solid #000;
}
.page-pricing .pricing-table-wrap {
  -webkit-overflow-scrolling: touch;
  margin: 15px 0 30px;
}
.page-pricing .pricing-table-wrap .pricing-table {
  width: 100%;
  border-bottom: 1px solid #000;
  border-collapse: collapse;
  font-size: 16px;
}
.page-pricing .pricing-table-wrap .pricing-table thead,
.page-pricing .pricing-table-wrap .pricing-table .yellow-background {
  background: #ffe100;
}
.page-pricing .pricing-table-wrap .pricing-table td,
.page-pricing .pricing-table-wrap .pricing-table th {
  padding: 6px;
  text-align: left;
  vertical-align: middle;
}
.page-pricing .pricing-table-wrap .table-border {
  border-bottom: 1px solid;
  border-top: 1px solid;
}
@media (max-width: 768px) {
  .page-pricing .pricing-table-wrap {
    overflow-x: scroll;
    white-space: nowrap;
  }
  .page-pricing .pricing-table-wrap .pricing-table {
    font-size: 15px;
  }
}
.page-pricing .page-title {
  font-size: 20px;
  text-align: center;
}
.page-pricing .interest-desc {
  margin-top: 15px;
}
.page-pricing .title {
  font-size: 18px;
  margin: 20px 0;
}
.page-pricing .tip {
  padding-left: 10px;
}
.page-pricing .notes a {
  text-decoration: underline;
}
.page-pricing .marsco-footnotes-ul {
  padding-left: 15px;
}
.page-pricing .error-panel {
  padding: 10px 20px;
  border: 1px solid #f56f6f;
  background: #ffeded;
  color: #f00;
}
@media (max-width: 768px) {
  .page-pricing .error-panel {
    width: 90%;
  }
}
.page-pricing .page-pricing-interest .table-no-border {
  border-bottom: 0;
}
.page-pricing .page-pricing-interest .table-no-border tbody {
  border-bottom: 1px solid #000;
}
.page-pricing .page-pricing-interest .table-no-border tbody:last-child {
  border-bottom: 0;
}
@media (max-width: 768px) {
  .page-pricing {
    padding: 30px 15px 0;
    flex-wrap: wrap;
  }
  .page-pricing .pricing-nav {
    width: 200px;
    height: 100%;
    position: fixed;
    background: #fff;
    top: 50px;
    left: 0;
    z-index: 10;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.3);
  }
  .page-pricing .pricing-nav a {
    white-space: nowrap;
  }
  .page-pricing .menu-switch {
    display: block;
  }
  .page-pricing .switch-btn {
    min-width: 200px;
    color: #f5ca02;
    margin-bottom: 20px;
    background-color: #313131;
    border: 0;
    font-size: 12px;
  }
  .page-pricing .switch-btn .icon {
    text-indent: -1000px;
    width: 18px;
    margin-right: 7px;
    display: inline-block;
    background: url(../../static/images/nav-icon.ed06dd67.png) no-repeat;
    background-size: contain;
    background-position: center;
  }
  .page-pricing .page-pricing-switch {
    width: 100%;
  }
}
.page-help {
  position: relative;
  min-height: 600px;
}
.page-help .help-common-top {
  position: fixed;
  top: 70px;
  padding: 12px 0;
  width: 100%;
  z-index: 9;
  background: #f4f4f4;
}
.site-within-app .page-help .help-common-top {
  top: 0px;
}
@media (max-width: 768px) {
  .page-help .help-common-top {
    padding: 12px 14px;
    top: 50px;
  }
}
@media (max-width: 540px) {
  .page-help .help-common-top {
    background-color: #fff;
  }
}
.page-help .help-common-top .d-flex {
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 540px) {
  .page-help .help-common-top .d-flex .search-breadcrumb {
    display: none;
  }
}
.page-help .help-common-top .d-flex .search-input {
  position: relative;
}
@media (max-width: 540px) {
  .page-help .help-common-top .d-flex .search-input {
    width: 100%;
  }
}
.page-help .help-common-top .d-flex .search-input .search {
  width: 100%;
  padding: 6px 50px 6px 8px;
  border: none;
  outline: none;
  border-radius: 5px;
  background-color: #fff;
  -webkit-appearance: button;
}
@media (max-width: 540px) {
  .page-help .help-common-top .d-flex .search-input .search {
    background-color: #f4f4f4;
  }
}
.page-help .help-common-top .d-flex .search-input .search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../../static/images/about-search.5cdcc9db.png) no-repeat 50% 50%;
}
.page-help .help-main {
  padding-top: 60px;
}
.site-within-app .page-help .help-detail-root .page-help .help-main {
  padding-top: 20px;
}
@media (max-width: 540px) {
  .help-index-root h3 {
    font-size: 16px;
  }
}
.help-index-root > .loading-root {
  margin-top: 100px;
}
.help-index-root .common-title, .help-index-root .question h2, .help-index-root .help-index-nav h2, .help-index-root .content .title {
  padding: 80px 0 13px;
  font-size: 30px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .help-index-root .common-title, .help-index-root .question h2, .help-index-root .help-index-nav h2, .help-index-root .content .title {
    padding-top: 50px;
    font-size: 24px;
  }
}
@media (max-width: 540px) {
  .help-index-root .common-title, .help-index-root .question h2, .help-index-root .help-index-nav h2, .help-index-root .content .title {
    padding-top: 35px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .help-index-root .help-index-content {
    padding: 0 24px;
  }
}
.help-index-root .help-index-banner {
  padding-top: 120px;
  height: 353px;
  font-weight: 700;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 540px) {
  .help-index-root .help-index-banner {
    padding-top: 70px;
    height: 270px;
  }
}
.help-index-root .help-index-banner h1 {
  font-size: 40px;
}
@media (max-width: 540px) {
  .help-index-root .help-index-banner h1 {
    font-size: 30px;
  }
}
.help-index-root .help-index-banner h2 {
  font-size: 24px;
}
@media (max-width: 540px) {
  .help-index-root .help-index-banner h2 {
    font-size: 18px;
  }
}
.help-index-root .content .search-box {
  position: relative;
}
.help-index-root .content .search-box .search {
  padding: 8px 50px 8px 8px;
  width: 100%;
  height: 38px;
  border: none;
  outline: none;
  border-radius: 5px;
  background-color: #f4f4f4;
  -webkit-appearance: button;
}
.help-index-root .content .search-box .search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../../static/images/about-search.5cdcc9db.png) no-repeat 50% 50%;
  cursor: pointer;
}
.help-index-root .help-index-nav .common-link {
  display: inline-block;
  padding-right: 15px;
  color: #333;
}
.help-index-root .help-index-nav .common-link-small {
  display: inline;
  padding-right: 10px;
  background-size: auto 10px;
}
.help-index-root .help-index-nav h2 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
@media (max-width: 540px) {
  .help-index-root .help-index-nav h2 {
    margin-bottom: 0;
  }
}
.help-index-root .help-index-nav .nav-container {
  display: flex;
  flex-wrap: wrap;
}
.help-index-root .help-index-nav .nav-container a {
  color: #333;
}
.help-index-root .help-index-nav .nav-container .nav-group {
  padding-right: 10px;
  margin: 40px 0;
  width: 33.3%;
  min-height: 140px;
}
@media (max-width: 768px) {
  .help-index-root .help-index-nav .nav-container .nav-group {
    width: 50%;
    margin: 20px 0;
  }
}
@media (max-width: 540px) {
  .help-index-root .help-index-nav .nav-container .nav-group {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 20px 0;
    width: 100%;
    min-height: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  }
}
.help-index-root .help-index-nav .nav-container .nav-group .nav-icon {
  float: left;
  margin-right: 10px;
  width: 36px;
  height: 36px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 540px) {
  .help-index-root .help-index-nav .nav-container .nav-group .nav-icon {
    width: 28px;
    height: 28px;
  }
}
.help-index-root .help-index-nav .nav-container .nav-group .nav-group-list {
  float: left;
  width: calc(100% - 60px);
}
@media (max-width: 768px) {
  .help-index-root .help-index-nav .nav-container .nav-group .nav-group-list {
    width: calc(100% - 50px);
  }
}
@media (max-width: 540px) {
  .help-index-root .help-index-nav .nav-container .nav-group .nav-group-list {
    flex: 1 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    float: none;
    max-width: 100%;
  }
}
.help-index-root .help-index-nav .nav-container .nav-group .nav-group-list .title {
  margin: 0 10px 10px 0;
  flex: 1 1;
  overflow: hidden;
  font-size: 20px;
}
@media (max-width: 540px) {
  .help-index-root .help-index-nav .nav-container .nav-group .nav-group-list .title {
    max-width: 50%;
    margin-bottom: 0;
    word-break: break-word;
    font-size: 16px;
  }
}
.help-index-root .help-index-nav .nav-container .nav-group .nav-group-list h3 {
  max-width: 100%;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 540px) {
  .help-index-root .help-index-nav .nav-container .nav-group .nav-group-list .sub-nav-group {
    flex: 1 1;
    font-size: 13px;
  }
}
.help-index-root .help-index-nav .nav-container .nav-group .nav-group-list .sub-nav-group .group-item {
  margin-bottom: 5px;
}
.help-index-root .help-index-nav .nav-container .nav-group .nav-group-list .sub-nav-group .group-item .more {
  position: relative;
  padding-right: 10px;
}
.help-index-root .help-index-nav .nav-container .nav-group .nav-group-list .sub-nav-group .group-item .more::after {
  content: "";
  position: absolute;
  right: 0;
  top: 33%;
  height: 8px;
  width: 8px;
  border-width: 1px 1px 0 0;
  border-color: #f5ca02;
  border-style: solid;
  transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
}
.help-index-root .question {
  margin-bottom: 90px;
}
.help-index-root .question h2 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.help-index-root .question h5 {
  margin-top: 20px;
}
.help-index-root .question .question-list {
  margin-top: 14px;
}
.help-index-root .question .question-list .question-title {
  padding-left: 10px;
  cursor: pointer;
}
@media (max-width: 540px) {
  .help-index-root .question .question-list .question-title {
    font-size: 12px;
  }
}
.help-index-root .question .question-list .show-answer {
  position: relative;
}
.help-index-root .question .question-list .show-answer::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 0;
  background: url(../../static/images/arrow-left.16a1e231.png) no-repeat 0%;
  background-size: auto 10px;
  transform-origin: 50% 25%;
  transform: rotate(90deg);
  transition: all 0.2s ease-out;
}
.help-index-root .question .question-list .unshow-answer {
  position: relative;
}
.help-index-root .question .question-list .unshow-answer::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 25%;
  left: 0;
  background: url(../../static/images/arrow-left.16a1e231.png) no-repeat 0%;
  background-size: auto 10px;
  transform: rotate(0deg);
  transition: all 0.2s ease-out;
}
.help-index-root .question .question-list .answer {
  position: relative;
  margin: 8px 0 20px 10px;
  color: #a3a3a3;
}
.help-index-root .question .question-list .answer i {
  position: absolute;
  left: 0;
  top: 0;
  font-style: normal;
  font-size: 14px;
}
@media (max-width: 540px) {
  .help-index-root .question .question-list .answer i {
    font-size: 12px;
  }
}
.help-index-root .question .question-list .answer .answer-detail {
  padding-left: 17px;
}
.help-index-root .question .question-list .answer .answer-detail * {
  font-size: 14px !important;
}
@media (max-width: 540px) {
  .help-index-root .question .question-list .answer .answer-detail * {
    font-size: 12px !important;
  }
}
.empty-help-root {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.accordion-root {
  padding-right: 5px;
  border-bottom: 1px solid #9d9d9d;
}
.accordion-root .children-container {
  overflow: hidden;
}
.side-menu-root {
  display: none;
}
@media (max-width: 540px) {
  .side-menu-root {
    display: block;
  }
}
.side-menu-root .current-title {
  text-align: center;
  margin: 10px 0;
  font-size: 16px;
  font-weight: bold;
}
.side-menu-root .switch-btn {
  color: #ffe100;
  margin-bottom: 20px;
  background-color: #313131;
  border: 0;
  font-size: 12px;
}
.side-menu-root .switch-btn .icon {
  text-indent: -1000px;
  width: 18px;
  margin-right: 7px;
  display: inline-block;
  background: url(../../static/images/nav-icon.ed06dd67.png) no-repeat;
  background-size: contain;
  background-position: center;
}
.side-menu-root .nav-menu {
  position: fixed;
  background: #fff;
  top: 50px;
  left: 0;
  bottom: 0;
  z-index: 10;
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.3);
  padding: 0 10px;
  width: 250px;
  word-wrap: break-word;
  overflow-y: scroll;
  overflow-x: hidden;
}
.site-within-app .side-menu-root .nav-menu {
  top: 0px;
}
.side-menu-root .nav-menu .menu-container {
  width: 230px;
}
.side-menu-root .nav-menu .title {
  padding: 0px 16px 0px 5px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin: 18px 0;
}
.side-menu-root .nav-menu .link-box {
  margin-bottom: 18px;
}
.side-menu-root .nav-menu .link-box a {
  display: inline-block;
  padding: 0 5px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
}
.side-menu-root .nav-menu .link-box a.active {
  background-color: #ffe100;
  border-radius: 2px;
}
.site-within-app .help-detail-root .help-main {
  padding-top: 20px;
}
.help-detail-root > .loading-root {
  margin-top: 100px;
}
.help-detail-root .help-nav-detail {
  display: flex;
  padding-top: 30px;
}
@media (max-width: 768px) {
  .help-detail-root .help-nav-detail {
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media (max-width: 540px) {
  .help-detail-root .help-nav-detail {
    flex-direction: column;
    padding-top: 0;
  }
}
.help-detail-root .help-nav-detail .nav-menu-root {
  padding-bottom: 30px;
  width: 250px;
  margin-right: 3%;
  border-right: 1px solid #9d9d9d;
  word-wrap: break-word;
  color: #000;
}
@media (max-width: 540px) {
  .help-detail-root .help-nav-detail .nav-menu-root {
    visibility: hidden;
    position: absolute;
  }
}
.help-detail-root .help-nav-detail .nav-menu-root .title {
  padding: 0px 16px 0px 5px;
  font-size: 16px;
  font-weight: 700;
  margin: 18px 0;
  cursor: pointer;
}
.help-detail-root .help-nav-detail .nav-menu-root .link-box {
  margin-bottom: 18px;
}
.help-detail-root .help-nav-detail .nav-menu-root .link-box a {
  display: inline-block;
  padding: 0 5px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
}
.help-detail-root .help-nav-detail .nav-menu-root .link-box a.active {
  background-color: #ffe100;
  border-radius: 2px;
}
.help-detail-root .help-nav-detail .content-root {
  padding-bottom: 20px;
  overflow: hidden;
  flex: 1 1;
}
.search-root {
  padding-bottom: 60px;
}
.search-root h2 {
  font-size: 18px;
}
.search-root h2 .highlight {
  color: red;
}
@media (max-width: 768px) {
  .search-root .search-content {
    padding: 0 14px;
  }
}
.search-root .result-content .content-item-box {
  padding-top: 20px;
}
.search-root .result-content .content-item-box .content-item::after {
  content: "...";
}
.search-root .result-content h4 {
  padding-top: 20px;
  margin-bottom: 0;
}

/*# sourceMappingURL=index.a03978d7.css.map*/