.f-journal-item,.f-journal-empty{
    box-shadow: 0 0 20px -5px rgb(158 158 158 / 22%);
    background: var(--background);
    border-radius: 6px;
    position: relative;
    padding: 15px;
    margin-bottom: 15px;
}
.f-journal-empty{
    text-align: center;
    color: var(--colorB);
}
.f-journal-info{
    display: flex;
}
.f-journal-left{
}
.f-journal-left img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 8px;
    border: 1px solid var(--colorA);
    padding: 3px;
    -o-object-fit: cover;
    object-fit: cover;
}
.f-journal-right p{
    margin: 0;
}
.f-journal-user-name{
    color: var(--colorB);
    font-weight: 600;
    padding-top: 5px;
    font-size: 14px;
    display: inline-block;
    width: 100%;
    position: relative;
}
.f-journal-time{
    color: #909399;
    font-size: 12px;
}
.f-journal-content{
    font-size: 14px;
    word-break: break-all;
    color: var(--colorC);
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 5px;
}
.f-journal-bottom{
    margin-top: 5px;
    padding: 10px 0px 0;
    position: relative;
    border-top: 1px solid var(--borderA);
    font-size: 13px;
}
.f-journal-bottom .like-btn,.f-journal-bottom .comment-btn,.f-journal-bottom .comment-btn-right{
    color: var(--colorC);
    cursor: pointer;
    user-select: none;
}
.f-journal-bottom .like-btn:hover,.f-journal-bottom .comment-btn:hover,.f-journal-bottom .comment-btn-right:hover{
    color: var(--primary-color);
}
.f-journal-bottom  .comment-btn-right{
    position: absolute;
    right: 10px;
}
.f-journal-bottom .like-btn{
    margin-right: 5px;
}
.f-journal-right{
    width: 100%;
}
.f-journal-user-name .fa{
    position: absolute;
    right: 3px;
    background: var(--icon-color);
    -webkit-background-clip: text;
    color: transparent;
}
.journal-comment{
    margin-top: 15px;
}
.m-pager-box{
    text-align: center;
}
.m-pager{
    background: var(--background);
    border: 1px solid var(--colorD);
    color: var(--colorB);
    font-size: 12px;
    text-align: center;
    line-height: 28px;
    padding: 0 10px;
    display: inline-block;
    margin-right: 5px;
    box-shadow: 0 0 20px -5px rgb(158 158 158 / 22%);
    border-radius: 5px;
}
.m-pager.active{
    background: var(--primary-color);
    color: white;
}
.m-pager:hover{
    color: white;
    background: var(--primary-color);
}
.m-pager.disabled:hover{
    background: var(--background);
    color: var(--colorB);
}
.m-pager.active:hover{
    color: white;
    background: var(--primary-color);
}
.m-pager.disabled{
    cursor: not-allowed;
}
.d-post-attach{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.d-post-attach a{
    display: block;
    margin: 0;
}
.d-post-attach .attach-audio{
    border-radius: 5px;
    background-color: var(--background-audio);
}
.d-post-attach .attach-audio audio{
    background-color: transparent;
    border: none;
    height: 50px;
    width: 100%;
    margin: 0;
}

.d-post-attach .attach-name {
    padding-top: 10px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.d-post-attach .attach-video{
    background: #333333;
    color: white;
    border-radius: 5px;
}
.d-post-attach .attach-video video{
    background-color: transparent;
    border: none;
    width: 100%;
    margin: 0;
}
.d-post-attach .attach-video, .d-post-attach .attach-audio{
    width: 100%;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.d-post-attach img{
    margin: 0;
    width: 193px;
    height: 170px;
    object-fit: cover;
    border: 1px solid var(--colorD);
    border-radius: 5px;
}