
.list2_content_wrapper{
    display: flex;
}


.list2_title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding-top: 60px;
}
.list2_title > div {
    width: 90px;
    height: 1px;
    background: #c1c1c1;
}
.list2_title > h3 {
    font-size: 30px;
    color: #333;
    margin: 0 30px;
}
.list2_nav_btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.list2_nav_btn > a {
    display: inline-block;
    padding: 10px 30px;
    background-color: rgba(232, 232, 232, 1);
    font-size: 14px;
    border-radius: 5px;
    margin: 0 20px 60px;
}
a:hover {
    color: inherit;
    text-decoration: none;
}
.list2_content_list {
    /* display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 60px; */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid:20px
}
.list2_content_item {
    margin: 10px;
}
.list2_content_item > a > img {
    width: 230px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
}
.list2_content_item > p {
    text-align: center;
    font-size: 18px;
    line-height: 28px;
}
.list2_page_nav {
    text-align: center;
}
@media (max-width: 768px) {
    .list2_content_list{
      display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    }
    .list2_content_item {
        width: 40%;
    }
    .list2_content_item > a > img {
        width: 100%;
        height: auto;
    }
    .list2_content_wrapper{
    display: block;
}
}

.pagination > li > a, .pagination > li > span{
    margin: 0 10px;
}

