123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- *{
- padding:0;
- margin:0;
- }
- html, body{
- height: 100%;
- overflow-y: hidden;
- }
- .errorinfo{
- background: transparent!important;
- color: RED;
- }
- .login-body{
- width: 100%;
- height:100%;
- background: url(../images/lock-screen-background.jpg) no-repeat;
- background-size: cover;
- }
- .login-body-box{
- width:400px;
- height:322px;
- position: absolute;
- top: 50%;
- left: 50%;
- margin: -161px 0 0 -200px;
- padding:0;
- background: rgba(2, 48, 86, 0.8);
- }
- .login-dl-form{
- padding:0 20px;
- box-sizing: border-box;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- -o-box-sizing: border-box;
- -ms-box-sizing: border-box;
- }
- .login-dl-title{
- text-align: center;
- height: 80px;
- line-height: 80px;
- color: rgb(255, 255, 255);
- font-size: 20px;
- }
- .login-dl-name{
- width: 55px;
- height: 50px;
- padding-right: 15px;
- float: left;
- line-height: 50px;
- text-align: right;
- color: rgb(0, 76, 139);
- background: rgb(224, 224, 224);
- }
- .login-dl-info{
- margin-left: 70px;
- height: 50px;
- position: relative;
- }
- .login-dl-info input{
- font-size: 20px;
- margin: 0px;
- padding:0 10px;
- height: 50px;
- line-height: 50px;
- width: 268px;
- border:0;
- }
- .login-dl-info i{
- position: absolute;
- right:0;
- top:0;
- width:50px;
- height: 50px;
- line-height: 50px;
- text-align: center;
- font-size: 28px;
- z-index: 9999;
- color: rgb(201, 201, 201);
- }
- .login-dl-info select{
- margin: 0px;
- padding:0 10px;
- height: 50px;
- line-height: 50px;
- width: 290px;
- border: none;
- outline: none;
- appearance: none;
- -webkit-appearance: none;
- -moz-appearance: none;
- }
- .login-dl-info option{
- height: 30px;
- margin: 0 -4px;
- outline: none;
- }
- .login-dl-form dd{
- width: 100%;
- height: 50px;
- background: rgb(249, 249, 249);
- margin: 0px 0px 10px;
- }
- .login-dl-submit{
- background: rgba(0, 76, 139, 0.85);
- position: absolute;
- bottom: 0px;
- height: 55px;
- width: 100% !important;
- text-align: center;
- line-height: 55px;
- }
- .login-dl-submit a{
- width:100%;
- height:100%;
- display:block;
- color:#fff;
- font-size: 16px;
- cursor: pointer;
- }
- .fa-caret-down{
- pointer-events: none;
- }
|