/* 新闻中心大图banner */
.news-banner {
    height: 50vh;
    min-height: 400px;
    background-image: url('../images/news/news-banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.news-banner h1 {
    color: #fff;
    font-size: 48px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* 新闻列表部分 */
.news-list-section {
    background: #1a1a1a;
    padding: 60px 0;
}

.news-list {
    max-width: 1200px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    background: #262626;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 8px;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-thumbnail {
    width: 20%;
    overflow: hidden;
    margin-right: 30px;
}

.news-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    width: calc(80% - 30px);
    padding: 0;
}

.news-title {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.news-item:hover .news-title {
    color: #C6A57E;
}

.news-meta {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.news-preview {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #C6A57E;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.read-more:hover {
    opacity: 0.8;
}

/* 分页导航 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.page-numbers {
    display: flex;
    align-items: center;
}

.pagination a {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    margin: 0 5px;
    border: 1px solid #444;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.pagination a:hover,
.pagination a.active {
    background: #C6A57E;
    border-color: #C6A57E;
}

.pagination span {
    color: #fff;
    margin: 0 5px;
}

/* 新闻详情页样式 */
.news-detail-section {
    background: #1a1a1a;
    padding: 0;
    margin: 0;
    width: 100%;
    color: #fff;
}

.news-detail {
    background: #262626;
    padding: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 8px;
}

.news-detail .news-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
}

.news-detail .news-meta {
    margin-bottom: 30px;
    color: #888;
}

.news-detail .news-meta span {
    margin-right: 20px;
}

.news-detail .news-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    margin-bottom: 30px;
    border-radius: 8px;
}

.news-detail .news-text {
    line-height: 1.8;
    font-size: 16px;
    color: #fff;
}

/* 确保新闻详情内容中的图片宽度适应文章宽度 */
.news-detail .news-text img {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 10px 0;
    display: block;
    border-radius: 8px;
}

.news-navigation {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    display: flex;
    justify-content: space-between;
}

.news-navigation a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-navigation a:hover {
    color: #C6A57E;
}