.clearfloat:after {
    display: block;
    clear: both;
    content: "";
    visibility: hidden;
    height: 0
}

.clearfloat {
    zoom: 1
}

.photo_collection {
    max-width: 980px;
    margin: 0 auto;
    margin-top: 20px;
}

.photo_collection ul {
}

.photo_collection ul li {
    width: 140px;
    height: 160px;
    float: left;
    text-align: center;
    margin: 0 6px;
    list-style: none;
}

.photo_collection ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #ccc;
}

.photo_collection ul li a .img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
}

.photo_collection h3 {
    width: 120px;
    line-height: 30px;
    font-size: 14px;
    color: #545454;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    word-break: break-all;
}