/* 页面标题 */
.page-title {
    margin-top: 80px;
    padding: 40px 0;
    background: #f8f8f8;
    text-align: center;
}

.page-title h2 {
    font-size: 36px;
    color: #333;
}

/* 新闻内容 */
.news-content {
    padding: 60px 0;
}

.news-wrapper {
    display: flex;
    gap: 40px;
}

/* 新闻列表 */
.news-list {
    flex: 3;
}

.news-item {
    display: flex;
    gap: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.news-image {
    flex: 1;
}

.news-image img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.news-info {
    flex: 2;
    padding: 20px;
}

.news-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.meta {
    margin-bottom: 15px;
    color: #999;
    font-size: 14px;
}

.meta span {
    margin-right: 20px;
}

.summary {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    color: #FF6B6B;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

/* 侧边栏 */
.sidebar {
    flex: 1;
}

.widget {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF6B6B;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin: 10px 0;
}

.category-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.category-list a:hover {
    color: #FF6B6B;
}

.hot-articles {
    list-style: none;
}

.hot-articles li {
    margin: 15px 0;
}

.hot-articles a {
    color: #666;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.hot-articles a:hover {
    color: #FF6B6B;
}

.views {
    color: #999;
    font-size: 12px;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a {
    display: inline-block;
    padding: 8px 16px;
    background: #fff;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination a.active {
    background: #FF6B6B;
    color: #fff;
}

/* 通用样式 */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
} 