/* 出海资讯页以深色信息台呈现真实内容，复用全站黑、青绿与品牌红的视觉语言。 */
/* 资讯导航滚动后始终保持在内容层之上，继续复用全站 sticky 的 0.6s 磨砂过渡。 */
.news_page{
    background-color: #0B0B0C;
    color: white;
}

/* 仅资讯页导航常驻深色，避免白色固定导航与内容区产生割裂。 */
.news_nav,
.news_nav.sticky{
    background-color: #0B0B0C;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: none;
}

.news_nav .logo,
.news_nav.sticky .logo{
    filter: brightness(0) invert(1);
}

.news_nav ul li a{
    color: rgba(255, 255, 255, 0.82);
}

.news_nav ul li a:hover,
.news_nav ul li a.current{
    color: white;
}

.news_nav:hover,
.news_nav.sticky:hover{
    border-bottom-color: transparent;
}

/* 滚动后保留深色磨砂透明感，与全站 sticky 导航的反馈方式保持一致。 */
.news_nav.sticky{
    background-color: rgba(11, 11, 12, 0.74);
    backdrop-filter: blur(10px);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.news_feed{
    min-height: 560px;
    padding: 152px 0 78px;
    overflow: hidden;
}

.news_feed_inner{
    width: 80vw;
    max-width: 1440px;
    margin: 0 auto;
}

.news_feed_heading{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
}

.news_heading_copy h1{
    color: white;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.25em;
}

.news_heading_copy p{
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.53);
    font-size: 21px;
    line-height: 1.5em;
}

/* 更多入口暂为展示占位，边框与圆角沿用页面已有的轻量行动控件。 */
.news_more{
    width: 114px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-bottom: 2px;
    border: 1px solid #12CFCB;
    border-radius: 26px;
    color: #12CFCB;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    cursor: pointer;
    transform-origin: center center;
}

.news_cards{
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* 三张资讯卡片共用的栏目标题，仅置于第一张卡片上方。 */
.news_cards_label{
    margin: 58px 0 0;
    color: #FF0056;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-indent: 2em;
}

.news_card{
    min-width: 0;
    overflow: hidden;
    border: 1px solid #28282A;
    border-radius: 16px;
    background-color: #111112;
    cursor: pointer;
    transform-origin: center center;
}

.news_card_link{
    height: 100%;
    display: block;
    color: inherit;
    text-decoration: none;
}

.news_card_link:focus-visible{
    outline: 2px solid #19D4D0;
    outline-offset: -3px;
}

.news_card_media{
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: black;
}

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

/* 实战干货配图为约 2.38:1 的长图，按原始比例完整呈现，不沿用首组的 16:9 裁切。 */
.news_cards--shop .news_card_media{
    aspect-ratio: 2.38 / 1;
}

.news_cards--shop .news_card_media img{
    object-fit: contain;
}

.news_card_content{
    min-height: 124px;
    padding: 27px 20px 19px;
    display: flex;
    flex-direction: column;
}

.news_card_content h2{
    color: rgba(255, 255, 255, 0.94);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5em;
}

.news_card_content time{
    margin-top: auto;
    padding-top: 10px;
    color: rgba(255, 255, 255, 0.46);
    font-family: Poppins, sans-serif;
    font-size: 14px;
    line-height: 1.4em;
}

@media (max-width: 1000px){
    .news_feed{
        padding: 140px 0 68px;
    }

    .news_feed_inner{
        width: 90vw;
    }

    .news_heading_copy h1{
        font-size: 38px;
    }

    .news_heading_copy p{
        font-size: 18px;
    }

    .news_cards{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px){
    .news_feed{
        min-height: 0;
        padding: 112px 0 60px;
    }

    .news_feed_inner{
        width: 90vw;
    }

    .news_feed_heading{
        display: block;
    }

    .news_heading_copy h1{
        font-size: 34px;
    }

    .news_heading_copy p{
        margin-top: 10px;
        font-size: 17px;
    }

    .news_more{
        width: 106px;
        height: 46px;
        margin-top: 28px;
        font-size: 15px;
    }

    .news_cards{
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 14px;
    }

    .news_cards_label{
        margin-top: 42px;
        font-size: 13px;
    }

    .news_card{
        border-radius: 14px;
    }

    .news_card_content{
        min-height: 116px;
        padding: 22px 18px 17px;
    }

    .news_card_content h2{
        font-size: 15px;
    }

    .news_card_content time{
        font-size: 13px;
    }
}
