

.imgs_box {
    padding:2rem 0;
}
.imgs_box dl img{
    display: block;
}
.imgs_box dt {
    border: 1px solid #e5e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}
.imgs_box dd{
    height: 3rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    /*white-space: nowrap;*/
    background: #f0f0f0;
    cursor:pointer;
}

@media  screen and (min-width: 1200px){
    .imgs_box dl{
        width: 15.833%;
        margin-right: 1%;
        float: left;
        margin-bottom: 2rem;
    }
    .imgs_box dl dt{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .imgs_box dl:nth-child(6n){
        margin-right: 0;
    }
    .imgs_box dl:nth-child(6n+1){
        clear: both;
    }
}
@media  screen and (min-width: 768px) and (max-width: 1200px){
    .imgs_box dl{
        width: 23.5%;
        margin-right: 2%;
        float: left;
        margin-bottom: 2rem;
    }
    .imgs_box dl:nth-child(4n){
        margin-right: 0;
    }
    .imgs_box dl:nth-child(4n+1){
        clear: both;
    }
}
@media  screen and (min-width: 500px) and (max-width: 768px){
    .imgs_box dl{
        width: 32%;
        margin-right: 2%;
        float: left;
        margin-bottom: 2rem;
    }
    .imgs_box dl:nth-child(3n){
        margin-right: 0;
    }
    .imgs_box dl:nth-child(3n+1){
        clear: both;
    }
}

@media  screen and (max-width: 500px){
    .imgs_box dl{
        width: 48%;
        margin-right: 4%;
        float: left;
        margin-bottom: 2rem;
    }
    .imgs_box dl:nth-child(2n){
        margin-right: 0;
    }
    .imgs_box dl:nth-child(2n+1){
        clear: both;
    }
}