/* @charset "utf-8"; */

/* 自定义轮播点容器样式 */
.custom-pagination {
    position: absolute;
    left: 1.9rem !important;
    /* 居左对齐，可根据需要调整距离 */
    bottom: 1rem !important;
    /* 距离底部的距离，可根据需要调整 */
    text-align: left;
    display: flex;
    align-items: center;
}

/* 未选中的轮播点样式 */
.custom-pagination .swiper-pagination-bullet {
    width: 0.12rem;
    height: 0.12rem;
    background-color: #fff;
    /* 未选中时的颜色 */
    opacity: 1;
    border-radius: 50%;
    /* 未选中时为实心圆点 */
    margin: 0 0.2rem !important;
    /* 轮播点之间的间距 */
}

/* 选中的轮播点样式 */
.custom-pagination .swiper-pagination-bullet-active {
    width: 0.36rem;
    height: 0.36rem;
    position: relative;
    border: 0.02rem solid #fff;
    /* 设置边框，实现圆环效果 */
    border-radius: 50%;
    background-color: transparent;
    /* 背景透明，形成镂空效果 */
}

/* 选中时内部的实心圆点 */
.custom-pagination .swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.12rem;
    /* 调整实心圆点大小 */
    height: 0.12rem;
    /* 调整实心圆点大小 */
    background-color: #fff;
    /* 实心圆点颜色 */
    border-radius: 50%;
}

.indexBanner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ======================关于我们====================== */
.aboutBox {
    background: url(../images/indexAboutBg.png) no-repeat center;
    background-size: cover;
    border-radius: 0.2rem;
    position:relative;
}

.aboutCon {
    display: flex;
    justify-content: space-between;
}

.aboutCon .aboutLeft {
    display: flex;
    justify-content: space-between;
    width: 68%;
}

.aboutCon .aboutLeft .aboutTxt {
    width: 70%;
    padding-top: 1rem;
    padding-bottom:0.6rem;
}
.aboutCon .aboutLeft .aboutTxt h1{
    color:#064675;
}

.aboutRight {
    width: 38%;
    position:absolute;
    right:0rem;
    top: 0;
    height: 100%;
}
.aboutRight img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aboutCon .txtIntro {
    margin-right: 0.6rem;
    width: 65%;
    margin-top: 1rem;
}

.aboutCon .aboutTxt b {
    display: block;
    color: #EFA526;
    margin-top: 0.1rem;
}
.aboutCon .aboutTxt .pubBtn{margin-top:.3rem}
.aboutCon .aboutTxt h1{margin-bottom:.3rem}
.aboutCon .aboutTxt p {
    
    color: #666;
    line-height: 1.8;
}

.aboutCon .aboutTxt .aboutBtn {
    margin-top: 1rem;
    width: 1.88rem;
    line-height: 0.6rem;
    height: 0.6rem;
    border-radius: 3rem;
    background: #ECB875;
    color: #fff;
    padding-left: 0.4rem;
}

.aboutBtn {
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.aboutBtn i {
    display: block;
    position: absolute;
    right: -0.3rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    background: url(../images/jiantou.png) no-repeat;
    width: 0.3rem;
    height: 0.12rem;
}

.aboutBtn:hover {
    padding-right: 0.4rem;
}

.aboutBtn:hover i {
    right: 0.3rem;
}


/* 数字滚动 */
.countBox {
    width: 20%;
    margin-top: 0.6rem;
}

.countBox .countItem {
    margin-top: 0.8rem;
}

.imgBox {
    width: 50%;
}

.txtCont {
    padding: 0.5rem 0rem;
    border-top: 0.01rem solid #F4F4F4;
    border-bottom: 0.01rem solid #F4F4F4;
    margin-top: 0.6rem;
}

.countItem span {
    color: #CC3130;
    font-family: "manrope-simpleBold";
    font-weight: 600;
    display: block;
}

/* ======================关于我们====================== */








/* 隐藏默认的箭头样式 */
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

/* 自定义左箭头样式 */
.custom-next,
.custom-prev {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 2rem;
    display: flex;
    justify-content: center;
    border: 0.02rem solid #EBEBEB;
    align-items: center;
    cursor: pointer;
    position: absolute;
    /* 添加绝对定位 */
    z-index: 100;
    /* 添加足够高的z-index确保可见 */
    top: 50%;
    /* 垂直居中 */
    transform: translateY(-50%);
    /* 垂直居中调整 */
}

.custom-prev {
    right: 1.6rem;
    left: auto;
    background: url(../images/prdLeftBar.png) no-repeat center;

}

/* 自定义右箭头样式 */
.custom-next {
    left: auto;
    right: 0.8rem;
    background: url(../images/prdRightBar.png) no-repeat center;

}



/* 鼠标悬停效果 */
.custom-prev:hover,
.custom-next:hover {
    background-color: rgba(236, 184, 117, 0.8);
}

/* 确保箭头不受轮播默认样式影响 */
.swiper-button-next:not(.swiper-button-disabled),
.swiper-button-prev:not(.swiper-button-disabled) {
    pointer-events: auto !important;
}

/* 为产品轮播的按钮添加更具体的样式 */
.prodTop .custom-next,
.prodTop .custom-prev {
    opacity: 1 !important;
    pointer-events: auto !important;
}












/* 公共按钮 */

.pubBtn {
    display: inline-block;
    box-shadow: 2px 2px 20px rgba(189, 206, 240, 0.33);
    border-radius: 3rem;
    background: #fff;
    margin-top: 0.8rem;
    /* 添加过渡动画 */
    transition: transform 0.3s ease;
}

.pubBtn a {
    display: block;
    line-height: 0.56rem;
    padding: 0 0.8rem 0rem 0.4rem;
    text-transform: uppercase;
    color: #555;
    background: url(../images/jiantou.png) no-repeat center right 0.35rem;
    background-size: 0.25rem 0.09rem;

    border-radius: 3rem;

    /* 添加相对定位，为波纹效果做准备 */
    position: relative;
    overflow: hidden;
    /* 添加过渡动画 */
    transition: color 0.3s ease, background-color 0.3s ease, padding 0.3s ease, background-position 0.3s ease;
    z-index: 1;

}


/* 波纹效果的伪元素 */
.pubBtn a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

/* 悬停效果：背景变为紫色，文字变为白色 */
.pubBtn:hover a {
    color: #fff;
    background-color: #2A8C64;
    background-image: url(../images/whiteJian.png);
    /* 文字和箭头向右移动 */
    padding-left: 0.5rem;
    padding-right: 0.9rem;
    background-position: center right 0.3rem;
    border-radius: 2rem;
}

/* 悬停时按钮上浮 */
.pubBtn:hover {
    transform: translateY(-0.05rem);
    box-shadow: 3px 5px 25px rgba(21, 72, 47, 0.4);
    border-radius: 3rem;
}

/* 点击波纹扩散效果 */
.pubBtn a:active::before {
    width: 3rem;
    height: 3rem;
}


/* ======================应用领域 开始====================== */
.applyArea{
    padding: 0.8rem 0rem;
}
.applyList{
    position:relative;
    margin-top: 0.7rem;
}
.applyList ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.applyList ul li{
    width: 49%;
    margin-bottom: 0.3rem;
    background:#EBEBEB;
    display:flex;
    justify-content:space-between;
    border-radius: 0.12rem;
}
.applyList ul li:nth-child(1){
    width:78%;
}
.applyList ul li .applyL{
    width:56%;
    padding: 0.4rem;
    padding-bottom:0.2rem;
    padding-top: 0.2rem;
}
.applyList ul li .applyL b{
    display:block;
}
.applyList ul li .applyR{
    width:80%;
    overflow:hidden;
}
.applyList ul li .applyR img{
    width:100%;
    height:100%;
    object-fit: cover;
    border-top-right-radius: 0.12rem;
    border-bottom-right-radius: 0.12rem;
    
    transition: all 0.3s ease;
}
.applyList ul li .applyL .pubBtn{
    margin-top: 0.3rem;
}



.applyList ul li:nth-child(1) .applyL{
    width:35%;
}
.applyList ul li:nth-child(1) .applyR{
    width:65%;
}
.applyList ul li:nth-child(1) .applyR img{
    height:4.2rem;
}

.applyTxt{
    margin-top:0.2rem;
}
.applyTxt p{
    line-height: 1.8;
}

.moreCont{
    position:absolute;
    right:0;
    top:0;
    width:21%;
    height:4.2rem;
    background:#064675;
    padding:0.4rem;
    box-shadow: 2px 2px 20px rgba(189, 206, 240, 0.33);
    border-radius: 0.1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.moreCont h3{
    line-height: 1.2;
    color:#fff;
}
.moreBtn{
    margin-top: 0.6rem;
}
.moreBtn a{
    display:block;
    color:#fff;
     border:0.01rem solid #fff;
    border-radius: 0.1rem;
    width:2.2rem;
    margin: auto;
    height:0.6rem;
    line-height:0.6rem;
    text-align: center;
}
.moreBtn a:hover{
    background:#fff;
    color:#064675;
}

.applyList ul li:hover img{
    transform: scale(1.1);
}

/* ======================应用领域 结束====================== */



/* ======================产品介绍====================== */
.prodBox {
  padding:0.8rem 0.3rem;
}


.title{
    display:flex;
    justify-content: space-between;
    align-items: center;
}
.prodImgAll{
    margin-top: 0.8rem;
}
.prodImgAll ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.prodImgAll ul li{
    width: 24%;
    height: 3rem;
    overflow:hidden;
}
.prodImgAll ul li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.prodBox .prodBtn{
    margin-top:0rem;
}
.prodImgAll ul li:hover img{
    transform: scale(1.2);
}




/* ======================合作客户开始 ====================== */
.customerBox {
    display: flex;
    padding: 0.8rem 0.3rem;
     background: url(../images/custBg1.png) no-repeat center;
    background-size: cover;
}

.customerBox .custBd {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custLeft {
    width: 56%;
}

.custUl ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.custUl ul li {
    width: 25%;
}

.custUl ul li img {
    width: 100%;
    height: 100%;
    padding: 0.2rem;
    ;
}

.custR {
    width: 35%;
    text-align: right;
}

.custR .pubIndexTitle {
    text-align: right;
    margin-bottom: 0.7rem;
}
/* ======================合作客户 结束====================== */


/* ======================新闻中心 开始====================== */
.newsBox {
    padding: 0.6rem 0.3rem;
}

.newsSwiper {
    position: relative;
    padding-bottom: 0.8rem;
}

.newsList {
    margin-top: 0.5rem;
}

/* .newsList ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

.newsList .swiper-slide {
    width: 45%;
}

.newsList .swiper-slide a {
    align-items: center;
}
.newsList .swiper-slide a .imgBox{
    width: 100%;
    height: 3rem;
    overflow:hidden;
}
.newsList .swiper-slide a .imgBox img{
    width:100%;
    height:100%;
    object-fit: cover;
}


.newsList .swiper-slide a b {
    display: block;
    font-family: "manrope-simpleBold";
    margin: 0.1rem 0rem;
    color:#064675;
}

.newsList .swiper-slide p {
    margin-top: 0.1rem;
}

.newsSwiper .prod-pagination {
    bottom: 0.2rem !important;
    text-align: left;
}

.customerBox .pubIndexTitle h3,
.newsBox .pubIndexTitle h3 {
    margin-top: 0.2rem;
}

.pubIndexTitle p {
    font-family: "sourceSerifBold";
}

/* ======================新闻中心 结束====================== */



/* ======================适配====================== */
@media (max-width: 800px) {
    .aboutCon {
        flex-direction: column;
        padding: 0.2rem 0.3rem;
    }

    .aboutCon .aboutLeft {
        flex-direction: column;
        width: 100%;
        padding-left: 0rem;
    }

    .aboutCon .aboutLeft .aboutTxt {
        width: 100%;
        padding-top: 0.4rem;
    }
    .aboutRight{
        position:relative;
        width:100%;
    }

    .pubBtn {
        margin-top: 0.6rem;
    }

    .pubBtn a {
        line-height: 0.8rem;
    }


    .aboutCon .aboutRight {
        width: 100%;
        margin-top: 0.2rem;
    }


    /* 应用领域 */
    .applyArea{
        padding: 0.8rem 0.3rem;
    }
    .applyList ul{
        flex-direction: column;
    }
    .applyList ul li:nth-child(1){
        width:100%;
    }
    .applyList ul li{
        flex-direction: column;
        width:100%;
    }
    .moreCont{
        width:100%;
        position:relative;
    }
    .applyList ul li:nth-child(1) .applyL{
        width:100%;
    }
    .applyList ul li:nth-child(1) .applyR{
        width:100%;
    }
    .applyList ul li .applyL{
        width:100%;
    }
    .applyList ul li .applyR{
        width:100%;
    }

    /* .title{
        justify-content: center;
    } */

    .moreBtn a{
        width:auto;
        height:0.9rem;
        line-height:0.9rem;
    }

    .prodBox{
        padding:0.6rem 0.3rem;
    }
    .prodImgAll ul li{
        width:100%;
        margin-top:0.3rem;
    }




    
    
    .customerBox .custBd {
        flex-direction: column;
    }

    .custLeft {
        width: 100%;
    }

    .custR {
        width: 100%;
        text-align: left;
    }

    .customerBox {
        display: flex;
        padding: 0.8rem 0.3rem;
    }

    .precisionBox .preLeft .contBd {
        padding: 0.8rem 0.3rem;
    }

    .custUl ul li img {
        padding: 0.1rem;
    }

    

}