html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

header {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}

body,
p,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
input,
select,
textarea {
  margin: 0;
  padding: 0;
}

body {
  font: normal 12px/1.5 'Avenir Next', Helvetica, Arial, sans-serif;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

a {
  background-color: transparent;
}

b,
strong {
  font-weight: bold;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
}


::-webkit-scrollbar{
  display: none;
}

*{
  scrollbar-width: none; /* firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

html,body{
  background: #fff

}


#app {}

.inbox{
  max-width: 1000px;
  margin: 0 auto;
}

.top-box{
  /* background: url(./img/pc-bg.png) center bottom no-repeat;
  background-size: 100% auto; */
  /* background: linear-gradient( 220deg, #76ED00 0%, #8DFF17 13%, #9FF343 23%, #EDFFC3 65%, #F5FF1F 100%); */
  border-radius: 0px 0px 100px 100px;
  position: relative;
  height:800px;
  overflow: hidden;
}
.top-box .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-box .inbox{
  height:800px;
  position:absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index:2;
  display: flex;
  flex-direction: column;
}
.top-box .the-logo{
  display: flex;
  align-items: center;
  padding-top: 40px;
  height:50px;
  overflow: hidden;
  margin-bottom:30px;
  opacity: 0;
  animation: txt .8s both;
}
.top-box .the-logo .logo-img{
  display: block;
  height:50px;
  margin-right: 10px;
}
.top-box .the-logo .logo-text{
  display: block;
  height:20px;
}
.top-box .the-logo h1{
  position:absolute;
  top: -100px
}

.top-box .linear{
  position:absolute;
  z-index:5;
  bottom:0;
  left:0;
  width: 100%;
  height: 130px;
  background: linear-gradient( -180deg, #FFFFFF00 0%, #8AE54760 90%);
  pointer-events: none;
}
.top-box .wave{
  position:absolute;
  z-index:1
}
.top-box .wave.w1{
  width: 332px;
  height:356px;
  background:url(./img/bn4.png) center no-repeat;
  background-size: 100% auto;
  bottom:220px;
  left:0;
  opacity: 0;
  animation: w1 1s .3s both;
}
.top-box .wave.w2{
  width: 264px;
  height:240px;
  background:url(./img/bn3.png) center no-repeat;
  background-size: 100% auto;
  top:0;
  right:0;
  animation: w2 1s .3s both;

}

.top-box .brid{
  position:absolute;
  width: 370px;
  height:345px;
  background:url(./img/bn2.png) center no-repeat;
  background-size: 100% auto;
  bottom:0;
  right:0;
  z-index: 1;
  opacity: 0;
  animation: brid .6s .1s both;
}

.top-box .the-content{
  display: flex;
  justify-content: center;
  width:100%;
}
.top-box .the-img{
  width:43%;
  position:relative;
}
.top-box .the-img img{
  display: block;
  position:absolute;
  right:0;
  width:580px;
  animation: bn .6s both;
}
.top-box .the-txt{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0;
  animation: txt2 .4s .2s both;
}
.top-box .the-txt h2{
  font-size: 52px;
  line-height:60px;
}
.top-box .the-txt p {
  font-size:20px;
  line-height: 1.4;
  font-weight: lighter;
  text-align: center;
}
.top-box .the-txt .btn-download {
  display: inline-flex;
  margin-bottom: 10px;
  background:#FF7100;
  height:75px;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding:0 46px 0 35px;
  color:#fff;
  text-decoration: none;
  gap:22px;
}

.top-box .the-txt .btn-download .the-icon{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size:12px;
  line-height: 1;
  gap: 4px;
}
.top-box .the-txt .btn-download .the-icon svg{
  width: 34px;
  height:34px;
  display: block;
}
.top-box .the-txt .btn-download .txt{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}
.top-box .the-txt .btn-download .txt strong{
  font-size: 24px;
  font-weight: 500;
}
.top-box .the-txt .btn-download .txt .the-v{
  font-size: 14px;
}
.top-box .the-txt .the-act{
  text-align: center;
  padding-bottom: 40px;
  margin: 0 auto;
}
.top-box .the-txt .the-help{
  font-size: 18px;
  color:#FF7100;
  cursor: pointer;
  text-decoration: underline;
}


@keyframes w1 {
  0%{
    opacity: 0;
    transform: translateX(-100%);
  }
  100%{
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes w2 {
  0%{
    opacity: 0;
    transform: translateX(100%);
  }
  100%{
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes brid {
  0%{
    opacity: 0;
    transform: translate(100%, 100%);
  }
  60%{
    opacity: 1;
    transform: translate(0, 0);
  }
  100%{
    opacity: 1;
    transform: translate(20px, 20px);
  }
}

@keyframes bn {
  0%{
    opacity: 0;
    transform: translateY(100%);
  }
  60%{
    opacity: 1;
    transform: translateY(0);
  }
  100%{
    opacity: 1;
    transform: translateY(20px);
  }
}
@keyframes txt {
  0%{
    opacity: 0;
    transform: translateY(-40px);
  }
  60%{
    opacity: 1;
    transform: translateY(10px);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes txt2 {
  0%{
    opacity: 0;
    transform: translateY(40px);
  }
  50%{
    opacity: .5;
    transform: translateY(-20px);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}


.box-two{
  text-align: center;
  position: relative;
  margin-bottom: -200px;
}

.box-two h2{
  font-size: 40px;
  padding-top: 80px;
  margin-bottom: 24px;
}
.box-two .sub-txt{
  font-size: 16px;
  line-height: 24px;;
}
.box-two .the-list{
  display: flex;
  align-items: stretch;
  gap: 26px;
  margin-top:60px;
}
.box-two .the-list .ol{
  flex:1;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0px 10px 22px 4px rgba(0,0,0,0.07);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding:20px;
}
.box-two .the-list .ol .icon{
  height: 80px;
}
.box-two .the-list .ol .icon img{
  display: block;
  height:80px;
}
.box-two .the-list .ol h3{
  font-size: 17px;
  margin: 22px 0 10px
}
.box-two .the-list .ol p{
  font-size: 13px;
  line-height: 1.2;
}

.box-two .img-list{
  padding-top: 90px;
  display: flex;
  align-items: center;
}
.box-two .img-list .oimg{
  flex:1;
  width:0%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-two .img-list .oimg img{
  display: block;
  width:110%;
}

.the-footer{
  background: linear-gradient( 220deg, #76ED00 0%, #8DFF17 13%, #9FF343 23%, #EDFFC3 65%, #F5FF1F 100%);
  text-align: center;
  padding: 220px 0 40px;
}
.the-footer .links{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  padding-bottom: 60px;
  font-size:18px;
}
.the-footer .links a{
  text-decoration: none;
  color:#000;
}
.the-footer .copy{
  font-size:12px;
  color:#00000090;
}


.pop-install{
  position:fixed;
  width:100%;
  height:100%;
  z-index:10;
  left:0;
  top:0;
  background:#00000050;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pop-install .box-con{
  background:#fff url(./img/pop-bg.png) center top no-repeat;
  background-size: 100% auto;
  border-radius: 30px;
  width:960px;
  padding: 30px 30px 50px;
  box-sizing: border-box;
  position: relative;
}
.pop-install .btn-cancel{
  position: absolute;
  right:40px;
  top:42px;
  cursor: pointer;
}
.pop-install .btn-cancel svg{
  display: block;
  width: 24px;
  height:24px;
  opacity: .5;
}
.pop-install  h2{
  font-size: 40px;
  text-align: center;
  padding:20px 0 10px;
}
.pop-install .the-steps{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.pop-install .one-step{
  flex:1; 
  width: 0%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}
.pop-install .one-step .img {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.pop-install .one-step .img img{
  display: block;
  width:232px;
}
.pop-install .one-step .txt{
  position:relative
}
.pop-install .one-step .txt::after{
  content: '';
  position:absolute;
  width: 85px;
  height:10px;
  background:url(./img/step-line.png) center no-repeat;
  background-size: 100% auto;
  left:82%;
  top:10px;
}
.pop-install .one-step:last-child .txt::after{
  display: none;
}

.pop-install .one-step  h3{
  font-size: 20px;
}
.pop-install .one-step p{
  font-size:14px;
  opacity: .5; 
}



@media screen and (max-width: 680px) {

  .top-box{
    display: flex;
    flex-direction: column-reverse;
    height:auto;
    border-radius: 0;
    background: linear-gradient(220deg, #76ED00 0%, #8DFF17 13%, #9FF343 23%, #EDFFC3 65%, #F5FF1F 100%);
  }
  .top-box .inbox{
    width:100%;
    height: auto;
    position: relative;
  }

  .top-box .the-content{
    flex-direction: column-reverse;
  }
  .top-box .the-logo{
    padding: 10px;
    display: flex;
    height:50px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    margin-bottom:46px;
    background:#FFFFFF80;
    animation: none;
    opacity: 1;
    flex: none
  }
  .top-box .the-logo img{
    height: 22px;
  }

  .top-box .the-txt{
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 0 30px;
    margin-bottom:20px;
  }
  .top-box .the-txt h2{
    font-size: 34px;
    line-height: 1.2;
  }
  .top-box .the-txt p{
    font-size:14px;
  }
  .top-box .the-logo .logo-text {
    height: 15px
  }
  .top-box .the-logo .logo-img {
    height: 35px;
  }


  .top-box .the-txt .btn-download {
    height:55px;
    padding:0 36px 0 25px;
    color:#fff;
    text-decoration: none;
    gap:18px;
  }
  
  .top-box .the-txt .btn-download .the-icon svg{
    width: 28px;
    height:28px;
  }
  .top-box .the-txt .btn-download .txt strong{
    font-size: 18px;
  }
  .top-box .the-txt .btn-download .txt .the-v{
    font-size: 11px;
  }
  .top-box .the-txt .the-act{
    padding-bottom: 0px;
    margin:0 auto;
  }
  .top-box .the-txt .the-help{
    font-size: 14px;
  }


  .top-box .the-img{
    width: 100%;
  }

  .top-box .the-img img{
    position: initial;
    width: 90%;
    margin: 0 auto;
  }

  .top-box .brid,
  .top-box .wave{
    display: none;
  }

  .box-two{
    display: none
  }

  .the-footer{
    background:#000;
    color:#fff;
    padding:34px 0 20px;
    text-align: center;
  }
  .the-footer .links{
    flex-direction: column;
    gap:20px;
    padding-bottom:30px;
  }
  .the-footer .links a{
    color:#fff;
    font-size:14px; 
  }

  .the-footer .copy{
    padding:0 20px;
    color:#ffffff60;
    font-size:10px;
  }




.pop-install .box-con{
  background-size: 110% auto;
  border-radius: 0;
  width:100%;
  height:100%;
  padding:0 20px 20px;
  display: flex;
  flex-direction: column;

}
.pop-install .btn-cancel{
  display: none;
}
.pop-install .btn-back{
  position: absolute;
  left:20px;
  top:20px;
}
.pop-install .btn-back svg{
  display: block;
  width:24px;
  height:24px;
}
.pop-install  h2{
  font-size: 18px;
  text-align: center;
  padding:20px 0 10px;
}
.pop-install .the-steps{
  flex-direction: column;
  flex:1;
  min-height: 0%;
  overflow: auto;
  width:100%;
  box-sizing: border-box;
  padding: 20px 5px;
}
.pop-install .one-step{
  width: 100%;
  flex-direction: column-reverse;
  text-align: left;
}
.pop-install .one-step .img img{
  width: 100%;
}
.pop-install .one-step .txt{
  display: flex;
  align-items: center;
  gap: 10px;
}
.pop-install .one-step .txt::after{
  display: none;
}
.pop-install .one-step  h3{
  font-size: 16px;
  width: 30px;
  height:30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background:#00ED69;
  font-weight: 600;

}
.pop-install .one-step p{
  font-size:14px;
  font-weight: 500;
  opacity: 1; 
}




}
@media screen and (min-width: 1800px) {
  .top-box {
    height: 1100px;
  }
  .top-box .the-logo {
    padding-top: 60px;
    margin-bottom: 80px;
  }
}