.home {
    width: 100%;
    background-color: #fff;
    overflow-y: auto;
    overflow-x: hidden;
}

.swiperBox {
    position: relative;
}

.swiper-container .swiper-item {
    position: relative;
}

.swiper-container .swiper-item .bannerText {
    position: absolute;
    top: 106px;
    left: 375px;
}

.swiper-container .swiper-item .bannerText h3 {
    font-weight: 500;
    font-size: 44px;
    color: #FFFFFF;
    margin-bottom: 28px;
    letter-spacing: 2px;
}

.swiper-container .swiper-item .bannerText p {
    font-weight: 400;
    font-size: 20px;
    color: #E4E0F5;
}

.swiper-container .swiper-item button {
    width: 163px;
    height: 52px;
    border-radius: 0px 0px 0px 0px;
    border: 2px solid #E4E0F5;
    text-align: center;
    line-height: 52px;
    color: #E4E0F5;
    font-size: 20px;
    background-color: transparent;
    margin-top: 90px;
}

.top_count {
    display: flex;
    align-items: center;
    z-index: 99999;
    top: -72px;
    left: calc(50% - 600px);
    position: absolute;
    width: 1200px;
    height: 140px;
    background: #FDFEFE;
    box-shadow: 0px 12px 14px 0px rgba(227, 239, 255, 0.4);
    border-radius: 6px 6px 6px 6px;
    border: 1px solid #FFFFFF;
    padding: 0 50px;
}

.top_count ul {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.top_count ul li {
    display: flex;
    align-items: center;
}

.top_count ul div {
    margin-left: 16px;
}

.top_count ul li img {
    width: 44px;
    height: 44px;
}

.top_count ul li span {
    font-weight: 500;
    font-size: 20px;
    color: #132D6B;
}

.top_count ul li p {
    margin-top: 4px;
    font-weight: 400;
    font-size: 16px;
    color: #686A8A;
}

.module_box01 {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 50px;
    box-sizing: border-box;
}

.title_module {
    text-align: center;
}

.title_module h2 {
    font-weight: bold;
    font-size: 32px;
    color: #171717;
}

.title_module p {
    margin-top: 10px;
    font-size: 16px;
    color: #504E5B;
}

.topBanner {
    position: relative;
    width: 100%;
    height: 404px !important;
}

.topBanner img {
    width: 100%;
    height: 404px;
    margin: 0 auto;
}

.topBanner .bannerText {
    position: absolute;
    top: 106px;
    left: 375px;
}

.topBanner .bannerText h3 {
    font-weight: 500;
    font-size: 44px;
    color: #142D66;
    margin-bottom: 28px;
    letter-spacing: 2px;
}

.topBanner .bannerText p {
    font-size: 20px;
    color: #142D66;
}

.topBanner button {
    width: 163px;
    height: 52px;
    border: 2px solid #2E5FF6;
    text-align: center;
    line-height: 52px;
    color: #2E5FF6;
    font-size: 20px;
    background-color: transparent;
    margin-top: 50px;
    border-radius: 4px 4px 4px 4px;
}

.module_box01 .content {
    width: 1200px;
    height: auto;
    margin: 0 auto;
    margin-top: 50px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.module_box01 .content .content_item {
    position: relative;
    width: 376px;
    height: 380px;
    background: #F6F7FF;
    border-radius: 10px 10px 10px 10px;
    margin-bottom: 26px;
    margin-right: 36px;
}

.module_box01 .content .content_item:nth-child(3n+3) {
    margin-right: 0;
}

.module_box01 .content .content_item img {
    width: 100%;
    height: 206px;
}

.module_box01 .content .content_item .img_txt {
    position: absolute;
    text-align: center;
    top: 69px;
    left: 0;
    width: 100%;
}

.module_box01 .content .content_item .img_txt h3 {
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 23px;
    margin-bottom: 10px;
}

.module_box01 .content .content_item .img_txt p {
    font-weight: 400;
    font-size: 12px;
    color: #C1C4E6;
    line-height: 18px;
}

.module_box01 .content .content_item .txtBox {
    position: relative;
    height: calc(100% - 206px);
    padding: 18px 20px;
    box-sizing: border-box;
}

.module_box01 .content .content_item .txtBox h3 {
    font-weight: 500;
    font-size: 20px;
    color: #171717;
    margin-bottom: 16px;
    height: 56px;
    /* 多行文本省略 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    
    /* 添加标准属性以提高兼容性 */
    line-clamp: 2;
    box-orient: vertical;
}

.module_box01 .content .content_item .txtBox p {
    /* 移除冲突的 display 属性 */
    /* display: inline-block; */
    
    font-weight: 400;
    font-size: 16px;
    color: #504E5B;
    text-align: justified;
    font-style: normal;
    text-transform: none;
    
    /* 明确设置行高，确保两行高度计算准确 */
    line-height: 1.5; /* 根据需要调整 */
    
    /* 多行文本省略 - 关键属性 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    
    /* 可以移除固定高度，或根据 line-height 计算 (line-height × 2) */
    /* height: 66px; */ /* 如果保留，请确保它等于 line-height × 2 */
    
    /* 添加标准属性以提高兼容性 */
    line-clamp: 2;
    box-orient: vertical;
}

.module_box01 .content .content_item .txtBox span {
    position: absolute;
    left: 20px;
    /* bottom: 24px; */
    font-weight: 400;
    font-size: 16px;
    color: #878B94;
    padding-top: 10px;
}

.mapEcharts {
    height: 500px;
    width: 1;
}

.ovh {
    overflow: hidden;
}


.module_box01 .table {
    border-bottom: 1px solid #DEDEDE;

}

.module_box01 .content_module {
    margin-top: 40px;
}

.module_box01 .flex-item {
    display: flex;
    padding-bottom: 26px;
    box-sizing: border-box;
    width: 210px;
    /* 小手 */
    cursor: pointer;
    justify-content: center;
}

.module_box01 .title_itme {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 28px;
    color: #4F628D;
    text-align: center;
    font-style: normal;
    text-transform: none;

}

.this_item {
    border-bottom: 2px solid #256ED7;
    color: #256ED7 !important;
}

.w400 {
    width: 450px;
    margin: 0 auto;
}

/* 新增分页样式：居中显示+间距控制 */
.pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0px 10px 40px 10px;
}

/* 分页按钮基础样式 */
.page-btn {
    padding: 6px 12px;
    margin: 0 5px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

/* 禁用状态 */
.page-btn:disabled {
    cursor: not-allowed;
    color: #ccc;
    border-color: #eee;
    background-color: #fafafa;
}

/* 选中状态 */
.page-btn.active {
    background-color: #256ED7;
    color: #fff;
    border-color: #256ED7;
}

/* 页码输入框 */
.page-input {
    width: 60px;
    height: 32px;
    text-align: center;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    margin: 0 5px;
    outline: none;
}

/* 页码文本 */
.page-text {
    margin: 0 10px;
    color: #666;
}