login.less 1.79 KB
body{
  margin:0;
  padding:0;
}
.loginBg{
  // width:calc(100vh);
  // height: calc(100vh);
  opacity:0.8;
  background-image: url(../../resource/assets/images/loginBg.jpg);
  background-size: cover;
  background-position:-680px 50%;
  // background-repeat:repeat-x; 
  position: absolute;
  top:0;
  left:0;
  right: 0;
  bottom: 0;
  .logo_2{
    width:250px;
    position: absolute;
    opacity:0.8;
    top:41px;
    left: 41px;
  }
}
.loginRight{
  width:500px;
  background: #fff;
  height: calc(100vh);
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  .title{
    font-size: 24px;
    margin-top:-10%;
    margin-bottom: 70px; 
    .blueLine{
      width:100px;
      height:4px;
      background:rgba(56,178,234,1);
      margin:0 auto;
    }
  }
 
  .ant-input{
    border:none  ;
    outline: none  !important;
    // border-bottom: 1px solid #E2E2E2
  }
 
  input:focus{
    border:none  !important;
    outline: none  !important;
    box-shadow: none;
    
  }
  .inputline{
    width:100%;
    height:1px;
    background:rgba(226,226,226,1);
    float: left;
    margin-left: -3px;
  }
  .ideCode{
    width:99px;
    height:32px;

    overflow: hidden;
    background:rgba(56,178,234,1);
    border-radius:5px;
    text-align: center;
    line-height: 32px;
    letter-spacing: 4px;
    color:#fff;
    font-size: 12px;
    margin-top:5px;
    transition: all 0.3s;
    cursor: pointer;
    &:hover{
      box-shadow: -2px 5px 8px rgba(67,132,170,0.3);
    }
    &:active{
      box-shadow: -0px 5px 8px rgba(67,132,170,0.3);
    }
    
    img{
      vertical-align: baseline ;
    }
  }
  .loginBtn{
    width:100%;
    background:rgba(56,178,234,1);
    border-radius:5px;
    box-shadow: -2px 5px 8px rgba(67,132,170,0.3);
  }
 
}