/* 用户信息 */
.user-box{
    display:inline-block;
    width:100%;
    background:#fff;
    border-radius:10px;
}
.user-box .user-con {
    display:block;
    height:138px;
    margin-top:30px;
    text-align:center;
}
.user-box .user-con a{
    display:block;
}
.user-box .user-con img{
    cursor:pointer;
    width:65px;
    height:65px;
    background-size:cover;
    border-radius:50%;
}
.user-box .user-con .user-text {
    cursor:pointer;
    margin: 10px 0 8px;
    font-weight: 400;
    font-size: 20px;
    color: #333333;
    line-height:26px;
}
.user-box .user-con .user-btn {
    cursor:pointer;
    display:inline-block;
    padding:6px 10px;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height:20px;
    background: #FFAA00;
    border-radius: 5px;
}
.user-box .use-list {
    display: flex;
    justify-content: space-between;
    width: 320px;
    margin: 25px 20px 0;
    padding: 18px 20px;
    background: #F9F9F9;
    border-radius: 5px;
}
.user-box .use-list .use-item {
    cursor:pointer;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}
.user-box .use-list .use-item img{
    display:inline-block;
    width:50px;
    height:50px;
    background-size:cover;
}
.user-box .use-list .use-item span {
    margin-top:9px;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    line-height:20px;
}
.user-box .stats-grid {
    margin: 12px 20px 20px;
    width: 320px;
    height: 146px;
    background: #F9F9F9;
    border-radius: 8px 8px 8px 8px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.user-box .stat-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    cursor: pointer;
}
.user-box .stat-item .stat-number {
    position: relative;
    margin-bottom: 6px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 18px;
    color: #3C3C3C;
}
.user-box .stat-item .has-badge::before {
    content: '';
    display: inline-block;
    position: absolute;
    right: -5px;
    top: -5px;
    width: 5px;
    height: 5px;
    background: #EC3030;
    border-radius: 50%;
}