.flzx_list {
    padding: 20px 0;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}
.flzx_list li {
    width: 48%;
    color: #2471c3;
    margin-bottom: 30px;
}
.flzx_list .time {
    width: 100%;
    height: 40px;
    line-height: 40px;
    background: #cbdff4;
    text-align: center;
    border-radius: 40px;
    margin-bottom: 8px;
    font-weight: bold;
}
.flzx_list .title {
    display: block;
    color: #2471c3;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 24px;
    padding: 0 10px;
    min-height: 48px;
}
.flzx_list .des {
    font-size: 14px;
    color: #333;
    line-height: 24px;
    margin-bottom: 8px;
    padding: 0 10px;
}
.flzx_list .cover {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.3s;
}
.flzx_list .cover:hover {
    box-shadow: 2px 2px 5px 5px #d5d5d5;
}
@media screen and (max-width: 769px) {
    .flzx_list .cover {
        height: 96px;
    }
    .flzx_list .des {
        font-size: 12px;
    }
}
