.login{
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
  padding-top: 80px;
  .header{
    height: 80px;
    width: 100%;
    line-height: 80px;
    padding-left: 40px;
    padding-top: 15px;
    box-sizing: border-box;
    position: absolute;
    left: 0px;
    top: 0px;
  }
  .logo{
    width: 466px;
    height: 41px;
    display: inline-block;
    background: url('./images/logo.png');
  }
  .content{
    width:100%;
    height: 100%;
    background: url('./images/login-background.png');
    padding-top: 80px;
    box-sizing: border-box;
  }
  .login-box{
    width: 360px;
    height: 342px;
    margin: 0 auto;
    .title{
      width: 100%;
      height: 127px;
      background: white;
      line-height: 127px;
      padding-left: 30px;
      box-sizing: border-box;
      padding-top: 30px;
      .logo{
        width: 316px;
        height: 71px;
        display: inline-block;
        background: url('./images/login-title.png');
      }
    }
    .login-operator{
      height: 215px;
      width: 100%;
      padding-left: 60px;
      padding-right: 60px;
      box-sizing: border-box;
      background: url('./images/login-operator-bg.png');
      & input{
        width: 100%;
        height: 30px;
        background: transparent;
        border: 0px;
        color: white;
        outline: 0px;
      }
      & label{
        position: absolute;
        color: white;
        font-size: 14px;
        bottom: 14px;
        cursor: pointer;
      }
      .username{
        height: 40px;
        padding-top: 10px;
        position: relative;
        border-bottom: 1px solid white;
      }
      .password{
        height: 40px;
        position: relative;
        border-bottom: 1px solid white;
      }
      .login{
        padding-top:40px;
        width: 100%;
        height: 60px;
        line-height: 60px;
        .login-bt{
          width:100%;
          height: 30px;
          line-height: 30px;
          text-align: center;
          color: white;
          background: rgb(16,136,219);
          border: 0px;
          font-size: 16px;
          cursor: pointer;
        }
      }
    }
  }
}