/*用户头像部分信息样式*/
.user-info {
    background: #fff;
    margin-bottom: 10px;
    padding: 15px;
    color: #8c8c8c;
}
.user-info-top {
    margin-bottom: 10px;
}
.user-info-top .job-info {
    float: left;
    margin-left: 10px;
    height: 16px;
    line-height: 16px;
    width: 84px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 500;
}
.user-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    float: left;
    margin-top: 5px;
}
.user-info-bottom i {
    font-size: 16px !important;
    margin-right: 0 !important;
}
.user-info-bottom i.active {
    color: #7dc105;
}
/*用户中心左边导航栏样式*/
.user-center-left {
    width: 180px;
    overflow: hidden;
    float: left;
}
.user-center-left h3 {
    width: 165px;
    height: 43px;
    line-height: 44px;
    border-bottom: 3px solid #1556B6;
    padding-left: 35px;
}
.user-center-left h3 a {
    font-size: 15px;
    font-weight: 400;
}
.user-center-title {
    width: 200px;
    height: 40px;
    display: flex;
}
.user-center-title h4 {
    font-size: 14px;
    font-weight: 500;
    line-height: 40px;
    padding-left: 45px;
    color: #333;
    cursor: pointer;
}
/*导航栏箭头*/
.user-center-title span {
    width: 6px;
    height: 6px;
    border-right: 1px solid #777;
    border-bottom: 1px solid #777;
    margin-top: 15px;
    margin-left: 12px;
    transform:rotate(225deg);
    transform-origin:75% 75%;
    -ms-transform-origin:20% 40%; 		/* IE 9 */
    transition: transform 0.4s;
    -ms-transform:rotate(225deg); 	/* IE 9 */
    -moz-transform:rotate(225deg); 	/* Firefox */
    -webkit-transform:rotate(225deg); /* Safari 和 Chrome */
    -o-transform:rotate(225deg); 	/* Opera */
}
.user-center-content {
    display: flex;
    flex-flow: column;
    font-size: 12px;
}
.user-center-content a {
    color: #777;
    height: 25px;
    line-height: 25px;
    margin-left: 55px;
}
.user-center-content a:hover {
    color: #1556B6;
}
/*二级菜单激活样式*/
.user-center-content .active {
    color: #1556B6;
}
.user-center-left>nav {
    padding-bottom: 15px;
}