@charset "UTF-8";

/* ===================================================================
 * # base style overrides
 *
 * ------------------------------------------------------------------- */
html {
  font-size: 10px;
}

html,
body {
  height: 100%;
}

body {
  /* background: #121619; */
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: normal;
  line-height: 1.778;
  color: #545454;
  margin: 0;
  padding: 0;
}

button {
  border: none;
}
.hide {
  display: none !important;
}
.blue {
  color: #19AEE9 !important;
}

/* ===================================================================
 * # preloader 
 *
 * ------------------------------------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: #121619; */
  background: #fff;
  z-index: 800;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.no-js #preloader,
.oldie #preloader {
  display: none;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  padding: 0;
  display: inline-block;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

#loader > div {
  content: "";
  background: #5b4f96;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}

#loader > div:nth-of-type(1) {
  left: 15px;
}

#loader > div:nth-of-type(3) {
  left: -15px;
}

/* dots jump */
.dots-jump > div {
  -webkit-animation: dots-jump 1.2s infinite ease;
  animation: dots-jump 1.2s infinite ease;
  animation-delay: 0.2s;
}

.dots-jump > div:nth-of-type(1) {
  animation-delay: 0.4s;
}

.dots-jump > div:nth-of-type(3) {
  animation-delay: 0s;
}

@-webkit-keyframes dots-jump {
  0% {
    top: 0;
  }

  40% {
    top: -6px;
  }

  80% {
    top: 0;
  }

}

@keyframes dots-jump {
  0% {
    top: 0;
  }

  40% {
    top: -6px;
  }

  80% {
    top: 0;
  }

}

/* dots fade */
.dots-fade > div {
  -webkit-animation: dots-fade 1.6s infinite ease;
  animation: dots-fade 1.6s infinite ease;
  animation-delay: 0.4s;
}

.dots-fade > div:nth-of-type(1) {
  animation-delay: 0.8s;
}

.dots-fade > div:nth-of-type(3) {
  animation-delay: 0s;
}

@-webkit-keyframes dots-fade {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 0.2;
  }

  80% {
    opacity: 1;
  }

}

@keyframes dots-fade {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 0.2;
  }

  80% {
    opacity: 1;
  }

}

/* dots pulse */
.dots-pulse > div {
  -webkit-animation: dots-pulse 1.2s infinite ease;
  animation: dots-pulse 1.2s infinite ease;
  animation-delay: 0.2s;
}

.dots-pulse > div:nth-of-type(1) {
  animation-delay: 0.4s;
}

.dots-pulse > div:nth-of-type(3) {
  animation-delay: 0s;
}

@-webkit-keyframes dots-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(1.1);
    transform: scale(1.3);
  }

  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

}

@keyframes dots-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(1.1);
    transform: scale(1.3);
  }

  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

}



/* ===================================================================
 * # buttons
 *
 * ------------------------------------------------------------------- */
.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  cursor: pointer;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * pc
 * ------------------------------------------------------------------- */
@media only screen and (min-width: 450px) {
  .mobile {
    display: none;
  }
  .pc {
    display: inline-block;
    width: 100%;
    /* font-size: 10px !important; */
    /* font-size: 0; */
  }
  span {
    font-size: 0.3rem;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #282828;
    line-height: 0.46rem;
    text-align: left;
  }

  .top-img-box {
    position: relative;
    font-size: 0;
  }
  .top-img {
    width: 100%;
  }
  .icon-box {
    width: 1.7rem;
    height: 0.6rem;
    background-image: url('../images/pc/icon@2x.png');
    position: absolute;
    top: 17%;
    right: 30.5%;
  }
  .download-box {
    display: flex;
    align-items: center;
    position: absolute;
    /* top: 63%;
    right: 24.5%; */
    top: 3.37rem;
    right: 4.67rem;
  }
  .download-box .left {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-right: 0.42rem;
  }
  .download-box .left .button {
    width: 2.52rem;
    height: 0.56rem;
    background: #FFFFFF;
    border-radius: 0.28rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.2rem;
    font-weight: 500;
    color: #16378C;
  }
  .download-box .left .button:hover {
    background: #16378C;
  }
  .download-box .left .button:hover span{
    color: #fff;
  }
  .download-box .left .button.android:hover .type-icon {
    background-image: url('../images/pc/android-icon-white@2x.png');
  }
  .download-box .left .button.ios:hover .type-icon {
    background-image: url('../images/pc/ios-icon-white@2x.png');
  }
  .button.android {
    margin-bottom: 0.22rem;
  }
  .button.android .type-icon{
    background-image: url('../images/pc/android-icon-blue@2x.png');
  }
  .button.ios .type-icon {
    background-image: url('../images/pc/ios-icon-blue@2x.png');
  }
  .download-box .left .button .type-icon {
    width: 0.3rem;
    height: 0.3rem;
    margin-right: 0.1rem;
  }
  .download-box .left .button span {
    font-size: 0.2rem;
    font-weight: 500;
    color: #16378C;
  }
  .pc .qrcode-box {
    /* width: 13.4rem;
    height: 14.4rem; */
    width: 1.64rem;
    height: 1.74rem;
    background: #FFFFFF;
    /* border-radius: 0.8rem; */
    border-radius: 0.08rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 0.24rem;
  }
  .pc .qrcode-box .qrcode {
    width: 1.1rem;
    height: 1.1rem;
    margin-bottom: 0.12rem;
    background-size: 100% 100%;
    font-size: 0;
  }
  .pc .qrcode-box span {
    font-size: 0.16rem;
    font-weight: 500;
    color: #16378C;
    line-height: 0.16rem;
  }
  .qrcode-box.fixed {
    position: fixed;
    right: 13%;
    top: 40%;
  }

  .all-bg {
    width: 100%;
    background: #DFF4FF;
    padding-top: 0.45rem;
  }
  .block {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .block .title {
    width: 2.58rem;
    height: 0.6rem;
    margin-bottom: 0.34rem;
  }
  .block p {
    font-size: 0.32rem;
    font-weight: 500;
    color: #131313;
    line-height: 0.46rem;
    padding-left: 0.37rem;
  }
  .block1 {
    margin-bottom: 1.19rem;
  }
  .block1 .left {
    padding-top: 1.85rem;
    left: 2.66rem;
    position: relative;
    z-index: 1;
  }
  .block1 .title {
    width: 3.36rem;
    height: 1.87rem;
    background-image: url('../images/pc/title1@2x.png');
  }
  .block1 .right {
    position: relative;
    right: 1.6rem;
  }
  .block1 .right img {
    width: 10.71rem;
    height: 6.99rem;
  }
  .block2 {
    padding-bottom: 1.05rem;
  }
  .block2 .left {
    position: relative;
    right: 1.2rem;
  }
  .block2 .left img {
    width: 7.66rem;
    height: 7.65rem;
  }
  .block2 .right {
    padding-top: 2.23rem;
    position: relative;
    right: 0.69rem;
  }
  .block2 .title {
    width: 3.36rem;
    height: 1.85rem;
    background-image: url('../images/pc/title2@2x.png');
  }
  .block3 .left {
    padding-top: 1.81rem;
    position: relative;
    left: 1.81rem;
  }
  .block3 .title {
    width: 4.03rem;
    height: 1.87rem;
    background-image: url('../images/pc/title3@2x.png');
  }
  .block3 .right img {
    width: 9.64rem;
    height: 7.07rem;
  }
  .website-info {
    width: 100%;
    height: 1.48rem;
    background: #F7FBFD;
    /* background: red; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .website-info p, .website-info span {
    font-size: 0.16rem;
    color: #666666;
    line-height: 0.16rem;
    /* margin: 0 2rem; */
  }
  .website-info a {
    color: #666666;
  }
  .website-info .line1,.website-info .line2 {
    margin-bottom: 0.12rem;
  }
  .website-info.mobile {
    display: none;
  }
  /*左右结构底部信息栏*/
  .website-info.landscape-layout {
    height: 2.23rem;
    display: flex;
    align-items: center;
    flex-direction: row;
    /* justify-content: flex-start;
    padding-left: 4.47rem; */
    height: initial;
    padding: 0.2rem 0;
  }
  .website-info.landscape-layout div {
    flex: 1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .website-info.landscape-layout .left {
    padding-right: 1rem;
    align-items: flex-end;
  }
  .website-info.landscape-layout .left-container {

  }
  .website-info.landscape-layout .right {
    padding-left: 0.5rem;
  }
  .website-info.landscape-layout p {
    margin-bottom: 0.16rem;
  }
  .website-info.landscape-layout p.contact {
    color: #19AEE9;
  }
  .website-info.landscape-layout.pid32 {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .website-info.landscape-layout.pid32 .left {
    padding-right: 0;
  }
  .website-info.landscape-layout.pid32 .left-container {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .pop-box {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
  }
  .pop-box .content-box {
    width: 5.016rem;
    height: 2.64rem;
    background: #FFFFFF;
    border-radius: 0.184rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-top: 0.576rem;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .pop-box .close {
    width: 0.16rem;
    height: 0.16rem;
    position: absolute;
    top: 0.208rem;
    right: 0.208rem;
    background-image: url('../images/pc/close@2x.png');
  }
  .pop-box .qrcode {
    width: 1.264rem;
    height: 1.232rem;
    margin-bottom: 0.304rem;
    background-size: 100% 100%;
    font-size: 0;
  }
  .pop-box span {
    font-size: 0.16rem;
    font-weight: 500;
    color: #282828;
    line-height: 0.16rem;
  }
}

@media only screen and (max-width:2000px) {

}
@media only screen and (max-width:1800px) {
  html {
    font-size: 8px;
  }
}
@media only screen and (max-width:1500px) {
  html {
    font-size: 7px;
  }
}
@media only screen and (max-width:1300px) {
  html {
    font-size: 6px;
  }
}
@media only screen and (max-width:1000px) {
  html {
    font-size: 5px;
  }

}

@media only screen and (max-width:450px) {
  html {
    font-size: 10px;
  }
  .mobile {
    background: #DFF4FF;
  }
  .pc {
    display: none;
  }
  span {
    font-size: 1.2rem;
    color: #282828;
    line-height: 1.86rem;
    text-align: left;
  }

  .top-img-box {
    position: relative;
    font-size: 0;
    margin-bottom: 0.8rem;
  }
  .top-img {
    width: 100%;
  }

  .play-btn {
    width: 5.06rem;
    height: 0.8rem;
    background: #16378C;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.32rem;
    font-weight: 500;
    color: #FFFFFF;
    position: absolute;
    top: 9.73rem;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .ios-tip {
    width: 4.49rem;
    height: 0.44rem;
    background: #FF611F;
    border-radius: 0.08rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  .ios-tip .tip-text{
    font-size: 0.2rem;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 0.2rem;
  }
  .ios-tip .btn {
    width: 1.09rem;
    height: 0.28rem;
    background: #FFFFFF;
    border-radius: 0.19rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.1rem;
  }
  .ios-tip .btn span.text {
    font-size: 0.16rem;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #FF611F;
    line-height: 0.16rem;
  }
  .ios-tip .btn span.more {
    width: 0.16rem;
    height: 0.16rem;
    background-image: url('../images/mobile/double-arrow-orange@2x.png');
    margin-left: 0.01rem;
  }
  .all-bg {
    width: 100%;
    background: #DFF4FF;
    /* padding-bottom: 1.3rem; */
    padding-bottom: 1.84rem;
    margin-top: 0.34rem;
  }
  .block {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .block .title {
    width: 25.8rem;
    height: 6rem;
    margin-bottom: 3.4rem;
  }
  .block p {
    font-size: 0.3rem;
    font-weight: 500;
    color: #131313;
    line-height: 0.46rem;
    padding-left: 0.24rem;
  }
  .block1 {
    margin-bottom: 1.12rem;
    width: 100%;
    height: 6.29rem;
    position: relative;
  }
  .block1 .left {
    /* width: 100%; */
    flex-shrink: 0;
    padding-top: 1.27rem;
    position: absolute;
    left: 0.42rem;
    z-index: 1;
  }
  .block1 .title {
    width: 2.55rem;
    height: 1.72rem;
    background-image: url('../images/mobile/title1@2x.png');
    margin-right: 0;
    margin-bottom: 0.28rem;
  }
  .block1 .right {
    position: absolute;
    right: 0;
  }
  .block1 .right img {
    width: 6.95rem;
    height: 5.94rem;
  }
  .block2 {
    position: relative;
    width: 100%;
    height: 6.13rem;
    margin-bottom: 1.1rem;
  }
  .block2 .left {
    flex-shrink: 0;
    position: absolute;
    top: 0;
    left: 0.43rem;
  }
  .block2 .left img {
    width: 5.01rem;
    height: 6.12rem;
  }
  .block2 .right {
    padding-top: 1.68rem;
    /* position: relative; */
    right: 0.77rem;
    flex-shrink: 0;
    position: absolute;
  }
  .block2 .title {
    width: 2.55rem;
    height: 1.72rem;
    background-image: url('../images/mobile/title2@2x.png');
    margin-bottom:0.28rem;
  }
  .block3 {
    width: 100%;
    height: 6.36rem;
    padding-bottom: 0.9rem;
    box-sizing: content-box;
  }

  .block3 .left {
    padding-top: 1.63rem;
    /* position: relative; */
    left: 0.46rem;
    flex-shrink: 0;
    position: absolute;
  }
  .block3 .title {
    width: 3.05rem;
    height: 1.7rem;
    background-image: url('../images/mobile/title3@2x.png');
    margin-bottom: 0.29rem;
  }
  .block3 .right {
    position: absolute;
    right: 0;
  }
  .block3 .right img {
    width: 6.15rem;
    height: 6.95rem;
  }
  .website-info.mobile {
    width: 100%;
    height: 2.22rem;
    background: #F7FBFD;
    /* background: red; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* margin-bottom: 1.3rem; */
  }
  .website-info p, .website-info span {
    /* text-align: center; */
    font-size: 0.18rem;
    color: #666666;
    line-height: 0.18rem;
    margin-bottom: 0.16rem;
  }
  .website-info a {
    color: #666666;
    /* color: #121212; */
    /* color: #F7FBFD; */
  }
  .website-info.pc {
    display: none;
  }
  /*左右结构底部信息栏*/
  .website-info.landscape-layout {
    /* height: 2.23rem; */
    display: flex;
    align-items: center;
    flex-direction: row;
    /* padding: 0 0.2rem; */
    /* justify-content: flex-start;
    padding-left: 4.47rem; */
    padding: 0.3rem 0.2rem;
    height: initial;
  }
  .website-info.landscape-layout div {
    flex: 1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .website-info.landscape-layout .left {
    padding-right: 0.5rem;
    align-items: flex-end;
  }
  .website-info.landscape-layout .left-container {

  }
  .website-info.landscape-layout .right {
    /* padding-left: 0.5rem; */
  }
  .website-info.landscape-layout p {
    margin-bottom: 0.16rem;
    line-height: 0.22rem;
  }
  .website-info.landscape-layout p.contact {
    color: #19AEE9;
  }
  .website-info.landscape-layout.pid32 {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .website-info.landscape-layout.pid32 .left-container {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .website-info.landscape-layout.pid32 .bottom {
    position: initial;
    height: initial;
  }
  .bottom {
    width: 100%;
    height: 1.84rem;
    background: rgba(223, 244, 255, 0.88);
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 2;
    padding-top: 0.25rem;
  }
  .bottom .bottom-content {
    width: 5.06rem;
    height: 0.8rem;
    background: #16378C;
    /* background: #F7FBFD; */
    border-radius:0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.32rem;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 0.45rem;
    margin-bottom: 0.14rem;
  }

  .other-browser {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    top: 0;
    z-index: 3;
    padding-top: 0.865rem;
    padding-left: 0.6rem;
}
  .other-browser .arrow {
    width: 2.16rem;
    height: 3.2rem;
    background-image: url('../images/mobile/arrow@2x.png');
    position: absolute;
    top: 0.7rem;
    right: 0.46rem; 
  }
  .other-browser .yellow.p1 {
    font-size: 0.36rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #F7E970;
    line-height: 0.52rem;
  }
  .other-browser .yellow.p1:nth-child(3) {
    margin-bottom: 0.42rem;
  }
  .other-browser .p2 {
    display: flex;
    align-items: center;
  }
  .other-browser .p2 span {
    font-size: 0.36rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: inherit;
  }
  .other-browser .p2 .more {
    margin-left: 0.16rem;
    width: 0.42rem;
    height: 0.1rem;
    background-image: url('../images/mobile/more@2x.png');
    position: relative;
    top: 0.02rem;
  }
  .other-browser .p2 .browser-icon {
    width: 0.42rem;
    height: 0.42rem;
    margin-left: 0.12rem;
    background-image: url('../images/mobile/browser@2x.png');
    position: relative;
    top: 0.02rem;
  }
  .other-browser .line {
    width: 0.02rem;
    height: 0.42rem;
    background-image: url('../images/mobile/line@2x.png');
    margin: 0.12rem 0 0.12rem 0.14rem;
  }
}

.op0 {
  opacity: 0;
}
.op1 {
  opacity: 1;
}
.obj {
  width: 100%;
  height: 100%;
}
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/*# sourceMappingURL=main.css.map */
