div.l_photo_cnt {
    margin-left: 30px;
    margin-right: 30px;
}

* {
    box-sizing: border-box;
}

.imagebody:hover {
    border: 1px solid #777;
}

.imagebody img {
    width: 100%;
    height: 200px;
    object-fit:cover;
}

.imagebody {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    margin-left: 6px;
    margin-top: 6px;
    float: left;
    width: 24%;
    background-color:white;
    border: 1px solid #ccc;
    border-radius:0 0 5px 5px;
    height: auto;
}

@media only screen and (max-width: 1700px){
    .imagebody {
        width: 32%;
        margin-left: 3px;
        margin-top: 6px;
    }
}

@media only screen and (max-width: 1300px){
    .imagebody {
        width: 49%;
        margin-left: 3px;
        margin-top: 6px;
    }
}

@media only screen and (max-width: 950px){
    .imagebody {
        width: 100%;
        margin-left: 0px;
        margin-top: 6px;
    }
    .imagebody img {
        height: 260px;
    }
}

div a {
    text-decoration: none;
    color: black;
    padding: 0px;
}

div.desc {
    padding: 10px 10px 0px 10px;
    white-space: nowrap;
    text-align: center;
    text-overflow:ellipsis;
    overflow:hidden;
    height: 30px;
}

.author {
    padding: 0px 10px 0px 10px;
    white-space: nowrap;
    text-align: left;
    text-overflow:ellipsis;
    overflow:hidden;
    height: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.clearfix:after {
    clear: both;
}