/* 主要内容区域 */
.news-main {
    padding-top: 80px;
}

/* Banner样式 */
.news-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../images/news-banner.jpg') no-repeat center;
    background-size: cover;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.banner-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 18px;
    opacity: 0.9;
}

/* 新闻内容区域 */
.news-content {
    padding: 60px 0;
    background: #f5f5f5;
}

.news-wrapper {
    display: flex;
    gap: 40px;
}

/* 新闻列表样式 */
.news-list {
    flex: 1;
    margin-left: 20px;
}

.news-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    transition: transform 0.3s ease;
}

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

.news-image {
    flex: 0 0 300px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-info {
    flex: 1;
    padding: 25px;
}

.news-meta {
    margin-bottom: 15px;
}

.news-category {
    color: #b38d54;
    font-size: 14px;
    margin-right: 15px;
}

.news-date {
    color: #999;
    font-size: 14px;
}

.news-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.news-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #b38d54;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.read-more .arrow {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover .arrow {
    transform: translateX(5px);
}

/* 侧边栏样式 */
.news-sidebar {
    flex: 0 0 300px;
}

.sidebar-widget {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-right: 20px;
}

.widget-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: #666;
    text-decoration: none;
    display: block;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s;
}

.category-list a:hover,
.category-list a.active {
    background: #b38d54;
    color: white;
}

.hot-articles {
    list-style: none;
    padding: 0;
}

.hot-articles li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.hot-articles li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.rank {
    width: 24px;
    height: 24px;
    background: #b38d54;
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.hot-articles a {
    flex: 1;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s;
}

.hot-articles a:hover {
    color: #b38d54;
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a {
    text-decoration: none;
    color: #666;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s;
}

.pagination .page-num {
    background: white;
}

.pagination .page-num.active {
    background: #b38d54;
    color: white;
}

.pagination a:hover:not(.active) {
    background: rgba(179, 141, 84, 0.1);
}

.page-dots {
    color: #666;
    padding: 8px 15px;
}

/* 响应式布局 */
@media (max-width: 1200px) {
    .news-image {
        flex: 0 0 250px;
    }
}

@media (max-width: 992px) {
    .news-wrapper {
        flex-direction: column;
    }

    .news-sidebar {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
    }

    .news-image {
        height: 200px;
    }

    .pagination {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .news-banner {
        padding: 40px 0;
    }

    .banner-content h1 {
        font-size: 28px;
    }

    .news-title {
        font-size: 18px;
    }
} 
.news-breadcrumb {
    margin: 20px 0 10px 0;
    font-size: 16px;
    color: #666;
  }
  .news-breadcrumb .arrow {
    margin: 0 8px;
    color: #bbb;
  }
  .news-breadcrumb a {
    color: #0072c6;
    text-decoration: none;
  }
  .news-breadcrumb a.active {
    color: #222;
    font-weight: bold;
  }
  .news-section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
  }
  .news-list-table {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .news-list-table li {
    display: flex;
    justify-content: space-between;
    align-items: left;
    border-bottom: 1px solid #eee;
    padding: 14px 0;
    font-size: 18px;
  }
  .news-list-table li a {
    color: #222;
    text-decoration: none;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .news-list-table li .date, .news-list-table li span.date {
    color: #999;
    font-size: 16px;
    margin-left: 16px;
    flex-shrink: 0;
  }
  .news-breadcrumb {
    margin: 20px 0 10px 0;
    font-size: 16px;
    color: #666;
  }
  .news-breadcrumb .arrow {
    margin: 0 8px;
    color: #bbb;
  }
  .news-breadcrumb a {
    color: #0072c6;
    text-decoration: none;
  }
  .news-breadcrumb a.active {
    color: #222;
    font-weight: bold;
  }
  .news-section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
  }
  .news-list-table {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .news-list-table li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 14px 0;
    font-size: 18px;
  }
  .news-list-table li a {
    color: #222;
    text-decoration: none;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .news-list-table li .date, .news-list-table li span.date {
    color: #999;
    font-size: 16px;
    margin-left: 16px;
    flex-shrink: 0;
  }
  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 24px 0;
  }
  .pagination a, .pagination span {
    margin: 0 4px;
    padding: 6px 12px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #eee;
    cursor: pointer;
  }
  .pagination a.active {
    background: #1976d2;
    color: #fff;
    border-color: #1976d2;
  }
  .pagination .page-dots {
    border: none;
    background: none;
    color: #bbb;
    cursor: default;
  }