body{
    background: #f5f7f9;

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimSun, sans-serif;
    -webkit-font-smoothing: antialiased;
}
.contain{
    width:100%;
    height:100%;
    /*padding-top: 50px;*/
    /*-webkit-box-sizing: border-box;*/
    /*-moz-box-sizing: border-box;*/
    /*box-sizing: border-box;*/
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
}
.contain .login-panel {
    border: 1px solid #f0f0f0;
    background: #fff;

    margin:0 auto;

    /*width:350px;*/
    /*height:330px;*/
    width:450px;
    height:450px;


    display: flex;
    flex-direction: column;
    align-items:center;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.contain .login-panel .title {
    font-size: 20px;
    margin-top: 20px;
}
.contain .login-panel .tab-switch {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content:center;
    align-items:center;

    width:250px;
    height:32px;

    margin-bottom: 10px;

    font-size: 14px;
}
.contain .login-panel .wechat-tab,
.contain .login-panel .phone-tab {
    width:80px;

    padding:5px 0;
    border-bottom: 2px solid #fff;
    cursor: pointer;

    font-size: 14px;
    color: #5D6A73;
}
.contain .login-panel .wechat-tab:hover,
.contain .login-panel .phone-tab:hover {
    font-weight: bold;
}
.contain .login-panel .active {
    border-bottom: 2px solid #70C3F2;
}

.contain .login-panel .wechat {
    text-align: center;

    width:280px;
}
.contain .login-panel .wechat .qrcode {
    width:160px;
    height:160px;
    margin-bottom: 10px;
}
.contain .login-panel .wechat .tip{
    color: #707a7d;
    font-size: 13px;
}
.contain .login-panel .phone {
    width:80%;
    /*width:250px;*/
    margin-top: 10px;
}
.contain .login-panel .phone .input {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    display: block;
    width: 100%;
    line-height: 26px;
    padding: 5px;
    border: 0;
    border-bottom: 1px solid #eaeaea;
    outline: none;
    font-size: 14px;
    transition: border-color 0.2s ease 0s;

    margin-bottom: 15px;
}
.contain .login-panel .phone .login-btn {
    height: 30px;
    line-height: 30px;
    border-radius: 3px;
    border: 0;
    cursor: pointer;
    display: block;
    width: 100%;
    outline: none;
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    background: #70C3F2;
    transition: background 0.2s ease 0s;
    margin-top: 30px;
}
.contain .login-panel .phone .footer {
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    margin-top: 15px;

    font-size: 12px;
    color: #5D6A73;
}
.contain .login-panel .phone .footer .register{
    color: #70C3F2;
}

#bg{
    width: 100%;
    height: 100%;
    position: fixed;
    top:0;
    left:0;
    z-index:-1;
}

/*邀请码弹窗*/
.invite-code-dialog {
    /*position: fixed;*/
    /*top:10px;*/
    /*left:10px;*/

    width:350px;
    height:330px;

    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items:center;

    background: #FFFFFF;
    box-shadow: 0 2px 15px 0 rgba(194,206,219,0.50);
    border-radius: 5px;
}
.invite-code-dialog .title {
    font-size: 20px;
    color: #5D6A73;

}
.invite-code-dialog .jqcloud-simple-btn {
    width:250px;
    height:30px;
    line-height: 30px;
    background: #70C3F2;
    color: #fff;
    border:none;
}
.invite-code-dialog .code {
    text-align: center;
    font-size: 16px;
    margin:50px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #E9EDF2;
    width:250px;
}
.invite-code-dialog .code::-webkit-input-placeholder {
    color: #8E979D;
}
.invite-code-dialog .jqcloud-simple-btn:hover {
    border:none;
    background: #3FAFEF;
    color: #fff;
}
