/* ============================================
   template-xxgkw 信息公开网
   主色通过 CSS 变量切换，默认红色系
   最大宽度: 1200px  最小适配: 480px
   ============================================ */

/* 默认主题（红色系）— 可被 head.html 注入的 <style> 覆盖 */
:root {
    --c-primary:     #7d2223;
    --c-dark:        #6b1a1b;
    --c-grad-start:  #7d2223;
    --c-grad-end:    #a83a1e;
    --c-primary-rgb: 125, 34, 35;
    --c-dark-rgb:    107, 26, 27;
    --c-tint:        #fde8e6;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: "Microsoft YaHei", "微软雅黑", PingFangSC, Arial, sans-serif;
    font-size: 14px;
    color: #333;
    background: #fff;
    margin: 0;
    padding: 0;
}

a { text-decoration: none; color: #333; }
a:hover { color: var(--c-primary); text-decoration: none; }
img { border: none; max-width: 100%; }
ul, ol, li { list-style: none; margin: 0; padding: 0; }

/* ---- Bootstrap container 覆盖，最大 1200px ---- */
.container {
    max-width: 1200px !important;
    width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ============================================
   顶部 Header
   ============================================ */
.xxgkw-header-nav {
    width: 100%;
    background: linear-gradient(135deg, var(--c-grad-start) 0%, var(--c-grad-start) 55%, var(--c-grad-end) 100%);
}

.xxgkw-header {
    max-width: 1200px;
    height: 130px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.xxgkw-logo-box { display: flex; align-items: center; flex-shrink: 0; }
.xxgkw-logo-box a { display: flex; align-items: center; }
.xxgkw-logo-box .site-logo { height: 72px; width: auto; display: block; }

/* 右侧搜索 */
.xxgkw-header-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.xxgkw-search-box {
    position: relative;
    width: 220px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 13px;
}

.xxgkw-search-box input {
    position: absolute;
    top: 0; left: 12px;
    width: 168px;
    height: 34px;
    background: none;
    border: none;
    outline: none;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
}

.xxgkw-search-box input::placeholder { color: rgba(255,255,255,0.5); }

.xxgkw-search-btn {
    position: absolute;
    right: 12px;
    top: 7px;
    cursor: pointer;
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    line-height: 1;
    background: none;
    border: none;
    padding: 0;
}

/* ============================================
   导航栏（PC）
   ============================================ */
.xxgkw-navbar {
    background: rgba(0,0,0,0.18);
    position: relative;
    backdrop-filter: blur(2px);
}

/* 汉堡按钮：默认隐藏，移动端显示 */
.xxgkw-nav-toggle {
    display: none;
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 15px;
    padding: 14px 20px;
    text-align: left;
    cursor: pointer;
    letter-spacing: 1px;
}

.xxgkw-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.xxgkw-navlist {
    display: inline-flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.xxgkw-navlist > li { position: relative; }

.xxgkw-navlist > li > a {
    display: block;
    line-height: 52px;
    padding: 0 24px;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s;
}

.xxgkw-navlist > li > a:hover,
.xxgkw-navlist > li.active > a { color: #ffb425; }

/* 二级下拉 */
.xxgkw-navlist .sub-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    z-index: 9999;
}

.xxgkw-navlist > li:hover .sub-nav { display: block; }

.xxgkw-navlist .sub-nav li a {
    display: block;
    padding: 11px 16px;
    color: rgba(0,0,0,0.75);
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
    transition: all 0.2s;
}

.xxgkw-navlist .sub-nav li a:hover {
    color: var(--c-dark);
    background: rgba(var(--c-dark-rgb),0.07);
    padding-left: 20px;
}

/* ============================================
   主体内容区
   ============================================ */
.xxgkw-main { min-height: 400px; }

.xxgkw-cont-wrap {
    max-width: 1200px;
    margin: 32px auto 60px;
    padding: 0 16px;
}

/* ---- 栏目图标网格（首页） ---- */
.xxgkw-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 36px;
}

.xxgkw-nav-list-item {
    flex: 0 0 calc(20% - 16px);   /* 5列 */
    min-width: 0;
    background: #f4f4f4;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    border-radius: 13px;
    text-align: center;
    padding: 18px 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.xxgkw-nav-list-item:hover { background: rgba(var(--c-primary-rgb),0.15); }

.xxgkw-nav-list-item a { display: block; color: #101010; }
.xxgkw-nav-list-item a:hover { color: var(--c-primary); }

.xxgkw-nav-list-item .nav-icon {
    font-size: 32px;
    color: var(--c-primary);
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}
.xxgkw-nav-list-item .nav-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.xxgkw-nav-icon-default {
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--c-primary) 0%, #5b9bd5 100%);
    border-radius: 10px;
}
.xxgkw-nav-icon-default::after {
    content: '';
    display: block;
    margin: 9px 6px 0;
    height: 3px;
    background: rgba(255,255,255,0.75);
    box-shadow: 0 6px 0 rgba(255,255,255,0.75), 0 12px 0 rgba(255,255,255,0.5);
    border-radius: 2px;
}

.xxgkw-nav-list-item .nav-label { font-size: 16px; }

/* ---- 首页两栏布局 ---- */
.xxgkw-home-cols {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.xxgkw-left-part { flex: 0 0 280px; min-width: 0; }
.xxgkw-right-part { flex: 1; min-width: 0; }

.xxgkw-clearfix::after { content: ''; display: block; clear: both; }

/* 联系信息盒子 */
.xxgkw-info-box { width: 100%; margin-bottom: 24px; border-radius: 13px; overflow: hidden; }

.xxgkw-info-box-title {
    background: var(--c-primary);
    line-height: 40px;
    font-size: 18px;
    padding-left: 32px;
    color: #fff;
    position: relative;
}

.xxgkw-info-box-title::after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.9);
    border-radius: 4px;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.xxgkw-info-box-body {
    background: #f5f5f5;
    padding: 12px 14px;
}

.xxgkw-info-box-body p { line-height: 28px; font-size: 13px; margin: 0; color: #444; }

/* ---- 右侧新闻列表 ---- */
.xxgkw-news-title-bar {
    border-bottom: 1px solid var(--c-primary);
    padding-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4px;
}

.xxgkw-news-title-bar .title-left {
    font-size: 22px;
    color: var(--c-primary);
    font-weight: 600;
    line-height: 1.2;
}

.xxgkw-news-title-bar .title-more a { font-size: 13px; color: #939598; }
.xxgkw-news-title-bar .title-more a:hover { color: var(--c-primary); }

.xxgkw-news-list { min-height: 500px; }

.xxgkw-news-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    padding: 14px 0 14px 24px;
    position: relative;
    color: #101010;
    gap: 12px;
}

.xxgkw-news-list li a:hover .news-tit { color: var(--c-primary); }

.xxgkw-news-list li a::before {
    content: '';
    width: 10px; height: 10px;
    border: 1px solid var(--c-primary);
    border-radius: 50%;
    position: absolute;
    top: 50%; left: 6px;
    transform: translateY(-50%);
    flex-shrink: 0;
}

.xxgkw-news-list .news-tit {
    flex: 1;
    font-size: 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: color 0.2s;
}

.xxgkw-news-list .news-date {
    flex-shrink: 0;
    color: rgba(16,16,16,0.6);
    font-size: 13px;
    white-space: nowrap;
}

.xxgkw-news-empty { padding: 30px 0; text-align: center; color: #999; font-size: 14px; }

/* 首页新闻分页 */
.xxgkw-news-pager {
    padding: 12px 0 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.xxgkw-news-pager button {
    min-width: 32px;
    height: 30px;
    padding: 0 8px;
    background: #fff;
    border: 1px solid #ddd;
    color: #555;
    font-size: 14px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.15s;
    line-height: 28px;
}
.xxgkw-news-pager button:hover:not(:disabled) {
    background: rgba(var(--c-primary-rgb),0.08);
    border-color: var(--c-primary);
    color: var(--c-primary);
}
.xxgkw-news-pager button:disabled { opacity: 0.4; cursor: default; }
.xxgkw-news-pager .np-cur {
    min-width: 32px;
    height: 30px;
    padding: 0 8px;
    background: var(--c-primary);
    color: #fff;
    font-size: 14px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.xxgkw-news-pager .np-ellipsis { color: #aaa; padding: 0 2px; line-height: 30px; }

/* ============================================
   面包屑
   ============================================ */
.xxgkw-breadcrumb {
    background: #fff;
    border-bottom: 1px solid #d8d8d8;
    font-size: 13px;
}

.xxgkw-breadcrumb .bc-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.xxgkw-breadcrumb h4 {
    font-size: 20px;
    font-weight: 400;
    color: var(--c-dark);
    border-bottom: 2px solid var(--c-dark);
    line-height: 46px;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.xxgkw-breadcrumb .bread { color: rgba(0,0,0,0.45); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.xxgkw-breadcrumb .bread a { color: rgba(0,0,0,0.45); }
.xxgkw-breadcrumb .bread a:hover { color: var(--c-primary); }
.xxgkw-breadcrumb .sep { margin: 0 4px; }
.xxgkw-breadcrumb .cur { color: #333; }

/* ============================================
   列表页 / 详情页 布局
   ============================================ */
.xxgkw-page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px 50px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* 左侧导航 */
.xxgkw-left-nav {
    flex: 0 0 280px;
    min-width: 0;
}

.xxgkw-left-nav .ln-title {
    background: var(--c-primary);
    color: #fff;
    padding: 11px 14px 11px 20px;
    font-size: 15px;
    font-weight: bold;
    position: relative;
}

.xxgkw-left-nav .ln-title::after {
    content: '';
    width: 4px; height: 100%;
    background: #fff;
    position: absolute;
    top: 0; left: 6px;
}

.xxgkw-left-nav ul {
    background: #f8f8f8;
    border: 1px solid #e8e8e8;
    border-top: none;
}

.xxgkw-left-nav li a {
    display: block;
    padding: 9px 14px;
    color: #444;
    font-size: 14px;
    border-bottom: 1px solid #efefef;
    transition: all 0.15s;
}

.xxgkw-left-nav li a:hover,
.xxgkw-left-nav li.cur a {
    color: var(--c-primary);
    background: rgba(var(--c-primary-rgb),0.05);
    padding-left: 18px;
}

.xxgkw-left-nav li.cur a { border-left: 3px solid var(--c-primary); font-weight: bold; }

/* 右侧内容 */
.xxgkw-page-content { flex: 1; min-width: 0; }

/* 阅读页无侧边栏：内容全宽 */
.xxgkw-page-wrap--full { gap: 0; }
.xxgkw-page-wrap--full .xxgkw-page-content { width: 100%; }

/* 面板 */
.xxgkw-panel {
    background: #fff;
    border: 1px solid #e8e8e8;
    margin-bottom: 20px;
}

.xxgkw-panel-title {
    background: var(--c-primary);
    color: #fff;
    padding: 11px 16px;
    font-size: 16px;
    font-weight: bold;
}

.xxgkw-panel-title::after {
    display: none;
}

/* 文章列表 */
.xxgkw-article-list { margin: 0; padding: 6px 14px; }

.xxgkw-article-list li {
    display: flex;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px dashed #e8e8e8;
    gap: 8px;
}

.xxgkw-article-list li:last-child { border-bottom: none; }

.xxgkw-dot {
    width: 6px; height: 6px;
    background: var(--c-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.xxgkw-atitle {
    flex: 1;
    color: #333;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.xxgkw-atitle:hover { color: var(--c-primary); }

.xxgkw-date {
    color: #999;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.xxgkw-empty {
    color: #999;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    border-bottom: none !important;
}

/* 分页 */
.xxgkw-pagination {
    padding: 10px 14px;
    border-top: 1px solid #eee;
    text-align: center;
}

.xxgkw-pagination .pagination > li > a,
.xxgkw-pagination .pagination > li > span { color: var(--c-primary); border-color: #ddd; }

.xxgkw-pagination .pagination > .active > a,
.xxgkw-pagination .pagination > .active > span { background-color: var(--c-primary); border-color: var(--c-primary); color: #fff; }

.xxgkw-pagination .pagination > li > a:hover { background: rgba(var(--c-primary-rgb),0.07); color: var(--c-primary); }

/* ============================================
   文章详情
   ============================================ */
.xxgkw-article {
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 28px 32px;
    margin-bottom: 20px;
}

.xxgkw-article-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.xxgkw-article-meta {
    text-align: center;
    color: #888;
    font-size: 13px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.xxgkw-article-meta span { margin: 0 6px; }

.xxgkw-article-content { line-height: 1.9; font-size: 14px; color: #333; }
.xxgkw-article-content img { max-width: 100%; height: auto; }
.xxgkw-article-content table { border-collapse: collapse; width: 100%; margin: 10px 0; }
.xxgkw-article-content table td,
.xxgkw-article-content table th { border: 1px solid #ddd; padding: 6px 8px; }

.xxgkw-attach { margin-top: 20px; padding-top: 12px; border-top: 1px solid #eee; }
.xxgkw-attach-title { font-weight: bold; margin-bottom: 6px; color: #555; }
.xxgkw-attach a { display: block; color: var(--c-primary); line-height: 2; font-size: 13px; }
.xxgkw-attach a:hover { text-decoration: underline; }

.xxgkw-article-nav { margin-top: 18px; padding-top: 12px; border-top: 1px solid #eee; font-size: 13px; color: #666; }
.xxgkw-article-nav .prev,
.xxgkw-article-nav .next { padding: 4px 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.xxgkw-article-nav a { color: var(--c-primary); }
.xxgkw-article-nav a:hover { text-decoration: underline; }

/* ============================================
   页脚
   ============================================ */
.xxgkw-footer {
    width: 100%;
    background: linear-gradient(135deg, var(--c-grad-start) 0%, var(--c-grad-start) 55%, var(--c-grad-end) 100%);
    color: #fff;
    clear: both;
}

.xxgkw-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.xxgkw-footer-logo-box { display: flex; align-items: center; gap: 10px; }
.xxgkw-footer-logo { height: 48px; width: auto; }
.xxgkw-footer-logo-text { font-size: 22px; color: rgba(255,255,255,0.85); }

.xxgkw-footer-links-area { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 4px; }

.xxgkw-footer-links-area select {
    width: 220px;
    height: 36px;
    font-size: 14px;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    border-radius: 4px;
    border: none;
    padding: 0 8px;
    cursor: pointer;
    color: #000;
}

.xxgkw-copyright {
    width: 100%;
    background: rgba(0,0,0,0.25);
    text-align: center;
    height: 46px;
    line-height: 46px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

/* ============================================
   响应式断点
   ============================================ */

/* ---- ≤1200px：流式宽度，收窄内边距 ---- */
@media (max-width: 1200px) {
    .xxgkw-header { padding: 0 16px; }
    .xxgkw-nav-inner { padding: 0 4px; }
    .xxgkw-navlist > li > a { padding: 0 16px; font-size: 14px; }
}

/* ---- ≤992px：折叠导航 + 单栏布局 ---- */
@media (max-width: 992px) {

    /* Header 压缩 */
    .xxgkw-header { height: 80px; }
    .xxgkw-logo-box .site-logo { height: 52px; }
    .xxgkw-search-box { width: 180px; }
    .xxgkw-search-box input { width: 130px; }

    /* 导航折叠为汉堡菜单 */
    .xxgkw-nav-toggle { display: block; }
    .xxgkw-nav-inner { text-align: left; }
    .xxgkw-navlist {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(0,0,0,0.3);
    }
    .xxgkw-navbar.open .xxgkw-navlist { display: flex; }
    .xxgkw-navlist > li > a {
        line-height: 1;
        padding: 13px 20px;
        font-size: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    /* 移动端二级菜单直接展开，不用 hover */
    .xxgkw-navlist .sub-nav {
        display: block;
        position: static;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        min-width: unset;
    }
    .xxgkw-navlist .sub-nav li a {
        color: rgba(255,255,255,0.85);
        border-bottom-color: rgba(255,255,255,0.08);
        padding-left: 36px;
        font-size: 13px;
    }
    .xxgkw-navlist .sub-nav li a:hover {
        color: #ffb425;
        background: rgba(255,255,255,0.08);
    }
    /* li 没有 children 时不显示空的 sub-nav */
    .xxgkw-navlist > li:not(.has-children) .sub-nav { display: none !important; }

    /* 首页：栏目网格 4 列 */
    .xxgkw-nav-list-item { flex: 0 0 calc(25% - 15px); }

    /* 首页：两栏变单栏 */
    .xxgkw-home-cols { flex-direction: column; }
    .xxgkw-left-part,
    .xxgkw-right-part { flex: none; width: 100%; }

    /* 列表/详情页：左侧导航折叠到顶部 */
    .xxgkw-page-wrap { flex-direction: column; padding: 16px 12px 40px; }
    .xxgkw-left-nav { flex: none; width: 100%; }
    .xxgkw-left-nav ul { display: flex; flex-wrap: wrap; border-top: 1px solid #e8e8e8; }
    .xxgkw-left-nav li { flex: 0 0 auto; border-right: 1px solid #e8e8e8; }
    .xxgkw-left-nav li a { border-bottom: none; padding: 8px 14px; white-space: nowrap; }
    .xxgkw-left-nav li.cur a { border-left: none; border-bottom: 2px solid var(--c-primary); }
    .xxgkw-page-content { flex: none; width: 100%; }

    /* 页脚 */
    .xxgkw-footer-inner { flex-direction: column; }
    .xxgkw-footer-links-area select { width: 100%; }
}

/* ---- ≤768px：平板/大手机 ---- */
@media (max-width: 768px) {

    .xxgkw-news-list { min-height: 420px; }

    /* 面包屑隐藏 h4 标题 */
    .xxgkw-breadcrumb h4 { display: none; }
    .xxgkw-breadcrumb .bc-inner { height: 38px; }

    /* 栏目网格 3 列 */
    .xxgkw-nav-list-item { flex: 0 0 calc(33.33% - 14px); padding: 14px 4px; }
    .xxgkw-nav-list-item .nav-icon { font-size: 26px; }
    .xxgkw-nav-list-item .nav-label { font-size: 13px; }

    /* 首页新闻 */
    .xxgkw-news-list .news-tit { font-size: 14px; }
    .xxgkw-news-list .news-date { font-size: 12px; }

    /* 文章详情 */
    .xxgkw-article { padding: 18px 16px; }
    .xxgkw-article-title { font-size: 18px; }
    .xxgkw-article-meta { font-size: 12px; }
    .xxgkw-article-meta span { display: block; margin: 2px 0; }
}

/* ---- ≤576px：手机 ---- */
@media (max-width: 576px) {

    /* Header */
    .xxgkw-header { height: 64px; }
    .xxgkw-logo-box .site-logo { height: 40px; }
    .xxgkw-search-box { width: 140px; height: 30px; border-radius: 13px; }
    .xxgkw-search-box input { width: 98px; height: 28px; font-size: 12px; left: 10px; }
    .xxgkw-search-btn { right: 10px; top: 6px; font-size: 14px; }

    /* 栏目网格 2 列 */
    .xxgkw-nav-list { gap: 12px; }
    .xxgkw-nav-list-item { flex: 0 0 calc(50% - 6px); padding: 12px 4px; }

    /* 内容区 */
    .xxgkw-cont-wrap { margin: 16px auto 40px; }
    .xxgkw-news-title-bar .title-left { font-size: 18px; }
    .xxgkw-news-list li a { padding: 12px 0 12px 20px; gap: 8px; }
    .xxgkw-news-list li a::before { width: 8px; height: 8px; left: 4px; }
    .xxgkw-news-list .news-tit { font-size: 13px; }

    /* 文章列表 */
    .xxgkw-article-list li { flex-wrap: wrap; }
    .xxgkw-date { margin-left: auto; }

    /* 页脚 */
    .xxgkw-footer-logo-text { font-size: 18px; }
    .xxgkw-footer-logo { height: 36px; }
    .xxgkw-copyright { font-size: 12px; height: 40px; line-height: 40px; }
}

/* ---- ≤480px：最小适配 ---- */
@media (max-width: 480px) {

    /* Header 极度压缩 */
    .xxgkw-header { height: 56px; padding: 0 12px; }
    .xxgkw-logo-box .site-logo { height: 34px; }
    .xxgkw-search-box { width: 110px; height: 28px; }
    .xxgkw-search-box input { width: 74px; left: 8px; height: 26px; font-size: 11px; }
    .xxgkw-search-btn { right: 8px; top: 5px; font-size: 13px; }

    /* 导航按钮 */
    .xxgkw-nav-toggle { font-size: 14px; padding: 12px 16px; }

    /* 栏目网格 2 列，更紧凑 */
    .xxgkw-nav-list { gap: 8px; }
    .xxgkw-nav-list-item { flex: 0 0 calc(50% - 4px); padding: 10px 4px; }
    .xxgkw-nav-list-item .nav-icon { font-size: 22px; margin-bottom: 5px; }
    .xxgkw-nav-list-item .nav-label { font-size: 12px; }

    /* 新闻列表：隐藏日期，给标题更多空间 */
    .xxgkw-news-list .news-date { display: none; }
    .xxgkw-news-list li a { padding: 10px 0 10px 18px; }

    /* 文章详情 */
    .xxgkw-article { padding: 14px 12px; }
    .xxgkw-article-title { font-size: 16px; }

    /* 面包屑 */
    .xxgkw-breadcrumb .bc-inner { height: 34px; }
    .xxgkw-breadcrumb .bread { font-size: 12px; }

    /* 分页按钮缩小 */
    .xxgkw-pagination .pagination > li > a,
    .xxgkw-pagination .pagination > li > span { padding: 4px 8px; font-size: 12px; }

    /* 页脚 */
    .xxgkw-footer-inner { padding: 20px 12px 14px; }
    .xxgkw-copyright { font-size: 11px; height: 36px; line-height: 36px; }
}
