123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- @bjcolor: #08539d;
- .login_bj{
- z-index: -1;
- position: absolute;
- left:0;
- right: 0;
- top:0;
- bottom:0;
- background:@bjcolor url("/ops/images/login/loginBj.jpg") no-repeat 50% 50%;
- background-size: cover;
- }
- .login_flex{
- display: flex;
- height:inherit;
- display: flex;
- justify-content:center;
- align-items: center;
- .login_flex-item{
- flex:0 1 auto ;
- }
- };
- .login-toolbar{
- box-shadow: 0 3/opsREM 7/opsREM rgba(0,21,41,0.08);
- position: fixed;
- top: 0;
- background:@bjcolor;
- height: 64/opsREM;
- width: 100%;
- font-size: 0;
- .plg-logo{
- background: data-uri("/ops/images/logo.png") no-repeat center center;
- width: 230/opsREM;
- height: 18/opsREM;
- margin: 23/opsREM 0;
- border-right: 1px solid rgba(255,255,255,0.2);
- display: inline-block;
- }
- .plg-logo-title{
- margin: 0 25/opsREM;
- font-size: 18/opsREM;
- color: #fff;
- height: inherit;
- line-height: 64/opsREM;
- display: inline-block;
- vertical-align: top;
-
- }
-
- }
- .login_main{
- .wrapper{
- position: relative;
- width: 390/opsREM;
- height: 370/opsREM;
- &:hover{
- box-shadow: 0 2/opsREM 8/opsREM rgba(255, 255, 255,1);
- border-color: rgba(0, 0, 0, 0.09);
- }
- transition: all .2s;
- background: #fff;
- padding: 25/opsREM;
- border-radius: 4/opsREM;
- .intplog{
- // background: data-uri("/ops/images/login/inputlog.png");
- //width: 214/opsREM;
- // height: 16/opsREM;
- text-align: center;
- font-size: 24/opsREM;
- margin-top: 35/opsREM;
- margin-bottom: 34/opsREM;
-
- background-size: cover;
- }
- }
- }
- .logo{
- background:data-uri("/ops/images/login/pcCloud.png") no-repeat 50% 50%;
- width: 310/opsREM;
- height: 147/opsREM;
- margin: 0 auto 30/opsREM;
- }
- .btn_subimt{
- border: 0;
- height: 44/opsREM;
- line-height: 44/opsREM;
- color: #fff;
- font-size: 18/opsREM;
- border-radius: 4/opsREM;
- width: 100%;
- display: block;
- text-align: center;
- box-sizing: border-box;
- // &:active{
- // background:rgba(253,89,108,0.8)
- // }
- }
- .input_group{
- position: relative;
- .input_item{
- margin-bottom:20/opsREM;
- position: relative;
- input{
- box-sizing: border-box;
- height: 40/opsREM;
- background: #fff;
- border: 1px solid #ddd;
- border-radius: 4/opsREM;
- width: 100%;
- padding-left: 55/opsREM;
- &:focus{
- border-color: #4e7add;
- color: #333;
- box-shadow:0 0 4/opsREM rgba(51,102,204,0.5) ;
- }
- }
- i{
- height: 0.4rem;
- width: 0.4rem;
- position: absolute;
- display: block;
- top:0;
- }
- &.user{
- input:focus + i{
-
- background:data-uri("/ops/images/login/i_usei_active.png") no-repeat 10/opsREM 50%;
-
- }
- i{
- background:data-uri("/ops/images/login/i_usei.png") no-repeat 10/opsREM 50%;
-
- }
- }
- &.pwd{
- input:focus+ i{
- background:data-uri("/ops/images/login/i_pwd_active.png") no-repeat 10/opsREM 50%;
- }
- i{
-
- background:data-uri("/ops/images/login/i_pwd.png") no-repeat 10/opsREM 50%;
-
- }
- }
- &.reg{
- i{
-
- background:data-uri("/ops/images/login/i_reg.png") no-repeat 10/opsREM 50%;
- width: 225/opsREM;
- margin-right: 10/opsREM;
- &:focus{
-
- background:data-uri("/ops/images/login/i_reg_active.png") no-repeat 10/opsREM 50%;
- }
- }
- }
- }
- }
|