/*
 * File: css/notice.css
 * Description: 公告页特有样式。
 */
.notice-header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}
.notice-list {
    padding: 40px 0;
}
.notice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
}
.notice-item:hover {
    background-color: var(--color-hover-bg);
}
.notice-item a {
    font-size: 16px;
    color: var(--color-text);
}
.notice-item span {
    color: var(--color-secondary);
    font-size: 14px;
}