.page_content {
    padding: 90px 18% 20px;
    background-color: #f5f5f5;
}

.news_list {
    width: 100%;
    background-color: #fff;
    list-style-type: none;
    padding: 25px 20px;
    margin: 0;
}

.news_list_item {
    display: flex;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
    cursor: pointer;
}

.news_list_item:last-child {
    border: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news_list_item img {
    width: 150px;
    height: 100px;
    object-fit: cover;
}

.news_list_item>div {
    position: relative;
    padding-left: 20px;
    flex: 1;
}

.news_list_item>div>p:nth-child(1) {
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.news_list_item>div>p:nth-child(2) {
    margin-bottom: 10px;
    color: #999;
    font-size: 14px;
}

.news_list_item>div>p:nth-child(3) {
    text-align: right;
    color: #999;
    font-size: 14px;
}

.swiper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.swiper-slide {
    position: relative;
    height: 300px;
    font-size: 18px;
    background: #fff;
}

.swiper-button-next,
.swiper-button-prev {
    color: #66b1ff;
    border-color: #66b1ff;
    background-color: #ecf5ff;
    width: 40px;
    height: 40px;
    border-radius: 20px;
}

.swiper-pagination-bullet {
    width: 0.7rem;
    height: 0.7rem;
}

.swiper-pagination-bullet-active {
    background-color: #c6e2ff;
}

.swiper-slide {
    cursor: pointer;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide>div {
    position: absolute;
    bottom: 30px;
    width: 100%;
    height: 28px;
    line-height: 28px;
    padding: 0 20px;
    background: rgba(0, 0, 0, .3);
    font-size: 14px;
    color: #e9e9eb;
}

@media screen and (max-width: 600px) {
    .page_content {
        padding: 20px 3%;
    }

    .news_list {
        padding: 10px;
    }

    .news_list_item {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .news_list_item>div>p:nth-child(2) {
        margin-bottom: 0;
    }

    .news_list_item>div {
        padding-left: 10px;
    }

    .news_list_item img {
        width: 75px;
        height: 60px;
    }

    .news_list_item>div>p:nth-child(3) {
        display: none;
    }
}