/*首页*/
.container{
  max-width: 640px;
  margin: 0 auto;
  height: 100%;
  background:url(../images/bg.jpg) no-repeat center center;
  background-size:cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position:relative;
}
.container .box{
    width:85%;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.container .box img{
    max-width:100%;
    display:block;
}
.container .box .logo{
    width:65%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container .box .image{
    width:90%;
    margin:30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container .box .btns{
    width:90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.container .box .btns a{
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:30px;
    width:45%;
    height:50px;
    border:1px #00a0e9 solid;
    background:#00a0e9;
    color:#fff;
}