.loginFrame{
    display: none;
    width:100%;
    height:100%;
    position:fixed;
    left:0;
    top:0;
    z-index:2000;
}
.logoMask{
    width:100%;
    height:100%;
    background:#000;
    opacity: 0.3;
}
.innerLogin{
    /* max-width:495px; */
    width: 495px;
    min-width:335px;
    height:auto;
    position:absolute;
    top:20%;
    left:50%;
    z-index: 555;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius:8px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1px 3px rgb(0 0 0 / 30%);
}
#mpanel1{
    width:72%;
    height:35px;
    margin-left:28%;
    background:#ececec;
    cursor: pointer;
}
.logoTitle{
    padding:15px 20px;
    background-color:#e4e4e4;
    position: relative;
}
.logoTitle .dialogTitle{
    line-height:24px;
    color:#303133;
}
.logiTitBtn{
    position: absolute;
    top: 15px;
    right: 20px;
    padding: 0;
    background: 0 0;
    border: none;
    outline: 0;
    cursor: pointer;
    font-size: 16px;

}
.logiTitBtn span{ cursor:pointer;}
/* form表单 */
.dialogBody{
    background-color: #f2f2f2;
    /* padding: 30px 20px; */
    color: #606266;
    font-size: 12px;
    word-break: break-all;
    padding: 30px 27px 30px 20px;
}
.formItem{
    width:100%;
    height:auto;
    margin-bottom:22px;
    color: #606266;
    font-size: 14px;
    word-break: break-all;
}
.formItemLabel{
    width:28%;
    text-align: right;
    vertical-align: middle;
    float: left;
    font-size: 14px;
    color: #606266;
    line-height: 36px;
    /* padding: 0 12px 0 0; */
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight:normal;
    padding-right: 18px;
}
.formItemLabel:before{
    content: "*";
    color: #f56c6c;
    margin-right: 4px;
}
.inputBox{
    display: inline-block;
    width: 72%;
    height: auto;
}
.loInputInner{
    -webkit-appearance: none;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #606266;
    display: inline-block;
    font-size: inherit;
    outline: 0;
    padding: 0 15px;
    -webkit-transition: border-color .2s cubic-bezier(.645,.045,.355,1);
    transition: border-color .2s cubic-bezier(.645,.045,.355,1);
    width: 100%;
    height: 36px;
    line-height:36px;
    padding-right:15px;
    font-size: 12px;
}
.loInputInner.on{
    width:48%;
}
.logBit{
    color: #e2c897;
    background-color: #fff;
    border: 1px solid #e2c897;
    padding: 9px 10px;
    border-radius: 25px;
    cursor: pointer;
    float:right;
    font-size: 12px;
    width: 51%;
    text-align: center;
}
input.loInputInner::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #c0c4cc;
}
input.loInputInner:-ms-input-placeholder { /* IE 10+ */
    color: #c0c4cc;
}
input.loInputInner:-moz-placeholder { /* Firefox 18- */
    color: #c0c4cc;
    opacity: 1;
}
input.loInputInner::-moz-placeholder { /* Firefox 19+ */
    color: #c0c4cc;
    opacity: 1;
}
.item_error{
    color: #f56c6c;
    font-size: 12px;
    line-height: 1;
    padding-top: 8px;
}
.loButton{
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid #dcdfe6;
    -webkit-appearance: none;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
    -webkit-transition: .1s;
    transition: .1s;
    font-weight: 500;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 4px;
    background: rgb(226, 200, 151);
    color: rgb(255, 255, 255);
    width: 200px;
    margin-left:28%;
}
.formUnlock{
    width: 70%;
    margin-left: 28%;
}

/* 自适应 */
@media only screen and (min-width: 320px) and (max-width: 478px) {
    .innerLogin{
        width:345px;
    }
    .dialogBody{
        padding: 30px 10px;
    }
    .formItemLabel{
        padding: 0;
    }
    .logoTitle{
        padding:10px 20px;
    }
}

/* 手机绑定tips */
.Bindtips{
    display: flex;
    width:100%;
    background-color: #ecf5ff;
    height: auto;
    padding: 5px 10px;
    font-size: 12px;
    color: #606266;
    border: 1px solid #d9ecff;
    border-radius: 4px;
    box-sizing: border-box;
    line-height: 20px;
    margin: 0 auto;
    margin-bottom: 22px;
}
.Bindtips i{
    display: inline-block;
    border-radius: 50%;
    color: #fff;
    background-color: #409eff;
    border-color: #409eff;
    width: 14px;
    height: 14px;
    text-align: center;
    line-height: 14px;
    margin-right: 10px;
    margin-top: 3px;
}
.Bindtips p{
    width: 98%;
}