.list {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.list-item {
    margin: 10px 10px;
    position: relative;
    /* 占据单个网格 */
    width: 300px;
    height: 330px;
    border-radius: 12px;
    transition: all 0.3s ease 0s;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: flex-start;
    background: white;
    box-shadow: var(--shadow-border);


    .item-content {
        width: 300px;
        height: 100%;
    }
}


.card-image {
    overflow: hidden;
    height: 160px;
    display: flex;
    position: relative;
    border-radius: 12px 12px 0px 0px;

    .cover-img {
        opacity: 0.85;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: bottom center;
    }
}

.card-title {
    position: absolute;
    bottom: 10px;
    left: 5px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5rem;
    margin: 0px 10px 0px 10px;
    line-height: 32px;
    color: var(--markdown-title-color);
}

.summary {
    height: 60px;
    margin: 5px 15px 10px 10px;
    color: var(--markdown-text-color);
}

.publish-info {
    margin: 20px 10px 10px;
    color: var(--markdown-text-color);
}