/* ==================== 全局重置 ==================== */
* {
    margin: 0;
    padding: 0
}
.clearfix:after {display: block;content: '';clear: both;}
html,
body {
    position: relative;
    height: 100%;
}

body {
    font-family: Microsoft YaHei UI;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

ul,
li {
    list-style: none;
}

input {
    border: 0;
    outline: 0;
}

input:focus {
    outline: none;
    box-shadow: none;
}

button {
    border: none;
    outline: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

/* ==================== 通用工具类 ==================== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.FullContainer {
    width: 100%;
    height: auto;
}

.fl_r {
    float: right
}

.fl_l {
    float: left
}

.cle {
    clear: both;
}

.mt50 {
    margin-top: 50px;
}

.mt40 {
    margin-top: 40px;
}

.txtSp {
    text-align: center;
    padding: 30px 0px;
    font-size: 50px;
    font-weight: 900;
}

.txtSp i {
    background: linear-gradient(262deg, #12FFF7 0%, #1A72FF 50%, #6E51FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100%;
}

/* ==================== Swiper 重置 ==================== */
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 0px);
    right: auto
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 0px);
    left: auto
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px 10px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 20px;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1
}

/* ==================== 图文轮播 (.swiperBanner) ==================== */
.swiperBanner {
    width: 56%;
    height: 445px;
    overflow: hidden;
    position: relative;
    float: left;
}

.swiperBanner .swiper-slide {
    position: relative;
    text-align: center;
    background: #fff;
}

.swiperBanner img {
    width: 100%;
    display: block;
	height:445px;
}

.swiperBanner h2 {
    text-align: left;
    font-size: 20px;
    height: 50px;
    line-height: 50px;
    color: #fafafa;
    position: absolute;
    left: 0px;
    bottom: 0;
    right: 0;
    font-weight: normal;
    background: rgba(0, 0, 0, 0.5);
    padding-left: 20px;
    z-index: 9;
}

.swiperBanner h2 span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 80%;
    display: block;
    box-sizing: border-box;
    pointer-events: auto;
}

.swiperBanner .pagination {
    position: absolute;
    z-index: 20;
    bottom: 17px;
    text-align: right;
    right: 0px;
    left: -15px;
}

.swiperBanner .swiper-pagination-bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: #fff;
    margin: 0 2px;
    opacity: 0.8;
    cursor: pointer;
}

.swiperBanner .swiper-pagination-bullet-active {
    background: #0771ba;
}

/* ==================== 政务要闻 ==================== */
/* ---------- 更多按钮 ---------- */
.newsMore {
    position: absolute;
    right: 0px;
    top: 20px;
    cursor: pointer;
    z-index: 999;
}

.newsMore:hover {
    color: #0066cc;
}

/* ---------- 新闻容器 ---------- */
.newsBox {
    width: 41%;
    overflow: hidden;
    float: right;
}

.SwiperNewsCon {
    margin-top: 20px;
}

.swiperNews {
    width: 95%;
    margin: 0 auto;
}

/* ---------- Tab 标签 ---------- */
.tabItem {
    font-size: 26px;
    font-weight: 900;
    line-height: 40px;
    width: 140px !important;
}

.tabItem.active {
    color: #0771ba;
    width: 140px !important;
}

/* ---------- 新闻列表项 ---------- */
.tabsConItem p {
    width: 100%;
    line-height: 60px;
    font-size: 16px;
}

.tabsConItem p a {
    width: 75%;
    float: left;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    position: relative;
    padding-left: 3%;
    transition: 0.5s linear;
    font-size: 18px;
}

.tabsConItem p a:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 30px;
    border: 1px solid #0771ba;
    transition: 0.5s;
    width: 3px;
    height: 3px;
    background: #0771ba;
}

.tabsConItem p a:hover:after {
    width: 8px;
    font-size: 26px;
    opacity: 1;
    color: #0771ba;
    border: 1px solid #0771ba;
}

.tabsConItem p a:hover {
    color: #0771ba;
    transition: 0.5s;
}

.tabsConItem p span {
    width: 20%;
    float: right;
    text-align: right;
}

/* ---------- 栏目按钮 ---------- */
.lanmMU {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}

.lanmMUOne {
    background: #fff;
    border: 1px solid #acd8f6;
    color: #053251;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    height: 70px;
    line-height: 70px;
    width: 49%;
	margin-right:1%;
}

.lanmMUOne:hover {
    background: #0771ba;
    border: 1px solid #0771ba;
    color: #fff;
    transition: 0.5s;
}

.lanmMUTwo {
    background: #fff;
    border: 1px solid #acd8f6;
    color: #053251;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    height: 70px;
    line-height: 70px;
    width: 60%;
    flex: 1;
}

.lanmMUTwo:hover {
    background: #0771ba;
    border: 1px solid #0771ba;
    color: #fff;
    transition: 0.5s;
}

/* ---------- 动画 ---------- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .tabsNav li {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .tabsCon li {
        padding: 1.5rem;
    }
}

/* ==================== 模块区域 (.moKuai) ==================== */
.moKuai {
    background: url("../images/mkbg.jpg") no-repeat;
    background-size: cover;
    min-height: 100vh;
    margin: 40px 0px;
    padding: 50px 0px;
}

/* ---------- 政务区块 ---------- */
.zhengWu {
    width: 65%;
    float: left;
}

/* ---------- 信息公开 ---------- */
.gongKai {
    width: 92%;
    background: #fff;
    padding: 4%;
}

.gkLeft {
    width: 66%;
    float: left;
}

.gkRight {
    width: 30%;
    float: right;
}

.SwiperZhengFuCon {
    margin-top: 20px;
}

.gkLink {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
}

.gkLink a {
    margin-bottom: 30px;
}

.gkLink a:hover {
    transform: translateY(-5px);
    transition: 0.5s;
}

/* ---------- 政府信息公开卡片 ---------- */
.zfXxGkTit {
    margin: 0px 0px 10px 0px;
    display: block;
}

.zfXxGkCon {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zfXxGkCon a {
    width: 154px;
    background: #e7f3ff;
    border-top-left-radius: 0px;
    border-top-right-radius: 15px;
}

.zfXxGkCon a:hover {
    border-top-left-radius: 30px;
    border-top-right-radius: 0px;
    background: linear-gradient(-30deg, #e7f3ff, #f3f5f7);
    transition: 0.5s;
    transform: translateY(-5px);
}

.zfXxGkConImg {
    width: 33px;
    height: 36px;
    display: block;
    float: left;
    padding: 17px;
}

.zfXxGkConTxt {
    font-size: 16px;
    color: #000;
    margin-top: 14px;
    display: block;
    float: left;
}

/* ==================== 服务区域 (.fuWu) ==================== */
.fuWu {
    width: 92%;
    background: #fff;
    padding: 2% 4%;
    box-shadow: 7px 7px 0px rgba(211, 236, 252, 0.5);
    margin-top: 30px;
}

.fuWuTop {
    width: 100%;
}

.fuWuBottom {
    width: 100%;
    margin-top: 7px;
    margin-bottom: 10px;
}

.fuWuTit {
    margin-top: 20px;
    clear: both;
}

.fuWuCon {
    border: 1px solid #e7f3ff;
    margin: -1px;
    padding: 20px;
}

/* ---------- 服务轮播 ---------- */
.swiperFuWu {
    border: 1px solid #bfdbee;
    margin-top: 20px;
    padding-bottom: 40px;
    background: linear-gradient(-45deg, #ffffff, #f2f5f8);
}

.SwiperFuWuTitFlex {
    display: flex;
    justify-content: space-around;
    text-align: center;
    border-bottom: 1px solid #bfdbee;
    padding: 10px 0px;
}

/* ---------- 服务 Tab 标签 ---------- */
.tabItem2Line {
    line-height: 50px;
}

.tabItem2 {
    margin-right: 0px !important;
    width: 50% !important;
    height: 50px;
    line-height: 50px;
}

.tabItem2.active {
    color: #0771ba;
    width: 50% !important;
}

.tabItem3 {
    margin-right: 0px !important;
    width: 50% !important;
    font-size: 18px;
}

.tabItem3.active {
    color: #0771ba;
    font-weight: 900;
    width: 50% !important;
}

.tabItem4 {
    margin-right: 0px !important;
    width: 95px !important;
    font-size: 18px;
    font-weight: normal;
    font-size: 20px;
}

.tabItem4.active {
    color: #0771ba;
    width: 95px !important;
    font-weight: bold;
}

/* ---------- 服务列表 ---------- */
.FuWuConList ul {
    padding-bottom: 25px;
    margin-top: 30px;
}

.FuWuConList ul li {
    float: left;
    width: 20%;
    text-align: center;
    margin: 10px 0px;
}

.FuWuConList ul li a {
    font-size: 18px;
    color: #000;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.FuWuConList ul li a p {
    margin: 10px 0px;
}

.FuWuConList ul li a:hover,
.FuWuConList ul li a img:hover {
    font-size: 18px;
    color: #0771ba;
    transform: translateY(-5px);
    transition: 0.5s;
}

/* 轮播图基础样式（避免图片溢出） */
.FuWuConList img {
    max-width: 36px;
    height: 36px;
    border: none;
    margin-right: 15px;
}

.FuWuConList2 ul li {
    float: left;
    width: 33%;
    text-align: center;
    margin: 10px 0px;
}

/* ---------- 服务底部链接 ---------- */
.fuWuBottom ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.fuWuBottom ul li a {
    background-color: #fff;
    border-radius: 15px;
    border: 1px solid #ebf4fc;
    box-shadow: 0 3px 5px #e5edf9;
    padding: 20px 22px;
    text-align: center;
    display: block;
    color: #000;
}

.fuWuBottom ul li:nth-child(1) a {
    background-color: #fff;
    border-radius: 0px;
    border: 0px solid #ebf4fc;
    box-shadow: 0 0px 0px #e5edf9;
    padding: 0px;
}

.fuWuBottom ul li:nth-child(1) a img {
    border-radius: 5px;
}

.fuWuBottom ul li a:hover {
    background-color: #f1f8fc;
    color: #0771ba;
    border-radius: 30px;
    transform: translateY(-5px);
    transition: 0.5s;
}

/* ==================== 互动区域 (.huDong) ==================== */
.huDong {
    width: 29%;
    float: right;
    background: #fff;
    padding: 2%;
    box-shadow: 7px 7px 0px rgba(211, 236, 252, 0.8);
}

/* ---------- 互动列表 ---------- */
.tabsConItemList {
    margin-top: 20px;
}

.tabsConItemList p {
    width: 100%;
    line-height: 35px;
    font-size: 16px;
}

.tabsConItemList p a {
    width: 90%;
    float: left;
    color: #000;
    text-decoration: none;
    display: flex;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
    position: relative;
    padding-left: 3%;
    transition: 0.5s linear;
    font-size: 18px;
	height:70px;
	align-items:center;
}

.tabsConItemList p a:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 30px;
    border: 1px solid #0771ba;
    transition: 0.5s;
    width: 3px;
    height: 3px;
    background: #0771ba;
}

.tabsConItemList p a:hover:after {
    width: 8px;
    font-size: 26px;
    opacity: 1;
    color: #0771ba;
    border: 1px solid #0771ba;
}

.tabsConItemList p a:hover {
    color: #0771ba;
    transition: 0.5s;
}

.tabsConItemList p span {
    width: 100%;
    float: left;
    text-align: left;
    color: #a3a3a3;
}

/* ---------- 无列表样式变体 ---------- */
.tabsConItemListNoList p {
    clear: both;
}

.tabsConItemListNoList p span {
    width: 13% !important;
    padding: 0px 1%;
    font-size: 14px;
    line-height: 24px;
}

.tabsConItemListNoList p a {
    width: 78% !important;
    margin: 0px 1%;
    font-size: 16px;
}

.tabsConItemListNoList p a:after {
    display: none;
}

/* ---------- 新闻发布会 ---------- */
.newsConference {
    width: 100%;
}

.newsConfTit {
    font-size: 26px;
    font-weight: 900;
    line-height: 40px;
    color: #0771ba;
    margin: 23px 0px;
}

.newsConfCon img {
    width: 100%;
    height: 100%;
    display: block;
}

.newsConfCon a {
    font-size: 18px;
    text-align: center;
    font-weight: normal;
    margin: 25px 0px;
    display: block;
    line-height: 15px;
}

.newsConfCon img:hover,
.newsConfCon a:hover {
    color: #0771ba;
    transform: translateY(-5px);
    transition: 0.5s;
}

/* ---------- 征集状态标签 ---------- */
.zjIng {
    background: #0771ba;
    color: #fff !important;
    text-align: center !important;
    border-radius: 10px !important;
    float: left;
}

.zjOver {
    background: #e7e5e4;
    color: #666 !important;
    text-align: center !important;
    border-radius: 10px !important;
    float: left;
}

.zjTime {
    width: 80% !important;
    color: #666;
    margin-left: 19%;
    margin-bottom: 20px;
    display: block;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.zjTime i {
    font-style: normal;
}

.zjTime img {
    vertical-align: middle;
}

.zjTime:last-child {
    margin-bottom: 0px;
}

/* ==================== 便民工具 (.utility) ==================== */
.utility {
    width: 100%;
    margin-top: 25px;
}

.utility ul {
    display: flex;
    flex-wrap: wrap;
}

.utility ul li {
    width: 48%;
    margin: 1%;
}

.utility ul li a {
    font-size: 18px;
    line-height: 73px;
    background: #e6f2fd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.utility ul li a span {
    padding-left: 15px;
    float: left;
}

.utility ul li a img {
    padding-right: 20px;
    float: right;
    margin-top: 5px;
}

.utility ul li a:hover {
    transform: translateY(-5px);
    transition: 0.5s;
    background: linear-gradient(-45deg, #e6f2fd, #ebf4fc);
    color: #0771ba;
    border-top-left-radius: 5px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.utilitySp {
    width: 100% !important;
    justify-content: center;
}

/* ==================== 专题轮播 (.zhuantiSwiper) ==================== */
.zhuantiSwiper {
    margin-top: 40px;
}

.zhuantiSwiper img {
    width: 100%;
    transition: all 0.3s ease;
}

.zhuantiSwiper img:hover {
    transform: scale(0.9);
    transform-origin: center center;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* ==================== 腰封图片 ==================== */
.yAOdaiImgMob {
    display: none !important;
}

.yAOdaiImgPc {
    display: block !important;
    width: 100%;
    height: auto;
}



/* ==================== 响应式 (320px – 767px) ==================== */
@media screen and (min-width: 320px) and (max-width: 767px) {
    .header {
        height: 335px;
    }

    .newsMore {
        display: none;
    }

    /* ---------- 腰封图片切换 ---------- */
    .yAOdaiImgPc {
        display: none !important;
    }

    .yAOdaiImgMob {
        display: block !important;
        width: 100%;
        height: auto;
    }

    /* ---------- 布局容器覆盖 ---------- */

    .moKuai {
        height: auto;
        padding: 22px 0px;
        margin-top: 11px;
        padding-top: 13px;
        border: 1px solid #fff;
    }

    /* ---------- 图文轮播覆盖 ---------- */
    .swiperBanner {
        width: 100%;
        height: 240px;
        margin-top: 20px;
    }

    .swiperBanner h2 {
        text-decoration: none;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 18px;
    }

    .swiperBanner .pagination {
        bottom: 65px;
        left: -143px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        padding: 3px 0px;
    }



    /* ---------- 飘窗隐藏 ---------- */
    .piaoChuang {
        display: none;
    }

    .hotNewsHistory {
        display: none;
    }

    /* ---------- 政务要闻覆盖 ---------- */
    .newsBox {
        width: 100%;
        margin-top: 30px;
    }

    .newsMore {
        top: 11px;
        font-size: 14px;
    }

    .SwiperNewsCon {
        margin-top: 10px;
    }

    .tabItem {
        font-size: 20px;
        width: 80px !important;
        margin-right: 15px !important;
    }

    .tabItem.active {
        color: #0771ba;
        width: 80px !important;
    }

    .tabsConItem p {
        width: 100%;
        line-height: 50px;
        font-size: 14px;
    }

    .tabsConItem p a {
        width: 94%;
        font-size: 16px;
        line-height: 45px;
        padding-left: 6%;
    }

    .tabsConItem p a:after {
        top: 20px;
    }

    .tabsConItem p span {
        display: none;
    }

    .tabsConItem p:nth-child(-n+2) {
        background-size: 22px;
    }

    .mt40 {
        margin-top: 15px;
    }

    .lanmMUOne {
        height: 50px;
        line-height: 50px;
    }

    .lanmMUTwo {
        height: 50px;
        line-height: 50px;
    }

    /* ---------- 模块区域覆盖 ---------- */
    .zhengWu {
        width: 93%;
    }

    .gongKai {
        width: 100%;
        background: #fff;
        padding: 4%;
        margin: 0 auto;
    }

    .gkLeft {
        width: 100%;
    }

    .gkRight {
        width: 100%;
    }

    .zfXxGkConImg {
        width: 20px;
    }

    .gkLink {
        flex-direction: row;
        flex-wrap: wrap;
        margin: 10px 0px 15px 0px;
        justify-content: flex-start;
    }

    .gkLink a {
        width: 50%;
        display: block;
        margin-bottom: 8px;
    }

    .gkLink a img {
        width: 95%;
    }

    .SwiperZhengFuCon {
        margin-top: 5px;
    }

    .FuWuConList ul li a {
        gap: 8px;
    }

    .FuWuConList ul li a img {
        vertical-align: middle;
        margin-left: 15px;
    }

    .FuWuConList ul li a p {
        margin: 0;
    }

    /* ---------- 政府信息公开卡片覆盖 ---------- */
    .zfXxGkCon {
        flex-wrap: wrap;
        width: 100%;
    }

    .zfXxGkCon a {
        width: 48%;
        height: 65px;
        margin-bottom: 10px;
    }

    .zfXxGkTit img {
        width: 140px;
        margin-bottom: 5px;
    }

    .zfXxGkConImg img {
        width: 20px;
        height: 20px;
    }

    .fuWuBottom ul li a img {
        width: 30px;
    }

    /* ---------- 服务区域覆盖 ---------- */
    .fuWu {
        width: 100%;
        margin-top: 0px;
    }

    .fuWuTit img {
        width: 240px;
    }

    .utility ul li a img {
        width: 30px;
    }

    .FuWuConList img {
        max-width: 25px;
        height: 25px;
    }

    .SwiperBianMinTit {
        padding-top: 20px;
    }

    .FuWuConList ul li a p {
        font-size: 16px;
    }

    .FuWuConList2 ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        margin: 0;
        padding: 0;
        padding-top: 15px;
    }

    .FuWuConList2 li {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 28% !important;
    }

    .FuWuConList2 li img {
        display: block;
        margin-bottom: 6px;
    }

    .fuWuBottom ul li:first-child {
        width: 100%;
    }

    .fuWuBottom ul li:not(:first-child) {
        width: 43%;
        margin: 3%;
    }

    .fuWuBottom ul li:nth-child(1) a img {
        width: 100%;
    }

    .tabItem5 {
        width: 160px !important;
        line-height: 30px;
        margin: 0 auto;
    }

    .tabItem5.active {
        width: 160px !important;
        line-height: 30px;
        margin: 0 auto;
    }

    .tabItem6 {
        width: 80px !important;
        line-height: 30px;
        margin: 0 auto;
    }

    .tabItem6.active {
        width: 80px !important;
        line-height: 30px;
        margin: 0 auto;
    }

    /* ---------- 互动区域覆盖 ---------- */
    .huDong {
        width: 92%;
        box-shadow: none;
        margin-top: 25px;
        padding: 4%;
    }

    /* ---------- 便民工具覆盖 ---------- */
    .utility ul li a span {
        font-size: 15px;
    }

    /* ---------- 专题轮播覆盖 ---------- */
    .zhuantiSwiper {
        margin-top: 20px;
        margin-left: 12px;
        width: 93%;
    }

    .swiperYaodai img {
        width: 100%;
    }

    .tabsConItemListNoList p span {
        width: 15% !important;
    }

}

@media screen and (min-width: 320px) and (max-width: 767px) {
.subform {
    width: 100%;
}
    .searchKeywords {
        width: 80%;
        left: 10%;
    }
    .searchSubmit {
        right: 10%;
		top: 0px;
    }
.searchBox {
        margin-top: 10px;
        margin-bottom: 30px;
    }
.swiperBanner img {
	height:245px;
	}
}
.SwiperFuWuTitFlex {
    transform: none !important;
    transition: none !important;
}
.SwiperHuDongTit .swiper-wrapper {
    transform: none !important;
    transition: none !important;
}