/* notice.css - 更新公告页面专属样式 */
.hero {
    text-align: center;
    padding: 48px 0 30px;
}
.big-logo-img {
    max-width: 90%;
    height: auto;
    max-height: 150px;
    margin-bottom: 20px;
}
.notice-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    margin: 20px 0 60px;
}
.notice-article {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(4px);
    border-radius: 48px;
    padding: 40px 42px;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
}
.notice-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2A241F;
    margin-bottom: 12px;
}
.notice-meta {
    color: #B56A3C;
    font-size: 0.85rem;
    margin-bottom: 28px;
    border-bottom: 1px solid #E0CFBC;
    padding-bottom: 16px;
}
.notice-content h2 {
    font-size: 1.6rem;
    margin: 28px 0 14px;
    color: #2C241E;
    border-left: 4px solid #E76F42;
    padding-left: 16px;
}
.notice-content p {
    margin-bottom: 16px;
    color: #2C241E;
}
.notice-content .highlight {
    background: rgba(230, 210, 180, 0.4);
    border-left: 3px solid #E76F42;
    padding: 12px 20px;
    border-radius: 20px;
    margin: 20px 0;
}
.history-sidebar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border-radius: 48px;
    padding: 32px 28px;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
    align-self: start;
}
.history-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2A241F;
    margin-bottom: 20px;
    border-left: 4px solid #E76F42;
    padding-left: 16px;
}
.history-list {
    list-style: none;
}
.history-item-placeholder {
    padding: 20px 0;
    text-align: center;
    color: #8B7355;
    font-size: 0.9rem;
}
.placeholder-text {
    background: rgba(230, 210, 180, 0.3);
    padding: 16px;
    border-radius: 28px;
}
@media (max-width: 1000px) {
    .notice-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .history-sidebar {
        order: 2;
    }
}
@media (max-width: 700px) {
    .notice-article {
        padding: 28px 20px;
    }
    .notice-title {
        font-size: 1.6rem;
    }
    .history-sidebar {
        padding: 24px 20px;
    }
}