/* 新闻卡片 — 可点击链接样式 */
.news-card {
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

    .news-card:hover .read-more {
        gap: 8px;
    }

        .news-card:hover .read-more i {
            transform: translateX(4px);
        }

.read-more i {
    transition: transform 0.2s;
}

.news-featured {
    cursor: pointer;
}

.news-list-item {
    cursor: pointer;
}

#black1:disabled {
    opacity: 0.4;
    cursor: not-allowed !important;
}

#next1:disabled {
    opacity: 0.4;
    cursor: not-allowed !important;
}
.news-list-content {
    position: relative !important;
}
    .news-list-content div {
        display: flex !important;
        justify-items: center !important;
        font-size:16px;
    }