.page-main {
    padding-top: calc(30 * var(--rpx) + var(--nav-header-h));
    background: url(../images/bg-1.png) no-repeat center top / 100% auto;
}

.section-new {
    padding-bottom: calc(150 * var(--rpx));
}

.section-new .section-new__header .title {
    font-size: calc(68 * var(--rpx));
    font-weight: 700;
    text-transform: uppercase;
    margin-top: calc(70 * var(--rpx));
    line-height: 1.2;
}

.section-new .section-new__header .desc {
    font-size: calc(24 * var(--rpx));
    margin-top: calc(14 * var(--rpx));
    line-height: 1.5;
}

.section-new .section-new__header-fun {
    --m-t: clamp(calc(40 * var(--rpx)), 5.625vw, calc(108 * var(--rpx)));
    margin-top: var(--m-t);
    align-items: flex-start;
}

.section-new .section-new__header-fun .tag-item {
    line-height: calc(50 * var(--rpx));
    padding: 0 calc(36 * var(--rpx));
    cursor: pointer;
    background-color: #fff;
    color: var(--primary);
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .1);
    transition: .3s;
}

.section-new .section-new__header-fun .tag-item.active,
.section-new .section-new__header-fun .tag-item:hover {
    background-color: var(--primary);
    color: #fff;
}

.section-new .years-filter-box {
    min-width: calc(140 * var(--rpx));
    position: relative;
    z-index: 1;
}

.section-new .years-filter-box .years-filter-box__header {
    line-height: calc(50 * var(--rpx));
    border: 1px solid #252525;
    border-radius: 999px;
    cursor: pointer;
}

.section-new .years-filter-box .years-filter-box__header .icon {
    height: calc(8 * var(--rpx));
    filter: url(#gray-dark-overlay);
    margin-left: calc(10 * var(--rpx));
    transition: .3s linear;
}

.section-new .years-filter-box .years-filter-box__header.active .icon {
    transform: rotate(180deg);
}

.section-new .years-filter-box .years-filter-box__content {
    width: 100%;
    background: #fff;
    box-shadow: 0 0 4px 0px #252525;
    border-radius: 2px;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    position: absolute;
    top: calc(100% + 8 * var(--rpx));
    left: 0;
}

.section-new .years-filter-box .years-filter-box__content.active {
    visibility: visible;
    opacity: 1;
}

.section-new .years-filter-box .years-filter-box__content .year {
    line-height: calc(40 * var(--rpx));
    text-align: center;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    transition: .3s linear;
}

.section-new .years-filter-box .years-filter-box__content .year:hover {
    color: #fff;
    background: var(--primary-foreground);
}

.section-new .section-new__main {
    --p-t: clamp(calc(30 * var(--rpx)), 3.125vw, calc(60 * var(--rpx)));
    --g: var(--p-t);
    padding-top: var(--p-t);
    display: flex;
    flex-wrap: wrap;
}

.new-box {
    position: relative;
    cursor: pointer;
}

.new-box .new-box__img {
    aspect-ratio: 493 / 300;
    overflow: hidden;
}

.new-box .new-box__img img {
    transition: .3s linear;
}

.new-box:hover img {
    transform: scale(1.2);
}

.new-box .tag-box {
    position: absolute;
    top: calc(30 * var(--rpx));
    left: calc(30 * var(--rpx));
}

.new-box .tag-box .tag-item {
    background: #000;
}

.new-box .new-box__content {
    color: #3b3b3b;
    padding: calc(30 * var(--rpx));
    background: #f9f9f9;
    line-height: 1.3;
}

.new-box .title {
    font-size: var(--font-size-24);
    font-weight: 500;
}

.new-box .desc {
    font-size: var(--font-size-18);
    font-weight: 300;
    margin-top: calc(20 * var(--rpx));
}

.new-box .more-link {
    width: max-content;
    color: var(--primary);
    margin-top: calc(30 * var(--rpx));
    align-items: center;
}

.new-box .more-link .icon {
    height: calc(10 * var(--rpx));
    margin-left: calc(10 * var(--rpx));
}

.new-box .more-link .inner-text {
    position: relative;
}

.new-box .more-link .inner-text::after {
    content: '';
    width: 0;
    height: 1px;
    background-color: var(--primary-foreground);
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: .3s linear;
}

.new-box:hover .more-link .inner-text::after {
    width: 50%;
}

.new-box.special {
    width: 100%;
}

.new-box.special .new-box__img {
    width: 50%;
    aspect-ratio: 800 / 485;
    aspect-ratio: unset;
}

.new-box.special .new-box__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-box.special .tag-box {
    position: relative;
    top: unset;
    left: unset;
}

.new-box.special .tag-item {
    background: var(--primary-foreground);
}

.new-box.special .new-box__content {
    --space: clamp(calc(30 * var(--rpx)), 3.125vw, calc(60 * var(--rpx)));
    width: 50%;
    flex: 0 0 auto;
    padding: var(--space);
}

.new-box.special .title {
    font-size: var(--font-size-38);
    color: #252525;
    margin-top: calc(30 * var(--rpx));
}

.new-box.special .more-link {
    margin-top: calc(50 * var(--rpx));
}

.new-detail-box {
    padding: calc(120 * var(--rpx)) 0;
    overflow: hidden;
}

.new-detail-box .new-detail-box__header {
    padding-bottom: calc(32 * var(--rpx));
    position: relative;
}

.new-detail-box .new-detail-box__header .title {
    font-size: calc(38 * var(--rpx));
    font-weight: 500;
    line-height: calc(48 / 38);
    margin-top: calc(30 * var(--rpx));
}

.new-detail-box .new-detail-box__header .border {
    width: 100vw;
    height: 1px;
    gap: 0 calc(80 * var(--rpx));
    padding: 0 calc(80 * var(--rpx));
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.new-detail-box .new-detail-box__header .border::before,
.new-detail-box .new-detail-box__header .border::after {
    content: '';
    height: 100%;
    background: rgba(0, 0, 0, .1);
}

.new-detail-box .new-detail-box__header .border::before {
    width: 62.5%;
}

.new-detail-box .new-detail-box__header .border::after {
    width: 25%;
}

.new-detail-box .new-detail-box__wrapper {
    padding: calc(60 * var(--rpx)) 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.new-detail-box .new-detail-box__wrapper p {
    font-size: var(--font-size-18);
    line-height: calc(30 / 18);
}

.new-detail-box .new-detail-box__wrapper ul {
    width: 100% !important;
}

.new-detail-box .new-detail-box__wrapper p+*,
.new-detail-box .new-detail-box__wrapper img+* {
    margin-top: calc(60 * var(--rpx));
}

.new-detail-box .new-detail-box__wrapper p+p {
    margin-top: calc(30 * var(--rpx));
}

.new-detail-box .new-detail-box__main .btn {
    color: var(--primary);
    border-color: var(--border);
    margin: calc(40 * var(--rpx)) auto 0;
    gap: 0 calc(10 * var(--rpx));
}

.layer-other-news {
    background: #f7f7f7;
}

.layer-other-news .layer-header .btn {
    color: var(--primary);
    border-color: var(--border);
}

.layer-other-news .layer-main {
    --g: clamp(var(--space-16), 3.125vw, calc(60 * var(--rpx)));
    padding-top: calc(36 * var(--rpx));
    gap: var(--g);
}

.layer-other-news .layer-main .new-box__content {
    background: #fff;
}

@media screen and (max-width: 750px) {
    .new-box.special {
        display: block;
    }

    .new-box.special .new-box__img,
    .new-box.special .new-box__content {
        width: 100%;
    }

    .section-new .section-new__main {
        --c: 1;
    }

    .layer-other-news .layer-main {
        grid-template-columns: repeat(1, 1fr);
    }
}