/* 基础样式 */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    background: #272624;
    color: #ccc;
}

/* 容器样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* 新闻列表样式 */
#news-list {
    padding: 50px 0;
    background: #272624;
}

#news-list .title-block {
    text-align: center;
    margin-bottom: 40px;
}

#news-list .title-block h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

#news-list .title-block h2 {
    font-size: 32px;
    color: #e2617c;
    position: relative;
    display: inline-block;
}

#news-list .title-block h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background: #808080;
    margin: 10px auto 0;
}

/* 新闻卡片样式 */
.news-item {
    background-color: #1a1a1a;
    border: 1px solid #333;
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.news-item h3 {
    color: #e2617c;
    font-size: 20px;
    margin-bottom: 15px;
}

.news-item .news-date {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.news-item p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-item .read-more {
    display: inline-block;
    color: #e2617c;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid #e2617c;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.news-item .read-more:hover {
    background-color: #e2617c;
    color: #000;
}

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

.pagination a {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 5px;
    color: #ccc;
    text-decoration: none;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

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

/* 响应式设计 */
@media (max-width: 768px) {
    #news-list {
        padding: 30px 0;
    }
    
    #news-list .title-block h1 {
        font-size: 24px;
    }
    
    #news-list .title-block h2 {
        font-size: 18px;
    }
    
    .news-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .news-item h3 {
        font-size: 18px;
    }
    
    .container {
        padding: 0 1rem;
    }
}