.title-section {
    width: 100%;
    height: 56px;
    background-color: #f7f9fa;
    border-bottom: 1px solid #e8e8e8;
}
.title-inner {
    font-size: 18px;
    font-weight: bold;
    height: 100%;
}
.user-item {
    width: 100%;
    height: 200px;
    border-bottom: 1px solid rgba(0,0,0,0.09);
}
.user-item-left,
.user-item-right {
    width: 50%;
    height: 136px;
    position: relative;
}
.user-item-left {
    display: flex;
}
.avatar-box-outer {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.avatar-box {
    width: 96px;
    height: 96px;
    overflow: hidden;
    border-radius: 50%;
}
.photographer-info-outer {
    height: 100%;
    display: flex;
    align-items: center;
}
.photographer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    height: 90%;
    margin-left: 20px;
}
.photographer-name {
    font-size: .8rem;
    line-height: 1.2rem;
    color: rgba(0,0,0,.85);
    font-weight: 600;
    margin-right: 0.3rem;
    max-width: 38rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    word-wrap: break-word;
    text-decoration: none;
    display: block;
}
.photographer-reputation {
    margin-top: 10px;
}
.reputation-box,
.follower-num-box,
.work-num-box {
    display: inline-block;
    margin-right: 6px;
}
.photographer-reputation span {
    font-size: 12px;
}
button.follow-button {
    margin-top: 16px;
    width: 80px;
    height: 30px;
}
/* .follow-btn {
    width: 80px;
    height: 30px;
    background-color: #1088f2;;
    color: white;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
    margin-top: 16px;
}
.follow-btn:hover {
    background-color: rgb(17,114,199);
} */
.work-item {
    width: 194px;
    height: 136px;
    background-position: 50%;
    background-size: cover;
    position: relative;
    margin-right: 8px;
}
.work-item:last-child() {
    margin-right: 0;
}
.video-duration {
    position: absolute;
    top: 8px;
    right: 8px;
}
.video-duration span {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: .6rem;
    line-height: .8rem;
    padding: 0 0.4rem;
    font-weight: 600;
    height: 1.2rem;
    border-radius: 0.2rem;
    background-color: rgba(0,0,0,.65);
    color: #fff;
}