/* 新闻资讯列表专用样式 */

.hjk-news-page {
    --news-ink: #172631;
    --news-muted: #68757e;
    --news-line: rgba(29, 47, 59, 0.12);
    --news-surface: #fff;
    --news-soft: #f4f7f8;
    --news-dark: #11212b;
    --news-accent: #e58a1f;
    --news-accent-dark: #b9650b;
    --news-accent-soft: #fff1df;
    overflow: clip;
    color: var(--news-ink);
}

/* =====================================================
   动态科技 Banner
===================================================== */

.hjk-news-hero {
    position: relative;
    isolation: isolate;
    min-height: 540px;
    overflow: hidden;
    padding: 34px 0 48px;
    background: #10202a;
    color: #fff;
}

.hjk-news-hero-background {
    position: absolute;
    z-index: -3;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hjk-news-hero-background > img {
    position: absolute;
    inset: -4%;
    width: 108%;
    height: 108%;
    object-fit: cover;
    object-position: center;
    filter: brightness(.64) saturate(.9) contrast(1.08);
    transform: scale(1.04) translate3d(0, 0, 0);
    animation: newsHeroImageMove 16s ease-in-out infinite alternate;
}

.hjk-news-hero-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(8, 20, 29, .98) 0%,
            rgba(9, 24, 34, .92) 38%,
            rgba(11, 28, 39, .63) 70%,
            rgba(8, 21, 30, .84) 100%),
        linear-gradient(180deg,
            rgba(7, 18, 26, .16),
            rgba(7, 18, 26, .46));
}

.hjk-news-hero-grid {
    position: absolute;
    z-index: 2;
    inset: 0;
    opacity: .16;
    background-image:
        linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px);
    background-size: 74px 74px;
    -webkit-mask-image: linear-gradient(90deg, #000, rgba(0,0,0,.65) 58%, transparent 92%);
    mask-image: linear-gradient(90deg, #000, rgba(0,0,0,.65) 58%, transparent 92%);
    animation: newsGridMove 20s linear infinite;
}

.hjk-news-hero-scan {
    position: absolute;
    z-index: 3;
    top: -35%;
    left: -30%;
    width: 20%;
    height: 170%;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(255,179,91,.46), transparent);
    filter: blur(14px);
    transform: rotate(14deg);
    animation: newsScanMove 9s ease-in-out infinite;
}

.hjk-news-hero-orbit {
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(229,138,31,.24);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229,138,31,.1), transparent 68%);
}

.hjk-news-hero-orbit.orbit-one {
    top: -160px;
    right: 3%;
    width: 440px;
    height: 440px;
    box-shadow:
        0 0 0 60px rgba(255,255,255,.018),
        0 0 0 120px rgba(255,255,255,.012);
    animation: newsOrbitFloat 9s ease-in-out infinite;
}

.hjk-news-hero-orbit.orbit-two {
    right: 35%;
    bottom: -210px;
    width: 330px;
    height: 330px;
    animation: newsOrbitFloat 11s ease-in-out infinite reverse;
}

.hjk-news-hero > .container {
    position: relative;
    z-index: 5;
}

.hjk-news-breadcrumb {
    margin: 0 0 22px;
}

.hjk-news-breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: rgba(255,255,255,.62);
    font-size: 13px;
}

.hjk-news-breadcrumb a {
    color: rgba(255,255,255,.82);
    text-decoration: none;
}

.hjk-news-breadcrumb a:hover {
    color: #f2aa53;
}

.hjk-news-hero-content {
    max-width: 850px;
}

.hjk-news-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 37px;
    margin-bottom: 17px;
    padding: 8px 14px;
    border: 1px solid rgba(255,177,84,.34);
    border-radius: 999px;
    background: rgba(229,138,31,.1);
    color: #f4ad58;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    backdrop-filter: blur(10px);
}

.hjk-news-hero h1 {
    max-width: 950px;
    margin: 0;
    color: #fff;
    font-size: clamp(46px, 6vw, 80px);
    font-weight: 860;
    line-height: 1.02;
    letter-spacing: -.045em;
    text-shadow: 0 12px 35px rgba(0,0,0,.24);
}

.hjk-news-hero h1 span {
    display: block;
    margin-top: 14px;
    color: #f0a64b;
    font-size: .47em;
    font-weight: 780;
    line-height: 1.35;
    letter-spacing: -.02em;
}

.hjk-news-hero-content > p {
    max-width: 790px;
    margin: 21px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 16px;
    line-height: 1.85;
}

.hjk-news-hero-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 23px;
}

.hjk-news-hero-topics span {
    display: inline-flex;
    min-height: 37px;
    align-items: center;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.84);
    font-size: 12px;
    font-weight: 650;
    backdrop-filter: blur(10px);
    transition: border-color .25s ease, background-color .25s ease, transform .25s ease;
}

.hjk-news-hero-topics span:hover {
    border-color: rgba(240,166,75,.42);
    background: rgba(229,138,31,.14);
    transform: translateY(-3px);
}

.hjk-news-hero-stats {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 19px;
    background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.045));
    box-shadow: 0 25px 60px rgba(0,0,0,.23);
    backdrop-filter: blur(18px);
}

.hjk-news-hero-stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, #e58a1f, transparent);
}

.hjk-news-hero-stats > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    padding: 16px 22px;
}

.hjk-news-hero-stats > div + div {
    border-top: 1px solid rgba(255,255,255,.1);
}

.hjk-news-hero-stats strong {
    color: #fff;
    font-size: 30px;
    font-weight: 820;
}

.hjk-news-hero-stats span {
    color: rgba(255,255,255,.62);
    font-size: 12px;
    font-weight: 600;
}

.hjk-news-hero-bottom {
    display: grid;
    grid-template-columns: minmax(45px,145px) auto 30px;
    gap: 13px;
    align-items: center;
    margin-top: 27px;
    color: rgba(255,255,255,.42);
}

.hjk-news-hero-bottom > span {
    height: 1px;
    background: linear-gradient(90deg, #e58a1f, transparent);
}

.hjk-news-hero-bottom small {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
}

.hjk-news-hero-bottom i {
    color: #f0a64b;
    animation: newsArrowMove 1.7s ease-in-out infinite;
}

/* =====================================================
   分类导航
===================================================== */

.hjk-news-category-bar {
    position: sticky;
    top: 88px;
    z-index: 900;
    border-bottom: 1px solid var(--news-line);
    background: rgba(255,255,255,.94);
    box-shadow: 0 12px 30px rgba(21,36,47,.06);
    backdrop-filter: blur(16px);
}

.admin-bar .hjk-news-category-bar {
    top: 120px;
}

.hjk-news-category-scroll {
    display: flex;
    gap: 10px;
    padding: 14px 2px;
    overflow-x: auto;
    scrollbar-width: none;
}

.hjk-news-category-scroll::-webkit-scrollbar {
    display: none;
}

.hjk-news-category-scroll a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid var(--news-line);
    border-radius: 999px;
    background: #fff;
    color: var(--news-ink);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: color .25s ease, border-color .25s ease, background-color .25s ease, transform .25s ease;
}

.hjk-news-category-scroll a span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 23px;
    height: 23px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--news-soft);
    color: var(--news-muted);
    font-size: 11px;
}

.hjk-news-category-scroll a:hover,
.hjk-news-category-scroll a.is-active {
    border-color: rgba(229,138,31,.4);
    background: var(--news-accent-soft);
    color: var(--news-accent-dark);
    transform: translateY(-1px);
}

/* =====================================================
   新闻目录与标题
===================================================== */

.hjk-news-catalog {
    position: relative;
    padding: clamp(70px, 8vw, 110px) 0;
    background:
        linear-gradient(rgba(31,48,59,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31,48,59,.035) 1px, transparent 1px),
        radial-gradient(circle at 8% 10%, rgba(229,138,31,.09), transparent 26%),
        #f4f7f8;
    background-size: 72px 72px, 72px 72px, auto, auto;
}

.hjk-news-catalog-heading {
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(300px,.8fr);
    gap: 40px;
    align-items: center;
    margin-bottom: 32px;
}

.hjk-news-catalog-heading > div > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    color: var(--news-accent-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
}

.hjk-news-catalog-heading h2 {
    margin: 0;
    color: var(--news-ink);
    font-size: clamp(32px,4vw,50px);
    font-weight: 830;
    line-height: 1.14;
    letter-spacing: -.035em;
}

.hjk-news-catalog-heading h2 strong {
    color: var(--news-accent-dark);
    font-weight: inherit;
}

.hjk-news-catalog-heading > p {
    max-width: 560px;
    justify-self: end;
    margin: 0;
    padding-left: 25px;
    border-left: 2px solid rgba(229,138,31,.36);
    color: var(--news-muted);
    font-size: 16px;
    line-height: 1.85;
}

/* =====================================================
   列表摘要与卡片
===================================================== */

.hjk-news-list-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding: 13px 16px;
    border: 1px solid rgba(33,52,64,.1);
    border-radius: 13px;
    background: linear-gradient(90deg, rgba(229,138,31,.08), rgba(255,255,255,.86) 28%, rgba(255,255,255,.86));
    color: #69767e;
    font-size: 12px;
    box-shadow: 0 8px 24px rgba(20,36,47,.045);
}

.hjk-news-list-summary span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hjk-news-list-summary i {
    color: var(--news-accent);
}

.hjk-news-list-summary strong {
    color: var(--news-ink);
    font-size: 13px;
}

.hjk-news-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 22px;
}

.hjk-news-grid-item {
    display: flex;
    min-width: 0;
}

.hjk-news-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--news-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 13px 36px rgba(21,36,47,.075);
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .3s ease;
}

.hjk-news-card::before {
    content: "";
    position: absolute;
    z-index: 4;
    top: 0;
    left: 16px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--news-accent), #f2bd7a);
    transition: width .45s ease;
}

.hjk-news-card:hover {
    border-color: rgba(229,138,31,.38);
    box-shadow: 0 24px 52px rgba(21,36,47,.14);
    transform: translateY(-7px);
}

.hjk-news-card:hover::before {
    width: calc(100% - 32px);
}

.hjk-news-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    margin: 0;
    overflow: hidden;
    background: #dfe6e9;
}

.hjk-news-card-media::before {
    content: "";
    position: absolute;
    z-index: 3;
    top: -30%;
    left: -60%;
    width: 38%;
    height: 160%;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
    transform: rotate(14deg);
    transition: left .72s ease;
}

.hjk-news-card:hover .hjk-news-card-media::before {
    left: 130%;
}

.hjk-news-card-media > a {
    display: block;
    width: 100%;
    height: 100%;
}

.hjk-news-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}

.hjk-news-card:hover .hjk-news-card-media img {
    transform: scale(1.055);
    filter: saturate(1.06) contrast(1.02);
}

.hjk-news-card-category {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    max-width: calc(100% - 100px);
    overflow: hidden;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(15,31,41,.76);
    color: #fff;
    font-size: 11px;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
    backdrop-filter: blur(9px);
}

.hjk-news-card-date {
    position: absolute;
    z-index: 2;
    right: 14px;
    bottom: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 58px;
    padding: 8px 9px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    background: rgba(15,31,41,.72);
    color: #fff;
    backdrop-filter: blur(10px);
}

.hjk-news-card-date strong {
    font-size: 20px;
    line-height: 1;
}

.hjk-news-card-date span {
    margin-top: 3px;
    color: rgba(255,255,255,.68);
    font-size: 9px;
}

.hjk-news-card-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 20px;
}

.hjk-news-card-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 12px;
    margin-bottom: 11px;
    color: var(--news-muted);
    font-size: 10px;
}

.hjk-news-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hjk-news-card-meta i {
    color: var(--news-accent-dark);
}

.hjk-news-card h3 {
    min-height: 54px;
    margin: 0;
    font-size: 19px;
    font-weight: 780;
    line-height: 1.42;
}

.hjk-news-card h3 a {
    display: -webkit-box;
    overflow: hidden;
    color: var(--news-ink);
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.hjk-news-card h3 a:hover {
    color: var(--news-accent-dark);
}

.hjk-news-card-content > p {
    display: -webkit-box;
    min-height: 66px;
    overflow: hidden;
    margin: 11px 0 0;
    color: var(--news-muted);
    font-size: 13px;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.hjk-news-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 17px;
    color: var(--news-ink);
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.hjk-news-card-link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--news-accent-soft);
    color: var(--news-accent-dark);
    transition: color .25s ease, background-color .25s ease, transform .25s ease;
}

.hjk-news-card:hover .hjk-news-card-link i {
    background: var(--news-accent);
    color: #fff;
    transform: translateX(4px);
}

/* =====================================================
   分页、空状态与 CTA
===================================================== */

.hjk-news-pagination {
    margin-top: 50px;
    text-align: center;
}

.hjk-news-pagination ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hjk-news-pagination a,
.hjk-news-pagination li > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 46px;
    height: 46px;
    padding: 0 14px;
    border: 1px solid var(--news-line);
    border-radius: 13px;
    background: #fff;
    color: var(--news-ink);
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(22,38,49,.05);
    transition: color .22s ease, border-color .22s ease, background-color .22s ease, transform .22s ease;
}

.hjk-news-pagination a:hover {
    border-color: rgba(229,138,31,.42);
    background: var(--news-accent-soft);
    color: var(--news-accent-dark);
    transform: translateY(-2px);
}

.hjk-news-pagination .current {
    border-color: var(--news-accent);
    background: var(--news-accent);
    color: #fff;
    box-shadow: 0 12px 28px rgba(229,138,31,.22);
}

.hjk-news-pagination .dots {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

.hjk-news-pagination .is-disabled > span {
    opacity: .42;
    cursor: not-allowed;
}

.hjk-news-pagination > p {
    margin: 17px 0 0;
    color: var(--news-muted);
    font-size: 13px;
}

.hjk-news-empty {
    padding: 80px 24px;
    border: 1px dashed rgba(24,42,53,.2);
    border-radius: 24px;
    background: #fff;
    text-align: center;
}

.hjk-news-empty > i {
    margin-bottom: 18px;
    color: var(--news-accent);
    font-size: 48px;
}

.hjk-news-empty h2 {
    margin: 0;
    font-size: 27px;
}

.hjk-news-empty p {
    margin: 12px auto 24px;
    color: var(--news-muted);
}

.hjk-news-empty a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    padding: 10px 20px;
    border-radius: 12px;
    background: var(--news-accent);
    color: #fff;
    font-weight: 750;
    text-decoration: none;
}

.hjk-news-cta {
    padding: 0 0 clamp(72px,8vw,110px);
    background: #f4f7f8;
}

.hjk-news-cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    padding: clamp(32px,5vw,58px);
    border-radius: 26px;
    background:
        radial-gradient(circle at 90% 20%, rgba(229,138,31,.28), transparent 31%),
        linear-gradient(125deg, #14232d, #243945);
    color: #fff;
    box-shadow: 0 28px 70px rgba(19,34,44,.2);
}

.hjk-news-cta-inner > div {
    max-width: 760px;
}

.hjk-news-cta-inner > div > span {
    display: block;
    margin-bottom: 8px;
    color: #f3ad58;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
}

.hjk-news-cta h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px,3.8vw,44px);
    font-weight: 820;
}

.hjk-news-cta p {
    margin: 14px 0 0;
    color: rgba(255,255,255,.68);
    line-height: 1.8;
}

.hjk-news-cta-inner > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    flex: 0 0 auto;
    min-height: 54px;
    padding: 12px 23px;
    border-radius: 13px;
    background: var(--news-accent);
    color: #fff;
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(229,138,31,.25);
    transition: transform .25s ease, background-color .25s ease;
}

.hjk-news-cta-inner > a:hover {
    background: #c86f12;
    color: #fff;
    transform: translateY(-3px);
}

/* =====================================================
   动画
===================================================== */

@keyframes newsHeroImageMove {
    0% { transform: scale(1.04) translate3d(0,0,0); }
    100% { transform: scale(1.1) translate3d(-1.6%,-.8%,0); }
}

@keyframes newsGridMove {
    from { background-position: 0 0, 0 0; }
    to { background-position: 74px 74px, 74px 74px; }
}

@keyframes newsScanMove {
    0%, 22% { left: -30%; opacity: 0; }
    45% { opacity: .3; }
    76%, 100% { left: 125%; opacity: 0; }
}

@keyframes newsOrbitFloat {
    0%, 100% { transform: translate3d(0,0,0) scale(1); }
    50% { transform: translate3d(0,16px,0) scale(1.04); }
}

@keyframes newsArrowMove {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* =====================================================
   响应式
===================================================== */

@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {
    .hjk-news-hero {
        min-height: auto;
        padding: 30px 0 45px;
    }

    .hjk-news-hero-stats {
        grid-template-columns: repeat(3,1fr);
        margin-top: 10px;
    }

    .hjk-news-hero-stats > div {
        display: block;
        min-height: auto;
        padding: 17px 10px;
        text-align: center;
    }

    .hjk-news-hero-stats > div + div {
        border-top: 0;
        border-left: 1px solid rgba(255,255,255,.1);
    }

    .hjk-news-category-bar { top: 72px; }
    .admin-bar .hjk-news-category-bar { top: 104px; }

    .hjk-news-catalog-heading {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hjk-news-catalog-heading > p {
        justify-self: start;
        max-width: 760px;
        padding-left: 18px;
    }

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

    .hjk-news-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 782px) {
    .admin-bar .hjk-news-category-bar { top: 118px; }
}

@media (max-width: 575.98px) {
    .hjk-news-hero {
        padding: 24px 0 38px;
    }

    .hjk-news-hero h1 {
        font-size: 41px;
    }

    .hjk-news-hero-content > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .hjk-news-hero-stats {
        grid-template-columns: 1fr;
    }

    .hjk-news-hero-stats > div {
        display: flex;
        min-height: 61px;
        padding: 11px 15px;
        text-align: left;
    }

    .hjk-news-hero-stats > div + div {
        border-top: 1px solid rgba(255,255,255,.1);
        border-left: 0;
    }

    .hjk-news-category-bar { top: 64px; }
    .admin-bar .hjk-news-category-bar { top: 110px; }

    .hjk-news-category-scroll {
        padding-block: 11px;
    }

    .hjk-news-category-scroll a {
        min-height: 40px;
        padding: 8px 13px;
        font-size: 13px;
    }

    .hjk-news-catalog {
        padding: 60px 0;
    }

    .hjk-news-list-summary {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .hjk-news-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .hjk-news-card h3,
    .hjk-news-card-content > p {
        min-height: 0;
    }

    .hjk-news-pagination a,
    .hjk-news-pagination li > span {
        min-width: 42px;
        height: 42px;
        padding: 0 11px;
        border-radius: 11px;
    }

    .hjk-news-pagination li:first-child span span,
    .hjk-news-pagination li:first-child a span,
    .hjk-news-pagination li:last-child span span,
    .hjk-news-pagination li:last-child a span {
        display: none;
    }

    .hjk-news-cta-inner {
        padding: 28px 21px;
        border-radius: 20px;
    }

    .hjk-news-cta-inner > a {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hjk-news-page *,
    .hjk-news-page *::before,
    .hjk-news-page *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}


/* =====================================================
   统一新闻卡片展示
   已移除焦点新闻大图
===================================================== */

.hjk-news-grid {
    align-items: stretch;
}

.hjk-news-grid-item {
    display: flex;
}

.hjk-news-card {
    width: 100%;
}

.hjk-news-card-recommend {
    position: absolute;
    z-index: 3;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: var(--news-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 750;
    box-shadow: 0 9px 22px rgba(229, 138, 31, 0.26);
    backdrop-filter: blur(9px);
}

.hjk-news-card-recommend i {
    font-size: 9px;
}

.hjk-news-card-category {
    max-width: calc(100% - 105px);
}

.hjk-news-card-content {
    min-height: 265px;
}

@media (max-width: 575.98px) {
    .hjk-news-card-content {
        min-height: 0;
    }
}
