
.news-list {
    display: flex;
    flex-direction: column;
}

.news {
    display: flex;
    align-items: stretch;
    text-decoration: none;
    color: inherit;
    padding-top: calc(40 * var(--rpx));
    padding-bottom: calc(40 * var(--rpx));
    border-bottom: 1px solid rgba(255, 255, 255,.2);
    gap: calc(60 * var(--rpx-50));
}

.news.hidden {
    display: none;
}

.news .cover {
    position: relative;
    flex: 0 0 auto;
    width: calc(440 * var(--rpx));
    border-radius: calc(30 * var(--rpx));
    aspect-ratio: 16/9;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255,.2);
}

.news .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news .info {
    flex: 1 1 auto;
    min-width: 0;
    padding: calc(20 * var(--rpx)) 0;
    display: flex;
    flex-direction: column;
}

.news .title {
    font-size: calc(28 * var(--rpx-75));
    line-height: 1.35;
    font-weight: 600;
    margin-bottom: calc(18 * var(--rpx));
}

.news:hover .title{
    color: var(--theme-blue);
}

.news .desc {
    opacity: .6;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;

    height: 4.2em;
}

.news-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(16 * var(--rpx));
    margin-top: auto;
    padding-top: calc(12 * var(--rpx));
}

.news .date {
    font-size: calc(14 * var(--fpx-87));
    margin: 0;
    opacity: .6;
}

.news-more-link {
    display: inline-flex;
    align-items: center;
    gap: calc(6 * var(--rpx));
    flex-shrink: 0;
    font-size: calc(14 * var(--fpx-87));
    font-weight: 500;
    color: var(--theme-blue);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.news-more-link .icon-angle-right {
    display: inline-block;
    width: calc(10 * var(--rpx));
    height: calc(10 * var(--rpx));
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask: url("../images/icon_angle_right_white.svg") center / contain no-repeat;
    mask: url("../images/icon_angle_right_white.svg") center / contain no-repeat;
}

.news-more-wrap.is-empty {
    display: none;
}

@media (max-width: 600px) {
    .news {
        flex-direction: column;
        gap: calc(40 * var(--rpx));
    }

    .news .cover {
        width: 100%;
        flex-basis: auto;
        min-height: auto;
        aspect-ratio: 16 / 9;
    }

    .news .info {
        width: 100%;
        padding: 0;
    }
}

.news-more-wrap{
    margin-top: calc(80 * var(--rpx-50));
    display: flex;
    justify-content: center;
}

