a:active,
a:hover,
a:link,
a:visited {
  color: inherit;
}
#app {
  width: 100%;
  overflow: hidden;
  font-family: "\5FAE\8F6F\96C5\9ED1", Anton;
}
.header {
  background: #f1f1f1;
  width: 100%;
  height: 135px;
  border-bottom: 5px solid #e1e1e1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.header-content {
  width: 980px;
  background: #f1f1f1;
  position: relative;
}
.menu {
  display: none;
}
.logo {
  width: 100px;
  margin-top: 25px;
}
.nav-list {
  position: absolute;
  right: 100px;
  top: 50px;
  color: #00BFFF;
}
.nav-item {
  display: inline-block;
  padding: 0 10px;
  color: #00BFFF;
  -webkit-transition: color 0.4s ease 0s;
  transition: color 0.4s ease 0s;
  font: normal normal normal 20px "\5FAE\8F6F\96C5\9ED1", Anton;
  cursor: pointer;
}
.content {
  background: #f1f1f1;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.title {
  font-size: 54px;
  color: #00BFFF;
  margin-top: 30px;
  margin-bottom: 20px;
}
.introduction-text {
  width: 940px;
  font: normal normal normal 20px "\5FAE\8F6F\96C5\9ED1", Anton;
  line-height: 40px;
  margin-bottom: 20px;
}
.introduction-text p {
  width: 940px;
}
.download-icon {
  margin-top: 20px;
  margin-bottom: 10px;
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex; */
  text-align: center;
  width: 420px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.features-text {
  width: 940px;
  font-family: "\5FAE\8F6F\96C5\9ED1";
}
.p-features {
  font-size: 20px;
  line-height: 40px;
}
.download-text1 {
  font-size: 40px;
  color: #00BFFF;
  margin-top: 30px;
}
.download-text2 {
  font-size: 40px;
  color: #00BFFF;
  margin-bottom: 20px;
}
.swiper-img,
.transpic {
  width: 580px;
}
.swiper-img {
  height: auto;
}
.footer {
  width: 100%;
  height: 100px;
  background: #f1f1f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-text {
  font: normal normal normal 14px "\5FAE\8F6F\96C5\9ED1", Anton;
  color: #f93;
}
@media screen and (max-width: 768px) {
  .footer-text {
    width: 80%;
    text-align: center;
  }
  .header {
    height: 115px;
  }
  .menu {
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 40px;
    right: 40px;
  }
  .logo {
    width: 80px;
    margin-left: 20px;
  }
  .nav-list {
    display: none;
  }
  .title {
    font-size: 39px;
  }
  .introduction-text {
    width: 258px;
  }
  .introduction-text p {
    width: 258px;
    text-align: center;
  }
  .download-icon {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .download-icon > div {
    margin-bottom: 20px;
    width: 175px;
  }
  .features-text {
    width: 270px;
  }
  .menu-list {
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
    width: 100vw;
    height: 100vh;
  }
  .menu-list .quxiao {
    margin-top: 40px;
    margin-right: 40px;
    text-align: right;
  }
  .menu-list .quxiao img {
    width: 30px;
    height: 30px;
  }
  .menu-list .menu-item {
      display: block;
    margin-top: 40px;
    text-align: center;
    font: normal normal normal 30px "\5FAE\8F6F\96C5\9ED1", Anton;
    font-weight: 900;
    color: #ffae7e;
  }
  .swiper-img,
  .transpic {
    width: 280px;
  }
}
.bounceIn {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
* {
  margin: 0;
  padding: 0;
}
em,
i {
  font-style: normal;
}
li {
  list-style: none;
}
img {
  border: 0;
  vertical-align: middle;
}
button {
  cursor: pointer;
}
a {
  color: #595959;
  text-decoration: none;
}
a:hover {
  color: #1f58ad;
}