.movetoRight{
  animation: moveRight 1s linear forwards;
}
.movetoLeft{
  animation: moveLeft 1s linear forwards;
}

.movetoBottom{
  animation: moveBottom .8s linear forwards;
}

@keyframes moveRight{
  0%{
    opacity: .1;
    transform: translateX(-.3rem);
  }
  100%{
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes moveLeft{
  0%{
    opacity: .1;
    transform: translateX(.3rem);
  }
  100%{
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes moveBottom{
  0%{
    opacity: .1;
    transform: translateY(-2rem);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}
/* pc样式 */
@media (min-width: 1025px) and (orientation: landscape) {
  body{
    /*min-width: 1200px;*/
    display: block;
    overflow-x: scroll;
  }
  .header{
    width: 100%;
    min-height: 90px;
    height: 15vh;
    color: #8fd9f1;
    padding: 0 0.45rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Circular-Bold;
    position: relative;
  }
  .logo_box{
    margin-left:140px;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .logo{
    /*width: 0.1953rem;*/
    width : 64px;
    height : 64px;
  }

  .logo_text{
    /* font-size: 40px; */
    font-size: 0.15625rem;
    font-family: Circular-Bold;
    color: #8fd9f1;
  }

  .menu{
    position: fixed !important;
    width: 100%;
    bottom: 0;
    left: 0;
    justify-content: center;
    height: 0.40625rem;
    background-color: #8fd9f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
  }

  .menu_item{
    font-size: 0.086rem;
  }

  .menu_item2{
    margin: 0 .31rem;
  }

  .menu_item a{
    color: #ffffff;
    font-family: Circular-Bold;
  }

  .content{
    position: relative;
    overflow-x: scroll;
  }

  .left{
    padding-left: 1.16rem;
    color: #ffffff;
    /*font-family: Circular-Bold;*/
    float: left;
    /*max-width: 700px;*/
    width: 650px;
    /*display: flex;*/
    justify-content: center;
    flex-direction: column;
    /*height: 2.5rem;*/
    margin-top: 100px;
  }

  .left .home_title1{
    width: 2.16rem;
    font-size: .21875rem;
    /*margin-bottom: 0.06rem;*/
  }

  .left .home_title2{
    font-size: .4375rem;
    /*margin-bottom: .31rem;*/
    color: #1e1e1e;
  }

  .download_box{
    position: absolute;
    right: 0.46875rem;
    top: 0.1953rem;
    display: flex;
    align-items: center;
    height: .25rem;
  }
  .download_box a{
    display: block;
  }

  .download_box a img{
    width: 0.832rem;
    height: .25rem;
    display: block;
  }

  .download_box .android{
    margin-right: .2rem;
  }

  .right{
    float: right;
    /*display: flex;*/
    align-items: baseline;
    padding-top: .3rem;
    padding-right: 1.16rem;
  }

  .right img:nth-of-type(1){
    /*width: 1.3rem;*/
    height:450px;
    position: relative;
    z-index: 2;
  }

  .right img:nth-of-type(2){
    width: 0.8rem;
    margin-left: -.21rem;
    position: relative;
    z-index: 1;
  }

  /*协议样式*/
  .main_content{
    width: 52.5%;
    margin: 0 auto;
    margin-top:230px;
    padding-bottom: .5rem;
    padding-left:5%;
    padding-right:5%;
    padding-top:120px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
    border-radius: 40px;
  }
  .title{
    font-size: 60px;
    margin-bottom: 0.22rem;
    margin-top: 0.3rem;
    font-family: ArialMT;
    color: #FFFFFF;
  }

  .title1{
    font-family: ArialMT;
    font-size: 40px;
    margin-bottom: 0.1rem;
    color: #FFFFFF;
    line-height:45px;
  }

  .text{
    margin-bottom: 0.2rem;
    color: #FFFFFF;
    font-size:20px;
    font-family: ArialMT;
    line-height:26px;
  }
  .text div{
    font-size: 0.078rem;
    font-family: Circular-Book;
  }
  .text ul{
    padding-left: 0.117rem;
    font-size: 0.078rem;
    font-family: Circular-Book;
    margin-bottom: 0.1rem;

  }
  .text p{
    font-size: 0.078rem;
    font-family: Circular-Book;
    margin-bottom: 0.1rem;

  }
  .text p:nth-last-of-type(){
    margin-bottom: 0;
  }
}

@media (min-width: 415px) and (max-width: 768px),(min-width: 415px) and (orientation: portrait) {
  
}

@media (max-width: 1024px) {
  body{
    box-sizing: border-box;
    padding: .24rem 0;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .header{
    position: relative;
    padding: 0 .4rem;
  }
  .logo_box{
    display: flex;
    align-items: center;
    font-size: 32rem;
    color: #8fd9f1;
  }
  .logo{
    width: .4rem;
    height: .4rem;
    margin-right: .16rem;
  }
  .logo_text{
    font-family: Circular-Bold;
  }

  .menu{
    padding: .16rem 0;
    position: fixed;
    z-index: 9;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #8fd9f1;
    display: flex;
    align-items:center;
    flex-direction: column;

  }
  .menu_item{
    text-align: center;
    height: .68rem;
    line-height: .68rem;
  }
  .menu_item a{
    font-size: .28rem;
    font-weight: bold;
    color: #ffffff;
    display: block;
  }

  .main_content{
    width: 80%;
    margin: 0 auto;
    margin-top:20px;
    padding-bottom: .5rem;
    padding-left:5%;
    padding-right:5%;
    padding-top:40px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
    border-radius: 40px;
  }

  .title {
    font-size: 24px;
    color: #FFFFFF;
    font-family: ArialMT;
    margin-bottom:15px;
  }

  .title1 {
    font-size: 18px;
    color: #FFFFFF;
    font-family: ArialMT;
    margin-bottom:15px;
  }

  /*.content{*/
  /*  padding: 0 .4rem;*/
  /*  position: relative;*/
  /*}*/

  /*.main_content{*/
  /*  padding-bottom: 2.4rem;*/
  /*}*/
  
  /*.home_title1{*/
  /*  width: 3.4rem;*/
  /*  text-align: center;*/
  /*  height: 1.12rem;*/
  /*  margin: .56rem auto;*/
  /*  margin-bottom: .16rem;*/
  /*  font-family: Circular-Bold;*/
  /*  font-size: .44rem;*/
  /*  !* color: #b03df3; *!*/
  /*  color: #1e1e1e;*/
  /*}*/

  /*.home_title2{*/
  /*  font-family: Circular-Bold;*/
  /*  font-size: .8rem;*/
  /*  text-align: center;*/
  /*  !* color: #b03df3; *!*/
  /*  color: #1e1e1e;*/
  /*  padding-bottom: 1.28rem;*/
  /*}*/

  /*.download_box{*/
  /*  display: flex;*/
  /*  align-items: center;*/
  /*  justify-content: center;*/
  /*  position: absolute;*/
  /*  top: 3.82rem;*/
  /*  left: 50%;*/
  /*  transform: translateX(-50%);*/
  /*}*/

  /*.android,.ios{*/
  /*  width: 2.14rem;*/
  /*  height: .64rem;*/
  /*  display: none;*/
  /*}*/

  /*.android img, .ios img{*/
  /*  width: 100%;*/
  /*  height: 100%;*/
  /*  display: block;*/
  /*}*/

  /*.right{*/
  /*  padding: 0 .04rem;*/
  /*  overflow: hidden;*/
  /*  position: relative;*/
  /*  height: 6.74rem;*/
  /*  padding-bottom: .8rem;*/
  /*}*/

  /*.right img{*/
  /*  width: 3.24rem;*/
  /*  height: 6.74rem;*/
  /*  position: absolute;*/
  /*}*/

  /*.right img:nth-of-type(1){*/
  /*  left: .48rem;*/
  /*  top: 0;*/
  /*  z-index: 2;*/
  /*}*/

  /*.right img:nth-of-type(2){*/
  /*  top: 0;*/
  /*  left: 2.98rem;*/
  /*  z-index: 1;*/
  /*}*/

  .text p,.text ul li{
    font-size: 16px;
    color: #FFFFFF;
    font-family: ArialMT;
    margin-bottom:15px;

  }
  .text p{
    margin-bottom: .48rem;
  }
  .text p:nth-last-of-type(){
    margin-bottom: 15px;
  }
}

.navigation-bar{
  position: absolute;
  right: 0.46875rem;
  top: 0.1953rem;
  display: flex;
  align-items: center;
  height: 50px;
}

.navigation-bar a{
  display: block;
}

.navigation-bar a img{
  /*width: 0.832rem;*/
  height: 25px;
  display: block;
}

#privacy-policy {
  margin-left:77px;
  margin-right:72px;
  width:120px;
}

.download-box {
  margin-top:30px;
  width:120%;
}

.download-link {
  display:block;
  background:rgba(255,255,255,0.1);
  border-radius:20px;
  box-shadow:0px 0px 20px 0px rgba(0,0,0,0.1);
  height:80px;
  float:left;
  padding:2.5%;
}

.download-link img {
  display:block;
  height:80px;
}

.article-header {
  /*margin:0 auto;*/
  width: 75%;
  left:12.5%;
  margin-top:30px;
  position:fixed;
  z-index:2;

}

.article-header-background {
  width:100%;
  height:150px;
  background-color: #45D0FF;
  position:fixed;
  z-index:2;
  top:0;
}

#article-background-color {
  top:0;
  width:100%;
  position:absolute;
  height:100%;
  z-index:-2;
  opacity:0.9;
  background: linear-gradient(180deg, #45D0FF 0%, #1176FE 100%);
}

.background-carousel {
  width:100%;
  position:absolute;
  height:100%;
  z-index:-1;
  opacity:0.8;
  background: linear-gradient(180deg, #FE46A5 0%, #E40217 100%);
  top:0;
}

#bottom-background-img {
  width:100%;
  position:absolute;
  z-index:-2;
  opacity:0.7;
  top:0;
}

#mobile-device-header {
  width: 88%;
  height:35px;
  margin: 0 auto;
  margin-top:25px;
  display:none;
}

#mobile-device-background-color {
  top:0;
  position:fixed;
  width:100%;
  height:80px;
  background-color:#45D0FF;
  display:none;
}

.mobile-device-logo {
  width:32px;
  height:32px;
  float:left;
}

.mobile-device-logo img {
  width:100%;
  height: 100%;
  display:block;
}

#mobile-device-menu-switch {
  width:32px;
  height:32px;
  float:right;
}

#mobile-device-menu-switch img {
  width:100%;
  height:100%;
  display:block;
}

#mobile-device-content {
  width: 88%;
  margin: 0 auto;
  margin-top: 20px;
  display:none;
}

#mobile-device-title1 {
  width:100%;
  /*margin-top: 120px;*/
}

#mobile-device-img-list {
  display:block;
  margin:0 auto;
  margin-top:25px;
}

#mobile-device-background {
  width:100%;
  position:absolute;
  z-index:-2;
  opacity:0.7;
  top:0;
  display:none;
}

#mobile-device-download-link-list {
  width: 80%;
  margin: 0 auto;
  margin-top:10px;
  display:none;
}

.mobile-device-download-link {
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  margin-bottom:10px;
}

.mobile-device-download-icon {
  display:block;
  margin: 0 auto;
  /*margin-left:25%;*/
  padding-top:12px;
  height:46px;
}

#mobile-device-article-list {
  position:absolute;
  width: 43%;
  height:146px;
  background-color: #FE46A5;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  right: 6%;
  margin-top:40px;
  z-index:3;
  opacity:1;
  display:none;
}

.mobile-device-article-title {
  display:block;
  width:100%;
  height:22px;
  margin-top:20px;
}

.mobile-device-article-title img {
  display:block;
  height: 20px;
  margin: 0 auto;
}