.moveToRight{
  animation: moveRight 1s linear forwards;
}
@keyframes moveRight{
  0%{
    opacity: 0.1;
    transform: translateX(-250px);
  }
  100%{
    opacity: 1;
    transform: translateX(-60px);
  }
}

.moveToLeft{
  animation: moveLeft 1s linear forwards;
}
@keyframes moveLeft{
  0%{
    opacity: 0.1;
    transform: translateX(200px);
  }
  100%{
    opacity: 1;
    transform: translateX(-20px);
  }
}

.moveToBottom{
  animation: moveBottom .8s linear forwards;
}
@keyframes moveBottom{
  0%{
    opacity: .1;
    transform: translateY(-150px);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}

.scaleToLarger {
  transform: scale(1.1, 1.1);
}
@keyframes scaleLarger {

}

body {
  margin: 0;
  padding: 0;
}

#base-background-img {
  position: absolute;
  width: 1920px;
  z-index: -99;
  opacity: 0.7;
}

#base-background-color {
  position: absolute;
  opacity: 0.8;
  z-index: -98;
}

#main-content {
  width: 1200px;
  margin-left: 360px;
  top: 60px;
}

#header {
  padding-top: 60px;
  width: 100%;
}

#logo {
  width: 64px;
  height: 64px;
  display: block;
  float: left;
}

#banner {
  float: right;
}

.banner-icon {
  margin-right: 70px;
  height: 23px;
}

#left {
  width: 720px;
  margin-top: 230px;
  float:left;
  display:block;
  margin-left:0;
}

.left-title {
  width : 465px;
  display: block;
  margin-top: 20px;
}

#download-link-list {
  margin-top: 100px;
}

.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);
  padding-left:30px;
  padding-right:30px;
  height: 130px;
  float: left;
  margin-right: 50px;
}

.download-link img {
  height: 80px;
  margin-top: 25px;
}

#right {
  width: 400px;
  float: left;
  display: block;
  margin-top: 95px;
}

#main-icon {
  height: 700px;
}

#mobile-device-header {
  width: 88%;
  height:35px;
  margin: 0 auto;
  padding-top:25px;
  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: 30px;
  display:none;
}

#mobile-device-title1 {
  width:100%;
}

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

#mobile-device-background {
  width:100%;
  position:absolute;
  z-index:-99;
  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;
  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;
}