index.less 3.09 KB
.banner{
  overflow: hidden;
  // position: relative;
  max-height: 150px;
  height: 80px;
  >img{
    width:100vw;
    height: 400px;
    // transform: translate(-20%,-40%);
    position: relative;
    top:50%;
    margin-top:-200px;
   }
   .title{
     position: absolute;
     top:21px;
     left:30px;
     letter-spacing: 2px;
     font-weight: 600;
     color:#7687e2;
     
   }
   .login{
     position: absolute;
     top:0;
     right:300px ;
     width:150px;
     height: 80px;
     background-color: rgba(73,162,201,0.8);
     .userName{
      width:60%;
      overflow: hidden;
      text-align: center;
      display: inline-block;
      text-overflow: ellipsis;
      white-space: nowrap;
      word-break: normal;
      height: 20px;
    }
   }
   .message{
    position: absolute;
     top:0;
     right:150px ;
     width:150px;
     height: 80px;
     background-color: rgba(0,187,41,0.38);
     .msgTipCircle{
       width:28px;
       height:28px;
       display: block;
       margin:0 auto;
       margin-bottom: 2px;
       .circle{
         width:5px;
         height:5px;
         background-color:#ED1719;
         border-radius: 50%;
         display: inline-block;
         position: absolute;
       }
       
     }
     .userName{
      width:60%;
      overflow: hidden;
      text-align: center;
      display: inline-block;
      text-overflow: ellipsis;
      a{
        color:#fff;
      }
    }
   }
   .logout{
     position: absolute;
     top:0;
     right:0 ;
     width:150px;
     height: 80px;
     background-color: rgba(102,115,192,0.8);
     .userName{
      width:60%;
      overflow: hidden;
      text-align: center;
      display: inline-block;
      text-overflow: ellipsis;
    }
    #setting{
      position: absolute;
      top:0;
      bottom: 0;
      right: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    
    
   }
   .login_pic{
     width:28px;
     height: 28px;
     display: inline-block;
     background: url(/public/assets/images/login.svg) no-repeat;
   }
   .login,.logout,.message{
     display: flex;
     justify-content:center;
     align-items:center;
     flex-direction:column;
     color:#fff;
   }
   .login img ,.logout img,.message img{
     width:28px;
     height:28px;
     display: block;
     margin:0 auto;
     margin-bottom: 2px;

   }
   .logout:hover ,.login:hover,.message:hover{
     cursor: pointer;
   }
   .setting{
     display: flex;
     align-items: center;
     justify-content: center;
     height: 70px;
     width:152px;
     background-color: #fff;
     position: absolute;
     right:  1px;
     bottom: -65px;
     border-radius: 3px;
     font-size: 14px;
     z-index: 1000;
     border:1px solid #ddd;
     cursor: pointer;
     .lock{
       border-bottom: 1px solid #ddd;
       
     }
     .updPwd i{margin-right: 5px;}
     div{
       display: block;
       padding-left: 20px;
       line-height: 35px;
       text-align: left;
       transition: all .5s;
       &:hover{
         background-color: #ddd;
       }
       i{
        margin-right: 10px;
        font-size: 16px;
      }
     }
   }
}
 
.errInfo{
  color: red;
}