.news-header {
    position: relative;
    overflow: hidden;
}

.news-header .header-content{
    position: relative;
}

.header-content .wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid #fff3;
    padding: calc(20 * var(--rpx)) 0 calc(80 * var(--rpx-50));
}

.news-header .news-type{
    font-size: calc(24 * var(--fpx-75));
    margin-top: calc(85 * var(--rpx));
    font-weight: 600;
}

.news-header .news-title + .event-status-tag{
    margin-top: calc(24 * var(--rpx));
}

.news-header .event-status-tag{
    display: inline-block;
    padding: calc(10 * var(--rpx-50)) calc(22 * var(--rpx-50));
    border-radius: calc(999 * var(--rpx-50));
    font-size: calc(22 * var(--fpx-75));
    font-weight: 600;
    line-height: 1.2;
}

.news-header .event-status-tag--upcoming{
    background: var(--theme-blue);
    color: #fff;
}

.news-header .event-status-tag--ongoing{
    background: var(--theme-violet);
    color: #fff;
}

.news-header .event-status-tag--ended{
    background: #6b7280;
    color: #fff;
}

.news-header .news-title {
    font-size: calc(68 * var(--rpx-50));
    line-height: calc(78em / 68);
    margin-top: calc(28 * var(--rpx));
    font-weight: 600;
}

.news-header .news-date{
    font-size: calc(24 * var(--fpx-75));
    margin-top: calc(30 * var(--rpx));
}

.news-header .data-list{
    display: flex;
    flex-direction: column;
    font-size: calc(24 * var(--fpx-67));
    margin-top: calc(30 * var(--rpx));
    gap: calc(12 * var(--rpx));
}

.news-header .data-list .data{
    display: flex;
    align-items: center;
    gap: calc(24em / 18);
}

.news-header .data-list .icon{
    width: calc(30em / 18);
    height: calc(30em / 18);
}

.news-header .data-list .icon.date{
    background: url("../images/icon_date.svg") center/cover no-repeat;
}

.news-header .data-list .icon.location{
    background: url("../images/icon_location.svg") center/cover no-repeat;
}

.article {
    padding: calc(80 * var(--rpx-50)) 0 calc(100 * var(--rpx-50));
    font-family: sans-serif;
    color: #fffc;
}

.article.theme-light{
    background-color: #fff;
    color: #272727;
}

.article .content {
    font-size: 1rem;
    line-height: 1.5;
}

.article .content img {
    max-width: 100%;
    height: auto;
    margin: auto;
}

.article .content video {
    display: block;
    width: 100%;
    height: auto;
    max-width: min(100%, 960px);
    margin: 1.2em auto;
    background: #000;
    border-radius: calc(12 * var(--rpx-50));
}

.article .content iframe,
.article .content embed {
    display: block;
    max-width: 100%;
    margin: 1.2em auto;
}

.article .split {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: calc(22 * var(--rpx)) 0;
}

.article strong,
.article b{
    color: #fff;
}

.detail-nav {
    padding-bottom: calc(56 * var(--rpx));
}

.detail-pagination {
    margin-top: calc(36 * var(--rpx));
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-pagination .nav-item a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: calc(120 * var(--rpx));
}

.detail-pagination .nav-item.nav-next a {
    align-items: flex-end;
    text-align: right;
}

.detail-pagination .nav-prev {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-pagination .nav-item a,
.detail-pagination .nav-item span {
    text-decoration: none;
    padding: calc(20 * var(--rpx)) calc(60 * var(--rpx-50)) calc(40 * var(--rpx));
}

.detail-page-dir {
    font-size: calc(14 * var(--fpx-87));
    margin-bottom: calc(8 * var(--rpx));
    opacity: 0.6;
}

.detail-page-title {
    font-size: calc(28 * var(--fpx-67));
    line-height: 1.35;
    font-weight: 600;
}

.nav-item a:hover {
    color: var(--theme-blue);
}

.detail-nav .btn-ctn {
    margin-top: calc(80 * var(--rpx-50));
    display: flex;
    justify-content: center;
}

@media (max-width: 828px) {
    .detail-pagination {
        display: block;
    }

    .detail-pagination .nav-prev {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .detail-pagination .nav-item a,
    .detail-pagination .nav-item span {
        padding-left: 0;
        padding-right: 0;
    }
}

