html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 12px;
    color: #111;
    overflow: auto;
    background:#f9f9f9;
    font-family: "Microsoft YaHei", "微软雅黑", "微软雅黑", "宋体", sans-serif;
}

img {
    border: 0;
    vertical-align: top;
}
.login-panel{
    width:380px;
    padding-bottom:20px;
    position:fixed;
    z-index: 100;
    left: 50%;
    top: 30%;
    margin-left:-190px;
    background:white;
    background:rgba(255,255,255, .95);
    border:1px solid #eee;
    border-radius:6px;
}
.login-panel .err-msg{
    color:#ff5100
}
.login-panel .login-title{
    height:40px;
    width:90%;
    margin: 0 auto;
    border-bottom:1px solid #ccc;
    line-height:40px;
    font-size:18px;
    text-align: center;
    font-weight: bold;
}
.login-panel div{
    margin:16px auto 0;
    width:230px;
    overflow:hidden;
}
.login-panel div span{
    width:70px;
    float:left;
    line-height:24px;
}
.login-panel div input {
    width:160px;
    float:right;
    line-height:24px;
    outline-color: #999;
}
.login-panel .protocol{
    color:#999;
    text-align:center;
    margin:6px auto 0;
    font-size:12px;
    width:280px;
}
.login-panel .protocol a{
    color:#ff5100
}
.login-panel .login-submit {
    width:120px;
    height:36px;
    line-height:36px;
    border-radius:6px;
    margin: 10px auto 0;
    text-align: center;
    color: white;
    font-size: 16px;
    background: linear-gradient(90deg, #6175FF, #FF66BF);
    background-color: #c86dd9;
    cursor: pointer;
}
.login-panel .login-close{
    width:26px;
    height:26px;
    line-height:26px;
    font-style: normal;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color:#666;
    border-radius: 50%;
    position:absolute;
    left:4px;
    top:4px;
    cursor:pointer;
    font-family: Helvetica,Arial,sans-serif;
    transform:rotate(0);
    transition: transform .3s;
}
.login-panel .login-close:hover{
    transform: rotate(360deg);
}
.login-panel-mask{
    width: 100%;
    height: 100%;
    position: fixed;
    left:0;
    top:0;
    right:0;
    bottom:0;
    background:#000;
    opacity:.4;
}
.reg-panel-mask{
    width: 100%;
    height: 100%;
    position: fixed;
    left:0;
    top:0;
    right:0;
    bottom:0;
    background:#000;
    opacity:.4;
}



