Welcome.css 810 Bytes
body{
  width: 100%;
  max-width:680px;
  margin: auto;
}
.welcome{
  width: 4.14rem;
  height: 100%;
  background: url('../../assets/image/welcome.png') no-repeat center center/100%;
  background-size: contain;
  background-color: white;
}
/*
.welcome img{
  padding-left: .3rem;
  width: 92%;
  height: 100%;
}
*/

.animated{
  position: absolute;
  width: 100px;
  font-size: 50px;
  top: 50px;
  left: 50%;
  margin-left: -50px;
}
.FadeInFrame{
  -webkit-animation-name: fadeIn; /*动画名称*/
  -webkit-animation-duration: 2s; /*动画持续时间*/
  -webkit-animation-iteration-count: 1; /*动画次数*/
  -webkit-animation-delay: 0s; /*延迟时间*/
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0; /*初始状态 透明度为0*/
  }
  to{
    opacity: 1; /*结尾状态 透明度为1*/
  }
}