/* @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css"); */
body {
    font-family: AlibabaPuHuiTi, Arial, sans-serif;
}

*,
p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    /* 去除下划线 */
    color: inherit;
}

/* 去除A链接悬浮的样式 */
a:hover {
    text-decoration: none;
    /* 去除下划线 */
    color: inherit;
    /* 继承父元素的颜色 */
}



/* 修改导航栏占位符样式 */
div#navbar-placeholder {
    margin: 0;
    /* 【关键修改】去除原来的 0 200px，让它占满全屏宽度 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 68px;
    /* 明确高度，确保占位稳定 */
}

/* 【新增】给body添加顶部内边距 */
/* 因为导航栏fixed后脱离文档流，内容会往上跑，需要把内容顶下来 */
body {
    padding-top: 68px;
    /* 对应导航栏的高度 */
    font-family: AlibabaPuHuiTi, Arial, sans-serif;
}

.headerSty {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.headerSty .logo {
    height: 100%;
    margin-left: 200px;
}

.headerSty .logo a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.headerSty .logo a img {
    width: auto;
    height: 44px;
}

.headerSty .headCN {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-family: Alibaba PuHuiTi 3.0;
    color: #333 !important;
    cursor: pointer;
    margin-right: 200px;
}

.headCN p,
.headCN a {
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: inherit;
}

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

/* 左侧地球图标大小 */
.icon-web {
    width: 20px;
    height: 20px;
    margin-right: 6px;
    object-fit: contain;
}

/* 文字样式 */
.current-lang {
    font-size: 16px;
    margin-right: 6px;
    color: #333;
}

/* 右侧箭头图标大小 */
.icon-arrow {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.lang-selector:hover .icon-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-box {
    width: 100px;
    min-width: auto;
    left: 50%;
    transform: translateX(-50%);
    top: 68px !important;
}

/* 修正下拉项内部文字样式 */
.lang-dropdown-box a {
    font-size: 14px;
    padding: 8px 0;
}

.navbar {
    height: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* background-color: #f9f9f9; */
}

.navbar li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar li::after {
    content: '';
    position: absolute;
    bottom: 0;
    /* 固定在底部 */
    left: 0;
    width: 0;
    /* 初始宽度为0 */
    height: 3px;
    /* 线条高度 */
    background-color: #01409F;
    /* 蓝色 */
    transition: width 0.3s ease;
    /* 动画过渡 */
    /* 如果想让线居中且不占满两边，可以使用 left: 10%; width: 80% 等逻辑调整 */
}

.navbar li:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
    height: 100%;
}

.navbar li a,
.dropdown-btn {
    display: inline-block;
    color: #000;
    text-align: center;
    font-family: Alibaba PuHuiTi 3.0;

    line-height: 29px;
    color: #343434;
}

.dropdown-btn {

    position: relative;
}

.navbar li>a {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #000 !important;
    overflow: hidden;
}

.navbar li a:hover,
.dropdown:hover .dropdown-btn {
    color: #01409F !important;
}

.navbar li a:hover {
    color: #01409F !important;
}


.dropdown-content {
    display: none;
    position: absolute;
    /* 定位调整 */
    top: 68px;
    /* 紧贴导航栏底部 (根据你的header高度设为68px) */
    left: 50%;
    /* 居中定位起始点 */
    transform: translateX(-50%);
    /* 向左回退50%，实现水平居中 */

    /* 盒子样式 */
    width: 140px;
    /* 设置一个合适的固定宽度 */
    min-width: auto;
    /* 覆盖原来的样式 */
    background-color: #fff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    /* 更柔和的阴影 */
    border-radius: 8px;
    z-index: 999999;
    overflow: hidden;
}


.dropdown-content div {
    width: 100%;
    line-height: normal;
    margin-bottom: 2px;
}

.dropdown-content a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-family: Alibaba PuHuiTi 3.0;
    font-size: 14px;
    color: #333;
    text-decoration: none;

    padding: 5px 0;
    min-height: auto;
    line-height: 1.5;

    border-bottom: none;
    border-radius: 6px;
    transition: all 0.2s;

}

.dropdown-content div:hover a {
    background-color: #F0F6FF;
    /* 图片中的浅蓝色背景 */
    color: #01409F !important;
    /* 蓝色文字 */
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInUp 0.3s ease;
}

/* 简单的上浮淡入动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.dropdown:hover .dropdown-btn {
    color: #2A82E4;
}

/* 设置视频容器高度 */
.swiper-container {
    height: calc(100vh - 68px);
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* 底部图标定位样式 */
.scroll-down-icon {
    position: absolute;
    z-index: 10;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.scroll-down-icon img {
    animation: bounce 3s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}


.headMin {
    width: 100%;
    position: relative;
    z-index: 999999;
    height: 68px;
    background: #fff;
    display: flex;
    align-items: center;
}

.headPos {
    /* position: absolute;
    top: 0;
    left: 0; */
}


.carCon {
    margin-top: 40px;
    height: 38px;
}

.carCon img {
    height: 100%;
}

.aboutText {
    font-family: AlibabaPuHuiTi;
    font-size: 18px;
    font-weight: normal;
    line-height: 40px;
    letter-spacing: normal;
    color: #666666;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-right: 40px;
}

.aboutBut {
    display: flex;
    width: 17%;
    padding: 6px 16px;
    text-align: center;
    border-radius: 6px;
    font-family: Alibaba PuHuiTi 3.0;
    font-size: 20px;
    letter-spacing: normal;
    color: #01409F;
    border: 1px solid #01409F;
    justify-content: space-between;
}

/* 首页大背景模块 */
.HomeMaxBg {
    width: 100%;
    height: 100%;
    min-height: 600px;
    color: #000000;

}

.chanpin-card-text {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

#partner-swiper {
    height: 70vh;
}

.HomeMaxBgCon {
    height: 100%;
    margin: 0 auto;
}

.ChanPin {
    padding: 60px 10%;
}

.ChanPin2 {
    padding: 60px 10% 20px;
}

.Partner {
    background: url(../images/banner/parter.png) no-repeat;
    background-size: 100% 100%;
}

.ChanpinTit {
    font-family: Alibaba PuHuiTi 3.0;
    font-size: 38px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: normal;
    display: inline-block;
}

.ChanpinTit::after {
    content: '';
    display: block;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #01409F 0%, #dae2eb47 100%);
}

.ChanpinHint {
    font-family: Alibaba PuHuiTi 3.0;
    font-size: 16px;
    font-weight: 250;
    line-height: normal;
    letter-spacing: normal;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 20px;
}

.Chanpin_txt,
.company_txt,
.partner_txt {
    color: #8C8C8C;

}

.ChanPinBut {
    border: 1px solid #01409f;
    display: flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 6px;
    cursor: pointer;
}

.ChanPinBut a {
    color: #01409F;
    margin-right: 13px;
}

.aboutBut {
    cursor: pointer;
}

.ChanpinMain {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    flex-wrap: wrap;
    padding-top: 30px;
}

.ChanpinItem {
    flex: 1;
    /* max-width: 696px; */
    min-height: 265px;
    background: #FFFFFF;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 30px;
    margin-bottom: 30px;
}

.Chanpin_left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin-right: 30px;
    height: 100%;
}

.Chanpin_l_t {
    font-family: Alibaba PuHuiTi 3.0;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: normal;
    color: #2A82E4;
    /* margin-top:20px */

}

.Chanpin_l_h {
    line-height: 22px;
    letter-spacing: normal;
    font-size: 16px;
    font-family: Alibaba PuHuiTi 3.0;
    font-weight: 250;

    color: #383535;
    margin: 30px 0
}

.Chanpin_l_b {
    width: 120px;
    line-height: 46px;
    font-family: Alibaba PuHuiTi 3.0;
    font-size: 14px;
    font-weight: 250;
    letter-spacing: normal;
    color: #3084D0;
    text-align: center;
    box-sizing: border-box;
    border: 1px dashed #3084D0;
}



.Chanpin_right {
    width: 305px;
    overflow: hidden;
    height: 100%;
    /* background: #0F192B; */
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.swiper-slide-chanpin {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}



.Chanpin_right img {
    object-fit: fill;
    display: block;
    width: 100%;
    height: 100%;
}


.max {
    /* border:1px solid red; */
}

.ChuangXInItemMain {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}


.ChuangXInItem {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 23.5%;
    padding: 20px;
    box-sizing: border-box;
    background: url(../images/home/chuangxinbg.png) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
}

.CXMore {
    margin: 15px 0;
    display: flex;
    width: 50%;
    justify-content: center;
    color: #8C8C8C;
}

.CXMore a {
    margin-right: 10px;
}


.swiper-container-nengli {
    width: 300px;
    height: 200px;
    overflow: hidden;
}

.swiper-container-nengli img {
    dispalay: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.CXTit {
    font-family: Alibaba PuHuiTi 3.0;
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    margin: 20px 0;
}

.CXHint {
    font-family: Alibaba PuHuiTi 3.0;
    font-size: 16px;
    font-weight: 250;
    line-height: 22px;
    /* text-align: center; */
    letter-spacing: normal;
    color: #8C8C8C;
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}

.XinWenCon {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* height: 650px; */
    margin-top: 24px;
    position: relative;
}

/* 新闻轮播样式 */
.xinwen-swiper {
    width: 100%;
    position: relative;
}

.xinwen-swiper .swiper-slide {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.xinwen-swiper .swiper-slide:hover {
    transform: scale(1.05);
}

.xinwen-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 100/60;
    object-fit: cover;
    display: block;
}

.xinwen-swiper .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}

.xinwen-info {
    background-color: #fff;
    padding: 15px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 140px;
}

.xinwen-swiper .XinWenTime {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
    flex-shrink: 0;
    text-align: left;
}

.xinwen-swiper .XinWenTit {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 0;
    text-align: left;
}

.xinwen-swiper .XinWenTit2 {
    text-align: left;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    flex-grow: 1;
}

/* 轮播左右按钮样式 */
.xinwen-swiper .swiper-button-prev,
.xinwen-swiper .swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.xinwen-swiper .swiper-button-prev:hover,
.xinwen-swiper .swiper-button-next:hover {
    background-color: rgba(1, 64, 159, 0.8);
    color: #fff;
}

.xinwen-swiper .swiper-button-prev::after,
.xinwen-swiper .swiper-button-next::after {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.xinwen-swiper .swiper-button-prev:hover::after,
.xinwen-swiper .swiper-button-next:hover::after {
    color: #fff;
}

.xinwen-swiper .swiper-button-prev {
    left: 10px;
}

.xinwen-swiper .swiper-button-next {
    right: 10px;
}

.XinWenLeft {
    width: 416px;
    height: 100%;
}

.companyItem {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 60px 0;
}

.companyItem img {
    width: 18%;
}

.companyImg {
    width: 100%;
}

.companyImg img {
    width: 100%;
}

.leftImg {
    width: 30%;
    height: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    object-fit: contain;
    background: #fff;
    margin-right: 20px;
}

.XinWenBG {
    background: #ffff;
    height: 100%;
    flex: 1;
    box-sizing: border-box;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.h110 {
    height: 110px;
}

.XinWenTime {
    font-family: Alibaba PuHuiTi 3.0;
    font-size: 18px;
    font-weight: 250;
    line-height: normal;
    letter-spacing: normal;
    color: #666666;
}

.XinWenTit {
    font-family: Alibaba PuHuiTi 3.0;
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: normal;
    color: #000000;
}

.XinWenTit2 {
    font-family: Alibaba PuHuiTi 3.0;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: normal;
    color: #000000;
    /* 溢出隐藏 */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.XinWenRight {
    flex: 1;
    padding-left: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.XinWenItemCon {
    windth: 100%;
    /* height: 308px; */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

}

.XinWenItem {
    width: 98%;
    /* height: 100%; */
    margin-bottom: 20px;
    height: 180px;
    display: flex;
    align-items: center;
}

.w480 {
    max-width: 480px;
}

.w300 {
    max-width: 300px;
}

.w656 {
    max-width: 656px;
}

.mgt_20 {
    max-margin-top: 40px;
}

.w140 {
    max-height: 140px;
}

/* 背景 */
.rencaiBG {
    width: 100%;
    height: 100%;
    padding-top: 60px;
    padding-bottom: 90px;
    boxsizing: border-box;
    background: url(../images/bg2.png) no-repeat;
    background-size: 100% 100%;
}

.rencaiBGTit {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.rencaiCon {
    width: 100%;
    height: 280px;
    margin: 56px auto 0 auto;
}

.rencaiChunk {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;

}

.rencaiSwiper {
    width: 100%;
    height: 100%;
}

.rencaiItem {
    height: 100%;
    /* width: 20%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 10px;
}

.rencaiTit {
    font-family: Source Han Sans;
    font-size: 20px;
    font-weight: normal;
    line-height: normal;
    text-align: center;
    letter-spacing: normal;
    color: #333333;
}

.rencaihint {
    margin: 20px 0;
    font-family: Source Han Sans;
    font-size: 16px;
    font-weight: normal;
    line-height: normal;
    text-align: center;
    letter-spacing: normal;
    color: #8A8A8A;
}

.rencaiadress {
    font-family: Source Han Sans;
    font-size: 16px;
    font-weight: normal;
    line-height: normal;
    text-align: center;
    letter-spacing: normal;
    color: #8A8A8A;
}

.rencaiBut {
    width: 100px;
    height: 38px;
    font-family: Source Han Sans;
    font-size: 16px;
    font-weight: normal;
    line-height: 38px;
    text-align: center;
    letter-spacing: normal;
    color: #FFFFFF;
    box-sizing: border-box;
    border: 1px solid #FFFFFF;
    margin-top: 20px;
    display: none
}

.rencaiItem:hover {
    cursor: pointer;
    background: #134B9F;

}

.rencaiItem:hover .rencaiBut {
    display: block;
}

.rencaiItem:hover .rencaiTit {
    color: #fff;
}

.rencaiItem:hover .rencaihint {
    color: #fff;
}

.rencaiItem:hover .rencaiadress {
    color: #fff;
}



/* 研发数据展示 */
.yanfaData {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 20px 0;
}

.yanfaDataItem {
    text-align: left;
    min-width: 120px;
}

.yanfaNum {
    color: #01409F;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.yanfaLabel {
    color: #666;
    font-size: 14px;
}

/* 手机端 */
.mobilMainIcon {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
}

svg.bi.bi-list {
    color: #01409F;
}

.mobilMain {
    position: absolute;
    top: 68px;
    right: 0;
    z-index: 999;
    background-color: #fff;
    width: 300px;
    height: 330px;
    overflow-y: auto;
}


.navbar_m {
    height: 100%;
    list-style-type: none;
    margin: 20px;
    padding: 0;
}

.navbar_m li {
    width: 100%;
}


.navbar_m li a,
.dropdown-btn {
    display: inline-block;
    color: #000;
    font-family: Alibaba PuHuiTi 3.0;

    line-height: 29px;
    letter-spacing: normal;
    color: #343434;
    text-decoration: none;
}

.navbar_m li>a {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.navbar_m li.dropdown_m {
    display: inline-block;
}

.dropdown-content_m {
    width: 100%;
    padding: 10px 20px;
    background-color: #fff;
    z-index: 99;
}

.dropdown-content_m div {
    width: 100%;
    line-height: 30px;
}

.dropdown-content_m a {
    width: 100%;
    color: #a4a4a4;
    line-height: 40px;
    border-bottom: 0.5px solid #ABABAB;
    ;
    text-decoration: none;
    display: block;
}

.swiperStycon {
    height: 500px !important;
    width: 100% !important;
}

.swiperStycon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: fill !important;
}


#translate {
    display: none !important;
}

/* media 1436一下的样式 */

@media screen and (max-width: 1410px) {
    .ChanpinMain {
        justify-content: center;
        align-items: center;
    }

    .ChanpinItem {
        max-width: none;
        width: 80%;

    }

    .XinWenCon {
        flex-direction: column;
        height: 100%;
        justify-content: center;
        align-items: center;
    }

    .XinWenLeft {
        width: 80%;
        margin-bottom: 20px;
    }

    .XinWenRight {
        width: 80%;
        padding-left: 0
    }

    .w480,
    .w300,
    .w656 {
        width: 100%;
        max-width: 100%
    }

    .XinWenItemCon {
        height: 100%;

    }

    .XinWenItem {
        margin-bottom: 20px;

    }

}

@media screen and (max-width: 1320px) {

    .navbar {
        display: none;
    }

    .headerSty .headCN {
        display: none;

    }

    .mobilMainIcon {
        display: block;
    }

    /* .XinWenItemCon{
        justify-content: center;
        align-items: center;
    } */

}

@media screen and (max-width: 1200px) {

    .handAboutCon {
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .abouTitCon {
        width: 90%;
        margin: 30px auto;
    }

    .aboutImg {
        width: 100%;
        margin: 30px auto;
    }
}

@media screen and (max-width: 750px) {
    .swiper-container {
        height: 100% !important;
    }

    .ChuangXInItemMain {
        justify-content: center;
    }

    .ChuangXInItem {
        width: 90%;
    }

    .rencaiItem {
        width: 48%;
        height: 310px;
    }

    .rencaiCon {
        height: 100%;
        width: 90%
    }


    .aboutText {
        margin: 0
    }

    .handAboutCon {
        height: 100%;
    }

    .abouTitCon {
        width: 100%;
        margin: 0
    }

    .ChanpinItem {
        flex-direction: column;
    }

    .Chanpin_l_t {
        line-height: 50px;
    }

    .Chanpin_l_b {
        margin: 20px 0;
    }

    .abouTitCon {
        padding: 20px;
    }

    .handAboutCon {
        height: 100%;
        min-height: 100%;
    }

    .HomeMaxBgCon {
        padding: 20px;
    }

    .ChuangXInItem {
        flex-direction: column;
    }

    .swiperStycon {
        height: 100% !important;
        width: 100% !important;
    }

    .headerSty .logo {
        margin-left: 0;
    }

    .ChanPin2,
    .ChanPin {
        padding: 20px 10px;
    }

    .ChanpinTit {
        font-size: 28px;
    }

    .Chanpin_txt {
        width: 70%;
        font-size: 14px;
    }

    .ChanPinBut {
        padding: 6px;
        font-size: 14px;
    }

    .ChanPinBut a {
        margin-right: 5px;
    }

    .ChanPinBut img {
        width: 14px;
        height: 14px;
    }

    .ChanPin .chanpin-wrapper .swiper-slide {
        flex-wrap: wrap;
    }

    .ChanPin .chanpin-card {
        width: 90%;
        margin-bottom: 20px;
    }

    .swiperStycon,
    .img-banner {
        height: 210px !important;
    }
}

.pagination .page-item .page-link {
    color: #333;
    border: 1px solid #ddd;
    padding: 5px 10px;
    margin: 0 2px;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.pagination .page-item:hover .page-link {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #ddd;
}

/* 产品与方案swiper样式 */
.chanpin-swiper {
    width: 100%;
    padding: 40px 0;
    height: 70vh;
}

.chanpin-wrapper .swiper-slide {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.chanpin-card {
    width: 26%;
    height: 85%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
}

.chanpin-card:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.chanpin-card-content {
    width: 70%;
    color: white;
    transition: transform 0.3s ease;
    margin-top: 60px;
}

.chanpin-card:hover .chanpin-card-content {
    transform: translateY(0);
}

.chanpin-card-title {
    font-size: 28px;
    white-space: nowrap;
    margin-bottom: 60px;
    position: relative;
    text-align: center;
}

.chanpin-card-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #c0c0c0;
    position: absolute;
    bottom: -20px;
    left: 0;
}

.chanpin-card-title::before {
    content: '';
    display: block;
    width: 30%;
    height: 4px;
    background-color: #E6212B;
    position: absolute;
    bottom: -24px;
    left: 0;
}

.chanpin-card-desc {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    display: flex;
    flex-direction: column;
}

/* 分页器样式 */
.chanpin-pagination {
    bottom: 10px;
}

.chanpin-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
    margin: 0 6px;
    opacity: 1;
}

.chanpin-pagination .swiper-pagination-bullet-active {
    background: #01409F;
    transform: scale(1.2);
}

.scroll-hint {
    text-align: right;
    padding-right: 40px;
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

.partner-swiper .swiper-slide {
    flex-shrink: 0 !important;

    /* width: 100%;  <-- 删除或注释掉这一行 */
    width: auto !important;
    /* <-- 改为 auto */

    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 标题通用样式 */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.line-decoration {
    width: 60px;
    height: 4px;
    /* 蓝红渐变 */
    background: linear-gradient(to right, #01409F 50%, #E60012 50%);
    border-radius: 2px;
}

/* css/new.css */

/* 分页容器 */
.pageTest {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* 间距 */
    color: #333;
}

/* 上一页/下一页按钮 和 页码链接 */
.pageTest div,
.pageTest ul li a {
    display: flex;
    /* Flex 居中 */
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

/* 悬停 */
.pageTest div:hover,
.pageTest ul li a:hover {
    border-color: #003B8E;
    color: #003B8E;
}

/* 页码列表 */
.pageTest ul.pagingUl {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 10px;
}

.pageTest ul li {
    padding: 0;
    margin: 0;
}

/* 选中状态 */
.pageTest ul li a.activP {
    background-color: #003B8E;
    color: #fff;
    border-color: #003B8E;
}

/* 确保没有 float 干扰 */
.pageTest .first,
.pageTest .last,
.pageTest .prv,
.pageTest .next {
    float: none !important;
    font-family: Arial, sans-serif;
    /* 用 Arial 显示 < > 比较正 */
}

.swiperStycon {
    position: relative;
}

.banner.swiperStycon span {
    font-size: 56px;
    color: #fff;
    position: absolute;
    left: 200px;
    top: 39%;
    transform: translateY(-50%);
    letter-spacing: 4px;
}

/* --- 合作伙伴 Logo 墙优化版 --- */

.partner-logo-container {
    width: 100%;
    margin-top: -80px;
    /* 上浮距离根据间隙调整 */
    padding-bottom: 40px;
    overflow: hidden;
}

/* 【关键修复1】强制使用线性动画，消除"卡顿/跳动" */
.partner-swiper .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -moz-transition-timing-function: linear !important;
    -ms-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    margin: 0 auto;
}

.partner-swiper .swiper-slide {
    width: auto !important;
    /* 由内容撑开宽度 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 既然设置了 padding-right 或 margin，这里不需要 align-items */
}

/* 行样式 */
.logo-row {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    /* 垂直方向堆叠，负值是为了形成蜂窝交错效果，间隙变大后，这个值也可以稍微减小一点 */
    margin-bottom: -35px;
}

/* 图片单元样式 */
.imgItem {
    width: 140px;
    height: 140px;
    object-fit: contain;
    display: block;

    /* 【关键修改2】间隙由 30px 改为 60px */
    margin-right: 60px;
}

/* 偶数行错位逻辑 */
/* 
   计算公式：(图片宽度 140 + 间距 60) / 2 = 100px
*/
.logo-row:nth-child(even) {
    /* 【关键修改3】错位距离更新 */
    transform: translateX(100px);
}

.ChuangXInImg {
    width: 130px;
    height: 130px;
}

.ChuangXInImg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.img-banner {
    height: 500px;
    background-size: 100% 100%;
}

#solution-banner {
    height: 540px;
}

@media screen and (max-width: 1400px) {
    .CXMore {
        width: 100%;
    }

    .ChuangXInImg {
        width: 100px;
        height: 100px;
    }

    .swiperStycon,
    .img-banner {
        height: 380px
    }

    #solution-banner {
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    #partner-swiper {
        height: 36vh !important;
    }

    #solution-banner {
        height: 190px;
    }

    .ChuangXInImg {
        width: 80px;
        height: 80px;
    }

    .imgItem {
        width: 80px;
        height: 80px;
        /* 移动端间隙也稍微大一点 */
        margin-right: 30px;
    }

    .logo-row {
        margin-bottom: -20px;
    }

    /* 移动端计算：(80 + 30) / 2 = 55px */
    .logo-row:nth-child(even) {
        transform: translateX(55px);
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .banner.swiperStycon span {
        left: 50px;
        font-size: 30px;
    }
}