/* 文章卡片彩色圆点装饰 */
.posts-item.card {
    padding: 35px 10px 10px 10px !important;
}
.posts-item {
    position: relative !important;
}
.posts-item.card::before {
    content: "";
    display: block;
    background: #fc625d;
    top: 13px;
    left: 15px;
    border-radius: 50%;
    width: 9px;
    height: 9px;
    box-shadow: 16px 0 #fdbc40, 32px 0 #35cd4b;
    margin: 0px 2px -7px;
    z-index: 1000;
    position: absolute;
}
