body,html{
    width:100%;
    height:100%;
   /* background: -webkit-linear-gradient(#43aafb, #1192f6);
    background: -o-linear-gradient(#43aafb, #1192f6);
    background: -moz-linear-gradient(#43aafb, #1192f6);
    background: linear-gradient(#43aafb, #1192f6);*/
}
.cont{
    width:100%;
    height:100%;
    position: relative;
}
.cont .index-bg{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.cont .contBox{
    width:400px;
    height:440px;
    background-color: #fff;
    -webkit-border-radius:8px;
    -moz-border-radius:8px;
    border-radius:8px;
    position: absolute;
    top:50%;
    left:50%;
    margin:-220px 0 0 -200px;
    padding:60px 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.contBox .topLogo{
    height:100px;
    display: block;
    margin:0px auto 0;
}
.contBox .nameBox{
    width:100%;
    height:16px;
    text-align: center;
    color:#454e60;
    font-weight: bold;
    font:14px/16px "微软雅黑";
    margin:15px 0 40px 0;
    font-weight: bold;
    background: url("../images/text-border.png") center no-repeat;
}
.ipt-wrap{
    width:100%;
    height: 40px;
    background-color: #f9f9f9;
    border:solid 1px #ebebeb;
    -webkit-border-radius:20px;
    -moz-border-radius:20px;
    border-radius:20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom:20px;
    overflow: hidden;
}
.ipt-wrap i{
    width: 40px;
    height: 100%;
    float: left;
    line-height: 38px;
    text-align: center;
    font-size: 18px;
}
.contBox .account,.contBox .password{
    width: calc(100% - 60px);
    height: 40px;
    padding:0 10px;
    border:none;
    float: left;
    background-color: #f9f9f9;
    -webkit-border-radius:0 20px 20px 0;
    -moz-border-radius:0 20px 20px 0;
    border-radius:0 20px 20px 0;

}
input::-webkit-input-placeholder { /* WebKit browsers */
    color:#c0c0c0;
}
input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:#c0c0c0;
}
input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:#c0c0c0;
}
input:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:#c0c0c0;
}
.loginBtn{
    width:100%;
    height: 40px;
    border:none;
    -webkit-border-radius:20px;
    -moz-border-radius:20px;
    border-radius:20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font:16px/40px "微软雅黑";
    color:#FFFFFF;
    text-align: center;
    background: -webkit-linear-gradient(left, #82acff , #82acff); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(right, #82acff, #82acff); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(right, #82acff, #82acff); /* Firefox 3.6 - 15 */
    background: linear-gradient(to right, #82acff , #82acff); /* 标准的语法 */
    cursor: pointer;
    -webkit-box-shadow: 0 0px 30px 0px #82acff;
    -moz-box-shadow: 0 0px 30px 0px #82acff;
    box-shadow: 0 0px 30px 0px #82acff;
}
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill{
    background-color: #f9f9f9 !important;
    background-image: none;
    color: #000;
}