.xuanChuan {
    background: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 40px;
    z-index: 99;
    position: relative;
}

.xuanChuan img {
    width: 100%;
    height: auto;
    display: block;
}

.xuanChuan img:hover {
    transform: translateY(-5px);
    transition: 0.5s;
}

/* 个人法人周明周期 */

.topTabWrap {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
}

.topTabItem {
    width: 220px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    gap: 12px;
}

.topTabItem.person {
    background: #0771ba;
    color: #fff;
    border-radius: 30px 0 0 0px;
}

.topTabItem.legal {
    background: #e6f3ff;
    color: #222;
    border-radius: 0 0px 30px 0;
}

.topTabItem.active.legal {
    background: #0771ba;
    color: #fff;
}

.topTabItem:not(.active).person {
    background: #e6f3ff;
    color: #222;
}

/* 一级tab图标默认隐藏，激活展示 */
.topTabItem .tab-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.3s ease;
    pointer-events: none;
}

.topTabItem.active .tab-icon {
    opacity: 1;
    transform: scale(1);
}

.topTabItem:not(.active) .tab-icon {
    filter: brightness(0.2);
}

.secondCatWrap {
    display: none;
    margin-bottom: 30px;
}

.secondCatWrap.show {
    display: block;
}

.catGrid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.catGridfr {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.catItem {
    height: 90px;
    background: #f7f8fa;
    font-size: 18px;
    cursor: pointer;
    transition: 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.catItem .cat-item-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
    transition: all 0.25s ease;
    opacity: 0;
    transform: scale(0.5);
    position: absolute;
    left: 20px;
}

/* 激活状态：横向布局，图标在文字左侧 */
.catItem.active {
    background: linear-gradient(145deg, #8dcefb, #38a9f6);
    color: #fff;
    flex-direction: row;
    gap: 12px;
    border-radius: 0px 20px 0px 20px;
}

.catItem.active .cat-item-icon {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
    position: static;
}

.bottomFlowWrap {
    width: 100%;
    background: linear-gradient(90deg, #8ecdf8, #bfe1f8);
    padding: 25px;
    display: none;
}

.bottomFlowWrap.show {
    display: block;
}

.flowList {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.flowItem {
    min-width: 260px;
    flex: 1;
    max-width: calc((100% - 32px) / 3);
    height: 45px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    gap: 6px;
	padding:10px 15px;
}

.flowItem:hover {
    background: #eaf4ff;
    border-radius: 10px;
    transition: 0.5s;
}

.flow-item-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.swiperZhiTongTit {
    border-bottom: 1px solid #bfd9f5;
    padding-bottom: 15px;
}

.swiperZhiTong {
    margin-top: 30px;
}

.swiperZhiTongCon {
    margin-top: 30px;
}

.ztTabItem {
    background: linear-gradient(180deg, #ffffff, #e6f4fe);
    height: 70px;
    line-height: 70px;
    display: block;
    text-align: center;
    padding: 15px 30px;
    margin-right: 5px !important;
}

.ztTabItem:hover,
.ztTabItem:active {
    background-image: url(../images/ztbg.png), linear-gradient(180deg, #ffffff, #e6f4fe);
    background-repeat: no-repeat;
    background-position: 10px 15px, center;

}

.swiperZhiTongCon .tabsConItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
	margin-bottom: 50px;
}

.swiperZhiTongCon .tabsConItem p a:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    border: 0px solid #0771ba;
    transition: 0.5s;
    width: 0px;
    height: 0px;
    background: #0771ba;
}

.swiperZhiTongCon .tabsConItem a {
    display: inline-block;
    width: 22%;
    padding-left: 2%;
    height: 60px;
    line-height: 60px;
    background-color: #f7f7f7;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    box-sizing: border-box;
    text-decoration: none;
}

.swiperZhiTongCon .tabsConItem a::after {
    content: "";
    position: absolute;
    display: block;
    background: url(../images/zticon.png) no-repeat center;
    width: 31px;
    height: 23px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
}

.swiperZhiTongCon .tabsConItem a:hover {
    background: #44b0f8;
    color: #fff;
    transform: translateY(-5px);
    transition: 0.5s;
}

.gxws {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.gxws a img:hover {
    transform: translateY(-5px);
    transition: 0.5s;
    border-radius: 0px 50px 0px 30px;
}

.tongJiYingYong {
    background: url(../images/tjyy.jpg) no-repeat center;
    padding-bottom: 30px;
}

.bianMinThree {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 40px;
}

.bianMinThree a img:hover {
    transform: translateY(-5px) scale(0.95);
    transition: all 0.5s ease;
}

.tongJi {
    background: #fff;
    padding: 50px 30px;
    margin: 30px 0px;
    font-size: 14px;
    text-align: center;
}

.tongJiTit {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.tongJiTit p {
    font-size: 14px;
    color: #999;
    font-weight: normal;
    margin-top: 10px;
}

.tongJiCon {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.tongJiCon span {
    font-size: 30px;
    color: #0771ba;
    font-weight: bold;
}

.tongJiCon span:hover {
    transform: translateY(-5px);
    transition: 0.5s;
    color: #333;
    z-index: 9;
    display: inline-block;
    cursor: pointer;
}

.tongJiCon p {
    font-size: 16px;
    color: #333;
}

.zwfwMapTit {
    border-bottom: 1px solid #bfd9f5;
    padding-bottom: 15px;
    height: 82px;
}

.zwfwMap {
    background-image: url(../images/ztbg.png), linear-gradient(180deg, #ffffff, #e6f4fe);
    background-repeat: no-repeat;
    background-position: 10px 15px, center;
    width: 157px;
    font-size: 26px;
    color: #0771ba;
    font-weight: bold;
    height: 60px;
    line-height: 60px;
    padding: 15px 30px;
    float: left;
}

.zwfwMapMore {
    color: #999;
    font-size: 14px;
    float: right;
    margin-top: 55px;
}

.zwfwMapCon {
    border: 1px solid #0771ba;
}

 /* 重置按钮默认样式 */
.swiper-button-next,
.swiper-button-prev {
    position: static !important;
    width: calc(var(--swiper-navigation-size) / 44 * 25);
    height: var(--swiper-navigation-size);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    padding: 0;
    margin-top: 0 !important;
}
.swiper-button-next:hover, 
.swiper-button-prev:hover {
    background: #0771ba;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: calc(var(--swiper-navigation-size) / 44 * 18);
}

.swiper-side-nav {
    position: absolute;
    top: 92%;
    right: 0px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row-reverse;
    /* 核心：左右反转 */
    gap: 6px;
    z-index: 10;
}


@media (min-width: 320px) and (max-width: 767px) {
    .header {
        height: 300px;
    }

    .fixTop {
        margin-top: -35px;
    }

    .xuanChuan {
        padding: 8px;
    }

    .fuWu {
        flex-wrap: wrap;
    }

    .topTabItem {
        margin-top: 20px;
        height: 53px;
        font-size: 18px;
    }

    .catGrid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .catItem.active {
        gap: 2px;
    }

    .catItem {
        height: 44px;
        font-size: 14px;
    }

    .catItem img {
        width: 20px !important;
    }

    .bottomFlowWrap {
        width: 90%;
        padding: 5%;
    }

    .flowArrow {
        display: none;
    }

    .topTabItem.person {
        background: #0771ba;
        color: #fff;
        border-radius: 4px 0 0 0px;
    }

    .topTabItem.legal {
        background: #e6f3ff;
        color: #222;
        border-radius: 0 0px 4px 0;
    }

    .flowItem {
        min-width: 33%;
        max-width: calc((100% - 32px) / 2);
        padding: 2%;
        font-size: 14px;
		height:100%;
    }
	 .flowItem a {
        font-size: 13px;
    }

    .ztTabItem {
        height: 40px;
        line-height: 40px;
        padding: 7px 14px;
    }

    .topTabWrap {
        display: flex;
        justify-content: center;
        gap: 0;
        margin-bottom: 16px;
        margin-top: -15px;
    }

    .swiperZhiTongCon .tabsConItem a {
        width: 32%;
        padding-left: 5%;
    }

    .swiperZhiTongCon .tabsConItem a::after {
        display: none;
    }

    .gxws {
        flex-wrap: wrap;
    }

    .gxws a {
        margin-bottom: 20px;
    }

    .gxws a img {
        width: 100%;
        height: auto;
        display: block;
    }

    .tongJiYingYong {
        background-size: 100% 100%;
    }

    .bianMinThree {
        flex-wrap: wrap;
        margin-top: 0px;
        padding-top: 20px;
    }

    .bianMinThree a {
        margin-bottom: 20px;
        width: 50%;
    }

    .bianMinThree a img {
        width: 90%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .tongJiCon {
        flex-wrap: wrap;
    }

    .tongJiCon div {
        width: 41%;
        border: 1px solid #e5f1ff;
        padding: 6% 2%;
        margin: 2%;
        border-radius: 10px;
    }

    .tongJiTit {
        font-size: 20px;
    }

    .tongJiCon span {
        font-size: 20px;
    }

    .tongJi {
        background: #fff;
        padding: 30px 10px;
        margin: 0px 0px;
        font-size: 14px;
        text-align: center;
    }

    .tongJiCon p {
        font-size: 14px;
        margin-top: 10px;
    }

    .zwfwMapCon img {
        width: 100%;
        height: auto;
        display: block;
    }

    .zwfwMap {
        background-image: none;
        background-repeat: no-repeat;
        background-position: 10px 15px, center;
        width: 122px;
        font-size: 20px;
        color: #0771ba;
        font-weight: bold;
        height: 40px;
        line-height: 40px;
        padding: 5px;
        float: left;
        margin-top: 10px;
    }

    .zwfwMapTit {
        padding-bottom: 15px;
        height: 44px;
    }

    .zwfwMapMore a {
        position: relative;
        right: 0px;
        top: -30px;
        font-size: 14px;
    }

    .tongJiYingYong {
        background: url(../images/tjyy.jpg) no-repeat center;
        padding-bottom: 1px;
        background-size: 100% 100%;
    }

}

@media (min-width: 320px) and (max-width: 767px) {
    .swiperZhiTongCon .tabsConItem a {
                width: 48%;
        line-height: 20px;
        display: inline-flex;
        align-items: center;
        height: 50px;
        padding: 0 14px;
        background: #f5f7fa;
        border-radius: 4px;
        color: #333;
        text-decoration: none;
		font-size:14px;
    }
}