.page-content{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.dep-list{
    width: 250px;
    background: #FFF;
    display: none;
}
.dep{
    width: 100%;
    height: 63px;
    padding-left: 16px;
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #707070;
    cursor: pointer;
}
.dep::before{
    content: '';
    display: block;
    width: 4px;
    height: 26px;
    background-color: #4577BB;
    margin-right: 16px;
}
.dep:hover,
.dep.active{
    background-color: #4577BB;
    color: #fff;
}
.dep:hover::before,
.dep.active::before{
    background-color: #fff;
}
.user-content{
    width: 826px;
    display: none;
}
.con-title{
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    color: #4577BB;
    margin-bottom: 40px;
}
.con-title::before{
    content: '';
    display: block;
    width: 4px;
    height: 26px;
    background-color: #4577BB;
    margin-right: 22px;
}
.user-info{
    width: 100%;
    padding: 25px 32px;
    background-color: #FFF;
    box-shadow: 0px 3px 16px 1px rgba(80,145,255,0.15);
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.user-img{
    width: 90px;
    height: 90px;
    margin-right: 28px;
}
.user-content-1{
    width: 140px;
}
.user-name{
    font-size: 24px;
    font-weight: bold;
    color: #4577BB;
}
.user-dep{
    font-size: 20px;
    color: #707070;
}
.user-content-2{
    width: 500px;
    font-size: 18px;
    color: #707070;
}
.user-content-1 p:first-child,
.user-content-2 p:first-child{
    margin-bottom: 5px;
}
.dep-desc{
    font-size: 20px;
    color: #333;
    line-height: 50px;
}
.role{
    width: 730px;
    font-size: 20px;
    color: #333;
    line-height: 50px;
    margin: 0 auto;
    display: none;
}