.list{
    width: 100%;
    min-height: 550px;
    margin-top: 30px;
}
.list a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 0;
    margin-bottom: 15px;
    border-bottom: rgba(209, 208, 205, 0.5) 1px solid;
}
.list a .name{
    width: 80%;
    line-height: 1.5;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.list a .date{
    color: #7D7D7D;
    white-space: nowrap;
}
@media screen and (max-width: 780px) {
    .list{
        min-height: 50px;
    }
}