/*首页*/
.container{
  max-width: 640px;
  margin: 0 auto;
  height: 100%;
  background: url(../images/bg.jpg) #fff no-repeat right top;
  background-size:contain;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position:relative;
}
.container .box{
    width:80%;
    height:80%;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
    position:absolute;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.container .box img{
    max-width:100%;
    display:block;
}
.container .box .logo{
    width:60%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container .box .by{
    width:80%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top:50px;
}
.container .box .btns{
    width:90%;
    margin-top:50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.container .box .btns a{
    width:100%;
    margin-top:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:30px;
    height:42px;
    background:#fff;
    border:1px #eee solid;
    color: #333;
    box-shadow:0 0 3px rgba(0, 0, 0, .15);
}
.container .btns a:nth-child(1){
    background:#fff;
    color: #009b4c;
    border:3px #009b4c solid;
    font-weight:900;
}
.container .btns a:nth-child(2){
    background:#009b4c;
    color: #fff;
    border:3px #009b4c solid;
}