/* 公告列表页特定样式 */
.notice-list {
    padding: 10px 0;
    list-style: none;
    margin: 0;
}

.notice-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
   
}

/* 添加圆点样式 */
.notice-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 12px;  /* 调整圆点位置，与标题第一行对齐 */
    font-size: 18px;
    line-height: 1;
    color: #333;
}

.notice-list li a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 5px;  /* 添加标题和日期之间的间距 */
    white-space: normal;  /* 允许换行 */
    word-break: break-word;  /* 长单词换行 */
}

.notice-content {
    display: flex;
    flex-direction: column;  /* 改为纵向排列 */
}

.notice-title {
    font-size: 16px;
    line-height: 1.6;
   
    white-space: normal;  /* 允许换行 */
    word-break: break-word;  /* 长单词换行 */
}

.notice-info {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #999;
}

.notice-time {
    color: #999;
    font-size: 12px;
   /* 增加与标题的间距 */
}

.notice-content::before {
    display: none;
}

.notice-content {
    position: relative;
    padding-left: 0;
}

.notice-content {
    padding: 0;
}

.loading {
    text-align: center;
    padding: 15px 0;
}

.loading span {
    color: #999;
    font-size: 14px;
}

/* 悬停效果 */
.notice-list li:hover a {
    color: #1E90FF;
}

.page-content {
    margin: 0 ;
}
.page-content .section {
    margin: 0;
}









