.dz_container {
    width: 1200px;
    margin: auto;
}

.dz_top {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 20px 0;
    padding: 8px 0;
    border-bottom: 3px solid #103983;
    background: linear-gradient(#ffffff, #EEEEEE);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dz_topLeft {
    display: flex;
    align-items: center;
    justify-content: left;
}

.dz_top img {
    width: 20px;
}

.dz_topRight {
    font-size: 14px;
}

.dz_topRight a {
    font-size: 14px;
    margin: 0 5px;
    color: #287FD4;
}

.dz_single {
    padding: 10px 30px 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px dashed #A1A1A1;
    cursor: pointer;
}

.dz_single img {
    width: 10px;
    margin: 0 5px 0 0;
}

.dz_title {
    width: 600px;
    font-size: 16px;
    color: #A1A1A1;
    display: flex;
    align-items: center;
    justify-content: left;
}

.dz_single:hover .dz_title {
    color: #F70200;
}

.dz_title span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dz_date {
    color: #000;
    font-size: 14px;
}
@media only screen and (max-width: 768px) {
    .dz_container {
        width: 100%;
    }
    .dz_topRight{
        display:none;
    }
    .dz_single{
        padding: 10px 10px 10px 0;
    }
    .dz_title{
        width:70%;
    }
}