.page-news .hero {
    position: relative;
    height: calc(650 * var(--rpx));
    overflow: hidden;
    background: #1a2a4a;
}

.page-news .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

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

.page-news .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
    pointer-events: none;
}

.page-news .hero-fg {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--header-height);
    transform: translateY(calc(-16 * var(--rpx)));
}

.page-news .hero-card {
    max-width: calc(850 * var(--rpx));
    min-height: calc(230 * var(--rpx));
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    padding: calc(40 * var(--rpx));
}

.page-news .hero-card .title {
    font-size: calc(48 * var(--fpx-50));
    font-weight: 700;
    line-height: calc(58 * var(--rpx));
}

.page-news .hero-card .desc {
    margin-top: calc(12 * var(--rpx));
    font-size: calc(18 * var(--fpx));
    line-height: calc(32 * var(--rpx));
    max-width: calc(780 * var(--rpx));
}

.page-news .inner-nav {
    border-bottom: calc(1 * var(--rpx)) solid rgba(0, 0, 0, 0.15);
}

.page-news .inner-nav-tabs {
    display: flex;
    gap: calc(60 * var(--rpx));
    padding-top: calc(18 * var(--rpx));
}

.page-news .inner-nav-tabs a {
    position: relative;
    font-size: calc(16 * var(--fpx));
    line-height: calc(24 * var(--rpx));
    color: var(--muted);
    padding-bottom: calc(16 * var(--rpx));
}

.page-news .inner-nav-tabs a.is-current {
    color: var(--brand);
    font-weight: 500;
}

.page-news .inner-nav-tabs a.is-current::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: calc(-1 * var(--rpx));
    width: calc(65 * var(--rpx));
    height: calc(2 * var(--rpx));
    background: var(--brand);
}

.page-news .page-crumb {
    padding-top: calc(30 * var(--rpx));
}

.page-news .page-crumb .crumb {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: calc(8 * var(--rpx));
    font-size: calc(14 * var(--fpx));
    color: var(--text);
}

.page-news .news-main {
    padding: calc(48 * var(--rpx)) 0 calc(120 * var(--rpx));
}

.news-featured {
    display: flex;
    height: calc(445 * var(--rpx));
    background: #fff;
    color: inherit;
    box-shadow: 0 0 calc(16 * var(--rpx)) rgba(0, 0, 0, 0.2);
}

.news-featured .pic {
    width: calc(800 * var(--rpx));
    height: 100%;
    flex-shrink: 0;
}

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

.news-featured .meta,
.news-item .meta {
    display: flex;
    align-items: center;
    gap: calc(10 * var(--rpx));
}

.news-featured .date,
.news-featured .tag,
.news-item .date,
.news-item .tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: calc(30 * var(--rpx));
    padding: 0 calc(12 * var(--rpx));
    border-radius: calc(60 * var(--rpx));
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: calc(14 * var(--fpx));
    line-height: 1;
}

.news-featured .news-title {
    margin-top: calc(26 * var(--rpx));
    font-size: calc(36 * var(--fpx-50));
    font-weight: 500;
    line-height: calc(46 * var(--rpx));
    color: #000;
}

.news-featured .news-desc {
    margin-top: calc(22 * var(--rpx));
    font-size: calc(18 * var(--fpx));
    font-weight: 300;
    line-height: calc(32 * var(--rpx));
    color: var(--muted);
    text-align: justify;
}

.news-featured .more {
    margin-top: auto;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(60 * var(--rpx));
    margin-top: calc(60 * var(--rpx));
}

.news-item {
    display: flex;
    flex-direction: column;
    height: calc(565 * var(--rpx));
    background: #fff;
    color: inherit;
    box-shadow: 0 0 calc(16 * var(--rpx)) rgba(0, 0, 0, 0.2);
}

.news-item .pic {
    height: calc(280 * var(--rpx));
    flex-shrink: 0;
}

.news-item .meta {
    position: absolute;
    left: calc(20 * var(--rpx));
    top: calc(20 * var(--rpx));
    z-index: 1;
}

.news-item .news-title {
    margin: calc(30 * var(--rpx)) calc(28 * var(--rpx)) 0;
    font-size: calc(24 * var(--fpx-67));
    font-weight: 500;
    line-height: calc(34 * var(--rpx));
    color: #000;
}

.news-item .news-desc {
    margin: calc(14 * var(--rpx)) calc(28 * var(--rpx)) 0;
    font-size: calc(16 * var(--fpx));
    font-weight: 300;
    line-height: calc(28 * var(--rpx));
    color: rgba(0, 0, 0, 0.6);
}

.news-item .more {
    margin-top: auto;
    margin-bottom: calc(30 * var(--rpx));
    padding: 0 calc(28 * var(--rpx));
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.news-item .more-arr {
    width: calc(30 * var(--rpx));
    height: calc(30 * var(--rpx));
    border-radius: 50%;
    border: calc(1 * var(--rpx)) solid #111;
    background: url("../images/icons/icon_arr_right.svg?v=1.0") no-repeat center / 12px 10px;
    flex-shrink: 0;
}

.news-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(20 * var(--rpx));
    margin-top: calc(61 * var(--rpx));
}

.news-pager .pager-pages {
    display: flex;
    align-items: center;
    gap: calc(6 * var(--rpx));
}

.news-pager .pager-btn,
.news-pager .pager-pages a,
.news-pager .pager-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: calc(50 * var(--rpx));
    border-radius: calc(300 * var(--rpx));
    border: calc(1 * var(--rpx)) solid var(--brand);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-2);
    font-size: calc(14 * var(--fpx));
}

.news-pager .pager-btn {
    width: calc(130 * var(--rpx));
}

.news-pager .pager-pages a,
.news-pager .pager-ellipsis {
    width: calc(50 * var(--rpx));
}

.news-pager .pager-pages a.is-current {
    color: var(--brand);
}
