﻿body {
    background: url(../images/bg.png) no-repeat top center;
    background-color: #F4F8FA;

}



.topline {
    background: rgb(255, 255, 255, 0.5)
}

.topline .w1200 {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.topline .lfbox span {
    margin-right: 10px;
}

.topline .rgtbox span {
    margin-right: 10px;
}


.logobox {
    display: flex;
    padding: 80px 0;
    justify-content: space-between;
}

.logobox .logo img {
    width: 440px;
}


.searchbox .searchfist form {
    display: flex;
    align-items: center;
}

.searchbox .oldmod {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 10px;
}

.searchbox .oldmod div {
    background-color: #EC940A;
    height: 26px;
    line-height: 26px;
    text-align: center;
    padding: 0 15px;
    border-radius: 6px;
}

.searchbox .oldmod div a {
    color: #fff;
}

.searchbox .oldmod .oldbtn {
    margin-left: 15px;
}

.searchbox .search {
    width: 400px;
    height: 46px;
    background-color: #fff;
    border-radius: 4px 0 0 4px;
    text-indent: 1em;
}

.searchbox .searchbtn {
    width: 62px;
    height: 46px;
    background-color: #007AD8;
    line-height: 46px;
    border-radius: 0 4px 4px 0;
    text-align: center;
    font-size: 18px;
    color: #fff;
}

.searchbox .searchbtn a {
    color: #fff;
    display: inline-block;
}



/* 导航栏容器 */
.nav-box .nav {
    display: flex;
    /* 【关键1】底部对齐：确保所有菜单项底部在同一水平线 */
    align-items: flex-end;
    /* 【关键2】固定高度：设置为激活态的高度(60px)，防止激活时撑大容器导致下方内容跳动 */
    height: 60px;
}

.nav-box .nav a {
    background: #007AD8;

    display: inline-block;
    /* 【关键3】默认高度：比父容器矮，看起来就是“沉”在下面的 */
    height: 50px;
    line-height: 50px;
    flex: 1 1 auto;
    text-align: center;
    color: #fff;
    font-size: 18px;

    /* 动画过渡 */
    transition: all 0.3s ease-in-out;
    /* 初始圆角 */
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

/* 鼠标悬停效果 */
.nav-box .nav a:hover {
    height: 60px;
    line-height: 60px;
    z-index: 10;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    border-radius: 4px 4px 0 0;
}

/* 【关键4】激活状态样式 */
.nav-box .nav a.active {
    height: 60px;
    line-height: 60px;
    z-index: 10;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    border-radius: 4px 4px 0 0;
}

/* --- 新增：激活项的小三角装饰 --- */




/* 热点新闻 */


.headline {
    padding: 10px 20px;
    text-align: center;
    transition: all .2s;
    margin-bottom: 10px;
}



.headline a {
    text-align: center;
    color: #007AD8;
}

.headline .line1 {
    display: block;
    line-height: 55px;
    font-size: 30px;
    font-weight: 600;
}

.headline .line2,
.headline .line3 {
    display: inline-block;
    width: 470px;
    margin: 10px 10px 0 10px;
    font-size: 20px;
    line-height: normal;
}


/* 粘贴上述 CSS 代码 */
.bgc-box {
    width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
}

.scollmod {
    display: flex;
    justify-content: space-between;
    /* 两端对齐，或者用 gap 控制间距 */
    align-items: flex-start;
    /* 顶部对齐 */
}


.custom-swiper {
    position: relative;
    width: 75%;
    height: 450px;
    overflow: hidden;
    background-color: #f5f5f5;
    float: left;
    /* 让它在 scollmod 中左浮动，与右侧列表并排 */
    margin-right: 20px;
    /* 与右侧列表的间距 */
}

/* 确保父容器 scollmod 清除浮动，防止高度塌陷 */
.scollmod.w1200::after {
    content: "";
    display: table;
    clear: both;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.swiper-slide.active {
    opacity: 1;
    z-index: 2;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 标题样式 */
.swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.swiper-slide p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    z-index: 3;
}

.swiper-slide a:hover p {
    background: rgba(0, 0, 0, 0.8);
}

/* 分页器小圆点 */
.swiper-pagination {
    position: absolute;
    bottom: 16px;
    right: 12px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.swiper-pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.swiper-pagination-dot.active {
    background: #fff;
    transform: scale(1.2);
}



/* tab切换页 */
.news-list {
    width: 540px;
}

.news-list.channel-list-container .this-channel-title {
    border-bottom: 1px solid #ccc;
}

.news-list .tab-title {
    display: flex;
}

.news-list .tab-title li {
    flex: 1 1 auto;
    text-align: center;
}

.news-list .tab-title a,
.news-list .tab-title span {
    line-height: 45px;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.6);
    font-size: 20px;
}

.news-list .tab-title .active {

    border-bottom: 3px solid #007AD8;
}


.news-list .tab-title em {
    line-height: 45px;
    color: #e2e2e2;
    font-size: 15px;
}

.news-list .tab-list li {
    background: url(../images/2022/li-bg.png) left center no-repeat;
    padding-left: 15px;
}

.news-list .tab-list>ul {
    margin-top: 7px;
}

.news-list .tab-list>ul:nth-child(3) {
    margin-top: 5px;
}

.news-list .tab-list ul li * {
    line-height: 45px;
}

/* 二级tab */
.news-list .tab-list .this-channel-title {
    border: none;
}

.sub-tab-title {
    margin-bottom: 5px;
}

.news-list .tab-list .sub-tab-title {
    display: flex;
    background: #f5f5f5;
    align-items: center;
}

.news-list .tab-list .sub-tab-title em {
    font-size: 18px;
    font-weight: lighter;
}

.news-list .tab-list .sub-tab-title li {
    flex: 1 1 auto;
    text-align: center;
    background: none;
    height: 40px;
}

.news-list .tab-list .sub-tab-title li * {
    width: 100px;
    line-height: 40px;
    color: #888;
}

.news-list .tab-list .sub-tab-title li.active * {
    color: #007AD8;
}

.news-list .tab-list .sub-tab-list>ul {
    margin-top: 12px;
}

/* 二级tab end */
/* 默认隐藏所有内容列表 */
.tab-list>ul {
    display: none;
}

/* 只有带有 active 类的才显示 */
.tab-list>ul.active {
    display: block;
}

/* 同理处理二级列表 */
.sub-tab-list>ul {
    display: none;
}

.sub-tab-list>ul.active {
    display: block;
}

/* Tab 标题的高亮样式示例 */
.tab-title li.active a {
    font-weight: bold;
    color: #007AD8;

}

/* 1. 设置列表项为 Flex 布局，实现左右分布 */
.tab-list ul li {
    display: flex;
    justify-content: space-between;
    /* 两端对齐：标题在左，时间在右 */
    align-items: center;
    /* 垂直居中 */
    padding: 2px 0;
    /* 上下间距，可根据设计稿调整 */
    border-bottom: 1px dashed #eaeaea;
    /* 可选：添加虚线分割线，政府网站常用 */
    line-height: 1.5;
}

/* 去除最后一个元素的边框，更美观 */
.tab-list ul li:last-child {
    border-bottom: none;
}

/* 2. 处理左侧标题链接 */
.tab-list ul li a {
    flex: 1;
    /* 占据剩余空间 */
    margin-right: 15px;
    /* 与右侧时间的间距 */

    /* 核心：单行溢出省略号三件套 */
    white-space: nowrap;
    /* 强制不换行 */
    overflow: hidden;
    /* 隐藏溢出部分 */
    text-overflow: ellipsis;
    /* 显示省略号 (...) */
    color: #333;
    /* 文字颜色 */
    text-decoration: none;
    /* 去掉下划线 */
    font-size: 14px;
    /* 字体大小 */
}

/* 鼠标悬停效果 */
.tab-list ul li a:hover {
    color: #d90000;
}

/* 3. 处理右侧时间 span */
.tab-list ul li span {
    flex-shrink: 0;
    color: #999;
    font-size: 12px;
    font-family: Arial, sans-serif;
}

/* 党建专栏 */



.banner-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.banner-items a {
    display: inline-block;
    width: 280px;
    height: 115px;
    overflow: hidden;
}

.banner-items a img {
    width: 100%;
    height: 100%;
}

.banner-items a:hover img {
    transform: scale(1.1);
    transition: all 0.6s;
}

/* 三切换模块 */


/* 容器 */
.widget {
    width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
}

.main-nav {
    display: flex;
}

/* --- 顶部主导航容器 --- */
.main-nav {
    display: flex;
    align-items: flex-end;
    height: 70px;
}

.main-tab-item {
    font-size: 30px;
    text-align: center;
    width: 33.33%;
    height: 70px;
    /* 默认高度 */
    line-height: 70px;
    background: #67AEE9;
    cursor: pointer;
    transition: height 0.3s ease, background-color 0.3s ease;
    position: relative;
    /* 必须设置为 relative，以便伪元素绝对定位 */
    z-index: 1;
}

.main-tab-item:nth-child(2) {
    background: #56acf3;
}

.main-tab-item:first-child {
    border-radius: 8px 0 0 0;
}

.main-tab-item:last-child {
    border-radius: 0 8px 0 0;
}

.main-tab-item a {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    height: 100%;
    line-height: inherit;
}

.main-tab-item img {
    vertical-align: middle;
    margin-right: 10px;
}

/* --- 激活状态基础样式 --- */
.main-nav .main-tab-item.active {
    height: 88px;
    line-height: 90px;
    background: #0378DB;
    color: #fff;
    z-index: 10;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0;

    /* 确保子元素绝对定位时参考的是这个父级 */
    position: relative;
}

/* 确保激活态的文字颜色 */
.main-nav .main-tab-item.active a {
    color: #fff;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}



/* --- 左侧 Tab 激活：仅左上圆角 + 右上立体三角 --- */
.main-nav .main-tab-item:first-child.active {
    border-radius: 8px 0 0 0;
}

.main-nav .main-tab-item:first-child.active a {
    background: url(../images/switch-bg01.png)no-repeat;
    background-size: cover;
}

.main-nav .main-tab-item:nth-child(2).active a {
    background: url(../images/switch-bg02.png)no-repeat;
    background-size: cover;
}

.main-nav .main-tab-item:nth-child(3).active a {
    background: url(../images/switch-bg03.png)no-repeat;
    background-size: cover;
}


/* 左侧 Tab 的右上三角 */
.main-nav .main-tab-item:first-child.active::before {
    content: "";
    width: 10px;
    height: 18px;
    position: absolute;
    right: -10px;
    top: 0px;
    z-index: 11;
    /* 提高层级，确保盖住相邻Tab */
    background: url(../images/tr.png) 0px 0px no-repeat;
    /* 如果图片缺失，可以使用以下 CSS 模拟阴影三角作为备选：
    background: linear-gradient(135deg, transparent 50%, rgba(0,0,0,0.1) 50%); 
    */
}

/* --- 中间 Tab 激活：无圆角 + 左上&右上双三角 --- */
.main-nav .main-tab-item:nth-child(2).active {
    border-radius: 0;
}

/* 中间 Tab 的左上三角 */
.main-nav .main-tab-item:nth-child(2).active::before {
    content: "";
    width: 10px;
    height: 18px;
    position: absolute;
    left: -10px;
    top: 0px;
    z-index: 11;
    background: url(../images/tl.png) 0px 0px no-repeat;
}


.main-nav .main-tab-item:nth-child(2).active::after {
    content: "";
    width: 10px;
    height: 18px;
    position: absolute;
    right: -10px;
    top: 0px;
    z-index: 1;
    background: url(../images/tr.png) 0px 0px no-repeat;
}



/* --- 右侧 Tab 激活：仅右上圆角 + 左上立体三角 --- */
.main-nav .main-tab-item:last-child.active {
    border-radius: 0 8px 0 0;
}

/* 右侧 Tab 的左上三角 */
.main-nav .main-tab-item:last-child.active::before {
    content: "";
    width: 10px;
    height: 18px;
    position: absolute;
    left: -10px;
    top: 0px;
    z-index: 11;
    background: url(../images/tl.png) 0px 0px no-repeat;
}

/* --- 【核心修改】底部白色指示三角：移动到 a 标签上 --- */
/* 这样就不会干扰 main-tab-item 的 ::before (顶部三角) */
.main-nav .main-tab-item.active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    z-index: 12;
}

/* --- 内容区域 --- */
.content-panel {
    display: none;
    padding: 20px;
    height: 385px;
}

.content-panel.active {
    display: block;
    background: #fff;
}

.content-box {
    display: flex;
    justify-content: space-between;
}

.content-left {
    width: 65%;
}

.content-right {
    width: 32%;
}


/* --- 二级子导航 --- */
.sub-tabs {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    /* 底部细灰线 */
}

.sub-tab-group {
    display: flex;
}

.sub-tab-item {
    margin-right: 30px;
    cursor: pointer;
    color: #666;
    font-size: 22px;
    padding-bottom: 10px;
    position: relative;
    transition: color 0.3s ease;
}

.sub-tab-item:hover {
    color: #007AD8;
}

.sub-tab-item.active {
    color: #007AD8;
}

/* 底部蓝色粗线动画 */
.sub-tab-item::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #007AD8;
    transition: width 0.3s ease;
}

.sub-tab-item.active::after {
    width: 100%;
}

/* --- 翻页控件 --- */
.pagination {
    display: flex;
    align-items: center;
}

.pagination button {
    margin-left: 10px;
    border: 1px solid #ccc;
    border-radius: 12px;
    background: #d6ebfc;
    color: #0378DB;
}

.pagination button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/* --- 内容页容器 --- */
.page-container {
    position: relative;
    min-height: 200px;
}

/* 静态内容容器默认隐藏，JS控制显示 */
.sub-content {
    display: none;
}

.sub-content.active {
    display: block;
    animation: slideIn 0.3s ease;
}

/* --- 布局辅助 --- */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}


/* --- 新闻列表样式优化 --- */
.list-item ul {
    list-style: none;
    /* 移除默认列表符号 */
    padding: 0;
    margin: 0;
}

.list-item li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 12px;
    line-height: 31px;
    padding-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    height: 31px;
}

.list-item li:last-child {
    margin-bottom: 0;

}

/* 左侧装饰性小圆点 */
.list-item li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 42%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: #dfdfdf;
    border-radius: 50%;
    transition: all 0.2s ease;
}

/* 链接样式 */
.list-item li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    flex: 1;
    /* 占据剩余空间 */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    /* 文字过长显示省略号 */
    margin-right: 15px;
    /* 与日期保持间距 */
}

/* 日期样式 */
.list-item li .timer {
    color: #999;
    font-size: 14px;
    font-family: Arial, sans-serif;
    min-width: 80px;
    /* 固定宽度防止抖动 */
    text-align: right;
}

.list-item li:hover::before {
    background-color: #ff6600;
    /* 悬停时圆点变橙色，增加活力 */
    transform: translateY(-50%) scale(1.2);
    /* 稍微放大 */
}

.list-item li:hover a {
    color: #007AD8;
    /* 悬停时标题变蓝 */
}

.list-item li:hover .timer {
    color: #007AD8;
    /* 悬停时日期也变蓝 */
}


/* 政府信息公开左侧 */


.info-title {
    color: #007AD8;
    font-size: 24px;
    font-weight: bold;
    padding: 0 28px;
    margin-bottom: 20px;
    text-align: center;
    background: url(../images/gkbg.png);
    background-size: 452px;
    background-position-x: 410px;
}

.info-title a {
    color: #0378DB;
}

.info-fast li {
    width: 180px;
    height: 90px;
    background-color: #EFF8FF;
    float: left;
    margin-right: 10px;
    margin-bottom: 12px;
    text-align: center;
    padding: 19px 0 11px;
}

.info-fast li:nth-child(2n) {
    margin-right: 0;
}

.info-fast li:nth-child(5),
.info-fast li:nth-child(6) {
    margin-bottom: 0;
}


.info-fast li a {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
}


.info-fast li img {
    display: block;
    margin: 0 auto 5px;
    /* 让图片居中并留出一点间距给文字 */
    transition: transform 0.8s ease;
    /* 添加过渡动画 */
}

.info-fast li a:hover img {
    transform: rotateY(360deg);
    /* 悬停旋转两圈 */
}

#page-indicator {
    color: #d8d8d8;
    font-size: 12px;
}

.card {
    padding: 35px;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s;
    height: 135px;
    border: 1px solid #cfe9ff;
}

/* #sub-dept .card {
    border-radius: 4px;
    height: 85px;
    line-height: 50px;
    background: url(../images/zwfw_bmbg.jpg);
    background-size: cover;
}

#sub-dept .card a span::before {
    display: block;
    float: left;
    vertical-align: middle;
    width: 17px;
    height: 17px;
    content: "";
    background: url(../images/zwfw_bmico.png) 0 0 no-repeat;
    margin: 15px 13px 0px 45px;
}

#sub-dept .card a {
    float: left;
    font-weight: 400;
}

#sub-dept .grid {
    grid-template-columns: repeat(3, 1fr);
}
 */

/* 针对 #sub-dept 下的列表进行美化 */
#sub-dept ul {
    list-style: none;
    /* 移除默认列表符号 */
    padding: 0;
    margin: 0;
}

#sub-dept ul li {
    display: flex;
    /* 使用 Flex 布局使标题和日期两端对齐 */
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    /* 增加内边距，使点击区域更大 */
    border-bottom: 1px dashed #e5e5e5;
    /* 添加虚线分隔符，比实线更柔和 */
    transition: all 0.3s ease;
    /* 添加平滑过渡效果 */
    font-size: 14px;
    line-height: 1.5;
}

/* 移除最后一个元素的底部边框 */
#sub-dept ul li:last-child {
    border-bottom: none;
}

/*鼠标悬停效果 */
#sub-dept ul li:hover {
    background-color: #f9f9f9;
    /* 浅灰色背景 */
    padding-left: 15px;
    /* 轻微右移，增加交互感 */
}

/*链接样式 */
#sub-dept ul li a {
    color: #333;
    /* 深灰色文字 */
    text-decoration: none;
    flex: 1;
    /* 让链接占据剩余空间 */
    overflow: hidden;
    text-overflow: ellipsis;
    /* 文字过长显示省略号 */
    white-space: nowrap;
    margin-right: 10px;
    /* 与日期保持间距 */
    font-size: 17px;
}

#sub-dept ul li a:hover {
    color: #1890ff;
    /* 悬停时变为主题色（例如蓝色） */
}

/* 日期样式 */
#sub-dept ul li .timer {
    color: #999;
    /* 浅灰色日期 */
    font-size: 12px;
    min-width: 85px;
    /* 固定日期宽度，保持对齐 */
    text-align: right;
}

.card .icon {
    float: left;
    height: 60px;
    width: 60px;

}

.card .icon img {
    width: 60px;
}

.card ul {
    float: right;

}

.card ul .title {
    text-align: left;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 400;
}

.card ul li {
    float: left;
    font-weight: 400;
    font-size: 14px;
    margin-right: 4px;
    margin-bottom: 8px;
    padding-right: 4px;
    border-right: 1px solid #ccc;
}

.card ul li a:hover {
    color: #007AD8;
}

.card ul li:last-child {
    border-right: none;
}




.card:hover {
    background: #eef6ff;
    border-color: #007AD8;
    color: #007AD8;
}

/* 用于JS分页控制的类 */
.page-item {
    display: none;
    /* 默认隐藏所有卡片 */
}

.page-item.visible {
    display: block;
    /* 显示当前页的卡片 */
}

.int-mun {
    padding: 10px;
    border: 1px solid #baedfd;
}

.int-mun h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.int-mun .title {
    color: #0378DB;
    font-size: 22px;
    font-weight: bold;
    float: left;
}

.int-mun .timer {
    font-size: 16px;
    color: #999;
    font-weight: 400;
}

.content-right .pic-service:last-child {
    margin-bottom: 0;

}

.content-right .pic-service:nth-child(2),
.content-right .pic-service:nth-child(3) {
    padding: 0;
    height: 99px;
}

.content-right .pic-service:nth-child(2) img,
.content-right .pic-service:nth-child(3) img {
    width: 100%;
    height: 100%;
}

.pic-service {
    background: url(../images/fastmod_bg.png);
    border: 1px solid #baedfd;
    padding: 10px;
    overflow: hidden;
    margin-bottom: 21px;
}



.pic-service img {
    width: 338px;
}

.pic-service a:hover img {
    transform: scale(1.1);
    transition: all 0.6;
}

.leader-int {
    border: 1px solid #baedfd;
    height: 75px;
    width: 100%;

    background: linear-gradient(180.00deg, rgb(208, 237, 255), rgb(255, 255, 255) 100%);
}

.leader-intn {
    width: 100%;
    height: 100%;
    background: url(../images/xx-ico.png) left bottom no-repeat;
    padding: 10px;
}

.leader-intn span a {
    padding-top: 6px;
    font-size: 14px;
    font-weight: 700;
    color: rgb(3, 120, 219);
}

.leader-intn span:first-child a {
    font-size: 24px;
    margin-right: 195px;
    margin-left: 88px;
    line-height: 50px;
    font-weight: 400;
}

.leader-intn span {
    margin-left: 15px;
}

.leader-intn span a img {
    width: 27px;
    vertical-align: middle;
    margin-right: 6px;
}


/* Leader List Tab 切换样式 */
.leader-tabs {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 10px;
}

.leader-tab-item {
    padding: 10px 0px;
    cursor: pointer;
    color: #666;
    position: relative;
    transition: all 0.3s ease;
    font-size: 22px;
    color: #727272;
    margin-right: 18px;
}

.leader-tab-item:hover {
    color: #007AD8;
    /* 假设主题色为蓝色，可根据实际调整 */
}

.leader-tab-item.active {
    color: #007AD8
}

.leader-tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #007AD8;
}

/* 面板隐藏/显示控制 */
#tab-mail {
    display: none;
}

#tab-mail.active {
    display: block;
}

/* 办理统计列表样式优化 */
.stats-list li {
    border-bottom: 1px dashed #ddd;
    padding-bottom: 10px;
    margin-top: 9px;

}

.stats-list li:last-child {
    border-bottom: none;

}

.stats-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.stats-list li a:hover {
    color: #007AD8;
}

.stats-list li a:hover .stat-title {
    text-decoration: underline;
}

.stat-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 10px;
}

.stat-date {
    color: #999;
    font-size: 14px;
    min-width: 90px;
    text-align: right;
}

.QA-box {
    height: 75px;
    width: 100%;
    background-color: #666;
    margin-bottom: 18px;
}

.QA-box img {
    width: 100%;
    height: 100%;
}

.leader-list {
    margin-top: 15px;
}

.leader-list .title {
    font-size: 22px;
    color: #007AD8;
    padding-bottom: 10px;
    position: relative;
    /* 必须保留，作为伪元素的定位参考 */
    margin-bottom: 15px;
    font-weight: normal;
    border-bottom: 1px solid #ddd;

}

.leader-list .title::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0px;
    height: 3px;
    width: 0;
    z-index: 0;
    background: #0378DB;
}

#tab-mail ul li a {
    display: flex;
    width: 100%;
    justify-content: space-between;
    height: 22px;
    line-height: 22px;
    margin-bottom: 14px;
}

#tab-mail ul li a span:first-child {
    width: 8%;
    border: 1px solid #67AEE9;
    border-radius: 4px;
    text-align: center;
    color: #56acf3;

}

#tab-mail ul li a span:nth-child(2) {
    width: 40%;
}

#tab-mail ul li a span:nth-child(3) {
    width: 24%;
    font-size: 16px;
    color: #999;
}

#tab-mail ul li a span:nth-child(4) {
    width: 20%;
    font-size: 16px;
    color: #999;
    text-align: right;
}

.leader-panel {
    display: none;
}

.leader-panel.active {
    display: block;
}

.QA-mod {
    background: #EFF8FF;
    padding: 13px 20px 20px;
    margin-top: 17px;
}

.QA-mod .title {
    color: #0378DB;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.QA-mod .icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #007AD8;
    padding: 5px 3px 7px 7px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-top: 5px;
    border-radius: 13px;
}


.QA-mod .list-title {
    line-height: 24px;
    font-size: 16px;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    width: 270px;
    margin-left: 10px;
}

.QA-mod .QA-cont:last-child {
    margin-top: 5px;
}

.QA-mod .QA-cont a {
    display: flex;
}

.QA-mod .QA-cont .timer-plus {
    display: flex;
    justify-content: space-between;
    padding: 10px 10px;
    background: #fff;
    margin-top: 8px;
    border-radius: 6px;
    font-size: 14px;
}

.QA-mod .QA-cont .timer-plus span:first-child {
    color: rgb(0, 122, 216);
}

.QA-mod .QA-cont .timer-plus span:last-child {
    color: #666;
}










/* 专题专栏 */
/* --- 滚动容器外壳 --- */
.scroll-container {
    overflow: hidden;
    position: relative;
    background-color: #ffffff;
    padding-top: 10px;
    padding-bottom: 20px;
    margin-top: 20px;
}

/* --- 滚动内容轨道 --- */
.scroll-track {
    display: flex;
    width: max-content;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

/* --- 单个色块样式 --- */
.item {
    width: 280px;
    height: 135px;
    margin: 0 10px;
    flex-shrink: 0;
}

.item a img{
    width: 280px;
    height: 135px;
}

/* 鼠标悬停时暂停滚动 (可选) */
.scroll-container:hover .scroll-track {
    /* 注意：JS控制时，hover暂停需要更复杂的逻辑，这里简单处理为停止定时器在下方JS中实现 */
}

/* --- 颜色定义 --- */
.bg-1 {
    background-color: #dcebf7;
}

.bg-2 {
    background-color: #f4e8d8;
}

.bg-3 {
    background-color: #fae8e0;
}

.bg-4 {
    background-color: #f9d5e5;
}

.bg-5 {
    background-color: #e3f2fd;
}

.bg-6 {
    background-color: #c8e6c9;
}


.ls-ztzl-title {
    height: 35px;
    line-height: 35px;
    padding: 0 20px;
    margin-bottom: 10px;
}

.ls-ztzl-title a.tit {
    font-size: 24px;
    font-weight: bold;
    color: #0378DB;
    float: left;
}

.ls-ztzl-title a.more {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
    float: right;
}

.ls-ztzl-title a:hover {
    color: #0378DB;
}

.ls-ztzl-title a.tit:hover {
    color: red;
}

/* 底部样式 */
.footer * {
    color: #fff;
}

.footer {
    background-color: #0A77D9;
    color: #fff;
    padding: 24px 0;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 导航栏：顶部链接 */
.top-links {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-bottom: 18px;
    border-bottom: 1px solid #ffffff1c;
}

.top-links .title {
    margin-right: 20px;
}

.top-links a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    border-right: 1px solid #ffffff1c;
    padding-right: 30px;
}

.top-links a:hover {
    text-decoration: underline;
}

.top-links a img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

/* 下拉菜单容器 */
.dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    user-select: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle::after {
    content: "▼";
    font-size: 10px;
    transition: transform 0.3s;
}

.dropdown-toggle.open::after {
    content: "▲";
}

/* 下拉菜单 */
.dropdown-menu {
    position: absolute;
    top: -230px;
    right: -281px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 1200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 12px 0;
}

.dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: #f0f7ff;
    color: #0A77D9;
}

/* 底部信息区 */
.bottom-info {
    margin-top: 24px;
    align-items: center;
}

/* .links-group {
    display: flex;
    gap: 16px;
    margin-bottom: 5px;
}

.links-group a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-right: 1px solid #ffffff1c;
    padding-right: 17px;
}

.links-group a:last-child {
    border-right: none;
}


.links-group a:hover {
    text-decoration: underline;
} */

.last-info {
    display: flex;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info p {
    margin: 16px 0;
}

.contact-info img {
    vertical-align: sub;
}

.icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.icons a {
    display: inline-block;
}

.icons-fst {
    display: flex;
    flex-direction: column;
}

.icons-fst img {
    width: 120px;
padding: 5px 0;
}