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%); */
  position: relative;
  height:800px;
  overflow: hidden;
}

.top-box::after {
  content: '';
  display: block;
  width: 100%;
  height: 400px;
  background:url(./img/top-bg.png) center 50px no-repeat;
  background-size: auto 100% ;
  z-index: 1;
  position: absolute;
  bottom: 0;

}
.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-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-box .the-logo-top .safety{
  min-width: 170px;
  padding: 0 20px;
  height: 50px;
  border-radius: 25px;
  margin-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #f54a02;
  background-color: #fff;
  transition: all .2s;
  box-shadow: 0 2px 4px rgba(237, 68, 30, 0.2);
  text-decoration: none;
}
.top-box .the-logo{
  display: flex;
  align-items: center;
  justify-content: 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:73px;
  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-txt .the-act{
  text-align: center;
  padding-bottom: 40px;
  margin: 0 auto;
}
.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;
  gap: 28px;
  opacity: 0;
  animation: txt2 .4s .2s both;
}
.top-box .the-txt h2{
  font-size: 52px;
  line-height:60px;
  text-align: center;
}
.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-block;
  margin-bottom: 50px;
  width:220px;
}
.top-box .the-txt .btn-download img{
  display: inline-block;
  height: 75px;
}

@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;
  background: linear-gradient( 180deg, #FFFFFF 0%, #FFF6D8 940px, transparent 940px, transparent 100%);

}

.box-two h2{
  font-size: 40px;
  padding-top: 70px;
  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: 20px;
  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: #FD4A01;
  text-align: center;
  padding: 220px 0 0;
}
.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:#fff;
}
.the-footer .copy{
  padding: 29px 0 22px;
  font-size:12px;
  color:#fff;
  background: #000;
}






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

  .top-box{
    display: flex;
    flex-direction: column-reverse;
    height:auto;
    border-radius: 0;
    background: linear-gradient( 155deg, #FEBB38 0%, rgba(255,255,255,0) 50%), linear-gradient( 200deg, #FD2013 0%, rgba(255,255,255,0) 50%), #FFF6D8FF;
    background-repeat: no-repeat;
    background-size: 100% 224px;
  }

  .top-box::after {
    content: none;

  }

  .top-box .inbox{
    width:100%;
    height: auto;
    position: relative;
  }

  .top-box .inbox::after{
    content: none;
  }
  .top-box .the-logo .logo-text {
    height: 15px
  }
  .top-box .the-logo .logo-img {
    height: 55px;
  }

  .top-box .the-content{
    flex-direction: column-reverse;
  }
  .top-box .the-logo-top {
    justify-content: center;
  }
  .top-box .the-logo-top .safety {
    display: none;
  }
  .top-box .the-logo{
    padding: 10px;
    height:60px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    margin-bottom:30px;
    animation: none;
    opacity: 1;
    flex: none
  }
  .top-box .the-logo img{
    height: 55px;
  }

  .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-txt .btn-download{
    margin:0 auto;
  }
  .top-box .the-txt .btn-download img{
    height:55px;
  }

  .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{
    color:#fff;
    padding:34px 0 0;
    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{
    font-size:10px;
  }

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