/* 新闻链接样式 */
a.news-link {
    text-decoration: none;
    color: inherit;
}

a.news-link:hover .news_title {
    color: #de7a26;
}

/* 新闻内容容器 */
.news-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 新闻卡片 */
.news-cell {
    display: flex;
    gap: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    align-items: center;
    width: 100%;
    min-height: 120px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.news-cell:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 图片容器 */
.news_img {
    width: 200px;
    min-width: 200px;
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px 0 0 8px;
}

.news_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 文字容器 */
.news_text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 20px;
    min-width: 0;
}

/* 标题 */
.news_title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

/* 时间 */
.news_time {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}

/* 简介 */
.news_brief {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 分页容器 */
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

/* 分页按钮 */
.news-prev-btn,
.news-next-btn {
    padding: 8px 24px;
    background: #fff;
    border: 1px solid #de7a26;
    border-radius: 20px;
    color: #de7a26;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.news-prev-btn:hover:not(:disabled),
.news-next-btn:hover:not(:disabled) {
    background: #de7a26;
    color: #fff;
}

.news-prev-btn:disabled,
.news-next-btn:disabled {
    background: #f5f5f5;
    border-color: #ddd;
    color: #bbb;
    cursor: not-allowed;
}

/* 页码信息 */
#pageInfo {
    font-size: 14px;
    color: #333;
    white-space: nowrap;
}
