.dz_container {
    width: 100%;
    padding: 10px 15px 0;
}

.dz_head {
    color: #595959;
    font-size: 14px;
    margin:0 0 15px 0;
    font-weight: bold;
    background: #F5F5F5;
    display: flex;
    align-items: center;
}

.dz_head p {
    padding: 12.5px 0;
}

#dz_scrollList1 {
    width: 100%;
}

#dz_scrollList2 {
    width: 100%;
}

.dz_single {
    font-size: 14px;
    height: 45px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid #eee;
}

#dz_scrollList1 li:nth-child(even) {
    /* background: #eee; */
}

#dz_scrollList2 li:nth-child(even) {
    /* background: #eee; */
}

.dz_name {
    width: 50%;
    text-align: center;
}

.dz_single .dz_name {
    padding: 0 0px;
    text-align: left;
}

.dz_rate {
    /* padding: 15px 0; */
    width: 13%;
    text-align: center;
    border-left: 1px solid #ddd;
}

.dz_num {
    /* padding: 15px 0; */
    width: 27%;
    text-align: center;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.dz_details {
    width: 10%;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .dz_container {
        width: 100%;
        padding: 10px 25px 0;
    }

    .dz_head {
        color: #595959;
        font-size: 14px;
        background: #F5F5F5;
        display: flex;
        flex-wrap: wrap;
    }

    .dz_head p {
        padding: 15px 15px 15px 15px;
    }

    .dz_head .dz_name {
        width: 100%;
        border-bottom: 1px solid #eee;
        text-align: left;
    }

    .dz_head .dz_rate {
        width: 30%;
        border-left: none;
    }

    .dz_head .dz_num {
        width: 40%;
    }

    .dz_head .dz_details {
        width: 30%;
    }

    .dz_single {
        font-size: 14px;
        height: 100px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        border-bottom: 1px solid #eee;
        flex-wrap: wrap;
    }

    #dz_scrollList1 li:nth-child(even) {
        background: #eee;
    }
    
    #dz_scrollList2 li:nth-child(even) {
        background: #eee;
    }

    .dz_single .dz_name {
        width: 100%;
        padding: 15px;
        /* text-align: center; */
        border-bottom: 1px solid #ccc;
    }

    .dz_single .dz_rate {
        width: 30%;
        border-left: none;
    }

    .dz_single .dz_num {
        width: 40%;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .dz_single .dz_details {
        width: 30%;
    }
}