.lists{
    display: flex;
    flex-wrap: wrap;
}
.lists .item{
    width: 20%;
    padding: 1%;
}
@media (max-width: 576px) {
    .lists .item {
        width: 50%;
        padding: 1%;
    }
}
.lists .item img{
    width: 100%;
}

.lists .item .name {
    text-align: center;
    margin-top: 10px;
}
.search{
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    position: relative;
}
.search-input{
    height: 100%;
    padding: 0px 20px 0px 5px;
    width: 100%;
}
.search-btn{
    background: url('../../images/search.png');
    width: 32px;
    height: 32px;
    position: absolute;
    right: 20px;
    top: 4px;
    background-size: cover;    
    cursor: pointer;
}
.clear-btn {
    background: url('../../images/clear.png');
    width: 32px;
    height: 32px;
    position: absolute;
    right: 20px;
    top: 4px;
    background-size: cover;
    cursor: pointer;
}

.pagination{
    float: right;
    margin-top: 20px;
}
.pagination li a{
    background: #fafafa;
    color: #666;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    text-decoration: none;
    border: 1px solid #ddd;
    position: relative;
    float: left;
}
.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}