﻿ .news-item {
            padding: 25px;
            border-bottom: 1px solid #e0e0e0;
            margin-bottom: 20px;
            display: flex; 
            gap: 20px; 
            align-items: flex-start; 
            background-color: #fafafa;
            border-radius: 6px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        .news-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }        
        .news-content {
            flex: 1; 
            padding: 5px 0;
        }
        .news-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eee;
            color: #222;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }        
        .news-actions {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .edit-btn {
            padding: 3px 8px;
            background-color: #17a2b8;
            color: white;
            border-radius: 3px;
            text-decoration: none;
            font-size: 12px;
            border: 1px solid #17a2b8;
            transition: all 0.3s;
        }
        .edit-btn:hover {
            background-color: #138496;
        }
        .delete-btn {
            padding: 3px 8px;
            background-color: #dc3545;
            color: white;
            border-radius: 3px;
            text-decoration: none;
            font-size: 12px;
            border: 1px solid #dc3545;
            transition: all 0.3s;
        }
        .delete-btn:hover {
            background-color: #c82333;
        }
            .status-tag {
            font-size: 12px;
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: normal;
            margin-right: 10px;
        }
        .status-unpublished {
            background-color: #fff3cd;
            color: #856404;
            border: 1px solid #ffeeba;
        }
        
        .news-title a.main-link {
            color: #0066cc;
            text-decoration: none;
            transition: all 0.3s;
            flex: 1;
            margin-right: 10px;
        }
        .news-title a.main-link:hover {
            color: #004999;
            text-decoration: underline;
            text-shadow: 0 0 1px rgba(0,102,204,0.3);
        }
        .news-zhaiyao {
            color: #444;
            line-height: 1.8;
            margin-bottom: 10px;
            white-space: normal;
            font-size: 15px;
            padding: 10px;
            background-color: #fff;
            border-left: 3px solid #007bff;
            border-radius: 0 4px 4px 0;
            box-shadow: 0 1px 2px rgba(0,0,0,0.03);
        }
        .news-date {
            font-size: 13px;
            color: #888;
            font-weight: 500;
            padding: 5px 0;
            display: flex;
            align-items: center;
            gap: 15px;
        }
       		
.pagination {
    margin-top: 30px;
    text-align: center;
    padding: 0;
    list-style: none; /* 清除li默认样式 */
}

.pagination li {
    display: inline-block; /* 让li横向排列 */
}

.pagination a {
    display: inline-block;
    padding: 10px 18px; /* 增大内边距，更易点击 */
    margin: 0 4px; /* 微调间距 */
    border: 1px solid #e1e5e9; /* 更柔和的边框色 */
    border-radius: 6px; /* 圆角更圆润 */
    color: #2c6ecb; /* 主色调更沉稳 */
    text-decoration: none;
    transition: all 0.2s ease; /* 过渡更顺滑 */
    font-size: 14px;
    font-weight: 500;
    background-color: #ffffff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05); /* 轻微阴影增加层次感 */
}

/* 悬浮效果 */
.pagination a:hover {
    background-color: #2c6ecb;
    color: white;
    border-color: #2c6ecb;
    box-shadow: 0 2px 8px rgba(44, 110, 203, 0.25); /* 悬浮阴影增强 */
    transform: translateY(-1px); /* 轻微上移，提升交互感 */
}

/* 激活状态（当前页） */
.pagination .active a {
    background-color: #2c6ecb;
    color: white;
    border-color: #2c6ecb;
    box-shadow: 0 2px 8px rgba(44, 110, 203, 0.3);
    cursor: default; /* 禁用指针 */
}

/* 禁用状态（可选，比如首页/上一页在第一页时） */
.pagination a.disabled {
    color: #adb5bd;
    border-color: #e9ecef;
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.pagination a.disabled:hover {
    background-color: #f8f9fa;
    color: #adb5bd;
    border-color: #e9ecef;
    transform: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
		
		
		
		
		
		
		
		