
.article-list{
    line-height:30px;
    color:rgba(29, 33, 41, 1);
    margin:10px 20px 20px;
    width: 320px;
    box-sizing: border-box;
}
.tag-list{
    margin:16px 16px 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap:8px;
}
.tag-list .tag-list-item{
    height:30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width:100%;
    font-size:14px;
    cursor: pointer;
}
.tag-list .tag-list-item:hover .tag-list-item-title{
    text-decoration: underline;
    color:rgba(245, 63, 63, 1);
}
.tag-list .tag-list-item.bold .tag-list-item-title{
    font-weight: bold;
}
.tag-list .tag-list-item.bold .tag-list-item-num{
    position: relative;
    color:rgba(245, 63, 63, 1);
}
.tag-list .tag-list-item.bold .tag-list-item-num::before{
    content: '';
    width:18px;
    height:18px;
    display: inline-block;
    background: url('https://res.callmysoft.com/wm-static-resource/Sem/875_sem/hot.png') no-repeat center center /contain;
    position: absolute;
    left:-3px;
    top:0;
    transform: translate(-100%,0);
}
.tag-list .tag-list-item-title{
    color:rgba(29, 33, 41, 1);
}
.tag-list .tag-list-item-num{
    color:rgba(134, 144, 156, 1);
}
.article-list .article-item{
    padding-left:20px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width:306px;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
    font-size: 14px;
}
.article-list .article-item:hover{
    text-decoration: underline;
    color:rgba(245, 63, 63, 1);
}
.article-list .article-item::before{
    content: '';
    display: inline-block;
    width:4px;
    height:4px;
    background: rgba(29, 33, 41, 1);
    border-radius: 50%;
    position: absolute;
    left:5px;
    top:15px;
    transform: translate(-50%,-50%);
}