.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* 移动端菜单样式 */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 82, 204, 0.95);
    z-index: 50;
    padding: 2rem;
}

.mobile-menu.active {
    display: block;
}

body.overflow-hidden {
    overflow: hidden;
}

/* 公告卡片样式 */
.announcement-card {
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.announcement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* 筛选标签样式 */
.filter-tag {
    transition: all 0.3s ease;
}

.filter-tag.active {
    background-color: #0052CC;
    color: white !important;
}

.filter-tag.active:hover {
    color: white !important;
}

/* 面包屑导航样式 */
.breadcrumb {
    color: #666;
}

.breadcrumb a {
    color: #0052CC;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #2684FF;
}

/* 公告类型标签样式 */
.announcement-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.announcement-tag.important {
    background-color: #fef2f2;
    color: #dc2626;
}

.announcement-tag.general {
    background-color: #dbeafe;
    color: #2563eb;
}

.announcement-tag.activity {
    background-color: #dcfce7;
    color: #16a34a;
}

.announcement-tag.policy {
    background-color: #fef3c7;
    color: #d97706;
}

/* 置顶标识 */
.pinned-badge {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pagination button {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    background: white;
    color: #374151;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination button:hover {
    background-color: #f3f4f6;
}

.pagination button.active {
    background-color: #0052CC;
    color: white;
    border-color: #0052CC;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 阅读量样式 */
.view-count {
    color: #6b7280;
    font-size: 14px;
}