/* 手机端主导航条：纯 CSS，不依赖 Tailwind/JS（资讯首页由 news_list_template 生成时请保留对应 HTML） */
@media (min-width: 768px) {
    #site-mobile-nav-html { display: none !important; }
}
#site-mobile-nav-html {
    border-top: 1px solid #f3f4f6;
    background: #fff;
}
#site-mobile-nav-html .site-mnav-row {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
#site-mobile-nav-html a {
    flex-shrink: 0;
    white-space: nowrap;
    border-radius: 9999px;
    padding: 6px 14px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    color: #4b5563;
}
#site-mobile-nav-html a.site-mnav-active {
    font-weight: 600;
    color: #2563eb;
    background: #eff6ff;
    box-shadow: inset 0 0 0 1px #bfdbfe;
}
