/* 公告页面独立样式 - notice_style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif;
}
body {
    background: #f5f5f5;
    padding: 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
}
.sidebar {
    width: 280px;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.main-content {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.sidebar-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.notice-list-item {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}
.notice-list-item a {
    color: #333;
    text-decoration: none;
    display: block;
}
.notice-list-item a:hover {
    color: #007bff;
}
.notice-list-item .date {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}
.notice-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.notice-meta {
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}
.notice-content {
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}
.empty-tip {
    text-align: center;
    padding: 50px 0;
    color: #999;
    font-size: 16px;
}
/* 高亮关键词样式 */
.notice-content strong, 
.notice-title strong,
.notice-list-item strong {
    color: #10b981;
    font-weight: bold;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
    }
}