.sun-box {
    position: relative;
    padding-bottom: 75px;
}

.sun-box .news-tab {
    margin-bottom: 25px;
    padding-bottom: 0;
}

.sun-box .news-tab a {
    padding: 15px 20px;
    font-size: 16px;
    margin-right: 5px;
}

.sun-box .news-list-ct {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    margin-top: -22px;
}

.sun-box .news-list-ct li {
    border-bottom: 1px dashed #e0e0e0;
    padding: 12px 0; /* 优化上下间隔 */
    transition: background-color 0.2s ease;
    -webkit-transition: background-color 0.2s ease;
    -moz-transition: background-color 0.2s ease;
}

.sun-box .news-list-ct li:hover {
    background-color: #f9f9f9;
}

.sun-box .news-list-ct li a {
    display: block;
    padding: 0;
    text-decoration: none;
    position: relative;
    height: 28px;
    line-height: 28px; /* 统一行高，保证 标签 / 标题 / 时间 垂直对齐 */
    padding-left: 6px;  /* 优化左右间隔 */
    padding-right: 6px; /* 优化左右间隔 */
}

.sun-box .news-list-ct li a .news-type-tag {
	float: left;
	margin-right: 12px; /* 标签与标题间隔 */
	margin-top: 4px; /* 20px 高标签在 28px 行高中居中 */
	border: 1px solid #7f98c7;
	color: #7f98c7;
	font-size: 12px;
	box-sizing: border-box;
	width: 36px;
	height: 20px;
	line-height: 18px;
	text-align: center;
}
.sun-box .news-list-ct li a .news-type-tag--event{
    border-color: #7f98c7;
    color: #7f98c7;
}

.sun-box .news-list-ct li a .news-type-tag--notice{
    border-color: #c58b6a;
    color: #c58b6a;
}
.sun-box .news-list-ct li a .news-type-tag--news{
    border-color: #6a86b6;
    color: #6a86b6;
}
.sun-box .news-list-ct li a .news-type-tag--latest{
    border-color: #7f98c7;
    color: #7f98c7;
}

/* 新闻标题样式优化 */
.sun-box .news-list-ct li a p {
    float: left;
    width: 72%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 15px;
    color: #333333;
    line-height: 28px;
}

/* 新闻日期样式优化 */
.sun-box .news-list-ct li a .news-date {
    float: right;
    font-size: 14px;
    color: #999999;
    line-height: 28px;
    margin-left: 15px;
	margin-right: 0;

    white-space: nowrap;
}

.sun-box .news-list-ct li a:hover .news-type-tag{
    opacity: 0.9;
}

/* 清除浮动 */
.sun-box .news-list-ct li a:after {
    content: "";
    display: table;
    clear: both;
}

/* ============================================
   分页组件
   ============================================ */
.pagination {
    text-align: center;
    padding: 10px 0 35px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.page-number {
    display: inline-block;
    zoom: 1;
    width: 32px;
    height: 32px;
    line-height: 30px;
    color: #444444;
    text-decoration: none;
    font-size: 14px;
    margin: 0 3px;
    text-align: center;
    vertical-align: middle;
    box-sizing: border-box;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

.page-number:hover {
    color: #ba231a;
    border-color: #ba231a;
    background-color: #fff5f3;
}

.page-number.active {
    border: 1px solid #ba231a;
    background-color: #ba231a;
    color: #ffffff;
    font-weight: bold;
}

.page-number.page-nav {
    width: auto;
    padding: 0 12px;
    min-width: 50px;
}

.page-number.disabled {
    cursor: not-allowed;
    opacity: 0.4;
    background-color: #f5f5f5;
}

.page-number.disabled:hover {
    color: #444444;
    border-color: #e0e0e0;
    background-color: #f5f5f5;
}

