/* 页面特定样式 */
.page-content {
    width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    min-height: 800px;
}

.page-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
}

.page-title:after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #1890ff;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.news-list {
    display: flex;
    flex-direction: column;
}

.news-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.news-item-content {
    flex: 1;
}

.news-item-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.news-item-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.news-item-date {
    width: 100px;
    color: #999;
    text-align: right;
}

.pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.page-btn {
    padding: 5px 12px;
    border: 1px solid #ddd;
    margin: 0 5px;
    cursor: pointer;
    background: #fff;
}

.page-btn.active {
    background: #1890ff;
    color: #fff;
    border-color: #1890ff;
}