
/*
 * 列表数据 
 */
.list {
    width: 70%;
    min-width: 960px;
    min-height:calc(100vh - 620px);
    margin: 20px auto;
    display: flex;
    flex-direction: column;
}
.list-item {
    display: flex;
    background: white;
    margin-top: 9px;
    flex-direction: row;
    justify-content: space-between;
    height: 40px;
    align-items: center;
}
.list-time {
    width: 30%;
    min-width: 280px;
    text-align: center;
}
.list-type {
    width: 20%;
    min-width: 200px;
    text-align: left;
    
}
.list-title {
    flex: 1;
    margin-left: 20px;
}
