/* 译界资讯内页专用样式，模仿 AFCA 内页风格 */

body.news-page {
    margin: 0;
    font-family: 'Microsoft YaHei', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f7fb;
    color: #111827;
}

/* 侧边菜单与遮罩 */
.side-menu {
    position: fixed;
    top: 56px; /* 与顶部标题条高度一致，避免遮住蓝色条 */
    left: 0;
    width: 70%;
    max-width: 260px;
    height: calc(100vh - 56px);
    background: #ffffff;
    box-shadow: 2px 0 12px rgba(15, 23, 42, 0.25);
    transform: translateX(-100%);
    transition: transform 0.25s ease-out;
    z-index: 950;
}

.side-menu-nav {
    padding-top: 56px; /* 留出顶部标题条高度 */
    display: flex;
    flex-direction: column;
}

.side-menu-item {
    padding: 10px 16px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.95rem;
    color: #111827;
    text-decoration: none;
}

.side-menu-item:hover {
    background: #f3f4f6;
}

.side-menu-item.active {
    background: #eff6ff;
    color: #2563eb;
}

.menu-overlay {
    position: fixed;
    top: 56px; /* 从蓝色条下方开始遮罩 */
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-out;
    z-index: 940;
}

.news-page.menu-open .side-menu {
    transform: translateX(0);
}

.news-page.menu-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

.page-header {
    position: sticky;
    top: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.page-header-left i {
    font-size: 1rem;
}

.breadcrumb-link {
    color: #e5f0ff;
    text-decoration: none;
}

.breadcrumb-link:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    opacity: 0.7;
}

.breadcrumb-current {
    font-weight: 600;
}

.page-menu-btn {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
}

.page-content {
    padding: 16px 12px 24px;
}

.list-section {
    max-width: 960px;
    margin: 0 auto;
}

.list-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.list-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
    margin-bottom: 12px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.list-card:hover {
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
    border-left-color: #3b82f6;
    background: #f9fafb;
}

.list-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 16px 18px;
}

.list-card-body {
    padding: 0;
}

.list-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.5;
}

.list-card-meta {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.list-card-meta::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #94a3b8;
    border-radius: 50%;
}

.list-card-more {
    display: none;
}

@media (max-width: 480px) {
    .page-content {
        padding: 12px 8px 20px;
    }

    .list-card-link {
        padding: 14px 16px;
    }

    .list-card-title {
        font-size: 0.95rem;
    }

    .list-card-meta {
        font-size: 0.8rem;
    }
}
