/* .card .body .list */
main .card .body .list {
    padding: 0;
    padding-bottom: 10px;
    width: 100%;
}

main .card .body .list li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    color: rgb(var(--regulartxt_rgb));
}

main .card .body .list li:nth-of-type(even) {
    background-color: rgba(var(--theme_rgb), 0.055);
}
main .card .body .list li:nth-of-type(odd) {
    background-color: transparent;
}

main .card .body .list li .left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

main .card .body .list li .cover {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 50px;
    height: 50px;
    margin-right: 15px;

    overflow: hidden;
}

main .card .body .list li .cover img {
    height: 100%;
}

main .card .body .list li .info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

main .card .body .list li .info a .title {
    flex-shrink: 0;

    width: 400px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    font-size: 16px;
    font-weight: normal;
    color: rgb(var(--regulartxt_rgb));
}

main .card .body .list li .info .author {
    color: rgb(var(--secondarytxt_rgb));
    font-size: 14px;
}

main .card .body .list li .time {
    padding: 10px;
    color: rgb(var(--secondarytxt_rgb));
    font-size: 14px;
}






