@charset "UTF-8";
.links-list-moddule .category {
    padding: 24px;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    border-bottom: 1px solid #F5F5F5;
}

.links-list-posts-none {
    background: #ffffff;
    padding: 24px;
}

.links-list-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    background: #ffffff;
    padding: 24px;
}

.links-list-posts .link-in {
    padding: 10px;
    align-items: flex-start;
    position: relative;
    box-shadow: none;
    /*border: 1px solid #ebebeb;*/
    display: flex;
}

.links-list-posts .link-in:hover {
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, .1);
}

.links-list-posts .link-img {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: block;
    margin-right: 8px;
    background-color: #ffffff;
    overflow: hidden;
    border-radius: 100%;
}

.links-list-posts .link-info {
    flex: 1;
    width: 0;
}

.links-list-posts  .link-top {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #333333;
}

.links-list-posts .title{
    color: #333333;
    font-weight: bold;
}


.links-list-posts .link-desc {
    font-size: 12px;
    overflow-wrap: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin: 4px 0 8px;
    height: 17px;
    box-sizing: border-box;
    line-height: 1.3;
    color: #999999;
}

.links-list-posts .link-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666666;
    font-size: 12px;
}

.links-list-posts .link-footer i {
    font-size: 12px;
    margin-right: 3px;
}
/* --------------------响应式-------------------------------- */
@media screen and (max-width: 768px) {
    .links-list-posts {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
}