/* 1rem = 10px */
/*html { font-size: 10px; }*/
* { margin: 0; padding: 0; box-sizing: border-box; }


body {
    font-size: 1.2rem; /* 基础字体12px */
    overflow-y: scroll;
    color: #000000;
}

.neiye{
    background: #f5f5f5;
}

.mtop6{
    margin-top: 6rem;
}

/* 重置和初始化样式 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-family: Arial, "Microsoft YaHei", sans-serif;
    vertical-align: baseline;
    box-sizing: border-box;
}

/* 基础rem设置 - 1rem = 10px (方便计算) */
html {
    font-size: 62.5%; /* 10px = 1rem */
}

/* HTML5 元素显示为块级元素 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1.5;
    font-family: Arial, "Microsoft YaHei", sans-serif;
    color: #333;
    background-color: #fff;

}

ol, ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    text-decoration: none;
    color: inherit;
    -webkit-transition: all 0.3s linear !important;
    -moz-transition: all 0.3s linear !important;
    transition: all 0.3s linear !important;
}

a:hover{
    color: #225796;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 多行省略（2行）核心样式 */
.lhsl {
    /* 必须设置宽度，否则无法触发换行 */
    width: 100%;
    /* 关键属性：控制显示行数 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 设置排列方向为垂直 */
    -webkit-box-orient: vertical;
    /* 隐藏超出部分 */
    overflow: hidden;
    /* 显示省略号 */
    text-overflow: ellipsis;
    /* 可选：修复部分浏览器间距问题 */
    word-break: break-all;
}
.yhsl {
    white-space: nowrap;      /* 强制文本不换行 */
    overflow: hidden;         /* 隐藏超出部分 */
    text-overflow: ellipsis;  /* 超出时显示省略号 */
    width: 100%;            /* 必须指定宽度（或 max-width） */
}

table {
    border-collapse: collapse;
    width: 100%;
}
table tr {
    background: #FFF;
}
table td {
    padding: 2rem 1rem;
    border: 1px solid #CCC;
    font-weight: 400;
    font-size: 1.6rem;
    text-align: center;
    color: #666666;
}

.zsjzContent3 table thead td{
    background: #244735;
    color: #fff;
}
.zsjzContent3 table{
    min-width: 60rem;
}





.flex-center{
    display: flex;
    height: 100%;
    align-items: center;
}

/* 布局样式 */
.container {
    width: 100%;
    max-width: 146rem; /* 1200px */
    margin: 0 auto;
    padding: 0rem; /* 15px */
}


/* 响应式适配 */
@media screen and (max-width: 768px) {
    html {
        font-size: 9px;
    }

}




/* 头部默认透明 */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 12rem;
    z-index: 999;
    background: transparent;
    transition: all 0.3s;
}
.site-header.scroll {
    background: rgb(255,255,255,1);
    z-index: 10000000000000;
    box-shadow: 0 0.1rem 0.5rem rgba(0,0,0,0.05);
    height: 9rem;
}

/* ========== 头部内容区域 最大宽度 146rem ========== */
.header-inner {
    width: 100%;
    max-width: 144rem;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0;
}

.header-logo {
    width: 50rem;
    height: auto;
    position: relative;
}
.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    left: 0; top: 0;
}

/* 默认显示白色logo 隐藏黑色 */
.logo-white { display: block; }
.logo-black { display: none; }
/* 滚动后切换 */
.site-header.scroll .logo-white { display: none; }
.site-header.scroll .logo-black { display: block; }

.header-nav-pc ul {
    display: flex;
    gap: 4rem;
    list-style: none;
}
.header-nav-pc li{
    margin-left: 1rem;
}
.header-nav-pc a {
    font-size: 2.2rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}
.header-nav-pc a:hover,.site-header.scroll .header-nav-pc a:hover{
    color: #3876c3;
}
.site-header.scroll .header-nav-pc a {
    color: #000;
}

.menu-btn {
    display: none;
    width: 3rem;
    height: 3rem;
    position: relative;
    cursor: pointer;
}
.menu-btn span {
    display: block;
    width: 100%;
    height: 0.2rem;
    background: #fff;
    margin: 0.7rem 0;
    transition: background 0.3s;
}
.site-header.scroll .menu-btn span {
    background: #000;
}

.header-nav-mob {
    display: none;
    position: absolute;
    top: 7rem;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,1);
}
.header-nav-mob.show {
    display: block;
}
.header-nav-mob li {
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.header-nav-mob a {
    display: block;
    padding: 1.8rem 0;
    color: #333;
    font-size: 2rem;
    text-decoration: none;
}

/* 轮播 */
.indexbanner {
    width: 100%;
    height: 100vh;
}
.indexbanner .swiper {
    width: 100%;
    height: 100%;
}
.indexbanner .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.indexbanner .slide-video,
.indexbanner .slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
}
.indexbanner .slide-caption {
    position: absolute;
    width: 100%;
    text-align: center;
    /*top: 30%;*/
    /*transform: translate(-50%,-50%);*/
    color: #fff;
    text-align: center;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-shadow: 0 0.2rem 1rem rgba(0,0,0,0.5);
}
.indexbanner .caption-title {
    font-size: 7.6rem;
    width: 100%;
    text-align: center;
    font-weight: bold;
}
.indexbanner .caption-subtitle {
    font-size:6rem;
    width: 100%;
    text-align: center;
}

.indexbanner .swiper-pagination-bullet {
    width: 1rem; height: 1rem;
    background: rgba(255,255,255,0.7);
}

/* ========== 轮播左右箭头 样式 ========== */
.indexbanner .swiper-button-next,
.indexbanner .swiper-button-prev {
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 50%;
    /* 默认背景：#343435 透明度 0.8 */
    background: rgba(52, 52, 53, 0.8);
    transition: all 0.3s ease;
}
.indexbanner .swiper-button-next{
    right: 4%;
}

.indexbanner .swiper-button-prev{
    left: 4%;
}
.indexbanner .swiper-button-next::after,
.indexbanner .swiper-button-prev::after {
    font-size: 2.2rem;
    color: #fff;
    /*font-weight: bold;*/
}
/* 鼠标悬浮：背景 #fff 透明度 0.5 */
.indexbanner .swiper-button-next:hover,
.indexbanner .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* 下方内容板块 */
.indexCenter{
    width: 100%;
    height: auto;
    min-height: 500rem;
}



/* ====================== 跳动鼠标图标 ====================== */
.mouse-icon {
    position: absolute;
    left: 50%;
    bottom: 4rem;
    transform: translateX(-50%);
    z-index: 10;
    width: 2.6rem;
    height: 4rem;
    border: 2px solid rgba(255,255,255,0.9);
    border-radius: 2rem;
    display: flex;
    justify-content: center;
    cursor: pointer;
}
.mouse-icon::before {
    content: '';
    width: 0.25rem;
    height: 0.6rem;
    background: #fff;
    border-radius: 0%;
    margin-top: 1rem;
    animation: mouseScroll 1.8s infinite ease-in-out;
}
@keyframes mouseScroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(2rem); }
}

/* 下方内容板块 */
.indexCenter{
    width: 100%;
    height: auto;
    min-height: 500rem;
}

/* 响应式适配 */
@media (max-width: 76.8rem) and (orientation: portrait) {
    .header-inner { max-width: 100%; padding: 0 2rem; }
    .header-logo { width: 16rem; height: 5rem; }
    .header-nav-pc { display: none; }
    .menu-btn { display: block; }
    .indexbanner .swiper-button-next,
    .indexbanner .swiper-button-prev {
        width: 4rem;
        height: 4rem;
    }
}



/* ====================== 修复：第二屏 高度改为 100vh + 居中 ====================== */
.index01{
    width: 100%;
    height: 100vh;
    background: url("../images/aboutbg.jpg") no-repeat center bottom;
    background-color: #f2f3f7;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.index01Title{
    padding-top: 0;
    text-align: center;
}
.index01Title h1{
    font-weight: bold;
    font-size: 5rem;
    color: #333333;
}
.index01Title h5{
    font-weight: 400;
    font-size: 2rem;
    color: #666666;
    margin-top: 2rem;
}
.index01Center{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    margin-top: 8rem;
}
.index01Item{
    width: 44rem;
    height: 42rem;
    background: #FFFFFF;
    border-radius: 2rem;
    margin-right: 0rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    background: url("../images/m-1.jpg") no-repeat;
    background-size: 100%;
}
.index01Item:nth-child(2){
    background: url("../images/m-2.jpg") no-repeat;
    background-size: 100%;
}
.index01Item:nth-child(3){
    background: url("../images/m-3.jpg") no-repeat;
    background-size: 100%;
}


.index01Item .iconfont21{
    font-size: 7rem;
    transition: color 0.5s ease;
    line-height: 7rem;
    color: #fff;
}
.index01Item .index01Item2{
    font-weight: bold;
    font-size: 3rem;
    color: #fff;
    line-height: 3rem;
    margin-top: 3.3rem;
    transition: color 0.5s ease;
}
.index01Item .index01Item3{
    font-weight: 400;
    font-size: 2rem;
    color: #fff;
    line-height: 4.6rem;
    margin-top: 4.2rem;
    text-align: center;
    transition: color 0.5s ease;
}
/* 悬浮效果：右下阴影+背景变色+文字变白 */
.index01Item:hover {
    background-color: #fff;
    box-shadow: 8px 8px 15px rgba(35, 90, 159, 0.35);
}
.index01Item:hover .iconfont,
.index01Item:hover .index01Item2,
.index01Item:hover .index01Item3 {
    color: #fff;
}

/* ====================== 修复：第三屏 高度改为 100vh + 居中 ====================== */
.index02{
    width: 100%;
    height: 100vh;
    background: url("../images/newsbg.jpg") no-repeat center bottom;
    background-color: #fff;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.index02 .container{
    padding: 0;
}
.TypeName{
    width: 100%;
    height: auto;
    font-weight: bold;
    font-size: 5rem;
    color: #333333;
    text-align: center;
}
.index02Center{
    width: 100%;
    height: auto;
    margin-top: 8rem;
    min-height: 10rem;
    display: flex;
    justify-content: space-between;
}
.index01CenterLeft{
    width: 69rem;
    height: 43rem;
}

/* 轮播容器 */
.mySwiper2 {
    width: 100%;
    max-width: 100%;
    height:auto;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.mySwiper2 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 底部透明黑栏 */
.mySwiper2 .bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 7.2rem;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    z-index: 10;
}
.mySwiper2 .title-text {
    color: #fff;
    font-size: 2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%;
}
/* 分页器靠右 */
.mySwiper2 .swiper-pagination2 {
    position: static !important;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}
/* 圆点样式 */
.mySwiper2 .swiper-pagination2 .swiper-pagination-bullet {
    width: 1.2rem;
    height: 1.2rem;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    position: relative;
    /*margin: 0 !important;*/
    margin-left: 1rem;
}
.mySwiper2 .swiper-pagination2 .swiper-pagination-bullet-active {
    background: #fff;
}
/* 环形进度定位 */
.mySwiper2 .progress-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3rem;
    height: 3rem;
    pointer-events: none;
}

.index02Center .newsRight{
    width: 69rem;
    height: 43rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.index02Center .newsRight .newsBox{
    width: 100%;
    padding: 2.9rem;
    height: 20rem;
    display: flex;
    justify-content: space-between;
    background: #fff;
    transition: all 0.4s ease;
    border-radius: 4px;
}
/* hover整体样式 */
.index02Center .newsRight .newsBox:hover{
    background: #235a9f;
    box-shadow: 8px 8px 12px rgba(35,90,159,0.3);
}

.index02Center .newsRight .newsBox .newsBoxLeft{
    width:34rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.index02Center .newsRight .newsBox .newsBoxLeft .newsBoxLeftTitle{
    width: 100%;
    height: auto;
    font-weight: bold;
    font-size: 2rem;
    color: #333333;
    transition: color 0.4s ease;
}
.index02Center .newsRight .newsBox:hover .newsBoxLeftTitle,
.index02Center .newsRight .newsBox:hover .newsBoxLeftTitle a{
    color: #fff;
}

.index02Center .newsRight .newsBox .newsBoxLeft .newsBoxLeftjianjie{
    width: 100%;
    height: auto;
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    line-height: 2.4rem;
    transition: color 0.4s ease;
}
.index02Center .newsRight .newsBox:hover .newsBoxLeftjianjie{
    color: #fff;
}

.index02Center .newsRight .newsBox .newsBoxLeft .newsDate{
    font-weight: 400;
    font-size: 1.6rem;
    color: #999999;
    transition: color 0.4s ease;
}
.index02Center .newsRight .newsBox:hover .newsDate{
    color: #fff;
}

.index02Center .newsRight .newsBox .newsRght {
    width: 22.5rem;
    height: 14rem;
    overflow: hidden;
    position: relative;
}
.index02Center .newsRight .newsBox .newsRght img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    display: block;
}
.index02Center .newsRight .newsBox:hover .newsRght img {
    transform: scale(1.1);
}

/* ====================== 修复：第四屏适配全屏 ====================== */
.index03{
    width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.index03 .container{
    margin: 0 auto;
    min-height: auto;
}
.index03 .cpTypeName{
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 5rem;
    color: #333333;
}
.index03 .cpText{
    margin: 0 auto;
    width: 98.6rem;
    height: auto;
    font-family: Microsoft YaHei;
    font-weight: 400;
    text-align: center;
    padding-top: 3rem;
    font-size: 2rem;
    color: #666666;
    line-height: 3.6rem;
}




.chanPin {
    width: 100%;
    height: auto;
    margin-top: 8rem;
    overflow: hidden;
    position: relative;
}

.chanPin-scroll {
    display: flex;
    width: max-content;
}

/* PC 绔竴鎺?涓?姝ｅ父澶у皬 */
.chanPinBox {
    width: 44rem;
    flex-shrink: 0;
    margin-right: 2rem;
}
.chanPinBoxImg {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.chanPinBoxImg img {
    width: 100%;
    transition: all 0.3s ease;
    display: block;
    object-fit: cover;
}
.chanPinBoxTitle {
    font-weight: bold;
    font-size: 1.8rem;
    color: #333;
    width: 100%;
    text-align: center;
    margin-top: 2.5rem;
    transition: all 0.2s linear !important;
}
.chanPinBox:hover .chanPinBoxImg img {
    transform: scale(1.1);
}
.chanPinBox:hover .chanPinBoxTitle {
    color: #1677ff;
}

/* 👇 移动端彻底修复：不乱、不大、正常 */
/* 响应式适配 */
@media (max-width: 76.8rem) and (orientation: portrait) {
    .chanPinBox {
        width: 85vw !important; /* 手机正常宽度，不撑满、不巨大 */
        margin-right: 1.5rem;
    }
    .chanPinBoxImg img {
        width: 100% !important;
        height: auto !important;
        max-height: auto !important; /* 限制图片高度，不会巨大 */
        object-fit: cover !important;
    }
    .chanPinBoxTitle {
        font-size: 1.8rem !important;
    }
}






/* ====================== 修复：第五屏适配全屏 ====================== */
.index04{
    width: 100%;
    height: 100vh;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.index04 .container{
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: auto;
}
.index04Left{
    width: 30rem;
    height: 100%;
}
.index04Left .index04LeftTypeName{
    width: 38rem;
    height: auto;
    font-weight: bold;
    font-size: 5rem;
    color: #333333;
}
.index04Left .index04LeftBottom{
    width: 50rem;
    height: auto;
    margin-top: 7.3rem;
}
.data-list {
    list-style: none;
}
.data-item {
    display: flex;
    align-items: baseline; /* 数字和文字基线对齐 */
    margin-bottom: 3rem; /* 项目之间的间距 */
}
.data-number {
    font-size: 7rem; /* 大数字字号，可按需要调整 */
    font-weight: 700;
    color: #222;
    line-height: 1;
}
.data-plus {
    font-size: 4rem;
    color: #222;
    margin-left: 0.8rem;
    margin-top: -2rem; /* 让+号靠上一点 */
}
.data-label {
    font-size: 2rem;
    color: #666;
    margin-left: 1.6rem;
}
.index04 .map{
    width: 110.9rem;
    height: 80.3rem;
    background: url("../images/map.png") no-repeat;
    background-size: 100%;
}

.item {
    position: absolute;
}

/* 发光圆点 */
.dot {
    width: 20px;
    height: 20px;
    background: #3468c0;
    border-radius: 50%;
    animation: glow 0.8s infinite alternate;
}
@keyframes glow {
    0% { box-shadow: 0 0 0 4px rgba(52,104,192,0.3), 0 0 10px 6px rgba(52,104,192,0.2); }
    100% { box-shadow: 0 0 0 6px rgba(52,104,192,0.5), 0 0 20px 10px rgba(52,104,192,0.4); }
}

/* 折线容器 + 名称统一包裹 */
.line-box {
    position: absolute;
    left: -74px;
    top: -74px;
    width: 100px;
    height: 60px;
    /*overflow: hidden;*/
}

.line {
    width: 80px;
    height: 40px;
    border-left: 1px solid #000;
    border-top: 1px solid #000;
    transform: skewY(-30deg);
}
/* 左侧折线 */
.line2 {
    width: 80px;
    height: 40px;
    border-right: 1px solid #000;
    border-top: 1px solid #000;
    transform: skewY(30deg);
}

/* 省份名称 - 放在容器内，相对定位 */
.name {
    position: absolute;
    font-size: 16px;
    color: #333;
    white-space: nowrap;
}
/* 右侧文字位置 */
.line-box .name-right {
    left: 85px;
    top: -44px;
}
/* 左侧文字位置 */
.line-box .name-left {
    right: 85px;
    top: -50px;
}

.item1 .line-box {
    position: absolute;
    left: 10px;
    top: -64px;
    width: 100px;
    height: 60px;
    /* overflow: hidden; */
}
.item1 {
    margin-top: 25rem;
    margin-left: 93rem;
}
.item2 {
    margin-top: 42rem;
    margin-left: 77rem;
}
.item2 .line-box {
    position: absolute;
    left: 10px;
    top: -26px;
    width: 100px;
    height: 60px;
}
.item3 {
    margin-top: 50rem;
    margin-left: 81rem;
}
.item3 .line-box {
    position: absolute;
    left: 10px;
    top: -64px;
    width: 100px;
    height: 60px;
    /* overflow: hidden; */
}
.item4 {
    margin-top: 54rem;
    margin-left: 84rem;
}
.item4 .line-box {
    position: absolute;
    left: 10px;
    top: -64px;
    width: 100px;
    height: 60px;
    /* overflow: hidden; */
}
.item5 {
    margin-top: 52rem;
    margin-left: 76rem;
}
.item5 .line-box {
    position: absolute;
    left: 10px;
    top: 32px;
    width: 100px;
    height: 60px;
    /* overflow: hidden; */
}
.item5 .line-box .line {
    width: 90px;
    height: 87px;
    border: 0;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    transform: skewY(7deg);
}
.item5 .line-box .name-right {
    left: 95px;
    top: 82px;
}

.item6 {
    margin-top: 70rem;
    margin-left: 70rem;
}
.item6 .line-box {
    position: absolute;
    left: -82px;
    top: -50px;
    width: 100px;
    height: 27px;

}
.item6 .line-box .line {
    width: 94px;
    height: 40px;
    border: 0;
    border-right: 1px solid #000;
    border-top: 1px solid #000;
    transform: skewY(3deg);
}
.item6 .line-box .name-right {
    left: -40px;
    top: -13px;
}

.item7 {
    margin-top: 54rem;
    margin-left: 66rem;
}
.item7 .line-box {
    position: absolute;
    left: -100px;
    top: -26px;
    width: 100px;
    height: 27px;

}
.item7 .line-box .line {
    width: 94px;
    height: 40px;
    border: 0;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    transform: skewY(-1deg);
}
.item7 .line-box .name-right {
    left: -17px;
    top: -21px;
}

.item8 {
    margin-top: 48rem;
    margin-left: 60rem;
}
.item8 .line-box {
    position: absolute;
    left: -119px;
    top: -65px;
    width: 100px;
    height: 60px;
}
.item8  .line {
    width: 129px;
    height: 40px;
    border: 0;
    border-right: 1px solid #000;
    border-top: 1px solid #000;
    transform: skewY(16deg);
}
.item8  .line-box .name-right {
    left: -38px;
    top: -32px;
}

.item9 {
    margin-top: 42rem;
    margin-left: 67rem;
}
.item9 .line-box {
    position: absolute;
    left: -119px;
    top: -65px;
    width: 100px;
    height: 60px;
}
.item9  .line {
    width: 129px;
    height: 40px;
    border: 0;
    border-right: 1px solid #000;
    border-top: 1px solid #000;
    transform: skewY(16deg);
}
.item9  .line-box .name-right {
    left: -38px;
    top: -32px;
}

.item10 {
    margin-top: 37rem;
    margin-left: 73rem;
}
.item10 .line-box {
    position: absolute;
    left: -119px;
    top: -65px;
    width: 100px;
    height: 60px;
}
.item10  .line {
    width: 129px;
    height: 40px;
    border: 0;
    border-right: 1px solid #000;
    border-top: 1px solid #000;
    transform: skewY(16deg);
}
.item10  .line-box .name-right {
    left: -38px;
    top: -32px;
}

.item2 .line{
    height: 5px;
}

.item11 {
    margin-top: 32rem;
    margin-left: 77rem;
}

.item11 .line-box {
    position: absolute;
    left: -119px;
    top: -65px;
    width: 100px;
    height: 60px;
}
.item11  .line {
    width: 129px;
    height: 40px;
    border: 0;
    border-right: 1px solid #000;
    border-top: 1px solid #000;
    transform: skewY(16deg);
}
.item11  .line-box .name-right {
    left: -38px;
    top: -32px;
}






.item12 {
    margin-top: 51rem;
    margin-left: 42rem;
}

.item12 .line-box {
    position: absolute;
    left: -76px;
    top: -65px;
    width: 100px;
    height: 60px;
}
.item12  .line {
    width: 88px;
    height: 40px;
    border: 0;
    border-right: 1px solid #000;
    border-top: 1px solid #000;
    transform: skewY(16deg);
}
.item12  .line-box .name-right {
    left: -38px;
    top: -32px;
}


.item13 {
    margin-top: 78rem;
    margin-left: 60rem;
}
.item13 .line-box {
    position: absolute;
    left: -82px;
    top: -50px;
    width: 100px;
    height: 27px;

}
.item13 .line-box .line {
    width: 94px;
    height: 40px;
    border: 0;
    border-right: 1px solid #000;
    border-top: 1px solid #000;
    transform: skewY(3deg);
}
.item13 .line-box .name-right {
    left: -45px;
    top: -13px;
}


.item14 {
    margin-top: 37rem;
    margin-left: 78rem;
}
.item14 .line-box {
    position: absolute;
    left: 10px;
    top: -35px;
    width: 100px;
    height: 2px;
    /* overflow: hidden; */
}

.item14 .line{
   height: 24px;
}







/* ====================== 修复：底部屏适配全屏 ====================== */
.footer{
    width: 100%;
    height: 100vh;
    background: #E6E9ED;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footertop{
    width: 100%;
    height: auto;
    margin: 0;
    min-height: 10rem;
    display: flex;
    justify-content: space-between;
}
.footertopleft{
    width: 54rem;
    height: auto;
    display: flex;
    flex-direction: column;
}
.footertopleftLogo{
    width: auto;
    height: auto;
}

.footertopleftLogo img{
    height: 6.5rem;
}

.footContact{
    width: 100%;
    height: auto;
    margin-top: 4.5rem;
    font-weight: 400;
    font-size: 2rem;
    color: #666666;
    line-height: 4rem;
}
.footLinks{
    width: 100%;
    height:6rem;
    display: flex;
    margin-top: 5rem;
}
.footLinks a{
    width: 6rem;
    height: 6rem;
    background: #646464;
    border-radius: 50%;
    font-size: 3rem;
    color: #fff;
    margin-right: 2rem;
    text-align: center;
    line-height: 6rem;
    position: relative;


}
.footLinks a:hover{
    width: 6rem;
    height: 6rem;
    background: #225796;
    border-radius: 50%;
    font-size: 3rem;
    color: #fff;
    margin-right: 2rem;
    text-align: center;
    line-height: 6rem;
}
.footertopright{
    width: 82rem;
    height: auto;
    display: flex;
    justify-content: space-between;
}
.footertopright ul{
    /*padding-top: 3.6rem;*/
}
.footertopright h2{
    font-weight: bold;
    font-size: 2.4rem;
    color: #333333;
    line-height: 3.6rem;
    margin-bottom: 3.6rem;
}
.footertopright ul li{
    font-weight: 400;
    font-size: 2rem;
    color: #666666;
    line-height: 4rem;
}
.footertopright ul li a:hover{
    font-weight: 400;
    font-size: 2rem;
    color: #225796;
    line-height: 4rem;
}
.footer .footbq{
    width: 100%;
    height: auto;
    font-weight: 400;
    font-size: 2rem;
    color: #666666;
    padding: 5rem 0;
    padding-top: 0rem;
    text-align: center;
}
.footer .footline{
    width:100%;
    height: 0.1rem;
    margin: 5vh 0;
    border-top: 1px solid #cacaca;
    border-bottom: 1px solid #fff;
}








* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden; /* 隐藏滚动条 */
    font-family: "Microsoft YaHei", sans-serif;
}

/* 全屏容器 */
.container2x {
    height: 100%;
    transition: transform 0.8s ease; /* 平滑滚动动画 */
}

/* 每一屏样式 */
.section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;


}

/* 每屏不同背景色 */
/*.section1 { background: #2c3e50; }*/
/*.section2 { background: #e74c3c; }*/
/*.section3 { background: #f39c12; }*/
/*.section4 { background: #27ae60; }*/
/*.section5 { background: #9b59b6; }*/

/* 右侧指示器 */
.dot2s {
    position: fixed;
    right: 30px;
    top: 50%;
    display: none;
    transform: translateY(-50%);
    z-index: 99;
}

.dot2 {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    margin: 12px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.dot2.active {
    background: white;
    transform: scale(1.2);
}


/*!* 让 AOS 动画更柔和，不生硬 *!*/
/*[data-aos] {*/
/*    transition: opacity 1.2s ease-out, transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) !important;*/
/*}*/




.nybanner{
    width: 100%;
    height: 100vh;
    position: relative;
}

.nybanner img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
}

.nybannerText{
    position: absolute;
    width: 100%;
    text-align: center;
    /* top: 30%; */
    /* transform: translate(-50%, -50%); */
    color: #fff;
    text-align: center;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.5);
    font-size: 7.6rem;
    font-weight: bold;
}


.nybanner2{
    width: 100%;
    height: 60rem;
}

.sectionpage{
    height: 60rem;
}

.textClass{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 7.6rem;
    color: #FFFFFF;
}


.lingxi{
    width: 100%;
    height: auto;
    margin-top: 10rem;
}


.lingxi01{
    width: 100%;
    height: auto;
    min-height: 80rem;
}

.lingxi01TypeName{
    width: 100%;
    height: auto;
    position: relative;
}
.lingxi01TypeName p{
    font-weight: bold;
    font-size: 5.6rem;
    color: #000000;
}

.lingxi01TypeName p:nth-child(2){
    font-weight: 400;
    font-size: 3rem;
    color: #000000;
}

.lingxi01TypeName1{
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}


.lingxi01TypeName2{
    width: 100%;
    font-weight: bold;
    font-size: 4.8rem;
    color: #dfe4ee;
    line-height: 3rem;
    position: absolute;
    text-align: center;
    margin-top: -1rem;
}

.heiquan{
    width: 30rem;
    height: 8rem;
    background: #000000;
    border-radius: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.heiquan span{
    background: #000000;
    border-radius: 4rem;
    font-weight: bold;
    font-size: 2.4rem;
    color: #FFFFFF;
    line-height: 3rem;
}

.heiquan span:nth-child(1) text:nth-child(1){
    font-weight: bold;
    font-size: 3.2rem;
    color: #FFFFFF;
    line-height: 3rem;
}

.heiquan span:nth-child(1) text:nth-child(2){
    font-weight: bold;
    font-size: 2.4rem;
    color: #FFFFFF;
    line-height: 3rem;
}
.heiquan span:nth-child(2){
    font-weight: 400;
    font-size: 1.8rem;
    color: #FFFFFF;
    line-height: 3rem;
}

.heiquanBox{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    margin-top: 5.4rem;
    gap: 6rem; /* 核心：两个项目之间固定间距 6rem */
}


.xiangjiBox{
    width: 100%;
    height: 69.3rem;
    position: relative;
    margin-top: 8rem;
}

.tupianBox{
    width: 100%;
    height: 69.3rem;
    text-align: center;
    display: flex;
    justify-content: center;
}
.tupianBox img{
    width: 34.2rem;
    height: 69.3rem;
}

.xiangjiText{
    position: absolute;
    width: 100%;
    height: 69.3rem;
    z-index: 999;
    display: flex;
    justify-content: space-between;
}

.xiangjiLeft{
    width: 38.5%;
    height: 69.3rem;
    display: flex;
    flex-direction: column;
}

.xiangjiLeft .xjItem{
    width: 100%;
    height:15rem ;
    margin-top:6rem;
}


.xiangjiLeft .xjItem .xjItem1{
    font-weight: bold;
    font-size: 2.4rem;
    color: #000000;
}

.xjBox{
    position: absolute;
    right: -2rem;
}

.xiangjiLeft .xjItem .xjItem2{
    width: 100%;
    height: 3rem;
    position: relative;
    display: flex;
    justify-content: flex-end;
    background: #fff;
}

.xiangjiLeft .xjItem .xjItem2::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;    /* 横线宽度：100% = 和文字一样宽 */
    height: 0.1rem; /* 横线粗细 1px */
    background: #235A9F; /* 横线颜色 */
}

.xiangjiLeft .xjItem .xjItem3{
    font-weight: 400;
    font-size: 1.8rem;
    color: #666666;
    line-height: 3rem;
}

.xiangjiLeft2 .xjItem .xjItem1{
    text-align: right;
}

.xiangjiLeft .xjItem .xjItem3 {
    text-align: left;
}
.xiangjiLeft2 .xjItem .xjItem3 {
    text-align: right;
}

.xiangjiLeft2 .xjItem .xjItem2 {
    width: 100%;
    height: 3rem;
    position: relative;
    display: flex;
    justify-content: flex-start;
    background: #fff;
}

.xiangjiLeft2 .xjItem .xjItem2::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 0.1rem;
    background: #235A9F;
}



/* 动画必须写在最外层，不能嵌套在 .xjBox 里 */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.35;
    }
    100% {
        transform: scale(1);
        opacity: 0.2;
    }
}

/* 所有样式包在 .xjBox 里 */
.xjBox .dot-wrapper {
    position: relative;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 外层圆 + 动画（引用全局 pulse） */
.xjBox .dot-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3rem;
    height: 3rem;
    background: #235A9F;
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 2s infinite ease-in-out; /* 关键：用全局动画名 */
}

/* 内层实心圆 */
.xjBox .dot-wrapper::after {
    content: "";
    position: relative;
    z-index: 1;
    width: 1.2rem;
    height: 1.2rem;
    background: #235A9F;
    border-radius: 50%;
}

.xiangjiLeft .xjItem:nth-child(1){
}

.xiangjiLeft .xjItem:nth-child(2){
    width: 95%;
}

.xiangjiLeft .xjItem:nth-child(3){
    width: 96%;
}

.xiangjiLeft2 .xjBox{
    position: absolute;
    left: -2rem;
    right: unset;
}
.xiangjiLeft2 {
    display: flex;
    width: 40%;
    flex-direction: column;
    align-items: flex-end;
}

.xiangjiLeft2 .xjItem{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.xiangjiLeft2 .xjItem:nth-child(1){
    width: 100%;
}

.xiangjiLeft2 .xjItem:nth-child(2){
    width: 94%;
    margin-top: 4rem;
}

.xiangjiLeft2 .xjItem:nth-child(3){
    width: 100%;
}


/* ======================================================
   专门适配 分辨率 ≤ 1500px 的电脑（笔记本/小屏显示器）
   自动缩放、内容完整显示、不溢出、不变形
====================================================== */
@media screen and (max-width: 1650px) {
    /* 全局缩小 0.85 倍，适配小屏幕 */
    html {
        font-size: 52% !important; /* 原来 62.5%=10px → 现在≈8.8px，整体缩小 */
    }



    .index04 .map {
        background-size: 100%;
    }

    .chanPin {
        margin-top: 5rem;
    }
    /* 容器最大宽度缩小，不贴边 */
    /*.container {*/
    /*    max-width: 20rem !important;*/
    /*    padding: 0 2rem;*/
    /*}*/

    /*!* 头部导航间距缩小 *!*/
    /*.header-nav-pc ul {*/
    /*    gap: 2.5rem;*/
    /*}*/
    /*.header-nav-pc a {*/
    /*    font-size: 2rem;*/
    /*}*/

    /*!* 三大核心板块自动适配，不溢出屏幕 *!*/
    /*.index01Item,*/
    /*.index01CenterLeft,*/
    /*.index02Center .newsRight {*/
    /*    width: 100% !important;*/
    /*    max-width: 100% !important;*/
    /*}*/

    /*!* 产品板块间距缩小 *!*/
    /*.chanPin {*/
    /*    gap: 2.5rem;*/
    /*}*/

    /*!* 地图缩小，避免超出屏幕 *!*/
    /*.index04 .map {*/
    /*    max-width: 90%;*/
    /*    height: 60rem;*/
    /*}*/

    /*!* 底部自动换行，不溢出 *!*/
    /*.footertop {*/
    /*    gap: 2.5rem;*/
    /*}*/
}


.footLinks a .erweima{
    width: 15rem;
    height: 15rem;
    background: #fff;
    border-radius: 0.5rem;
    padding: 0.9rem;
    position: absolute;
    top: 8rem;
    left: -4rem;
    display: none;
}
.footLinks a:hover .erweima{
    display: block;
}

.index04_mob{
    display: none;
}


/*!* 超大屏显示器 > 1920px *!*/
/*@media screen and (min-width: 1920px) {*/
/*    html { font-size: 66.5% !important; } !* 1rem ≈ 10.6px *!*/
/*}*/

/*!* 标准大屏 1920px × 1080px（最主流） *!*/
/*@media screen and (max-width: 1920px) {*/
/*    html { font-size: 62.5% !important; } !* 1rem = 10px（基准） *!*/
/*}*/

/*!* 中屏笔记本 1650px ~ 1919px *!*/
/*@media screen and (max-width: 1650px) {*/
/*    html { font-size: 54.5% !important; } !* 1rem ≈ 8.7px *!*/
/*}*/

/*!* 小屏笔记本 1440px ~ 1649px *!*/
/*@media screen and (max-width: 1440px) {*/
/*    html { font-size: 48.5% !important; } !* 1rem ≈ 7.7px *!*/
/*}*/

/*!* 迷你本 1366px及以下 *!*/
/*@media screen and (max-width: 1366px) {*/
/*    html { font-size: 45% !important; } !* 1rem ≈ 7.2px *!*/
/*}*/

/*!* 平板竖屏 *!*/
/*@media screen and (max-width: 1024px) {*/
/*    html { font-size: 42% !important; }*/
/*}*/


/*@media screen and (max-width: 1700px) {*/
/*    !* 全局缩小 0.85 倍，适配小屏幕 *!*/
/*    html {*/
/*        font-size: 52% !important; !* 原来 62.5%=10px → 现在≈8.8px，整体缩小 *!*/
/*    }*/
/*}*/
