
/*
 * 列表数据 
 */
.list {
    width: 1000px;
    min-width: 1000px;
    min-height:calc(100vh - 620px);
    margin: 20px auto;
    display: flex;
    background-color: #ADD8E6;
    flex-direction: column;
}
.list-item-title {
    display: flex;
    background-color: #0033CC;
    flex-direction: row;
    color: white;
    font-size: 16px;
    font-weight: bolder;
    justify-content: space-between;
    height: 40px;
    align-items: center;
}
.list-item {
    display: flex;
    margin-top: 9px;
    flex-direction: row;
    color: #000;
    justify-content: space-between;
    height: 40px;
    align-items: center;
}
span.list-title {
    white-space: nowrap;       /* 防止换行 */
    overflow: hidden;          /* 超出部分隐藏 */
    text-overflow: ellipsis;   /* 超出部分显示省略号 */
    display: inline-block;     /* 确保样式生效 */
    margin-right: 20px;
}
.list-time {
    width: 25%;
    min-width: 250px;
    text-align: center;
}
.list-type {
    width: 17%;
    min-width: 170px;
    color: #000;
    text-align: left;
    
}
.list-title {
    flex: 1;
    margin-left: 20px;
}

