﻿ /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            color: #333;
            background-color: #f5f7fa;
            line-height: 1.6;
            font-size: 17px;
        }

        .containers {
            max-width: 1300px;
            margin: 15px auto;
            padding: 0 10px;
        }

        .container3 {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
        }

        /* 版心容器 */
        .container-leader {
            flex: 1;
        }

        /* 领导团队主容器 */
        .team-leader {
            background-color: #fff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: box-shadow 0.3s ease;
        }

        .team-leader:hover {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        /* 标题区域 */
        .header-leader {
            padding: 16px 20px;
            background: linear-gradient(to right, #f8f9fa, #fff);
            border-bottom: 1px solid #eaedf2;
        }

        .title-leader {
            font-size: 25px;
            font-weight: 700;
            color: #1a2b3c;
            position: relative;
            padding-left: 15px;
        }

        .title-leader::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 24px;
            background-color: #0056b3;
            border-radius: 2px;
        }

        /* 主要领导详情 - 横向排列 */
        .primary-leader {
            /* display: flex; */
            padding: 10px 40px;
            border-bottom: 1px solid #eaedf2;
            background: linear-gradient(to right, #f8f9fa, #fff);
        }

        .profile-leader {
            display: flex;
            flex: 1;
        }

        .photo-leader {
            width: 150px;
            height: 200px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .info-leader {
            margin-left: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .name-leader {
            font-size: 24px;
            font-weight: 700;
            color: #1a2b3c;
            margin-bottom: 10px;
        }

        .position-leader {
            font-size: 18px;
            color: #5a6a85;
            margin-bottom: 15px;
        }

        .description-leader {
            font-size: 17px;
            color: #5a6a85;
            line-height: 1.7;
        }

        .divider-leader {
            width: 1px;
            background-color: #eaedf2;
            margin: 0 40px;
        }

        /* 领导团队列表 - 横向排列 */
        .team-grid-leader {
            display: flex;
            padding: 20px 30px;
            align-items: center;
        }

        .sidebar-leader {
            min-width: 120px;
            background: linear-gradient(135deg, #0056b3, #0077cc);
            box-shadow: 0 3px 10px rgba(0, 86, 179, 0.2);
            color: #fff;
            padding: 15px;
            border-radius: 4px;
            text-align: center;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sidebar-title-leader {
            font-size: 22px;
            font-weight: 600;
            letter-spacing: 2px;
        }

        .members-leader {
            flex: 1;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            padding-left: 50px;
        }

        .member-leader {
            text-align: center;
            transition: all 0.3s ease;
            min-width: 100px;
            padding: 10px;
            border-radius: 6px;
   
        }

        .member-leader:hover {
            transform: translateY(-3px);
        }

        .member-name-leader {
            font-size: 18px;
            font-weight: 500;
            color: #2c3e50;
            padding: 8px 0;
            position: relative;
        }

        .member-name-leader::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: #0056b3;
            transition: width 0.3s ease;
        }

        .member-leader:hover .member-name-leader::after {
            width: 30px;
        }

        /* 政府信息公开 */
        .container2 {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        /* 政府信息公开容器 */
        .container-public {
            flex: 1.3;
            min-width: 300px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: box-shadow 0.3s ease;
        }

        .container-public:hover {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        /* 标题区域 */
        .header-public {
            padding: 16px 20px;
            border-bottom: 1px solid #eaedf2;
        }

        .title-public {
            font-size: 25px;
            font-weight: 700;
            color: #1a2b3c;
            position: relative;
            padding-left: 12px;
        }

        .title-public::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 20px;
            background-color: #1e88e5;
            border-radius: 2px;
        }

        /* 菜单列表 */
        .menu-public {
            list-style: none;
        }

        .menu-item-public {
            transition: all 0.3s ease;
        }

        .menu-item-public:last-child {
            border-bottom: none;
        }

        .menu-link-public {
            display: flex;
            align-items: center;
            padding: 11px 18px;
            text-decoration: none;
            color: #2c3e50;
            background-color: #f5f9ff;
            margin: 6px 0;
            border-radius: 4px;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .menu-link-public:hover {
            background-color: #e3f2fd;
            transform: translateX(5px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        .icon-public {
            width: 36px;
            height: 36px;
            background-color: #64b5f6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: white;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(100, 181, 246, 0.3);
            transition: all 0.3s ease;
        }

        .menu-link-public:hover .icon-public {
            background-color: #1e88e5;
            transform: scale(1.1);
        }

        .text-public {
            font-size: 18px;
            font-weight: 500;
            flex-grow: 1;
        }

        /* 内容区域 */
        .content-public {
            padding: 15px 20px 20px;
        }

        /* 政府信息公开容器 */
        .container-info {
            flex: 2;
            min-width: 300px;
            background-color: #fff;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
            border: 1px solid #eaeaea;
            border-radius: 8px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: box-shadow 0.3s ease;
        }

        .container-info:hover {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        /* 标题区域 */
        .header-info {
            padding: 16px 20px;
            border-bottom: 1px solid #eaeaea;
            background: linear-gradient(to right, #f8f9fa, #fff);
            border-bottom: 1px solid #eaedf2;
        }

        .title-info {
            font-size: 24px;
            font-weight: 700;
            color: #000;
            letter-spacing: 1px;
        }

        /* Tab栏样式 */
        .tabs-info {
            display: flex;
            border-bottom: 1px solid #eaeaea;
            background-color: #f8f9fa;
        }

        .tab-info {
            padding: 16px 30px;
            font-size: 21px;
            font-weight: 500;
            color: #555;
            cursor: pointer;
            position: relative;
            transition: all 0.2s ease;
            text-align: center;
            overflow: hidden;
        }

        .tab-info::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background-color: rgba(0, 86, 179, 0.1);
            transition: height 0.3s ease;
            z-index: -1;
        }

        .tab-info:hover::before {
            height: 100%;
        }

        .tab-info:hover {
            color: #000;
        }

        .tab-info.active-info {
            color: #000;
            font-weight: 600;
        }

        .tab-info.active-info::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 30px;
            right: 30px;
            height: 2px;
            background-color: #0056b3;
        }

        /* 内容区域 */
        .tab-content-info {
            display: none;
            padding: 0;
            max-height: 600px;
        }

        .tab-content-info.active-info {
            display: block;
        }

        /* 添加兼容性支持，保留旧类名 */
        .tab-content-info.active-content {
            display: block;
        }

        .tab-content-info::-webkit-scrollbar {
            width: 6px;
        }

        .tab-content-info::-webkit-scrollbar-thumb {
            background-color: rgba(0, 0, 0, 0.1);
            border-radius: 3px;
        }

        .tab-content-info::-webkit-scrollbar-track {
            background-color: rgba(0, 0, 0, 0.03);
        }

        /* 文档列表 */
        .document-list-info {
            list-style: none;
        }

        .document-item-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 29px 20px;
            border-bottom: 1px solid #f5f5f5;
            transition: all 0.2s ease;
        }

        .document-item-info:hover {
            background-color: #f8fbff;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
        }

        .document-title-info {
            flex: 1;
            position: relative;
            padding-left: 12px;
            color: #333;
            text-decoration: none;
            font-size: 17px;
            line-height: 1.5;
            transition: all 0.2s ease;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            max-width: 85%;
        }

        .document-title-info::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background-color: #999;
        }

        .document-title-info:hover {
            color: #000;
        }

        .document-date-info {
            color: #999;
            font-size: 16px;
            white-space: nowrap;
            margin-left: 15px;
        }

        /* 分页区域 */
        .pagination-info {
            display: flex;
            justify-content: center;
            padding: 15px 0;
            border-top: 1px solid #f5f5f5;
            margin-top: 10px;
        }

        .page-item-info {
            margin: 0 5px;
        }

        .page-link-info {
            display: inline-block;
            padding: 8px 14px;
            border: 1px solid #eaeaea;
            color: #666;
            text-decoration: none;
            transition: all 0.2s ease;
            font-size: 16px;
        }

        .page-link-info:hover {
            border-color: #999;
            color: #000;
        }

        .page-link-info.active-info {
            background-color: #0056b3;
            color: white;
            border-color: #ffffff;
        }

        /* 优化分页器样式 */
        .pages {
            padding: 15px 0;
            border-top: 1px solid #eee;
        }

        .page-info {
            text-align: center;
            margin-bottom: 10px;
            color: #666;
            font-size: 13px;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .page-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .page-nav li {
            margin: 0 4px;
        }

        .page-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 32px;
            height: 32px;
            padding: 0 10px;
            border-radius: 2px;
            background-color: #fff;
            color: #333;
            font-size: 15px;
            text-decoration: none;
            border: 1px solid #ddd;
            transition: all 0.2s;
        }

        .page-link:hover {
            background-color: #f5f5f5;
            border-color: #ddd;
        }

        .page-link.current {
            background-color: #1890ff;
            color: white;
            border-color: #1890ff;
        }

        .page-link.disabled {
            color: #ccc;
            background-color: #fafafa;
            cursor: not-allowed;
        }

        .page-jump {
            display: flex;
            align-items: center;
            margin-left: 8px;
        }

        .jump-text {
            font-size: 14px;
            color: #666;
            margin-right: 5px;
        }

        select[name="pageSelect"] {
            height: 32px;
            padding: 0 8px;
            border: 1px solid #ddd;
            border-radius: 2px;
            background-color: #fff;
            color: #333;
            font-size: 14px;
        }

        @media (max-width: 576px) {
            .page-info {
                flex-wrap: wrap;
            }
        }

        /* 移除额外装饰，保持极简风格 */
        .page-info span::before {
            display: none;
        }

        .page-prev .page-link svg,
        .page-next .page-link svg {
            transition: none;
        }

        select[name="pageSelect"] {
            box-shadow: none;
            font-weight: normal;
            color: #333;
            transition: none;
        }

        /* 最新公开 */
        .container-open {
            min-width: 500px;
            background-color: #fff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: box-shadow 0.3s ease;
            flex: 1;
        }

        .container-open:hover {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        /* 标题区域 */
        .header-open {
            padding: 16px 20px;
            border-bottom: 1px solid #eee;
            background: linear-gradient(to right, #f8f9fa, #fff);
            border-bottom: 1px solid #eaedf2;
        }

      .title-open {
  font-size: 25px;
  font-weight: 700;
  color: #1a2b3c;
  position: relative;
  padding-left: 15px;
}

.title-open::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 20px;
  background-color: #e74c3c; /* 可以改成其他颜色，如 #0056b3 */
  border-radius: 2px;
}
        /* 内容区域 */
        .content-open {
            padding: 0 25px;
        }

        /* 文档列表 */
        .document-list-open {
            list-style: none;
        }

        .document-item-open {
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
        }

        .document-item-open:last-child {
            border-bottom: none;
        }

        .document-title-open {
            position: relative;
            padding-left: 15px;
            color: #333;
            text-decoration: none;
            font-size: 17px;
            line-height: 1.5;
            transition: all 0.2s ease;
            margin-bottom: 5px;
        }

        .document-title-open::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: #e74c3c;
        }

        .document-title-open:hover {
            color: #e74c3c;
        }

        .document-date-open {
            color: #999;
            font-size: 15px;
            padding-left: 15px;
        }

        /* 更多链接 */
        .more-open {
            text-align: right;
            padding: 5px 25px;
            border-top: 1px solid #eee;
        }

        .more-link-open {
            color: #666;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.2s ease;
        }

        .more-link-open:hover {
            color: #e74c3c;
        }

        .more-link-open::after {
            content: '>';
            margin-left: 5px;
            font-family: sans-serif;
        }

        /* 其他 */
        /* 政府信息导航容器 */
        .container-other {
            margin: 20px auto;
            background-color: #fff;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
        }

        /* 网格布局 */
        .grid-other {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }

        /* 导航项 */
        .item-other {
            background-color: #f5f5f5;
            padding: 12px 10px;
            text-align: center;
            transition: all 0.25s ease;
            border-radius: 4px;
        }

        .item-other:hover {
            background-color: #e8f4fc;
            transform: translateY(-2px);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        }

        /* 链接样式 */
        .link-other {
            text-decoration: none;
            color: #333;
            font-size: 17px;
            display: block;
            width: 100%;
            height: 100%;
            transition: all 0.2s ease;
        }

        .link-other:hover {
            color: #0066cc;
        }

        /* 特殊项（跨越3列） */
        .item-wide-other {
            grid-column: span 3;
            background-color: #f5f5f5;
            padding: 12px 10px;
            text-align: center;
            transition: all 0.25s ease;
            border-radius: 4px;
            margin-top: 5px;
        }

        .item-wide-other:hover {
            background-color: #e8f4fc;
            transform: translateY(-2px);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        }

        /* 响应式设计 - 统一优化 */
        @media (max-width: 1200px) {
            .containers {
                padding: 0 15px;
            }

            .container3,
            .container2 {
                gap: 12px;
            }
        }

        @media (max-width: 1100px) {
            .primary-leader {
                padding: 25px;
            }

            .photo-leader {
                width: 140px;
                height: 180px;
            }

            .team-grid-leader {
                padding: 25px;
            }

            .members-leader {
                padding-left: 30px;
                gap: 20px;
            }
        }

        @media (max-width: 992px) {
            body {
                font-size: 16px;
            }

            .title-leader {
                font-size: 26px;
            }

            .name-leader {
                font-size: 22px;
            }

            .position-leader {
                font-size: 17px;
            }

            .description-leader {
                font-size: 15px;
            }

            .sidebar-title-leader {
                font-size: 20px;
            }

            .title-info {
                font-size: 22px;
            }

            .tab-info {
                padding: 14px 20px;
                font-size: 19px;
            }

            .container-info {
                flex: 1 100%;
                order: 1;
            }

            .container-public {
                flex: 1;
                order: 2;
                min-width: 280px;
            }

            .primary-leader {
                padding: 20px;
            }

            .photo-leader {
                width: 130px;
                height: 170px;
            }

            .info-leader {
                margin-left: 20px;
            }

            .tab-info.active-info::after {
                left: 20px;
                right: 20px;
            }

            .document-title-info {
                font-size: 16px;
                max-width: 80%;
            }
        }

        @media (max-width: 768px) {
            body {
                font-size: 16px;
            }

            .title-leader {
                font-size: 24px;
            }

            .name-leader {
                font-size: 20px;
            }

            .member-name-leader {
                font-size: 17px;
            }

            
            .title-info,
            .title-open {
                font-size: 20px;
            }
            .title-public{
                font-size: 25px;

            }

            .tab-info {
                font-size: 17px;
            }

            .container3 {
                flex-direction: column;
            }

            .container-leader,
            .container-open {
                width: 100%;
            }

            .team-grid-leader {
                flex-direction: column;
                align-items: flex-start;
            }

            .sidebar-leader {
                width: 100%;
                height: auto;
                padding: 12px;
                margin-bottom: 20px;
            }

            .members-leader {
                padding-left: 0;
                justify-content: center;
                width: 100%;
                gap: 20px;
            }

            .profile-leader {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .info-leader {
                margin-left: 0;
                margin-top: 15px;
                text-align: center;
            }

            .document-item-info {
                padding: 15px 20px;
            }

            .tabs-info {
                overflow-x: auto;
                white-space: nowrap;
            }

            .grid-other {
                grid-template-columns: repeat(2, 1fr);
            }

            .item-wide-other {
                grid-column: span 2;
            }

            .imgurl img {
                max-width: 300px;
            }

            .container-open {
                min-width: 100%;
            }

            /* 改善小屏幕上的tab栏 */
            .tabs-info {
                justify-content: space-between;
                padding: 0 5px;
            }

            .tab-info {
                flex: 1;
                text-align: center;
                white-space: nowrap;
                padding: 12px 5px;
                font-size: 17px;
            }

            .tab-info.active-info::after {
                left: 10%;
                right: 10%;
            }
        }

        @media (max-width: 576px) {
            body {
                font-size: 15px;
            }

            .containers {
                padding: 0 10px;
            }

            .container-leader,
            .container-public,
            .container-info,
            .container-open {
                min-width: 100%;
            }

            .header-leader,
            .header-info,
            .header-public,
            .header-open {
                padding: 15px;
            }

            .title-leader,
            .title-info,
            .title-public,
            .title-open {
                font-size: 18px;
            }

            .primary-leader {
                padding: 15px;
            }

            .photo-leader {
                width: 120px;
                height: 160px;
            }

            .name-leader {
                font-size: 18px;
            }

            .position-leader {
                font-size: 15px;
            }

            .description-leader {
                font-size: 15px;
            }

            .team-grid-leader {
                padding: 15px;
            }

            .member-name-leader {
                font-size: 15px;
            }

            .tab-info {
                padding: 12px 15px;
                font-size: 15px;
            }

            .document-item-info {
                padding: 15px;
                flex-direction: column;
                align-items: flex-start;
            }

            .document-title-info {
                max-width: 100%;
                white-space: normal;
                margin-bottom: 8px;
                font-size: 15px;
            }

            .document-date-info {
                margin-left: 12px;
                margin-top: 5px;
                font-size: 13px;
            }

            .menu-link-public {
                padding: 12px 15px;
            }

            .icon-public {
                width: 32px;
                height: 32px;
                margin-right: 12px;
            }

            .text-public {
                font-size: 17px;
            }

            .document-title-open {
                font-size: 15px;
            }

            .document-date-open {
                font-size: 13px;
            }

            .pagination-info {
                padding: 15px 0;
                flex-wrap: wrap;
                justify-content: center;
            }

            .page-link-info {
                padding: 6px 10px;
                font-size: 14px;
            }

            .imgurl img {
                max-width: 100%;
            }

            .img-public {
                padding: 5px 0;
            }

            /* 改善超小屏幕上的内容显示 */
            .document-title-info,
            .document-title-open {
                font-size: 15px;
                line-height: 1.4;
            }

            .document-date-info,
            .document-date-open {
                font-size: 13px;
            }

            /* 优化超小屏幕上的间距 */
            .container3,
            .container2 {
                gap: 10px;
            }

            /* 优化图片显示 */
            .imgurl {
                width: 100%;
                max-width: 100%;
            }

            .imgurl img {
                max-width: 100%;
            }

            .member-leader {
                padding: 8px 5px;
            }
        }

        @media (max-width: 400px) {
            .grid-other {
                grid-template-columns: 1fr;
            }

            .item-wide-other {
                grid-column: span 1;
            }

            .member-leader {
                min-width: auto;
                width: calc(33.33% - 10px);
            }

            .members-leader {
                gap: 15px;
                justify-content: space-between;
            }

            .photo-leader {
                width: 100px;
                height: 140px;
            }

            .imgurl {
                width: 100%;
            }

            .document-title-info,
            .document-title-open {
                font-size: 13px;
            }

            .tab-info {
                padding: 10px 5px;
                font-size: 15px;
            }

            .member-leader {
                padding: 5px;
                width: calc(33.33% - 7px);
            }
        }

        .imgurl img {
            width: 100%;
            max-width: 424px;
            height: 100px;
            display: block;
        }

        .img-public {
            width: 100%;
            padding: 10px 0;
            display: flex;
            justify-content: center;
        }

        .imgurl {
            width: 424px;
        }

        /* 公开 */
        /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            color: #333;
            background-color: #f5f7fa;
            line-height: 1.6;
        }

        /* 版心容器 */
        .container-published {
            max-width: 1300px;
            margin: 30px auto;
        }

        /* 导航菜单 */
        .nav-published {
            display: flex;
            justify-content: space-between;
            gap: 15px;
            margin-bottom: 30px;
        }

        /* 导航项基础样式 */
        .nav-item-published {
            flex: 1;
            position: relative;
            border-radius: 8px;
            overflow: visible;
            /* 修改为visible，确保子菜单可见 */
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .nav-item-published:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* 导航链接样式 */
        .nav-link-published {
            display: flex;
            align-items: center;
            padding: 20px;
            text-decoration: none;
            color: #fff;
            font-size: 19px;
            font-weight: 500;
            border-radius: 8px;
        }

        /* 图标样式 */
        .icon-published {
            margin-right: 15px;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* 各导航项颜色 */
        .decision-published {
            background-color: #6EA8D3;
        }

        .implementation-published {
            background-color: #5ccabf;
        }

        .management-published {
            background-color: #6EA8D3;
        }

        .service-published {
            background-color: #87b866;
        }

        .result-published {
            background-color: #4aa29a;
        }

        /* 子菜单容器 - 默认隐藏 */
        .submenu-published {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            display: none;
            /* 默认不显示 */
            z-index: 100;
        }

        /* 悬浮时显示子菜单 */
        .nav-item-published:hover .submenu-published {
            display: block;
            /* 悬浮时显示 */
        }

        /* 子菜单项 */
        .submenu-item-published {
            display: block;
            padding: 15px 20px;
            text-decoration: none;
            color: #fff;
            font-size: 17px;
            transition: all 0.2s ease;
            background-color: #6EA8D3;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 2px;
        }

        .submenu-item-published:first-child {
            border-radius: 4px 4px 0 0;
        }

        .submenu-item-published:last-child {
            border-bottom: none;
            border-radius: 0 0 4px 4px;
        }

        .submenu-item-published:hover {
            background-color: #6a9fc4;
        }

        /* 标题样式 */
        .title-published {
            font-size: 24px;
            font-weight: 600;
            color: #333;
            margin: 30px 0 20px;
        }

        /* 响应式调整 */
        @media (max-width: 992px) {
            .nav-published {
                flex-wrap: wrap;
            }

            .nav-item-published {
                flex: 0 0 calc(50% - 10px);
            }
        }

        @media (max-width: 576px) {
            .nav-item-published {
                flex: 0 0 100%;
            }

            .nav-link-published {
                padding: 15px;
                font-size: 16px;
            }

            .icon-published {
                margin-right: 10px;
                font-size: 20px;
            }
        }

        /* 优化主标题区域 */
        .team-leader>.header-leader,
        .container-info>.header-info,
        .container-public>.header-public,
        .container-open>.header-open {
            padding: 16px 20px;
        }

        /* 优化边距和间距 */
        .content-leader {
            padding-bottom: 20px;
        }


/* 下拉菜单 */
.link-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.link-list li {
  position: relative;
  padding: 0 40px;
  font-size: 20px;
  color: #222;
  cursor: pointer;
  user-select: none;
  text-align: center;
  line-height: 48px;
}

.link-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: #cfd8e3;
}

.link-list li::before {
  content: "";
  display: inline-block;
  margin-left: 8px;
  border: 6px solid transparent;
  border-top: 6px solid #8a99a8;
  vertical-align: middle;
}

.link-list li:last-child::before {
  display: none;
}

/* 下拉菜单整体样式 */
.dropdown {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 54px;
  width: 1200px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-radius: 12px;
  z-index: 10;
  padding: 24px 30px;
  animation: dropdownFadeIn 0.22s;
  border: 1px solid #e3e8ee;
}

/* 内部链接布局 - 网格布局 */
.dropdown stl\:site {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

/* 单个链接项样式 */
.dropdown stl\:contents,
.dropdown stl\:a,
.link-item-a {
  flex: 0 0 calc(20% - 12px); /* 一行5个，可调整为16.66%实现6个 */
  font-size: 16px;
  color: #222;
  line-height: 1.5;
  text-decoration: none;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 4px 0;
  background: #f7fafd;
  transition: all 0.18s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  font-family: "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

/* 悬停效果 */
.dropdown stl\:a:hover,
.dropdown stl\:contents:hover,
.link-item-a:hover {
  background: #e3f0ff;
  color: #1976d2;
  box-shadow: 0 2px 8px rgba(25,118,210,0.08);
  transform: translateY(-1px);
}

/* 显示下拉菜单 */
.link-list li:hover .dropdown {
  display: block;
}

/* 动画效果 */
@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(16px);}
  to   { opacity: 1; transform: translateX(-50%) translateY(0);}
}



/* 查询 */

.container-search {
  max-width: 1300px;
  margin: 0 auto 15px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
  padding: 20px 25px 30px;
}

.container-search:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.search-title {
    position: relative;
  font-size: 25px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  padding-left: 13px;
}
.search-title::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background-color: #1e88e5;
    border-radius: 2px;
}

.search-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
}

.form-group {
  display: flex;
  align-items: center;
}

.form-group label {
  width: 100px;
  text-align: right;
  padding-right: 15px;
  font-size: 16px;
  color: #333;
  flex-shrink: 0;
}

.form-control {
  flex: 1;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  transition: all 0.2s ease;
}

.form-control:focus {
  border-color: #1976d2;
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.1);
  outline: none;
}

.form-control::placeholder {
  color: #bbb;
}

.form-buttons {
  grid-column: span 2;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 15px;
}

.btn {
  min-width: 100px;
  height: 40px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-search {
  background-color: #0056b3;
  color: #fff;
}

.btn-search:hover {
  background-color: #004494;
}

.btn-reset {
  background-color: #f2f6fa;
  color: #333;
  border: 1px solid #ddd;
}

.btn-reset:hover {
  background-color: #e6edf5;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .search-form {
    grid-template-columns: 1fr;
  }
  
  .form-buttons {
    grid-column: span 1;
  }
}