#login{
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    display: none;
}
.login_list{
    width: 100%;
    height: 100%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
}
#myForm{
    background: #fff;
    padding: 40px;
    opacity: 1;
    position: relative;
    animation: upward 1s ease;
    -webkit-animation: upward 1s ease;
    -moz-animation: upward 1s ease;
    -ms-animation: upward 1s ease;
    -o-animation: upward 1s ease;
    top: 30px;
}
.login_title{
    font-size: 40px;
}
.youPhone{
    width: 360px;
    padding: 20px;
    border: 1px solid #cccccc;
    background: #fff;
}
.youCode{
    width: 200px;
    padding: 20px;
    border: 1px solid #cccccc;
    background: #fff;
}
.getCode{
    width: 140px;
    text-align: center;
    padding: 20px;
    background: #fff;
    border: 1px solid #cccccc;
    color: #4c4c4c;
}
.getCode:active{
    background: #f5f5f5;
}
.code{
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
}
.login_title,.phone,.code,.submit{
    margin-bottom: 30px;
}
.submit{
    width: 100%;
    padding: 16px;
	background: #3487FF;
    background: var(--main-color);
    border: none;
    color: #fff;
    font-size: 24px;
}
.submit:active{
    background: #71abff;
}
.getCode,.submit{
    cursor: pointer;
}
.youPhone:focus,.youCode:focus{
	border-color: #3487FF;
    border-color: var(--main-color);
}
.external{
    display: flex;
    display: -webkit-flex;
    justify-content: space-around;
    text-align: center;
}
.external a{
    color: #4c4c4c;
}
.external img{
    width: 66px;
    height: 66px;
}
.wx_link,.qq_link{
    margin-top: 10px;
}
.weixin img,.qq img{
    position: relative;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    top: 0;
}
.weixin:hover .wx_img,.qq:hover .qq_img{
    transition: 0.2s ease;
    top: -10px;
}
.exit_login{
    position: absolute;
    right: -36px;
    top: -36px;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 6px;
    cursor: pointer;
}
@-webkit-keyframes upward{
    0%{
        opacity: 0;
        top: 0px;
    }
    100%{
        opacity: 1;
        top: 30px;
    }
}
@keyframes upward{
    0%{
        opacity: 0;
        top: 0px;
    }
    100%{
        opacity: 1;
        top: 30px;
    }
}