@charset "utf-8";
/* CSS Document 使用百分比高度布局的页面[登录页\忘记密码页面\重置密码页面] */
html,body{
    height: 100%;
    position: relative;
}
/*登录区背景*/
.camaBg{
    background: #fff url('../images/loginbg.png') no-repeat fixed center;
}
/*登录区定位*/
.camaBox{
    width:480px;
    height:570px;
    filter:progid:DXImageTransform.Microsoft.gradient(startcolorstr=#FDFEFE,endcolorstr=#DFF1FC,gradientType=0);
    background-image: linear-gradient(-180deg, #FFFFFF 0%, rgba(255,255,255,0.70) 100%);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.07);
    border-radius: 4px;
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    margin:auto;
}
.box{
    width:80%;
    margin:0px auto;
}
/*登录区控件*/
.camaBox .widget{
    position: relative;
}
.camaBox .widget .ico{
    position: absolute;
    width:35px;
    height:40px;
    line-height:40px;
}
.camaBox .widget .ico i{
    margin-left:10px;
}
.camaBox .widget input{
    width:100%;
    text-indent:35px;
    border:solid 1px #ddd;
    height:40px;
    line-height: 40px;
}
/*底部页尾*/
.camaFoo{
    position:absolute;
    bottom:30px;
    width:100%;
    height:20px;
    text-align: center;
    color: #fff;
    margin:0px auto;
}