/*紫黑色：4e109a*/
body,html{
    width:100%;
    height: 100%;
    /*background:#29063d;*/
    /*background:url(../../images/loginBg.jpg) no-repeat center center;*/
}
/*登录框*/
.login_frame{
    width:400px;
    min-height: 400px;
    /*background:rgba(0,0,0,0.6);*/
    background:rgba(255,255,255,1);
    /*border:1px solid #409eff;*/
    position: absolute;
    left:calc(50% - 250px);
    top:calc(50% - 300px);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}
.login_frame .forms{
    padding:15px;
}
.login_frame .forms .tit{
    line-height: 65px;
    text-align: center;
    color:#ff7c1b;
    font-size:36px;
    letter-spacing: 20px;
}
.login_frame .forms .form_info{
    display: block;
    padding:25px 12% 0px;
}
.login_frame .forms .form_info .input{
    margin-bottom:26px;
    height: 45px;
}
.login_frame .forms .form_info .input p{
    width:50%;
    float:left;
}
.login_frame .forms .form_info .input p img{
    width:90%;
    height: 46px;
    margin-left:10%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.login_frame .forms .form_info .input input{
    width:100%;
    height: 55px;
    outline: 0px;
    border:1px solid #ff7c1b;
    background:none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-indent: 10px;
    font-size: 16px;
    color:#ff7c1b;
}
.login_frame .forms .form_info .btn{
    width:100%;
    height: 55px;
    line-height: 55px;
    cursor:pointer;
    text-align: center;
    border:1px solid #ff7c1b;
    color:#fff;
    background:#ff7c1b;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-size:18px;
}
::-webkit-input-placeholder{color:#ff7c1b;}    /* 使用webkit内核的浏览器 */
:-moz-placeholder{color:#ff7c1b;}                  /* Firefox版本4-18 */
::-moz-placeholder{color:#ff7c1b;}                  /* Firefox版本19+ */
:-ms-input-placeholder{color:#ff7c1b;}