.news-section {
    background: #f7faff !important;
}
.news-list .more {
    cursor: pointer;
}
.news-list .more a:hover {
    color: #1a6eff;
}
.news-list {
    background: #f7faff;
    padding: 80px 0px;
    display: flex;
    flex-direction: column;
}
.news-list > .title {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: rgba(0, 0, 0, 0.85);
    margin-bottom: 64px;
}
.news-list  .content {
    display: flex;
    height: 440px;
}
.news-list .content .content-left {
    margin-right: 32px;
    flex: 1.02;
    /* background-color: #e0e5eb; */
    background-color: #cbcac7;
    background-repeat: no-repeat;
    /* background-size: cover; */
    background-size: 100% 100%;
    position: relative;
    overflow: hidden;
    background-position: center;
}
.news-list .content .content-left .content-left-footer {
    height: 172px;
    background: rgba(0, 0, 0, 0.65);
    padding: 24px;
    width: 100%;
    position: absolute;
    bottom: 0;
}
.news-list .content .content-left .content-left-footer .title {
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news-list .content .content-left .content-left-footer .desc {
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    margin-bottom: 14px;
}
.news-list .content .content-left .content-left-footer .extra {
    font-size: 14px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    justify-content: space-between;
}
.news-list .content .content-left .content-left-footer .extra .more {
    color: #ffffff;
}
.news-list .content .content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.news-list .content .content-right .content-right-item {
    display: flex;
    flex: 1;
    margin-bottom: 34px;
}
.news-list .content .content-right .content-right-item:hover .more {
    color: #1a6eff;
}
.news-list .content .content-right .content-right-item .img {
    width: 180px;
    height: 100%;
    /* background-size: cover; */
    background-size: 100% 100%;

    background-repeat: no-repeat;
}
.news-list .content .content-right .content-right-item .img.img-1 {
    background-color: #cbcac7;
}
.news-list .content .content-right .content-right-item .img.img-2 {
    background-color: #cbcac7;
}
.news-list .content .content-right .content-right-item .img.img-3 {
    background-color: #cbcac7;
}
.news-list .content .content-right .content-right-item .content {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    flex: 1;
    margin-left: 16px;
    overflow: hidden;
    height: auto;
}
.news-list .content .content-right .content-right-item .content .title {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #333333;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: start;
}
.news-list .content .content-right .content-right-item .content .desc {
    font-size: 16px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.65);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    margin-bottom: 14px;
}
.news-list .content .content-right .content-right-item .content .extra {
    font-size: 14px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: space-between;
}
.news-list > .more {
    margin-top: 48px;
    font-size: 16px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.65);
    text-align: center;
}
.news-list .content+.more{
    text-align: center;
    margin-top: 48px;
}
.advertisement-cards-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 24px;
}

.advertisement-cards-list {
    display: grid;
    grid-template-columns: repeat(5, 200px);
    column-gap: 30px;
    row-gap: 30px;
}

.advertisement-card-item {
    height: 80px;
    background: #FFFFFF;
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    line-height: 80px;
}

.advertisement-card-item:hover {
    transform: scale(1.1, 1.1);
    /* box-shadow: 0px 2px 16px rgba(5, 48, 130, 0.16); */
}
@media (min-width: 1920px) {
    .news-list {
        max-width: 1440px;
        margin: 0 auto;
    }
    .news-list .content {
        max-width: 1440px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (min-width: 1440px) and (max-width: 1919px) {
    .news-list {
        max-width: 1200px;
        margin: 0 auto;
        /* padding-left: 80px;
        padding-right: 80px; */
    }
    .news-list .content {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 1439px) {
    .news-list {
        max-width: 1200px;
        margin: 0 auto;
    }
    .news-list .content {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}