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: #FFF8FD

}

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

.top-box{
  background:url(./img/bg.png) center no-repeat;
  background-size: cover;
  position:relative;
  z-index: 10;
}
.top-box .inbox{
  max-width: 1200px;
  padding: 90px 0;
  position: relative;
}

.top-box .top-links{
  position: absolute;
  top: 30px;
  right:30px;
  display: flex;
  align-items: center;
  gap:20px;
}
.top-box .top-links .img-btn {
  border-radius: 50%;
  padding:6px;
  border:solid 1px #ffffff40;
}
.top-box .top-links .img-btn img{
  display: block;
  border-radius: 50%;
  height: 36px;
  width: 36px;
}
.top-box .top-links .txt-btn{
  background:#fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color:#000;
  text-decoration: none;
  font-size:16px;
  font-weight: 500;
  height: 48px;
  padding:0 30px;
}

.top-box .the-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-box .the-txt{
  flex:none;
  width: 52%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color:#fff;
  text-align: center;
}
.top-box .the-txt .the-logo img{
  display: block;
  height:88px;
}
.top-box .the-txt  h2{
  font-size:68px;
  line-height: 1.1;
  margin: 40px 0 10px;
}
.top-box .the-txt  p{
  font-size:16px;
}
.top-box .the-txt .main-btn{
  width: 320px;
  height:68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:#fff;
  border-radius: 16px;
  font-size: 20px;
  font-weight: bold;
  color:#000;
  margin: 30px 0;
  text-decoration: none;
}
.top-box .the-txt .btn-download{
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-box .the-txt .btn-download img{
  display: block;
  height:48px;
}


.top-box .the-img{
  flex:none;
  width:46%;
  height:100%;
  min-width: 400px;
  position: relative;
}
.top-box .the-img img{
  width:100%;
  position:absolute;
  left:0;
  top:50%;
  transform: translateY(-24%);
}

.box-two{
  position: relative;
  z-index: 5;
}
.box-two .inbox{
  padding:200px 0 0;
  text-align: center;
}

.box-two h2{
  font-size: 46px;
  margin-bottom: 30px;
}
.box-two .sub-txt{
  padding:0 100px;
  font-size:16px;
  margin-bottom:40px;
}
.box-two .the-list{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap:12px;
}
.box-two .the-list .ol{
  background:#fff;
  border-radius:8px;
  padding: 20px 20px 40px;
  flex:1;
}
.box-two .the-list .ol .icon img{
  display: block;
  height: 86px;
  margin:0 auto;
}
.box-two .the-list .ol  h3{
  font-size: 18px;
  margin: 20px 0 10px;
}
.box-two .the-list .ol p{
  font-size: 12px;
  line-height: 1.25;
}

.box-two .img-list{
  margin-top:60px;
}
.box-two .img-list img{
  display: block;
  width: 100%;
}

.the-footer{
  background: #CB6FFF;
  text-align: center;
  color:#ffffff80;
  padding: 360px 0 20px;
  position:relative;
  margin-top: -300px;
}
.the-footer .links{
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;  
  margin-bottom: 20px;
}
.the-footer a{
  color:#fff;
  text-decoration: none;
}


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

  .inbox{
    max-width: 100%;
  }
  
  .top-box{
    background:url(./img/bg.png) center center no-repeat;
    background-size: auto 100%;
  }
  .top-box .inbox{
    padding: 60px 0 0;
  }
  
  .top-box .top-links{
    top: 0;
    right:0;
    width: 100%;
    box-sizing: border-box;
    padding:10px;
    justify-content: flex-end;
    gap:10px;
  }
  .top-box .top-links .img-btn img{
    height: 24px;
    width: 24px;
  }
  .top-box .top-links .txt-btn{
    font-size:14px;
    height: 32px;
    padding:0 20px;
  }
  
  .top-box .the-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  .top-box .the-txt{
    width: 100%;
  }
  .top-box .the-txt .the-logo img{
    height:54px;
  }
  .top-box .the-txt  h2{
    font-size:38px;
    margin: 20px 0 10px;
  }
  .top-box .the-txt  p{
    font-size:14px;
    line-height: 1.25;
    padding:0 10px;
  }
  .top-box .the-txt .main-btn{
    width: 280px;
    height:58px;
    margin:20px 0;
  }
  .top-box .the-txt .btn-download{
    gap: 15px;
  }
  .top-box .the-txt .btn-download img{
    height:42px;
  }
  
  .top-box .the-img{
    width:100%;
    min-width: 100%;
    padding-top: 10px;
  }
  .top-box .the-img img{
    width:100%;
    position:initial;
    transform: none;
    margin-bottom: -200px;
  }


  .box-two .inbox{
    padding:160px 0 0;
  }

  .box-two h2{
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 20px;
  }
  .box-two .sub-txt{
    padding:0 10px;
    font-size:12px;
    margin-bottom:30px;
  }
  .box-two .the-list{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    padding:0 15px;
    gap:10px;
  }
  .box-two .the-list .ol{
    width: 100%;
    box-sizing: border-box;
    padding: 20px 20px 30px;
    flex:none;
  }
  .box-two .the-list .ol h3{
    margin:10px 0;
  }
  .box-two .img-list{
    margin-top:40px;
  }
  .box-two .img-list img{
    display: none;
  }

  .the-footer{
    padding: 200px 0 20px;
    position:relative;
    margin-top: -200px;
    font-size:12px;
  }
  .the-footer .links{
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    justify-content: center;  
    margin-bottom: 20px;
  }
  .the-footer a{
    color:#fff;
    text-decoration: none;
  }



}