    .about-layout {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 36px;
    }
    .about-sidebar {
      background: #fff;
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      align-self: start;
      position: sticky;
      top: 120px;
    }
    .sidebar-title {
      background: url('../images/l-bg.jpg');
      background-size: cover;
      background-position: center;
      background-blend-mode: overlay;
      color: #fff;
      padding: 20px 24px;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 1px;
    }
    .sidebar-nav a {
      display: block;
      padding: 14px 24px;
      color: var(--text-secondary);
      font-size: 17px;
      border-left: 3px solid transparent;
      transition: var(--transition);
      border-bottom: 1px solid var(--gray-100);
    }
    .sidebar-nav a:hover,
    .sidebar-nav a.active {
      background: var(--primary-lighter);
      color: var(--primary);
      border-left-color: var(--primary);
      font-weight: 500;
    }
    .about-main {
      background: #fff;
      box-shadow: var(--shadow-sm);
      padding: 20px 40px;
    }
    .about-main h2 {
      font-size: 20px;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 24px;
      padding-bottom: 14px;
      border-bottom: 2px solid var(--gray-200);
      position: relative;
    }
    .about-main h2 span {
      position: relative;
    }
    .about-main h2 span::after {
      content: '';
      position: absolute;
      bottom: -20px;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--primary);
    }
    .about-main p {
      font-size: 16px;
      line-height: 2;
      color: var(--text-secondary);
      margin-bottom: 16px;
       /*text-indent: 2em;*/
    }
    .about-main p.no-indent {
      text-indent: 0;
    }
    .about-img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: var(--radius);
      margin: 20px 0;
    }
       /* 面包屑容器 */
    .breadcrumb-wrap {
      background: #fff;
      padding: 15px 0;
      border-bottom: 1px solid var(--gray-200);
    }
    .breadcrumb {
      font-size: 16px;
      color: #767676;
    }
    .breadcrumb a {
      color: var(--text-secondary);
      transition: var(--transition);
    }
    .breadcrumb a:hover {
      color: var(--primary);
    }
    .highlight-box {
      background: var(--primary-lighter);
      border-left: 4px solid var(--primary);
      padding: 20px 24px;
      border-radius: 0 var(--radius) var(--radius) 0;
      margin: 24px 0;
    }
    .highlight-box p {
      text-indent: 0;
      color: var(--primary-dark);
      font-weight: 500;
    }
    .stat-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin: 30px 0;
    }
    .stat-item {
      text-align: center;
      padding: 24px 16px;
      background: var(--gray-50);
      border-radius: var(--radius-lg);
    }
    .stat-item .num {
      font-size: 32px;
      font-weight: 900;
      color: var(--primary);
      line-height: 1.2;
    display: flex;
    justify-content: center;
    align-items: baseline;
    }
    .stat-item .num p{
      font-size: 32px;
      font-weight: 900;
      color: var(--primary);
      line-height: 1.2;
    }
    .stat-item .num span {
      font-size: 16px;
      font-weight: 400;
    }
    .stat-item .label {
      font-size: 14px;
      color: var(--text-muted);
      margin-top: 6px;
    }
/* 机构设置 - 卡片式布局 */
    .org-container { margin: 24px 0; }
    
    /* 顶层机构卡片 */
    .org-top-card {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      border-radius: var(--radius-xl);
      padding: 40px;
      text-align: center;
      color: #fff;
      box-shadow: 0 12px 40px rgba(30, 111, 197, 0.3);
      margin-bottom: 30px;
    }
    .org-top-card .org-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 36px;
    }
    .org-top-card h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 8px;
      letter-spacing: 2px;
    }
    .org-top-card p {
      font-size: 14px;
      opacity: 0.9;
      text-indent: 0;
      margin-bottom: 0;
    }
    
    /* 机构层级卡片 */
    .org-section {
      margin-bottom: 30px;
    }
    .org-section-title {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
      font-size: 18px;
      font-weight: 600;
      color: var(--text-primary);
    }
    .org-section-title .section-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: var(--primary-lighter);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 16px;
    }
    
    /* 机构卡片网格 */
    .org-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }
    
    /* 单个机构卡片 */
    .org-card {
      background: #fff;
      padding: 24px;
      border: 1px solid var(--gray-200);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    .org-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 2px;
      height: 100%;
      background: var(--primary-gradient);
      transform: scaleY(0);
      transition: transform 0.3s ease;
    }
    .org-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-4px);
      border-color: var(--primary);
    }
    .org-card:hover::before {
      transform: scaleY(1);
    }
    
    .org-card-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 14px;
    }
    .org-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--accent-lighter) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 20px;
      flex-shrink: 0;
    }
    .org-card-title-wrap {
      flex: 1;
    }
    .org-card-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 2px;
    }
    .org-card-level {
      font-size: 12px;
      color: var(--text-muted);
      padding: 2px 8px;
      background: var(--gray-100);
      border-radius: 4px;
      display: inline-block;
    }
    
    .org-card-desc {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 14px;
    }
    
    .org-card-members {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }
    .member-tag {
      font-size: 12px;
      color: var(--primary);
      background: var(--primary-lighter);
      padding: 4px 10px;
      border-radius: 16px;
    }
    
    /* 展开内容 */
    .org-card-expand {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .org-card.expanded .org-card-expand {
      max-height: 200px;
    }
    
    .org-card-expand-content {
      padding-top: 14px;
      border-top: 1px dashed var(--gray-200);
    }
    .org-card-expand-content h4 {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 10px;
    }
    .org-card-expand-content ul {
      padding-left: 20px;
    }
    .org-card-expand-content li {
      font-size: 13px;
      color: var(--text-secondary);
      margin-bottom: 6px;
    }

    .org-card-expand-info {
      white-space: pre-line;
      color: var(--text-secondary);
       font-size: 13px;
       line-height: 30px;
    }    
    .org-card-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid var(--gray-100);
      color: var(--primary);
      font-size: 13px;
      transition: var(--transition);
    }
    .org-card:hover .org-card-toggle {
      color: var(--primary-dark);
    }
    .org-card-toggle i {
      transition: transform 0.3s ease;
    }
    .org-card.expanded .org-card-toggle i {
      transform: rotate(180deg);
    }
    
    /* 机构关系流程图 */
    .org-flow {
      background: linear-gradient(135deg, var(--gray-50) 0%, var(--primary-lighter) 100%);
      border-radius: var(--radius-xl);
      padding: 30px;
      margin-top: 40px;
    }
    .org-flow-title {
      text-align: center;
      font-size: 18px;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 30px;
    }
    .org-flow-diagram {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .flow-node {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 24px;
      background: #fff;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      font-size: 14px;
      font-weight: 500;
      color: var(--text-primary);
    }
    .flow-node.highlight {
      background: var(--primary-gradient);
      color: #fff;
    }
    .flow-arrow {
      font-size: 20px;
      color: var(--primary);
    }
    
    /* 现任领导 */
.leader-section { margin-bottom: 10px; }
    .leader-section h3 { font-size: 18px; font-weight: 600; color: var(--primary-dark); margin-bottom: 20px; padding: 8px 16px; background: linear-gradient(to right, var(--primary-lighter), transparent); border-left: 4px solid var(--primary); }
    .leader-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; justify-items: center; }
    .leader-card { text-align: center; transition: var(--transition); cursor: pointer; }
    .leader-card:hover { transform: translateY(-3px); }
    .leader-card a { text-decoration: none; color: inherit; display: block; }
    .leader-avatar { width: 190px; height: 228px; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-size: 36px; color: #666; font-weight: 700; object-fit: cover; overflow: hidden; border: 1px solid #e0e0e0; }
    .leader-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .leader-card h4 { font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
    .leader-card .title { font-size: 12px; color: var(--primary); font-weight: 500; margin-bottom: 4px; }
    .leader-card .unit { font-size: 12px; color: var(--text-muted); }
        /* 领导详情样式 */
    .leader-detail { display: flex; gap: 40px; align-items: flex-start; }
    .leader-detail-photo { flex-shrink: 0; }
    .leader-detail-photo img { width: 240px; height: 288px; object-fit: cover; border: 1px solid #e0e0e0; }
    .leader-detail-info { flex: 1; }
    .leader-detail-name { font-size: 24px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
    .leader-detail-title { font-size: 16px; color: var(--primary); font-weight: 500; margin-bottom: 20px; padding-bottom: 15px; }
    .leader-detail-intro { margin-top: 20px; padding: 20px; background: var(--gray-50); border-radius: var(--radius-sm); border-left: 4px solid var(--primary); }
    .leader-detail-intro h4 { font-size: 16px; color: var(--text-primary); margin-bottom: 10px; font-weight: 600; }
    .leader-detail-intro h5 { font-size: 15px;color: var(--text-secondary); line-height: 1.8; margin: 0; font-weight: normal;}
    .leader-detail-back { display: inline-block; margin-top: 30px; padding: 10px 24px; background: var(--primary); color: #fff; text-decoration: none; border-radius: var(--radius-sm); transition: var(--transition); }
    .leader-detail-back:hover { background: var(--primary-dark); }
    .leader-detail-back i { margin-right: 8px; }

    /* 章程 */
    .charter-content p { font-size: 16px; line-height: 1.5; color: var(--text-secondary); margin-bottom: 12px; text-indent: 2em; }
    .charter-content h3 { font-size: 17px; font-weight: 700; color: var(--primary-dark); margin: 28px 0 14px; padding-left: 14px; }
    .charter-content .article-num { font-weight: 500; margin-right: 4px; }
    /* 联系我们 */
       .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 24px 0; }
    .contact-card { display: flex; align-items: flex-start; gap: 16px; padding: 24px; background: var(--gray-50); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); transition: var(--transition); }
    .contact-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
    .contact-card .icon-wrap { width: 52px; height: 52px; border-radius: 50%; background: var(--primary-lighter); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--primary); flex-shrink: 0; }
    .contact-card h4 { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
    .contact-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
    .list-layout {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 30px;
    }
    .list-main {
      background: #fff;
      box-shadow: var(--shadow-sm);
      padding: 32px;
    }
    .list-main .section-header {
      margin-bottom: 24px;
    }
    .list-main .section-title { font-size: 24px; font-weight: 700; color: var(--primary-dark); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid #e8e8e8; position: relative; }
    .list-main .section-title span { position: relative; }
    .list-main .section-title span::after { content: ''; position: absolute; bottom: -20px; left: 0; width: 100%; height: 3px; background: var(--primary); }
    .article-item {
      display: flex;
      gap: 20px;
      padding: 20px 0;
      transition: var(--transition);
      border-bottom: 1px solid var(--gray-100);
    }
    .article-item:last-child {
      border-bottom: none;
    }
    .article-item:hover {
      background: var(--gray-50);
      margin: 0 -16px;
      padding-left: 16px;
      padding-right: 16px;
    }
    .article-item.no-thumb {
      display: block;
    }
    .article-item.no-thumb .article-info {
      width: 100%;
    }
    .article-thumb {
      flex-shrink: 0;
      width: 320px;
      height: 180px;
      overflow: hidden;
      background: var(--gray-200);
    }
    .article-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .article-item:hover .article-thumb img {
      transform: scale(1.1);
    }
    .article-info {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .article-info h3 {
      font-size: 22px;
      font-weight: 500;
      color: var(--text-primary);
      line-height: 1.6;
      margin-bottom: 8px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .article-item:hover .article-info h3 {
      color: var(--primary);
    }
    .article-info p {
      font-size: 16px;
      color: #555b66;
      line-height: 1.7;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 8px;
    }
    .article-meta {
      display: flex;
      gap: 16px;
      font-size: 14px;
      color: var(--text-muted);
    }
    .article-meta span {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    /* 新闻详情标题 */
    .news-detail-title {
      font-size: 28px;
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1.5;
      margin-bottom: 20px;
      text-align: center;
    }
    /* 新闻详情元信息 */
    .news-detail-meta {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 24px;
      font-size: 14px;
      color: var(--text-muted);
      padding-bottom: 20px;
      border-bottom: 1px solid var(--gray-200);
      margin-bottom: 30px;
    }
    .news-detail-meta span {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    /* 字号控制 */
    .font-size-control {
      display: flex;
      gap: 8px;
    }
    .font-size-control button {
      border: none;
      background: transparent;
      font-size: 14px;
      color: var(--text-secondary);
      cursor: pointer;
      padding: 2px 6px;
      border-radius: var(--radius-xs);
      transition: var(--transition);
    }
    .font-size-control button:hover {
      background: var(--gray-200);
    }
    .font-size-control .active {
      background: var(--primary);
      color: #fff;
    }
    
    /* 新闻详情正文 */
   /*  .news-detail-content {
      font-size: 16px;
      line-height: 1.8;
      color: var(--text-secondary);
    }
    .news-detail-content p {
      margin-bottom: 18px;
      text-indent: 2em;
      font-size: inherit;
    }
    .news-detail-content h2 {
      font-size: 1.25em;
      font-weight: 600;
      color: var(--primary-dark);
      margin: 28px 0 16px;
      padding-left: 12px;
      border-left: 4px solid var(--primary);
    }
    .news-detail-content h3 {
      font-size: 1.125em;
      font-weight: 600;
      color: var(--text-primary);
      margin: 24px 0 14px;
    }
    .news-detail-content img {
      max-width: 70%;
      height: auto;
      display: block;
      margin: 20px auto;
      border-radius: var(--radius-sm);
    }
    .news-detail-content blockquote {
      margin: 20px 0;
      padding: 16px 20px;
      background: var(--primary-lighter);
      border-left: 4px solid var(--primary);
      font-style: italic;
      color: var(--text-secondary);
    }*/
    /* 上下篇导航 */
    .news-nav {
      display: flex;
      justify-content: space-between;
      padding: 20px 0;
      border-top: 1px solid var(--gray-200);
      margin-top: 30px;
    }
    .news-nav-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text-secondary);
      font-size: 15px;
      transition: var(--transition);
    }
    .news-nav-item:hover {
      color: var(--primary);
    }
    .news-nav-item.disabled {
      opacity: 0.4;
      pointer-events: none;
    }
    .news-nav-item span {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 400px;
    }
        .notice-table { width: 100%; }
    .notice-row { display: flex; align-items: flex-start; gap: 12px; padding: 16px 0; border-bottom: 1px dashed var(--gray-200); transition: var(--transition); }
    .notice-row:hover { background: var(--gray-50); margin: 0 -12px; padding-left: 12px; padding-right: 12px; }
    .notice-row .badge { flex-shrink: 0; font-size: 12px; font-weight: 500; padding: 3px 10px; border-radius: 3px; margin-top: 3px; white-space: nowrap; }
    .badge.important { background: #fef2f2; color: var(--danger); border: 1px solid #fecaca; }
    .badge.normal { background: var(--primary-lighter); color: var(--primary); border: 1px solid #bfdbfe; }
    .notice-row .info { flex: 1; }
    .notice-row .info h3 { font-size: 16px; font-weight: 400; color: var(--text-primary); line-height: 1.6; }
    .notice-row:hover .info h3 { color: var(--primary); }
    .notice-row .info .date { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
    .file-item { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px dashed var(--gray-200); transition: var(--transition); }
    .file-item:last-child { border-bottom: none; }
    .file-item:hover { background: var(--gray-50); margin: 0 -12px; padding-left: 12px; padding-right: 12px; border-radius: var(--radius); }
    .file-icon { width: 48px; height: 48px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
    .file-icon.pdf { background: #fef2f2; color: var(--danger); }
    .file-icon.doc { background: #eff6ff; color: var(--primary); }
    .file-icon.xls { background: #f0fdf4; color: var(--success); }
    .file-info { flex: 1; }
    .file-info h3 { font-size: 16px; font-weight: 400; color: var(--text-primary); line-height: 1.6; }
    .file-item:hover .file-info h3 { color: var(--primary); }
    .file-info .meta { font-size: 14px; color: var(--text-muted); margin-top: 4px; display: flex; gap: 16px; }
    /* 政策文件详情标题 */
    .policy-detail-title {
      font-size: 28px;
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1.5;
      margin-bottom: 20px;
      text-align: center;
    }
    /* 政策文件详情元信息 */
    .policy-detail-meta {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 24px;
      font-size: 14px;
      color: var(--text-muted);
      padding-bottom: 20px;
      border-bottom: 1px solid var(--gray-200);
      margin-bottom: 30px;
    }
    .policy-detail-meta span {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    
    /* 政策文件详情正文 */
   /* .policy-detail-content {
      font-size: 16px;
      line-height: 1.8;
      color: var(--text-secondary);
    }
    .policy-detail-content p {
      margin-bottom: 18px;
      text-indent: 2em;
      font-size: inherit;
    }
    .policy-detail-content h2 {
      font-size: 1.25em;
      font-weight: 600;
      color: var(--primary-dark);
      margin: 28px 0 16px;
      padding-left: 12px;
      border-left: 4px solid var(--primary);
    }
    .policy-detail-content h3 {
      font-size: 1.125em;
      font-weight: 600;
      color: var(--text-primary);
      margin: 24px 0 14px;
    }
    .policy-detail-content ul, .policy-detail-content ol {
      margin: 16px 0;
      padding-left: 2em;
    }
    .policy-detail-content li {
      margin-bottom: 10px;
    }
    .policy-detail-content a {
      color: var(--primary);
      text-decoration: underline;
    }
    .policy-detail-content a:hover {
      color: var(--primary-dark);
    }*/

    /* 下载区域 */
    .download-section {
      background: var(--gray-50);
      padding: 20px;
      border-radius: var(--radius);
      margin-top: 30px;
    }
    .download-section h4 {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 12px;
    }
    .download-list {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .download-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      background: #fff;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-sm);
      transition: var(--transition);
    }
    .download-item:hover {
      border-color: var(--primary);
      background: var(--primary-lighter);
    }
    .download-item i {
      font-size: 18px;
    }
    .download-item.pdf i { color: var(--danger); }
    .download-item.doc i { color: var(--primary); }
    .download-item.xls i { color: var(--success); }
    .download-item a {
      text-decoration: none;
      color: var(--text-secondary);
      font-size: 14px;
    }
    .download-item:hover a {
      color: var(--primary);
    }
       .tabs-container { display: grid; grid-template-columns: 260px 1fr; gap: 36px; align-items: flex-start; }
        .academic-main { background: #fff; box-shadow: var(--shadow-sm); padding: 20px 40px; }
    .academic-main h2 { font-size: 20px; font-weight: 700; color: var(--primary-dark); margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--gray-200); position: relative; }
    .academic-main h2 span { position: relative; }
    .academic-main h2 span::after { content: ''; position: absolute; bottom: -20px; left: 0; width: 100%; height: 3px; background: var(--primary); }
    .article-item { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--gray-100); transition: var(--transition); }
    .article-item:last-child { border-bottom: none; }
    .article-item:hover { background: var(--gray-50); margin: 0 -16px; padding-left: 16px; padding-right: 16px; border-radius: var(--radius); }
    .article-item.no-thumb { display: block;}
    .article-item.no-thumb:hover { margin: 0; padding: 20px 0; }
    .article-thumb { flex-shrink: 0; width: 240px; height: 160px; overflow: hidden; background: var(--gray-200); }
    .article-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .article-item:hover .article-thumb img { transform: scale(1.1); }
    .article-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
    .article-item.no-thumb .article-info { justify-content: flex-start;  padding: 0px 20px;}
    .article-info h3 { font-size: 20px; font-weight: 500; color: var(--text-primary); line-height: 1.6; margin-bottom: 8px; }
    .article-item:hover .article-info h3 { color: var(--primary); }
    .article-info p { font-size: 16px; font-weight: 400; color: #757575; line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 8px; }
    .article-meta { display: flex; gap: 16px; font-size: 13px; color: var(--text-muted); }
    .article-meta span { display: flex; align-items: center; gap: 4px; font-size: 14px;}

    .research-main { background: #fff; box-shadow: var(--shadow-sm); padding: 20px 40px; }
    .research-main h2 { font-size: 20px; font-weight: 700; color: var(--primary-dark); margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--gray-200); position: relative; }
    .research-main h2 span { position: relative; }
    .research-main h2 span::after { content: ''; position: absolute; bottom: -20px; left: 0; width: 100%; height: 3px; background: var(--primary); }
    .topic-item { padding: 20px 10px; border-bottom: 1px solid var(--gray-100); margin-bottom: 0; transition: var(--transition); }
    .topic-item:hover { background: var(--gray-50); margin: 0 0px; }
    .topic-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
    .topic-type { font-size: 12px; font-weight: 500; padding: 3px 10px; border-radius: 20px; }
    .topic-type.key { background: #fef3c7; color: #92400e; }
    .topic-type.general { background: var(--primary-lighter); color: var(--primary); }
    .topic-year { font-size: 13px; color: var(--text-muted); }
    .topic-item h3 { font-size: 18px; font-weight: 500; color: var(--text-primary); line-height: 1.6; margin-bottom: 8px; }
    .topic-item:hover h3 { color: var(--primary); }
    .topic-item p { font-size: 16px; color: #757575; line-height: 1.7; }
    .topic-meta { display: flex; gap: 16px; margin-top: 10px; font-size: 13px; color: var(--text-muted); }
    .topic-meta span { display: flex; align-items: center; gap: 4px; }
    .member-section { margin-top: 0 !important; }  
      .branch-main { background: #fff; box-shadow: var(--shadow-sm); padding: 20px 40px; }
    .branch-main h2 { font-size: 20px; font-weight: 700; color: var(--primary-dark); margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--gray-200); position: relative; }
    .branch-main h2 span { position: relative; }
    .branch-main h2 span::after { content: ''; position: absolute; bottom: -20px; left: 0; width: 100%; height: 3px; background: var(--primary); }
    .branch-list { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
    .branch-list li { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--gray-100); }
    .branch-list li:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .branch-card-header { margin-bottom: 16px; }
    .branch-name { font-size: 18px; font-weight: 600; color: var(--text-primary); margin-bottom: 12px; }
    .branch-list li:hover .branch-name { color: var(--primary); }
    .branch-desc { font-size: 16px; color: #454545; line-height: 1.6; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; }
    .branch-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; }
    .branch-meta span { display: flex; align-items: center; gap: 4px; }
    .branch-meta span i { color: var(--primary); }
    .branch-actions { display: flex; gap: 12px; }
    .branch-actions a { font-size: 14px; color: var(--text-muted); padding: 5px 12px; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); transition: var(--transition); }
    .branch-actions a:hover { color: var(--primary); border-color: var(--primary); }
    .branch-actions a:first-child { background: var(--primary); color: #fff; border-color: var(--primary); }
    .branch-actions a:first-child:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
     .news-main { background: #fff; box-shadow: var(--shadow-sm); padding: 20px 40px; }
    .news-main h2 { font-size: 20px; font-weight: 700; color: var(--primary-dark); margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--gray-200); position: relative; }
    .news-main h2 span { position: relative; }
    .news-main h2 span::after { content: ''; position: absolute; bottom: -20px; left: 0; width: 100%; height: 3px; background: var(--primary); }
    .news-list { padding: 0; }
    .article-info .branch-tag { font-size: 12px; color: var(--primary); background: var(--primary-lighter); padding: 2px 6px; border-radius: 3px; display: inline-block; line-height: 1.5; white-space: nowrap; }
 /* 分会详情头部 */
    .branch-detail-header {
      text-align: center;
      padding-bottom: 24px;
      margin-bottom: 32px;
      border-bottom: 1px solid var(--gray-200);
    }
    .branch-detail-header h1 {
      font-size: 28px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 16px;
    }
    .branch-info-meta {
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
    }
    .branch-info-meta span {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      color: var(--text-secondary);
    }
    .branch-info-meta span i {
      color: var(--primary);
    }

    /* 内容区块 */
    .content-section {
      margin-bottom: 36px;
    }
    .content-section h2 {
      font-size: 20px;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--gray-200);
      position: relative;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .content-section h2 i {
      color: var(--primary);
    }
    .content-section h2::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 60px;
      height: 2px;
      background: var(--primary);
    }

    /* 分会介绍 */
   /*  .branch-description {
      font-size: 16px;
      line-height: 1.8;
      color: var(--text-secondary);
    }
    .branch-description p {
      margin-bottom: 16px;
      text-indent: 2em;
    }
    .branch-description p:last-child {
      margin-bottom: 0;
    }*/

    /* 活动列表 */
    .activity-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .activity-list li {
      display: flex;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px dashed var(--gray-200);
      transition: var(--transition);
    }
    .activity-list li:hover {
      background: var(--gray-50);
      padding-left: 12px;
      margin-left: -12px;
      padding-right: 12px;
      margin-right: -12px;
      border-radius: var(--radius);
    }
    .activity-date {
      flex-shrink: 0;
      width: 70px;
      text-align: center;
      background: var(--primary-lighter);
      border-radius: var(--radius);
      padding: 10px 8px;
    }
    .activity-date .day {
      font-size: 24px;
      font-weight: 700;
      color: var(--primary);
      line-height: 1;
    }
    .activity-date .month {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 4px;
    }
    .activity-content {
      flex: 1;
    }
    .activity-title {
      font-size: 16px;
      font-weight: 500;
      color: var(--text-primary);
      margin-bottom: 8px;
      transition: var(--transition);
    }
    .activity-list li:hover .activity-title {
      color: var(--primary);
    }
    .activity-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }
    .download-container { background: #fff; box-shadow: var(--shadow-sm); padding: 30px 40px; }
    .download-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
    .download-card { background: #fafafa; overflow: hidden; border: 1px solid var(--gray-100); transition: var(--transition); }
    .download-card:hover { border-color: var(--primary); background: #fff; transform: translateY(-3px); }
    .download-body { padding: 20px; text-align: center; }
    .download-body h3 { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; line-height: 1.5; }
    .download-card:hover .download-body h3 { color: var(--primary); }
    .download-body p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
    .download-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 20px; background: transparent; color: var(--primary); font-size: 14px; font-weight: 500; cursor: pointer; border: none; }
    .category-header { font-size: 18px; font-weight: 600; color: var(--primary-dark); margin-bottom: 24px; padding: 8px 16px; background: linear-gradient(to right, var(--primary-lighter), transparent); border-left: 4px solid var(--primary); }
    .category-header:first-child { margin-top: 0; }
    .download-section1 { margin-bottom: 36px; }
    .download-section1:last-child { margin-bottom: 0; }
    /* 侧边栏 */
    .list-sidebar .sidebar-block {
      background: #fff;
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      margin-bottom: 24px;
    }
    .sidebar-block-title {
      background: url('images/l-bg.jpg');
      background-size: cover;
      background-position: center;
      background-blend-mode: overlay;
      color: #fff;
      padding: 20px 24px;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 1px;
    }
    .sidebar-block-body {
      padding: 16px 20px;
    }
    .sidebar-block-body a {
      display: block;
      padding: 10px 0;
      font-size: 16px;
      color: var(--text-secondary);
      border-bottom: 1px dashed var(--gray-200);
      line-height: 1.6;
      transition: var(--transition);
    }
    .sidebar-block-body a:last-child {
      border-bottom: none;
    }
    .sidebar-block-body a:hover {
      color: var(--primary);
    }
    .sidebar-block-body a.active {
      color: var(--primary);
      font-weight: 500;
    }
    /* 侧边栏 */
    .list-sidebar .sidebar-block {
      background: #fff;
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      margin-bottom: 24px;
    }
    .sidebar-block-title {
      background: url('../images/l-bg.jpg');
      background-size: cover;
      background-position: center;
      background-blend-mode: overlay;
      color: #fff;
      padding: 20px 24px;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 1px;
    }
    .sidebar-block-body {
      padding: 16px 20px;
    }
    .sidebar-block-body a {
      display: block;
      padding: 10px 0;
      font-size: 16px;
      color: var(--text-secondary);
      border-bottom: 1px dashed var(--gray-200);
      line-height: 1.6;
    }
    .sidebar-block-body a:last-child {
      border-bottom: none;
    }
    .sidebar-block-body a:hover {
      color: var(--primary);
    }
    /* 分页 */
    .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 6px;
      margin-top: 32px;
    }


/* ========== about.html 移动端适配 ========== */

/* ------- 992px 及以下 ------- */
@media (max-width: 992px) {
  /* 侧边栏隐藏，内容独占全宽 */
  .about-sidebar {
    display: none;
  }
 .about-main h2 span::after {
    bottom: -14px;
    height: 2px;
  }
  .about-layout {
    display: block;
  }

  .about-main {
    padding: 16px 14px 24px;
  }

  .about-main h2 {
    font-size: 17px;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }

  /* ========== leadership.html 现任领导列表移动端适配 ========== */

  /* 5列 → 3列 */
  .leader-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .leader-avatar {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 6;
  }

  .leader-card h4 {
    font-size: 15px;
  }

  .leader-section h3 {
    font-size: 16px;
  }
      .org-card {
      background: #fff;
      padding: 12px;
    }
}

/* ------- 768px 及以下 ------- */
@media (max-width: 768px) {
  /* 侧边栏隐藏，内容独占全宽（与 about 页保持一致） */
  .about-sidebar {
    display: none;
  }

  .about-layout {
    display: block;
  }

  .about-main {
    padding: 16px 14px 24px;
  }

  .about-main h2 {
    font-size: 17px;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }
    .notice-row .info h3 { font-size: 14px;}
    .notice-row .info .date { font-size: 11px;}
        .file-info h3 { font-size: 14px; }
    .file-info .meta { font-size: 11px; }
  /* 3列 → 3列，头像自适应高度 */
  .leader-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .leader-avatar {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 6;
    font-size: 26px;
  }

  .leader-card h4 {
    font-size: 14px;
    margin-top: 6px;
  }

  .leader-card .title {
    font-size: 11px;
  }

  .leader-card .unit {
    font-size: 11px;
  }

  .leader-section {
    margin-bottom: 24px;
  }

  .leader-section h3 {
    font-size: 15px;
    padding: 7px 12px;
    margin-bottom: 14px;
  }

  /* 领导详情页适配 */
  .leader-detail {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .leader-detail-photo img {
    width: 180px;
    height: 216px;
  }

  .leader-detail-info {
    width: 100%;
    text-align: center;
  }

  .leader-detail-name {
    font-size: 20px;
  }

  .leader-detail-title {
    font-size: 14px;
    padding-bottom: 0px;
  }

  .leader-detail-intro {
    padding: 15px;
    text-align: left;
  }

  /* 联系我们页面适配 */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 16px 0;
  }

  .contact-card {
    padding: 18px;
    gap: 12px;
  }

  .contact-card .icon-wrap {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .contact-card h4 {
    font-size: 14px;
  }

  .contact-card p {
    font-size: 13px;
  }
}

/* ------- 480px 及以下 ------- */
@media (max-width: 480px) {
  .about-main {
    padding: 12px 10px 20px;
  }


  /* 3列 → 2列，更适合小屏 */
  .leader-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .leader-avatar {
    aspect-ratio: 5 / 6;
    font-size: 22px;
  }

  .leader-card h4 {
    font-size: 13px;
    margin-top: 5px;
  }

  .leader-card .title,
  .leader-card .unit {
    font-size: 10px;
  }

  .leader-section h3 {
    font-size: 14px;
    padding: 6px 10px;
    margin-bottom: 12px;
  }

  /* 领导详情页适配 */
  .leader-detail-photo img {
    width: 150px;
    height: 180px;
  }

  .leader-detail-name {
    font-size: 18px;
  }

  .leader-detail-title {
    font-size: 13px;
    padding-bottom: 0px;
  }

  .leader-detail-intro {
    padding: 12px;
  }

  /* 联系我们页面适配 */
  .contact-grid {
    gap: 12px;
    margin: 12px 0;
  }

  .contact-card {
    padding: 14px;
    gap: 10px;
  }

  .contact-card .icon-wrap {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .contact-card h4 {
    font-size: 13px;
  }

  .contact-card p {
    font-size: 12px;
  }
}

/* ========== about.html 内容区移动端适配 ========== */

/* ------- 768px 及以下 ------- */
@media (max-width: 768px) {
  /* 内容区上下间距收缩 */
  .page-content {
    padding: 20px 0 40px;
  }

  /* about 布局：单栏，侧边栏隐藏，内容区占满 */
  .about-layout {
    display: block;
  }


  /* 主内容区：占满宽度 */


  .about-main h2 {
    font-size: 17px;
    margin-bottom: 18px;
    padding-bottom: 10px;
  }

  .about-main h2 span::after {
    bottom: -12px;
    height: 2px;
  }

  .about-main p {
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 12px;
  }

  /* 数据统计行：4列改为2列 */
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
  }

  .stat-item {
    padding: 18px 10px;
  }

  .stat-item .num {
    font-size: 26px;
  }

  .stat-item .num span {
    font-size: 14px;
  }

  .stat-item .label {
    font-size: 13px;
    margin-top: 4px;
  }

  /* 图片 */
  .about-img {
    height: 200px;
    margin: 14px 0;
  }

  /* 高亮引用框 */
  .highlight-box {
    padding: 14px 16px;
    margin: 16px 0;
  }

  .highlight-box p {
    font-size: 14px;
  }
}

/* ------- 480px 及以下 ------- */
@media (max-width: 480px) {
  .page-content {
    padding: 14px 0 30px;
  }

  /* 主内容区进一步收缩 */
  .about-main {
    padding: 14px 12px 20px;
  }

  .about-main h2 {
    margin-bottom: 14px;
    padding-bottom: 8px;
  }

  .about-main p {
    font-size: 13px;
    line-height: 1.85;
  }

  /* 数据统计行：保持2列，进一步收缩 */
  .stat-row {
    gap: 10px;
    margin: 16px 0;
  }

  .stat-item {
    padding: 14px 8px;
    border-radius: var(--radius);
  }

  .stat-item .num {
    font-size: 22px;
  }

  .stat-item .num span {
    font-size: 13px;
  }

  .stat-item .label {
    font-size: 12px;
  }

  .about-img {
    height: 160px;
    border-radius: var(--radius-sm);
  }

  .highlight-box {
    padding: 12px 14px;
    border-left-width: 3px;
    margin: 12px 0;
  }

  .highlight-box p {
    font-size: 13px;
  }
}

/* ========== news.html 新闻列表移动端适配 ========== */

/* ------- 992px 及以下 ------- */
@media (max-width: 992px) {
  /* 右侧侧边栏隐藏 */
  .list-sidebar {
    display: none;
  }

  .list-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* 缩略图宽度收缩 */
  .article-thumb {
    width: 220px;
    height: 140px;
  }

  .article-info h3 {
    font-size: 18px;
  }

  .article-info p {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }

  .article-meta {
    font-size: 13px;
  }
}

/* ------- 768px 及以下 ------- */
@media (max-width: 768px) {
  /* 列表主区域 */
  .list-main {
    padding: 16px 14px 24px;
  }

  .breadcrumb-wrap {
    padding: 10px 0;
  }

  .breadcrumb {
    font-size: 13px;
  }

  .page-content {
    padding: 20px 0 40px;
  }

  /* 侧边栏隐藏（安全措施） */
  .list-sidebar {
    display: none;
  }

  .list-layout {
    grid-template-columns: 1fr;
  }

  /* 文章列表：卡片缩小，字数截断收紧 */
  .article-item {
    gap: 14px;
    padding: 16px 0;
  }

  .article-thumb {
    width: 140px;
    height: 100px;
    flex-shrink: 0;
  }

  .article-info h3 {
    font-size: 15px;
    -webkit-line-clamp: 2;
    line-height: 1.5;
    margin-bottom: 6px;
  }

  .article-info p {
    font-size: 13px;
    -webkit-line-clamp: 2;
    line-height: 1.6;
    margin-bottom: 6px;
  }

  .article-meta {
    font-size: 12px;
    gap: 12px;
  }

  /* 无缩略图的纯文字文章 */
  .article-item.no-thumb .article-info {
    width: 100%;
  }

  /* 分页：按钮收缩 */
  .pagination {
    margin-top: 24px;
    gap: 4px;
  }

}

/* ------- 480px 及以下 ------- */
@media (max-width: 480px) {
  .page-content {
    padding: 14px 0 30px;
  }

  .list-main {
    padding: 12px 10px 20px;
  }

  /* 文章卡片：缩略图改为上方 banner 样式 */
  .article-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 14px 0;
  }

  .article-thumb {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    overflow: hidden;
    background: var(--gray-100);
  }

  .article-thumb img {
    width: 100%;
    height: auto;
    object-fit: scale-down;
  }

  .article-info {
    padding: 10px 0 0;
  }

  .article-info h3 {
    font-size: 14px;
    -webkit-line-clamp: 2;
    margin-bottom: 5px;
  }

  .article-info p {
    font-size: 12px;
    -webkit-line-clamp: 2;
    line-height: 1.55;
    margin-bottom: 5px;
  }

  .article-meta span {
    font-size: 11px;
    gap: 10px;
  }

  /* 无缩略图文章保持原有布局 */
  .article-item.no-thumb {
    display: block;
    padding: 14px 0;
  }

  .article-item.no-thumb .article-info {
    width: 100%;
    padding: 0;
  }

  /* 分页进一步收缩 */
  .pagination {
    margin-top: 20px;
    gap: 3px;
    flex-wrap: wrap;
  }

}

/* ========== news-detail.html 新闻详情页移动端适配 ========== */

/* ------- 992px 及以下 ------- */
@media (max-width: 992px) {
  /* 右侧侧边栏隐藏（与 news.html 保持一致） */
  .list-sidebar {
    display: none;
  }

  .list-layout {
    grid-template-columns: 1fr;
  }

  /* 详情页：正文图片撑开一些 */
  .news-detail-content img {
    max-width: 85%;
  }
}

/* ------- 768px 及以下 ------- */
@media (max-width: 768px) {
  /* 列表主区域 */
  .list-main {
    padding: 16px 14px 24px;
  }

  .page-content {
    padding: 20px 0 40px;
  }

  /* 侧边栏隐藏 */
  .list-sidebar {
    display: none;
  }

  .list-layout {
    grid-template-columns: 1fr;
  }

  /* 标题收缩 */
  .news-detail-title {
    font-size: 20px;
    text-align: left;
    margin-bottom: 14px;
    line-height: 1.45;
  }

  /* 元信息：间距收缩 */
  .news-detail-meta {
    gap: 14px;
    font-size: 13px;
    padding-bottom: 14px;
    margin-bottom: 20px;
  }

  /* 字号控制按钮保持一行 */
  .font-size-control {
    gap: 6px;
  }

  .font-size-control button {
    font-size: 13px;
    padding: 2px 5px;
  }

  /* 正文区 */
  .news-detail-content {
    font-size: 15px;
    line-height: 1.8;
  }

  .news-detail-content p {
    margin-bottom: 14px;
    text-indent: 0;
  }

  .news-detail-content h2 {
    font-size: 18px;
    margin: 22px 0 12px;
    padding-left: 10px;
  }

  .news-detail-content h3 {
    font-size: 16px;
    margin: 20px 0 10px;
  }

  /* 正文图片：撑满宽度 */
  .news-detail-content img {
    max-width: 100%;
    margin: 16px 0;
  }

  .news-detail-content blockquote {
    margin: 16px 0;
    padding: 14px 16px;
    font-size: 14px;
  }

  /* 上下篇导航 */
  .news-nav {
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
    margin-top: 24px;
  }

  .news-nav-item {
    font-size: 13px;
    gap: 6px;
  }

  .news-nav-item span {
    max-width: none;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
}

/* ------- 480px 及以下 ------- */
@media (max-width: 480px) {
  .page-banner {
    height: 100px !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-color: #1e6fc5 !important;
  }

  .page-banner h2 {
    font-size: 19px;
  }

  .banner-subtitle {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .breadcrumb {
    font-size: 12px;
  }

  .page-content {
    padding: 14px 0 30px;
  }

  .list-main {
    padding: 12px 10px 20px;
  }

  /* 标题进一步缩小 */
  .news-detail-title {
    font-size: 17px;
    margin-bottom: 12px;
  }

  /* 元信息：字号缩小，允许换行 */
  .news-detail-meta {
    gap: 10px;
    font-size: 12px;
    padding-bottom: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }

  /* 字号控制：480px 下隐藏（正文已够大） */
  .font-size-control {
    display: none;
  }

  /* 正文区进一步收缩 */
  /*.news-detail-content {
    font-size: 14px;
    line-height: 1.85;
  }

  .news-detail-content p {
    margin-bottom: 12px;
  }

  .news-detail-content h2 {
    font-size: 16px;
    margin: 18px 0 10px;
    padding-left: 8px;
    border-left-width: 3px;
  }

  .news-detail-content h3 {
    font-size: 15px;
    margin: 16px 0 8px;
  }

  .news-detail-content img {
    border-radius: var(--radius-sm);
  }

  .news-detail-content blockquote {
    font-size: 13px;
    padding: 12px 14px;
    margin: 14px 0;
  }*/

  /* 上下篇导航：保持纵向，彻底收缩 */
  .news-nav {
    padding: 14px 0;
    margin-top: 20px;
    gap: 10px;
  }

  .news-nav-item {
    font-size: 12px;
  }
}

/* ========== policy-detail.html 政策详情页移动端适配 ========== */

/* ------- 992px 及以下 ------- */
@media (max-width: 992px) {
  /* 右侧侧边栏隐藏（与 news-detail 保持一致） */
  .list-sidebar {
    display: none;
  }
  .page-banner {
    height: 130px !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-color: #1e6fc5 !important;
  }
  .list-layout {
    grid-template-columns: 1fr;
  }
}

/* ------- 768px 及以下 ------- */
@media (max-width: 768px) {
  /* 列表主区域 */
  .list-main {
    padding: 16px 14px 24px;
  }

  .page-content {
    padding: 20px 0 40px;
  }

  /* 侧边栏隐藏 */
  .list-sidebar {
    display: none;
  }
  .page-banner {
    height: 100px !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-color: #1e6fc5 !important;
  }
  .list-layout {
    grid-template-columns: 1fr;
  }

  /* 标题收缩 */
  .policy-detail-title {
    font-size: 20px;
    text-align: left;
    margin-bottom: 14px;
    line-height: 1.45;
  }

  /* 元信息 */
  .policy-detail-meta {
    gap: 14px;
    font-size: 13px;
    padding-bottom: 14px;
    margin-bottom: 20px;
  }

  /* 正文区 */
  .policy-detail-content {
    font-size: 15px;
    line-height: 1.8;
  }

  .policy-detail-content p {
    margin-bottom: 14px;
    text-indent: 0;
  }

  .policy-detail-content h2 {
    font-size: 18px;
    margin: 22px 0 12px;
    padding-left: 10px;
  }

  .policy-detail-content h3 {
    font-size: 16px;
    margin: 20px 0 10px;
  }

  .policy-detail-content ul,
  .policy-detail-content ol {
    padding-left: 1.4em;
  }

  .policy-detail-content li {
    margin-bottom: 8px;
  }

  /* 下载区域 */
  .download-section {
    padding: 16px;
    margin-top: 24px;
  }

  .download-section h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .download-list {
    gap: 10px;
  }

  .download-item {
    padding: 9px 14px;
  }

  .download-item a {
    font-size: 13px;
  }
}

/* ------- 480px 及以下 ------- */
@media (max-width: 480px) {

  .page-content {
    padding: 14px 0 30px;
  }

  .list-main {
    padding: 12px 10px 20px;
  }

  /* 标题进一步缩小 */
  .policy-detail-title {
    font-size: 17px;
    margin-bottom: 12px;
  }

  /* 元信息 */
  .policy-detail-meta {
    gap: 10px;
    font-size: 12px;
    padding-bottom: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }

  /* 正文区进一步收缩 */
  .policy-detail-content {
    font-size: 14px;
    line-height: 1.85;
  }

  .policy-detail-content p {
    margin-bottom: 12px;
  }

  .policy-detail-content h2 {
    font-size: 16px;
    margin: 18px 0 10px;
    padding-left: 8px;
    border-left-width: 3px;
  }

  .policy-detail-content h3 {
    font-size: 15px;
    margin: 16px 0 8px;
  }

  /* 下载区域：改为纵向排列 */
  .download-section {
    padding: 14px;
    margin-top: 20px;
  }

  .download-section h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .download-list {
    flex-direction: column;
    gap: 8px;
  }

  .download-item {
    padding: 10px 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .download-item a {
    font-size: 13px;
  }
}

/* ========== academic.html 学术动态页移动端适配 ========== */

/* ------- 992px 及以下 ------- */
@media (max-width: 992px) {
  .tabs-container .about-sidebar {
    display: none;
  }
  .academic-main h2 span::after {
    bottom: -14px;
    height: 2px;
  }
  .tabs-container {
    display: block;
  }

  .academic-main {
    padding: 16px 14px 24px;
  }

  .academic-main h2 {
    font-size: 17px;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }
}

/* ------- 768px 及以下 ------- */
@media (max-width: 768px) {
  .tabs-container {
    display: block;
  }

  .academic-main {
    padding: 16px 14px 24px;
  }
  .page-content {
    padding: 20px 0 40px;
  }

  .academic-main h2 {
    font-size: 17px;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }

  .academic-main h2 span::after {
    bottom: -14px;
    height: 2px;
  }

  .article-item {
    gap: 14px;
    padding: 14px 0;
  }

  .article-thumb {
    width: 120px;
    height: 90px;
    flex-shrink: 0;
  }

  .article-info h3 {
    font-size: 15px;
    -webkit-line-clamp: 2;
    line-height: 1.5;
    margin-bottom: 5px;
  }

  .article-info p {
    font-size: 13px;
    -webkit-line-clamp: 2;
    line-height: 1.6;
    margin-bottom: 5px;
  }

  .article-meta {
    font-size: 12px;
  }

  /* 无缩略图的纯文字文章保持块状 */
  .article-item.no-thumb {
    display: block;
    padding: 14px 0;
  }

  .article-item.no-thumb .article-info {
    width: 100%;
    padding: 0;
  }

  /* 分页：按钮收缩 */
  .pagination {
    margin-top: 20px;
    gap: 4px;
  }


}

/* ------- 480px 及以下 ------- */
@media (max-width: 480px) {
  .page-content {
    padding: 14px 0 30px;
  }

  .academic-main {
    padding: 12px 10px 20px;
  }

  .academic-main h2 {
    font-size: 15px;
    margin-bottom: 14px;
    padding-bottom: 8px;
  }

  /* 有图文章改为纵向堆叠（图上、文下） */
  .article-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
  }

  .article-thumb {
    width: 100%;
    height: 150px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
  }

  .article-info {
    padding: 10px 0 0;
  }

  .article-info h3 {
    font-size: 14px;
    -webkit-line-clamp: 2;
    margin-bottom: 4px;
  }

  .article-info p {
    font-size: 12px;
    -webkit-line-clamp: 2;
    line-height: 1.55;
    margin-bottom: 4px;
  }

  .article-meta {
    font-size: 11px;
  }

  /* 无缩略图文章保持块状 */
  .article-item.no-thumb {
    display: block;
    padding: 12px 0;
  }

  .article-item.no-thumb .article-info {
    width: 100%;
    padding: 0;
  }

  /* 分页进一步收缩 */
  .pagination {
    margin-top: 16px;
    gap: 3px;
    flex-wrap: wrap;
  }

}

/* ========== academic-research.html 课题研究页移动端适配 ========== */

/* ------- 768px 及以下 ------- */
@media (max-width: 768px) {
  /* 隐藏左侧标签栏，内容区独占全宽 */
  .tabs-container {
    display: block;
  }

  /* 右侧内容区 */
  .research-main {
    padding: 16px 14px 24px;
  }


  .page-content {
    padding: 20px 0 40px;
  }

  /* 标题收缩 */
  .research-main h2 {
    font-size: 17px;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }

  .research-main h2 span::after {
    bottom: -14px;
    height: 2px;
  }

  /* 课题卡片：间距收紧 */
  .topic-item {
    padding: 14px 0;
  }

  .topic-item h3 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 6px;
  }

  .topic-item p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 6px;
  }

  .topic-meta {
    gap: 12px;
    font-size: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
  }

  /* 分页：按钮收缩 */
  .pagination {
    margin-top: 20px;
    gap: 4px;
  }


}

/* ------- 480px 及以下 ------- */
@media (max-width: 480px) {
  .page-content {
    padding: 14px 0 30px;
  }

  .research-main {
    padding: 12px 10px 20px;
  }

  .research-main h2 {
    font-size: 15px;
    margin-bottom: 14px;
    padding-bottom: 8px;
  }

  /* 课题卡片进一步收缩 */
  .topic-item {
    padding: 12px 0;
  }

  .topic-item h3 {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 5px;
  }

  .topic-item p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 5px;
  }

  .topic-meta {
    gap: 10px;
    font-size: 11px;
    margin-top: 6px;
  }

  /* 分页进一步收缩 */
  .pagination {
    margin-top: 16px;
    gap: 3px;
    flex-wrap: wrap;
  }


}

/* ========== branches.html 分支机构页移动端适配 ========== */

/* ------- 768px 及以下 ------- */
@media (max-width: 768px) {
  /* 隐藏左侧标签栏，内容区独占全宽 */
  .tabs-container {
    display: block;
  }

  /* 右侧内容区 */
  .branch-main {
    padding: 16px 14px 24px;
  }


  .page-content {
    padding: 20px 0 40px;
  }

  /* 标题收缩 */
  .branch-main h2 {
    font-size: 17px;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }

  .branch-main h2 span::after {
    bottom: -14px;
    height: 2px;
  }

  /* 卡片网格：改为单列，每张卡片撑满 */
  .branch-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .branch-list li {
    padding: 16px;
  }

  .branch-name {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .branch-desc {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 10px;
  }

  /* 操作按钮：按钮撑满全宽 */
  .branch-actions {
    gap: 8px;
  }

  .branch-actions a {
    flex: 1;
    text-align: center;
    font-size: 13px;
    padding: 6px 10px;
  }
}

/* ------- 480px 及以下 ------- */
@media (max-width: 480px) {
  .page-content {
    padding: 14px 0 30px;
  }

  .branch-main {
    padding: 12px 10px 20px;
  }

  .branch-main h2 {
    font-size: 15px;
    margin-bottom: 14px;
    padding-bottom: 8px;
  }

  /* 卡片网格保持单列，卡片间距进一步收紧 */
  .branch-list {
    gap: 10px;
  }

  .branch-list li {
    padding: 14px;
  }

  .branch-name {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .branch-desc {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 10px;
    -webkit-line-clamp: 3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }

  /* 操作按钮：两按钮各自撑满一行 */
  .branch-actions {
    flex-direction: column;
    gap: 6px;
  }

  .branch-actions a {
    flex: none;
    width: 100%;
    text-align: center;
    font-size: 13px;
    padding: 7px 10px;
  }
}

/* ========== branch-news.html 分会动态页移动端适配 ========== */

/* ------- 768px 及以下 ------- */
@media (max-width: 768px) {
  /* 隐藏左侧标签栏，内容区独占全宽 */
  .tabs-container {
    display: block;
  }

  /* 右侧内容区 */
  .news-main {
    padding: 16px 14px 24px;
  }
  .page-content {
    padding: 20px 0 40px;
  }

  /* 标题收缩 */
  .news-main h2 {
    font-size: 17px;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }

  .news-main h2 span::after {
    bottom: -14px;
    height: 2px;
  }

  /* 有缩略图的文章：保持横向，缩小尺寸 */
  .article-item {
    gap: 14px;
    padding: 14px 0;
  }

  .article-thumb {
    width: 120px;
    height: 90px;
    flex-shrink: 0;
  }

  .article-info h3 {
    font-size: 15px;
    -webkit-line-clamp: 2;
    line-height: 1.5;
    margin-bottom: 5px;
  }

  .article-info p {
    font-size: 13px;
    -webkit-line-clamp: 2;
    line-height: 1.6;
    margin-bottom: 5px;
  }

  .article-meta {
    font-size: 12px;
    gap: 10px;
  }

  /* 分会标签：允许换行 */
  .article-meta .branch-tag {
    font-size: 11px;
    padding: 1px 5px;
  }

  /* 无缩略图文章保持块状 */
  .article-item.no-thumb {
    display: block;
    padding: 14px 0;
  }

  .article-item.no-thumb .article-info {
    width: 100%;
    padding: 0;
  }

  /* 分页：按钮收缩 */
  .pagination {
    margin-top: 20px;
    gap: 4px;
  }

}

/* ------- 480px 及以下 ------- */
@media (max-width: 480px) {
  .page-content {
    padding: 14px 0 30px;
  }

  .news-main {
    padding: 12px 10px 20px;
  }

  .news-main h2 {
    font-size: 15px;
    margin-bottom: 14px;
    padding-bottom: 8px;
  }

  /* 有图文章改为纵向堆叠（图上、文下） */
  .article-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
  }

  .article-thumb {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
  }

  .article-info {
    padding: 10px 0 0;
  }

  .article-info h3 {
    font-size: 14px;
    -webkit-line-clamp: 2;
    margin-bottom: 4px;
  }

  .article-info p {
    font-size: 12px;
    -webkit-line-clamp: 2;
    line-height: 1.55;
    margin-bottom: 4px;
  }

  .article-meta {
    font-size: 11px;
    gap: 8px;
  }

  .article-meta .branch-tag {
    font-size: 10px;
    padding: 1px 4px;
  }

  /* 无缩略图文章保持块状 */
  .article-item.no-thumb {
    display: block;
    padding: 12px 0;
  }

  .article-item.no-thumb .article-info {
    width: 100%;
    padding: 0;
  }

  /* 分页进一步收缩 */
  .pagination {
    margin-top: 16px;
    gap: 3px;
    flex-wrap: wrap;
  }


}

/* ========== download.html 常用下载页移动端适配 ========== */

/* ------- 992px 及以下 ------- */
@media (max-width: 992px) {
  .page-content {
    padding: 20px 0 40px;
  }

  .download-container {
    padding: 20px 15px;
  }

  .download-section1 {
    margin-bottom: 28px;
  }

  .download-section1:last-child {
    margin-bottom: 0;
  }

  .category-header {
    font-size: 17px;
    margin-bottom: 16px;
    padding: 8px 14px;
  }

  .download-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .download-card {
    overflow: hidden;
  }

  .download-body {
    padding: 16px 14px;
  }

  .download-body h3 {
    font-size: 15px;
  }

  .download-body p {
    font-size: 13px;
  }

  .download-btn {
    padding: 7px 16px;
    font-size: 13px;
  }
}

/* ------- 768px 及以下 ------- */
@media (max-width: 768px) {

  .page-content {
    padding: 20px 0 40px;
  }

  /* 下载容器：padding 收紧 */
  .download-container {
    padding: 16px 14px 24px;
  }

  /* 分类区块间距收紧 */
  .download-section1 {
    margin-bottom: 24px;
  }

  .download-section1:last-child {
    margin-bottom: 0;
  }

  /* 分类标题：字号收缩，保持渐变和左侧边线 */
  .category-header {
    font-size: 16px;
    margin-bottom: 16px;
    padding: 7px 12px;
  }

  /* 卡片网格：5列 → 2列 */
  .download-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* 卡片：padding 收紧 */
  .download-card {
    overflow: hidden;
  }

  .download-body {
    padding: 14px 12px;
  }

  /* 卡片内标题：允许2行截断 */
  .download-body h3 {
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .download-card:hover .download-body h3 {
    color: var(--primary);
  }

  .download-body p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  /* 下载按钮：撑满全宽方便点击 */
  .download-btn {
    width: 100%;
    padding: 8px 12px;
    font-size: 13px;
  }
}

/* ------- 480px 及以下 ------- */
@media (max-width: 480px) {

  .page-content {
    padding: 14px 0 30px;
  }

  .download-container {
    padding: 12px 10px 20px;
  }

  /* 分类区块间距进一步收紧 */
  .download-section1 {
    margin-bottom: 18px;
  }

  .download-section1:last-child {
    margin-bottom: 0;
  }

  /* 分类标题进一步收缩 */
  .category-header {
    font-size: 14px;
    margin-bottom: 12px;
    padding: 6px 10px;
  }

  /* 卡片网格：2列 → 单列 */
  .download-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* 卡片内容：居中改为左对齐 */
  .download-body {
    padding: 14px;
    text-align: left;
  }

  .download-body h3 {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .download-body p {
    font-size: 11px;
    margin-bottom: 10px;
  }

  /* 下载按钮保持全宽 */
  .download-btn {
    width: 100%;
    padding: 8px 12px;
    font-size: 13px;
  }
}