
/* 响应式设计 - 平板和手机 */
@media (max-width: 76.8rem) and (orientation: portrait) {

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


.btop{
    display: none;
}
.header{
    background: #fff;
    height: 6rem;
}
    .mobilelogo{
        display: block;
        max-width: 23rem;
    }
    .onhover .mobilelogo img {
    max-height: 4rem;
}
    .tongzhi{
        display: none;
    }
    .banner .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
        /*display: none;*/
    }
    /* 显示汉堡菜单按钮 */
    .hamburger {
        display: block;
    }
    .header-inner{
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 6rem;
    }

    .nav {
        width: auto;
        height: auto;
    }


    /* 隐藏常规导航菜单 */
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 1.5rem 0; /* 15px */
        box-shadow:unset; /* 0 5px 10px */
        z-index: 100;
        height: 100vh;
    }

    /* 导航菜单显示为垂直布局 */
    .nav-list.active {
        display: block;
        z-index: 999999;
    }

    .nav-item {
        margin: 0;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 1rem 1.5rem; /* 10px 15px */
    }

    /* 汉堡菜单动画 - 点击后变为X */
    .hamburger.active .hamburger-inner {
        background-color: transparent;
    }

    .hamburger.active .hamburger-inner::before {
        transform: translateY(0.6rem) rotate(45deg); /* 6px */
    }

    .hamburger.active .hamburger-inner::after {
        transform: translateY(-0.6rem) rotate(-45deg); /* -6px */
    }


    .indexNews .container {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }


    .footer {
        background: #244735;
        width: 100%;
        height: auto;
        margin-top: 6.9rem;
        display: inline-table;
    }
    .footer-top{
        display: none;
    }

    .foot-bottom{
        width: 100%;
        font-weight: 400;
        font-size: 1.6rem;
        color: #619078;
        padding: 4rem 1rem;
        text-align: center;
    }





    .newsBox {
        width: 100%;
        height: auto;
        /* background: #ccc; */
        margin-top: 3rem;
    }


    .banner .swiper-button-prev, .banner .swiper-button-next {
        width: 4rem;
        height: 4rem;
        background: #000000;
        border-radius: 50%;
        opacity: 0.2;
    }
    .indexSnav {
        width: 100%;
        height: auto;
    }
    .indexSnav .container {
        height: auto;
        display: flex ;
        justify-content: center;
        padding: 3rem 0;
    }

    .indexSnav .container a {
        width: 15%;
        height: auto;
        display: flex  ;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #fff;
        margin: 0 5%;
    }

    .indexSnav .container a .sNavName {
        font-weight: bold;
        font-size: 1.4rem;
        color: #244735;
        line-height: 2.6rem;
        margin-top: 1.4rem;
    }

    .indexNews {
        width: 100%;
        height: auto;
        background: #F5F5F5;
        display: flow-root;
    }
    .newsTypeName .newsTypeNameleft img {
        width: 3rem;
    }
    .newsTypeName .newsTypeNameleft text {
        width: auto;
        height: auto;
        font-weight: bold;
        font-size: 2rem;
        padding-left: 1rem;
        color: #333333;
    }

    .IndexNewsList ul li a text{
        font-weight: 400;
        font-size: 1.6rem;
        max-width: 23rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .gallery-container {
        height: auto;
    }

    .gaofuzhichuang ul {
        width: 100%;
        flex-direction: column;
    }
    .gaofuzhichuang ul li {
        width:100%;
        margin-bottom: 3rem;
    }

    .gaofuzhichuang ul li a .gaofuTitle {
        font-size: 1.6rem;
        /* color: #666666; */
        line-height: 3rem;
        margin-top: 2rem;
        text-align: center;
    }
    .nav-item a {
        position: relative;
        display: flex;
        height: 6rem;
        align-items: center;
        padding: 0 2rem;
        color: #333;
    }
    .newsListBox a{
        border-bottom: 1px solid #eeeeee;
    }

    .newsListBox a .right-Box {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .newsListBox a .left-data{
        display: none;
    }

    .newsListBox a .right-Box .biaoti{
        width: 100%;
        height: 3rem;
        font-weight: 400;
        font-size: 2.4rem;
        color: #333333;
        white-space: nowrap;      /* 禁止文本换行 */
        overflow: hidden;         /* 隐藏超出部分 */
        text-overflow: ellipsis;  /* 显示省略号 */
        width: 100%;             /* 或者指定一个固定宽度 */
        display: block;          /* 或者 inline-block，取决于你的布局 */
    }


    .newsListBox a .right-Box span:nth-child(2){
        display: -webkit-box;          /* 使用旧版弹性盒模型 */
        -webkit-line-clamp: 3;         /* 限制显示 2 行 */
        -webkit-box-orient: vertical;  /* 垂直方向排列 */
        overflow: hidden;              /* 超出部分隐藏 */
        text-overflow: ellipsis;       /* 超出部分显示省略号 */
        line-height: 1.5;              /* 可选：设置行高，避免文字被截断 */
        max-height: calc(3 * 1.5em);   /* 可选：计算最大高度（2行 × 行高） */
    }
    .pagebanner {
        width: 100%;
        height: 20rem;
    }

    .pagebanner .container {
        height: 20rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .pagebanner .container h2{
        display: none;
    }

    .pagebanner .container span {
        width: 9rem;
        height: 0.2rem;
        background: #FFFFFF;
        margin-top: 2rem;
    }

    .newsListBox a {
        margin-top: 2rem;
    }


    .newsDetail .container .detailLeft {
        width: 100%;
        height: auto;
        min-height: 20rem;
        border-right: 0px solid #EBEBEB;
    }

    .newsDetail .container {
        height: auto;
        border: 0px solid #EBEBEB;
        border-top: 0;
        display: flex;
        flex-direction: column;
    }

    .detailLeftcenyter {
        margin: 0 0rem;
        padding-top: 4.9rem;
    }

    .shangyi {
        width: 100%;
        height:auto;
        display: flex;
        border-top: 1px solid #EBEBEB;
        padding-top: 5rem;
        padding-bottom: 11rem;
        flex-direction: column;
        justify-content: space-between;
    }
    .shangyi .fanhui{
        margin-top: 5rem;
    }
    .detailRight {
        width: 100%;
        height: auto;
        min-height: 20rem;
        margin-right: 0rem;
        margin-top: 4.9rem;
    }
    .shangyi .shangyi-left {
        width: 100%;
        height:auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .zhaoshengbm {
        flex-direction: column;
    }

    .zhaoshengbm .baoming {
        display: flex;
        width: 100%;
        height: auto;
        background: #F5F5F5;
        flex-direction: column;
        justify-content: center;
        padding: 6rem;
        margin-bottom: 2rem;
    }

    .zhaoshenglianxi {
        width: 100%;
        height: auto;
        display: flex ;
        margin-top: 3rem;
        flex-direction: column;
    }

    .zhaoshenglianxi span {
        width: 100%;
        margin-bottom: 2rem;
        border-right: 0px solid #E2E2E2;
    }

.banner2{
    display: none;
}
    .tupianliebiao {
        width: 100%;
        height: auto;
        background: #fff;
        margin-top: 1rem;
        padding: 0rem 0;
    }
    .tupianliebiao .container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .tupianliebiao a {
        width: 100%;
        height: auto;
        margin-bottom: 2rem;
        background: #fff;
        border-bottom: 1px solid #f5f5f5;
    }
    .biaodanBox2 .inputText {
        width: 100%;
    }
    .biaodanBox2 .inputText input {
        width: 99%;
        height: 6rem;

        padding-left: 1%;
    }

    .inputText2 textarea {
        width: 96%;
        height: 16rem;
        background: #FFFFFF;
        padding: 3rem 2%;
        border: 0.1px solid #E0E0E0;
    }
    .biaodanBox2 .inputText{
        width: 100%;
    }
    .biaodanBox2 .inputText select {
        width: 100%;
        height: 6rem;
        background: #FFFFFF;
        border: 0.1px solid #E0E0E0;
        margin-top: 1.8rem;
        font-weight: 400;
        font-size: 1.6rem;
        color: #999999;
        padding-left: 1rem;
    }

    .sanjianke {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-top: 3.9rem;
        flex-direction: column;
    }
    .sanjianke a{
        margin-bottom: 1rem;
    }
    .jingul {
        width: 100%;
        height: auto;
        font-weight: 400;
        font-size: 1.6rem;
        color: #244735;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 1rem;
    }

    .jingul a {
        width: 100%;
        height: 3rem;
        margin-top: 2rem;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .biaodanBox {
        width: 100%;
        height: auto;
        padding: 5rem 3rem;
        padding-left: 1rem;
        margin-top: 3.9rem;
        background: #F5F5F5;
    }
    .biaodanBox .inputText input {
        width: 100%;
    }

    .biaodanBox .inputText {
        width: 100%;
        height: auto;
        display: flex;
        margin-bottom: 4.5rem;
        flex-direction: column;
    }
    .zhiboimgfoot {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-top: 3.9rem;
        flex-direction: column;
    }
    .zhiboimgfoot a{
        margin-bottom: 1rem;
    }
    .jiangzuoanniu a {
        display: flex
    ;
        width: 60%;
        height: 4.8rem;
        background: #338058;
        font-weight: 400;
        font-size: 1.6rem;
        color: #FFFFFF;
        line-height: 4.8rem;
        align-items: center;
        justify-content: center;
        margin-top: 5rem;
    }

    .zhaoshengjianzhang {
        width: 100%;
        height: auto;
        margin-top: 4rem;
    }

    .zhaoshengjianzhang .zsjzTitle {
        margin-top: 4rem;
    }

    .zhaoshengjianzhang .zsjzContent1 {
        padding-top: 0rem;
    }

    .zhaoshengjianzhang .zsjzContent3{
        overflow-x: scroll;
    }
    .indexSnav .container a .sNavImg {
        max-width: 80%;
    }

    .index01 {
        width: 100%;
        height: auto;
        margin: 12rem 0;
        display: flex;
        flex-direction: column;
        background: #F5F5F5;
    }

    .index01Left {
        width: 100%;
        height: auto;
    }

    .index01Right {
        width: 100%;
        margin-left: 0rem;
        height: auto;
        padding: 5rem 1.5rem;
    }
    .container23{
        width: 100%;
        padding: 0;
    }

    .banner3 {
        width: 100%;
        height: auto;
        padding-bottom:5rem;
    }

    .banner3 .bannerText {
        width: 100%;
        height: 40rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .header .container{
        width: 100%;
    }
    .qikanList {
        background: #fff;
    }
    .qikanList .typename4 {
        padding: 2rem 0;
        padding-top: 0;
    }
    .qikanliebiao{
        width: 100%;
        background: unset;
        padding: 1rem 0;
    }
    .qikanliebiaoul {
        width: 100%;
        height: auto;
        background: none;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0 0rem;
        margin: 0 auto;
    }
    .qikanliebiao a{
        margin-right: 0;
        margin-bottom: 5rem;
    }

    .qikanliebiao a .qikantitle {
        margin-top: 2.2rem;
        /*font-weight: 400;*/
        /*font-size: 1.6rem;*/
        /*color: #333333;*/
    }

    .footBox {
        width: 100%;
        height: auto;
        text-align: center;
        background: #0C0B0B;
        line-height: 2rem;
        font-size: 1.6rem;
        color: #E8E8E8;
        padding: 3rem 0;
    }
    .gengduoqikan{
        margin-top: 0;
    }
    .banner3 .tubiaoBox{
        padding: 0 1.5%;
        justify-content: center;
    }
    .tubiaoBox .tubiaoBoxItem {
        width: auto;
        height: 12rem;
        display: flex;
        margin: 0 1rem;
        align-items: center;
    }
    .tubiaoBox .tubiaoBoxItem icon {
        width: 3rem;
        max-height: unset;
    }
    .banner3 .bannerText h1{
        font-size: 3.8rem;
    }
    .banner3 .bannerText h4 {
        font-size: 2rem;
        padding-top: 2rem;
    }
    .erji0{
        margin: 0;
    }
    .nav-item .erji .jiantou{
        display: none;
    }
    .nav-item .erji{
        /*display: block;*/
    }
    .nav-item:hover .erji{
        width: 100%;
        position: unset;
    }
    .nav-item .erji .erji1 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 2rem;
        margin-top: 0rem;
        background: #FFFFFF;
        border-radius: 0rem;
    }


    .headerRgiht a:nth-child(1) {
        margin-right: 2rem;
    }
    .headerRgiht a {
        width: 3.6rem;
        height: 3.6rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: #a9a9a9;
    }

    .qikanlist2 .container {
        display: flex;
        justify-content: unset;
        flex-direction: column;
    }
    .qikanDetailLeft {
        width: 100%;
        min-height: 100rem;
        background: #fff;
        margin-bottom: 10rem;
    }
    .qikancanshu .container2 {

        margin-top: 0rem;
        display: flex;
        flex-direction: column;
        justify-content: unset;
        align-items: flex-start;
    }
    .canshuright {
        width: 100%;
        margin: 0 auto;
        height: auto;
        padding: 5rem 0;
    }
    .canshuright h2{

    }
    .qikanDetailRight {
        width: 100%;
        min-height: 20rem;
    }
    .qikanlist li .zaiyao{
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .qikanlist li .zaiyao .zaiyao1 {

        font-size: 1.2rem;
        padding: 0 0.5rem;
    }

    .qikanlist li .zaiyao .zaiyaopdf {
        padding: 0 0.5rem;
        font-size: 1.2rem;
        margin-left: 1rem;
    }

    .qikanlist li .liulancishu {

        font-size: 1.2rem;
        margin-left: 1rem;
        line-height: 3rem;
        padding: 0 0.5rem;
    }
    .qikanDetailLeft{
        margin-bottom: 3rem;
    }

    .bannerAbout {
        min-height: 25rem;
        background-size: cover;
    }

    .bannerAbout .container{
        min-height: 25rem;
        display: flex;
        height: 25rem;
        align-items:center;
    }
    .bannerAbout .container .weizhi {
        height: 10rem;
        width: 100%;
        color: #fff;
        align-items: center;
        font-weight: 400;
        font-size: 2rem;
        display: flex;
        justify-content: center;
        line-height: 3rem;
    }
    .sousuok {
        width: 100%;
        height: 7.2rem;
        margin: 4rem 0;
        background: #FFFFFF;
        display: flex;
        align-items: center;
        padding: 0 5%;
        justify-content: space-between;
    }

    .sousuok .sousuowenben {
        width: 50%;
        height: 4rem;
        font-weight: 400;
        font-size: 1.6rem;
        color: #999999;
        border: unset;
        line-height: 4rem;
        padding-left: 1rem;
    }


    .qikanliebiao a{
        width: 48%;

        margin-right: 0rem;

    }
    .qikanliebiao a:nth-child(4n){
        margin: 0;
    }
    .qikanliebiao a .qikanimg img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    .erjicaidan a span {
        position: relative;
        width: 10rem;
        height: 6rem;
        font-weight: bold;
        font-size: 1.6rem;
        text-align: center;
        line-height: 6rem;
        display: block;
        color: #666;
    }

    .erjicaidan a ico {
        background: linear-gradient(90deg, #0178e8, #2d4bc6, #6c22a0, #900c8b);
        width: 2rem;
        height: 0.6rem;
        border-radius: 0.3rem;
        opacity: 0.94;
        position: absolute;
        top: 5.6rem;
        left: 3.8rem;
        display: none;
    }
    .erjicaidan{
        margin-top: 0;
        height: 6rem;
    }

    .erjicaidan a {
        width: 10rem;
        height: 6rem;
    }

    .xinwenlist ul li {
        width: 100%;
        border-bottom: 1px solid #F0F0F0;
        padding: 3rem 0;
        display: flex;
        flex-direction: column;
        justify-content: unset;
    }

    .xinwenlist ul li .xinwenzuobian {
        width: auto;
    }

    .qikanlist2 .container{
        background: ;
    }


    .neiye{
        background: #fff;
    }

    .xinwenlist ul li .youbianmore{
        display: none;
    }

    .qikanRIght1 {
        width: 100%;
        height: auto;
        background: #fff;
         padding: 4rem 0rem;
    }

    .xinwentop {
        /*width: 100%;*/
        /*height: auto;*/
        /*margin-bottom: 4rem;*/
        /*background: #fff;*/
        /*display: flex;*/
        flex-direction: column;
        border-bottom: 1px solid #F0F0F0;
    }
    .xinwentop .topimg {
        width: 100%;
        height: auto;
    }
    .xinwentopright {
        width: 100%;
        height: 100%;
        padding: 3rem 0;
    }
    .xinwentop a{
        display: none;
    }

    .jiaruwomen ul {
        width: 100%;
        margin-top: 1rem;
    }
    .mtop6 {
        margin-top: 4rem;
    }
    .jiaruwomen ul li .jrwmTitle {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2rem 0;
        border-bottom: 1px solid #E5E5E5;
    }
    .jiaruwomen ul li .jrwmTitle span:nth-child(3){
        display: none;
    }
    .jiaruwomen ul li .jrwmTitle span:nth-child(2){
        text-align: right;
    }

    .big-title {
        font-size: 2.6rem;
        font-weight: bold;
        margin-bottom: 15px;
    }
    .sub-title {
        font-family: PingFang SC;
        font-weight: 500;
        font-size: 1.4rem;
        color: #E8E8E8;
        line-height: 3rem;
    }

    .qiehuantu .swiper-button-prev, .qiehuantu .swiper-button-next {
        width: 4.6rem;
        height: 4.6rem;
        background: #999;
        border-radius: 50%;
        opacity: 0.5;
        color: #fff;
    }

.qiehuantu{
    height:50vh;
}
    .shouye01 {
        width: 100%;
        height: auto;
        min-height: auto;
        margin-top: 5rem;
    }

    .shouye01 .shouye01name {
        width: 100%;
        height: auto;
        font-weight: bold;
        font-size:1.8rem;
        color: #333333;
        line-height: 3rem;
    }




    .shouyechanpin{
        width: 100%;
        height: auto;
        margin-top: 4rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .chanpin{
        width: 47%;
        height: auto;
        position: relative;
        margin-bottom: 2rem;
    }
    .chanpin .chanpinimg{
        position: relative;
        width: 100%;
    }
    .chanpin img{
        max-width: 100%;
    }

    .chanpin .cpbiaoti{
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        background: url("../pics/bg.png") left bottom ;
        background-repeat: repeat-x;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        text-align: center;
    }
    .chanpin .cpbiaoti text{
        font-weight: bold;
        height:100%;
        font-size:1.6rem;
        color: #FFFFFF;
        line-height: 4rem;
        height: 5rem;
    }

    .about {
        width: 100%;
        height: auto;
        margin-top: 6rem;
        background: url(../pics/aboutbg.jpg) center top no-repeat;
        background-color: #233a98;
        padding: 2rem 0;
    }

    .abouttop {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-items: flex-start;
        padding: 2rem 0;
        justify-content: space-between;
    }

    .abouttop .about1 {
        font-weight: bold;
        font-size: 2rem;
        color: #FFFFFF;
        line-height: 3rem;
    }
.aboutsum{
    display: none;
}
    .aboutBottom {
        width: 100%;
        height: auto;
        background: #F5F5F5;
        display: flex;
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .aboutBottomRgiht {
        width: 100%;
        padding: 0%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        margin: 2rem 0;
        padding: 0 2rem;
    }
    .aboutBottomRgiht h2 {
        font-weight: bold;
        font-size: 2.2rem;
        color: #333333;
        line-height: 3.2rem;
    }
    .aboutBottomRgiht text {
        font-weight: 400;
        font-size: 1.4rem;
        color: #666666;
        margin: 3rem 0;
    }

    .shouyetu {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 12rem;
    }
    .shouyetu1 {
        width: 100%;
        height:18rem;
        display: flex;
        padding: 0 3%;
        margin-bottom: 2rem;
      background-size: cover;
    }

    .shouyetu1right {
        width: 3.5rem;
        height: 3.5rem;
        border-radius: 50%;
        border: 1px solid #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 2rem;
    }

    .footDivTop{
        display: none;
    }
    .footDiv{
        margin-top: 2rem;
    }

    .sAbout-intro .head .p2 {

        font-size: 3.6rem;

    }

    .LeftBox {
        width: 20%;
        min-height: 50rem;
        background: red;
        display: none;
    }

    .mainRight {
        width: 100%;
        min-height: auto;
    }

    .mainRight .head .p1 {
        font-size: 3.8rem;
    }

    .mainRight .head .p2 {
        font-size: 2.5rem;

    }

    .mainRight .aboutsum {
        margin: auto;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        margin-top: 4rem;
        gap: 4rem;
    }
    .mainRight .aboutsum1{
        width: auto;
    }

    .mainRight .aboutsum1 .aboutsum1top span {
        font-size: 3rem;
    }

    .mainRight .aboutsum1 .aboutsum1top .span2 {
        font-size: 3rem;

    }
    .aboutCOntent{
        font-size: 1.4rem;
    }

    .subpage-banner {

        height: 20rem;
        margin-top: 6rem;
    }

    .ph2 {
        font-size: 3rem;
        line-height: 20rem;

    }

    .industry-item {
        width: 100%;
        height: auto;
        flex-direction: column !important;
        opacity: 1;
        background: transparent;
        padding-bottom: 2rem;
    }
    .industry-img {
        width: 100%;
        height: 24rem;
    }
    .industry-text {
        width: 100%;
        padding: 2rem 2rem 0;
    }
    .industry-title {
        text-align: center;
    }



    .onhover .header-inner {
        height: 6rem;
    }
    .onhover .nav {
        height: auto;
    }
    .onhover .nav-list {
        height: 100vh;
    }
    .onhover .nav-item a {
        color: #333;
        height: 6rem;
    }

.daohangweizhi{
    display: none;
}

    /* 👇 导航容器：横向滑动 + 最大宽度100% */
    .nav-menu3 {
        display: flex;
        width: 100%;
        max-width: 100%;
        overflow-x: auto; /* 横向滚动 */
        white-space: nowrap; /* 不换行 */
        -webkit-overflow-scrolling: touch; /* 苹果流畅滑动 */
        scrollbar-width: none; /* 隐藏滚动条 */
        margin-bottom: 3rem;
        border-bottom: 0.1rem solid rgb(0,0,0,0.05);
    }
    .nav-menu3::-webkit-scrollbar {
        display: none; /* 隐藏滚动条 */
    }

    /* 导航项固定宽度，保证排版好看 */
    .nav-menu3  .nav-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        padding: 1.8rem 2.5rem;
        font-size: 1.4rem;
        flex-shrink: 0; /* 禁止压缩，必须加 */

    }

    /* 第一项高亮样式 */
    .nav-menu3  .nav-item.hover {
        background-color: #233a97;
    }
    .nav-menu3   .nav-item.hover .nav-text,
    .nav-menu3   .nav-item.hover .arrow {
        color: #fff;
        border-color: #fff;
    }

    /* 文字 */
    .nav-menu3  .nav-text {
        color: #333;
    }

    /* 箭头 */
    .arrow {
        width: 0.6rem;
        height: 0.6rem;
        border-right: 0.1rem solid #333;
        border-top: 0.1rem solid #333;
        transform: rotate(45deg);
    }

    .mainRight .head {
        margin-top: 5rem;
    }

    .header .logo1{
        display: none;
    }
    .header .logo2{
        display: block;
        max-height: 4rem;
    }
    
    .aboutCOntent img {
    image-rendering: unset;
    image-rendering: unset;
    -ms-interpolation-mode: unset;
}

    .gdjgxcSwiper .swiper-button-next, .gdjgxcSwiper .swiper-button-prev {
        width: 4rem;
        height: 4rem;
    }

    .gdjgxcSwiper .swiper-nav-wrap {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 99;
        display: flex;
        gap: 2rem;
    }

    .gdjgxcSwiper .swiper-wrapper {
        margin-top: 10rem;
    }
    .gdjgxcSwiper .swiper-nav-wrap {
        position: absolute;
        top: 1.5rem;
    }

    .news-wrap {grid-template-columns: 1fr;}
    .aboutsum {
       display: none;
    }

    .main23{
        display: unset;
    }

.timeline-item-1{
    width: auto;
    max-width: auto;
}

    .idea-box {grid-template-columns: 1fr;gap: 3rem; display: flex; flex-direction: column}
    .bottom-img-box {grid-template-columns: 1fr; gap: 1rem}
    .slogan-img {width: auto; height: auto}
    .bottom-card {height: auto; padding-top: 10rem;}
    .liuyanBox{
        width: 100%;
        height: auto;
        background: url("../pics/lybg.jpg") no-repeat;
        /*background-size:contain;*/
    }

    .consult-box{
        padding: 8rem 2rem;
    }
    .consult-desc{
        padding-left:3rem ;
        padding-right:3rem ;
    }

    .equip-wrap {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    .equip-img-box {
        width: 100%;
    }
    .equip-img {
        width: 100%;
    }

    .equip-wrap_shengji {
        grid-template-columns: 1fr;
        padding: 0;
    }
    .equip-item_shengji {
        width: 100%;
    }
    .equip-img-box_shengji {
        width: 100%;
    }

    .news-wrap {
        grid-template-columns: 1fr;
    }




    .aboutCOntent{
        padding: 0rem;
        padding: 5rem 0;
        padding-top: 1rem;
        margin-top: 4rem;
    }
    .aboutCOntent h2{
        font-weight: bold;
        font-size: 2.6rem;
        color: #233A97;
        text-align: center;
        padding-bottom: 5rem;
    }
    
    .aboutCOntent12{
         padding: 2%;
         padding-top:0;
         margin-top: 4rem;
    }
    .bgclass{
        background: #fff;
    }
    
    .pageNews,.mainRight .head {
    margin-top: 4rem;
}


.indexNews2 {
    margin-bottom: 5rem;
}


    .yuyan {
        width: 3.6rem;
        height: 3.6rem;

    }

    /* 顶部圆形地球按钮 */
    .yuyan .lang-btn {
        width:3.6rem;
        height: 3.6rem;
        border-radius: 50%;
        background: rgb(104,103,103,0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        margin-right: 4rem;
    }
    /* iconfont 地球图标 */
    .yuyan .icon-earth {
        font-size: 2rem;
        color: #fff;
    }


}

/* 响应式字体大小调整 */
@media (max-width: 48rem) { /* 480px */
    html {
        font-size: 58%; /* 调整基础rem值 */
    }
}










/* 鍝嶅簲寮忓瓧浣撳ぇ灏忚皟鏁� */
@media (max-width: 48rem) { /* 480px */
    html {
        font-size: 58%; /* 璋冩暣鍩虹rem鍊� */
    }
}



/* 鍙尮閰嶏細骞虫澘妯睆 + 瀹藉害 48rem~75rem + 鎺掗櫎鎵嬫満 + 鎺掗櫎PC */
@media (orientation: landscape)
and (min-width: 48rem)
and (max-width: 79rem)
and (min-device-width: 768px)
and (max-device-width: 1366px)
and (hover: none)
and (pointer: coarse) {

    html {
        font-size: 6.5px; /* 璋冩暣鍩虹rem鍊� */
    }
    html, body {
        width: 100% !important;
        /*overflow-x: hidden !important;*/
    }
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left:2.5rem !important;
        padding-right:2.5rem !important;
        margin-left:auto !important;
        margin-right:auto !important;
        /*height: auto;*/
    }
    .header-inner {
        width: 100%;
        max-width: 100%;
        height: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        padding: 0 2rem;
    }



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

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


    .heiquanBox {
        margin-bottom: 5rem;
    }


    .shijueImg {
        width: 100%;
        display: flex;
        gap: 2rem; /* 鍥剧墖闂磋窛锛屽彲鑷璋冩暣 */
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    /* 涓や釜鍥剧墖鍏卞悓瑙勫垯锛氫笉瓒呭嚭瀹瑰櫒銆佽嚜鍔ㄧ缉鏀� */
    .shijueImg img {
        max-width: 90%;
        width: 100%;
        height: auto;
        object-fit: contain; /* 淇濇寔姣斾緥锛屼笉瑁佸壀 */
        display: block;
    }

    /* 宸﹀浘鍗犳瘮 2浠� */
    .shijueImg img:nth-child(1) {
        flex: 1;
        max-width: 80%;
    }
    /* 鍙冲浘鍗犳瘮 1浠� */
    .shijueImg img:nth-child(2) {
        flex: 1;
        width: 90%;
    }

    .header-logo {
        /*width: 40rem;*/
    }
    /*.index01Item {*/
    /*    width: 38rem;*/
    /*    height: 36rem;*/
    /*}*/

    /*.index01CenterLeft {*/
    /*    width: 63rem;*/
    /*    !* height: 43rem; *!*/
    /*}*/

    .shijianzhou .swiper-button-next{
        display: none;
    }

    .shijianzhou .swiper-button-prev {
        left: 0;
        display: none;
    }

    .nybannerabout {

        height: 60rem;

    }

    #xiangmuBox2{
        margin-left: 2rem;
        margin-right: 2rem;
    }


    /* 鍙尮閰嶏細骞虫澘妯睆 + 瀹藉害 48rem~75rem + 鎺掗櫎鎵嬫満 + 鎺掗櫎PC */
    /*@media (orientation: landscape) */
    /*and (min-width: 48rem) */
    /*and (max-width: 140rem) */
    /*and (min-device-width: 768px) */
    /*and (max-device-width: 1440rem) */
    /*and (hover: none) */
    /*and (pointer: coarse) {*/
    /*body{*/
    /*    display: none;*/
    /*    background: red;*/
    /*}*/
    /*    .shijianzhou .swiper-button-next{*/
    /*        display: none;*/
    /*    }*/

    /*    .shijianzhou .swiper-button-prev {*/
    /*        left: 0;*/
    /*        display: none;*/
    /*    }*/
    /*}*/






    @media (max-width: 120rem)  {
        /* 甯冨眬鏍峰紡 */
        .container {
            width: 100%;
            max-width: 100%; /* 1200px */
            padding-left:2% !important;
            padding-right:2% !important;
            margin-left:auto !important;
            margin-right:auto !important;
        }

        .header-inner {
            width: 100%;
            max-width: 100%;
            height: 100%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            /*padding: 0 2rem;*/

            padding-left:0% !important;
            padding-right:0% !important;
        }

    }
