.list1_title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding-top: 60px;
}
.list1_title > div {
    width: 90px;
    height: 1px;
    background: #c1c1c1;
}
.list1_title > h3 {
    font-size: 30px;
    color: #333;
    margin: 0 30px;
}
.list1_nav_btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.list1_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;
}
.list1_block_wrapper{
    display: flex;
    justify-content: space-between;
}
a:hover {
    color: inherit;
    text-decoration: none;
}
.list1_content_item {
    display: flex;
    align-items: center;
    border: 1px solid #f3f3f3;
    transition: all 0.3s ease-in-out 0s;
    padding: 20px 36px;
    margin-bottom: 20px;
}
.list1_content_item:hover {
    box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
}
.list1_head_img {
    object-fit: cover;
    width: 200px;
    height: 150px;
    margin-right: 20px;
}
.list1_content_item_info {
    flex: 1;
}

.list1_content_item_title > a {
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    width: 640px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.list1_content_item_summary {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    font-size: 16px;
}
.list1_content_item_date {
    margin-left: 20px;
    border-left: 1px solid rgba(238, 238, 238, 1);
    height: 150px;
    padding-left: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 150px;
}
.list1_content_item_date > p:nth-child(1) {
    font-size: 38px;
    color: rgba(153, 153, 153, 1);
    margin-bottom: 10px;
}
.list1_content_item_date > p:nth-child(2) {
    font-size: 18px;
    color: rgba(153, 153, 153, 1);
}
.list1_min_date {
    display: none;
}
.list1_page_nav {
    text-align: center;
}
@media (max-width: 768px) {
    .list1_content_list {
        padding: 10px;
    }
    .list1_content_item {
        padding: 10px;
    }
    .list1_content_item {
        display: block;
    }
    .list1_head_img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .list1_content_item_title > a {
        width: 100%;
    }
    .list1_content_item_date {
        display: none;
    }
    .list1_min_date {
        display: block;
        line-height: 20px;
        font-size: 14px;
        color: rgba(153, 153, 153, 1);
        padding-top: 10px;
    }
    .list1_block_wrapper{
        display: block;
    }
}
.pagination > li > a,
.pagination > li > span {
    margin: 0 10px;
}
.sky_mega_left_nav{
    margin-right: 20px;
}