body{
    background-color: #fff;
}
img {
     vertical-align: inherit;
}
.bd{
    padding: 2.2rem 0 .6rem;
}
.top{
    width: 100%;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top .logo{
    width: 5rem;
    height: 5rem;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("../img/loginReg/home_03.png");
}
.sec{
    padding:0 1rem;
}
.sec .input-box{
    margin-bottom: 1rem;
}
.sec .input-box input{
    width: 100%;
    height: 2.2rem;
    font-size: .7rem;
    padding: 0 .6rem;
    outline: none;
    border-radius: .2rem;
    border: 1px solid #d9d9d9;
}
.sec .input-box input[type="submit"]{
    color: #fff;
    border: none;
    background-color: #B4272D;
    box-shadow: 0px 2px 4px #666;
}
.sec .method-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.method-box .method{
    height: 1rem;
    line-height: 1rem;
    padding-left: 1.2rem;
    background-size: 1rem 1rem;
    background-repeat: no-repeat;
    background-position: left center;
}
.method-box .method.msg{
    background-image: url("../img/loginReg/message.png");
}
.method-box .method.ret{
    background-image: url("../img/loginReg/password.png");
}
.method-box .method.qreg{
    background-image: url("../img/loginReg/phone.png");
}
/*注册*/
.sec .reg{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sec .reg input{
    width: 55%;
}
.sec .reg .code{
    width: 40%;
    height: 2.2rem;
    color: #777;
    overflow: hidden;
    border-radius: .2rem;
    border: 1px solid #d9d9d9;
    text-align: center;
   line-height: 2.2rem;
}
/*协议*/
.lm-margin-t {
    margin-top: .6rem;
}
.dialog{
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: .6rem;
    background-color: #fff;
}
.dialog .title{
    height: 4%;
    text-align: center;
}
.dialog .content{
    height: 88%;
    overflow: auto;
    word-break: break-all;
    color: #777;
    line-height: 1.6;
}
.dialog .close-btn{
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none;
    width: 100%;
    height: 2.4rem;
    background-color: #B4272D;
}