﻿html, body {
    height: 100%;
    margin: 0;
}
body img{
    vertical-align:middle
}
.sidebar {
    height: 100%;
    width: 200px;
    position: fixed;
    background-color: rgb(84, 92, 100)
}
.sidebar_title {
    height:90px;
    line-height:90px;
    text-align:center;
    font-size:22px;
    background-color:grey;
    color:white
}
.content_body {
    margin-left: 200px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.content_top {
    height: 60px;
    line-height: 60px;
    display:flex;
    justify-content:space-between;
    padding:10px;
    background-color:lightblue
}
.content_top img{
    width:30px;
    padding:10px;
    border-radius:15px;
}
.content_top .opinfo {
    color: white
}
.content_top .opname{
    padding:0 10px;
}
.content_top .logout{
    padding:0 10px;

}
.content {
    flex: 1;
    width: 100%;
    overflow-y: auto;
    background: #f2f2f0;
}
.el-table .warning-row {
    background-color: #fafafa;
}

.el-table .success-row {
    background: white;
}
/*login*/
.user_login{
    text-align:center;
    position:absolute;
    top:100px;
    left:50%;
    transform:translate(-50%,0);
    width:500px
}

