/* 锚点跳转 */
.anchor {
    background: #FAFAFA;
}

.anchor ul {
    display: flex;
    justify-content: space-between;
    padding: 0px 4%;
}

.anchor a {
    display: block;
    line-height: 90px;
    color: #333;
}

.anchor li:hover a {
    color: #004C96;
}


/* 公司简介 */
.overview {
    padding-top: 100px;
    background: url(../images/newsBg.png)no-repeat center bottom;
    background-size: 100% auto;
}

.overviewCon {
    text-align: center;
    color: #555555;
}

.overviewCon h3 {
    font-family: "poppinsBold";
    color: #004C96;
    margin-bottom: 35px;
}

/* 数字累加 */
.countBox {
    padding: 90px 4% 40px 4%;
}

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

.countBox div {
    display: flex;
    align-items: flex-end;
}

.countBox h3 {
    font-family: "poppinsBold";
}

.countBox p {
    margin-top: 12px;
}



/* 产品 */
.products {
    background: url(../images/cpBg.png)no-repeat center center;
    background-size: cover;
    padding: 90px 0px 70px 0px;
}

.productsCon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.productsCon h3 {
    margin-bottom: 50px;
}

.productsBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 100px;
    line-height: 55px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.productsCon i {
    display: block;
    margin-left: 16px;
    width: 22px;
    height: 5px;
    background: url(../images/triangle2.png)no-repeat center center;
    background-size: 100% 100%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.productsBtn:hover {
    background: #fff;
    color: #004C96;
    transform: translateY(-10px);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.productsBtn:hover i {
    background: url(../images/triangle3.png)no-repeat center center;
    background-size: 100% 100%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}



/* 使命 */
.mission {
    display: flex;
}

.missionL {
    width: 38%;
    max-width: 730px;
    flex-shrink: 0;
    padding: 90px 50px 0px 160px;
}

.missionL p {
    margin-top: 60px;
    color: #888;
}

.missionR {
    flex-grow: 1;
    display: flex;
    background: url(../images/missionBg.png)no-repeat center center;
    background-size: cover;
}

.missionR li {
    width: 33.33%;
    padding: 100px 18px 40px 18px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.missionR li::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.missionR i {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0px auto 60px auto;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.missionR .missionIcon1 {
    background: url(../images/missionIcon1.png)no-repeat center center;
    background-size: contain;
}

.missionR li.active .missionIcon1 {
    background: url(../images/missionIcon1B.png)no-repeat center center;
    background-size: contain;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.missionR .missionIcon2 {
    background: url(../images/missionIcon2.png)no-repeat center center;
    background-size: contain;
}

.missionR li.active .missionIcon2 {
    background: url(../images/missionIcon2B.png)no-repeat center center;
    background-size: contain;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.missionR .missionIcon3 {
    background: url(../images/missionIcon3.png)no-repeat center center;
    background-size: contain;
}

.missionR li.active .missionIcon3 {
    background: url(../images/missionIcon3B.png)no-repeat center center;
    background-size: contain;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.missionR h3 {
    margin-bottom: 50px;
    font-family: "poppinsBold";
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.missionR p {
    height: 110px;
    color: #333;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.missionR span {
    display: block;
    padding-top: 100px;
    font-family: "poppinsBold";
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.missionR span::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    display: block;
    width: 2px;
    height: 72px;
    background: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.missionR li.active {
    width: 42%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.missionR li.active::after {
    opacity: 0.8;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.missionR li.active h3 {
    color: #333;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.missionR li.active p {
    opacity: 1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.missionR li.active span {
    color: #333;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.missionR li.active span::after {
    background: #333;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}



/* 工厂 */
.factory {
    padding-top: 160px;
}

.factory .pubIndexTitle {
    text-align: center;
    margin-bottom: 55px;
}


.factoryIcon {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    right: 130px;
    z-index: 10;
    display: block;
    width: 90px;
    height: 90px;
    background: url(../images/factoryIcon.png)no-repeat center center;
    background-size: 100% 100%;
    cursor: pointer;
    animation: circleAnimation 3s infinite linear; /* 设置动画名称、持续时间、重复次数和速度曲线 */
}
@keyframes circleAnimation {
  0% { transform: scale(0.8); } /* 初始状态为原大小 */
  50% { transform: scale(1.2); } /* 中间状态放大两倍 */
  100% { transform: scale(0.8); } /* 结束状态返回到原大小 */
}


.factorySwiper .swiper-slide {
    width: 80%;
    height: 740px;
    overflow: hidden;
    position: relative;
}

.factorySwiper .swiper-slide::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #1C1C1C;
    opacity: 0.4;
    z-index: 2;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.factorySwiper .swiper-slide-active::after {
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.factorySwiper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 圆点样式 */
.factorySwiper .swiper-pagination {
    position: absolute;
    bottom: 60px;
    left: 50%;
    right: unset;
    transform: translateX(-50%);
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.factorySwiper .swiper-pagination::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    z-index: -1;
    opacity: 0.3;
}

.factorySwiper .swiper-pagination-bullet {
    display: block;
    width: 12px;
    height: 12px;
    background: #56545F;
    border: 1px solid #fff;
    opacity: 1;
    margin: 0px 20px !important;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.factorySwiper .swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -5;
    display: block;
    width: 10px;
    height: 10px;
    background: #00000025;
    border-radius: 50%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.factorySwiper .swiper-pagination-bullet-active {
    background: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.factorySwiper .swiper-pagination-bullet-active::after {
    width: 30px;
    height: 30px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* 左右箭头 */
.factorySwiper .swiper-button-next,
.factorySwiper .swiper-button-prev {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    top: unset;
    bottom: 36px;
    z-index: 10;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.factorySwiper .swiper-button-prev {
    left: 13%;
    background: url(../images/prev2.png)no-repeat center center, #fff;
    background-size: 32px 32px;
}

.factorySwiper .swiper-button-next {
    right: 13%;
    background: url(../images/next2.png)no-repeat center center, #fff;
    background-size: 32px 32px;
}

.factorySwiper .swiper-button-prev:hover {
    background: url(../images/prev1.png)no-repeat center center, #004C96;
    background-size: 32px 32px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.factorySwiper .swiper-button-next:hover {
    background: url(../images/next1.png)no-repeat center center, #004C96;
    background-size: 32px 32px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.factorySwiper .swiper-button-next::after,
.factorySwiper .swiper-button-prev::after {
    display: none;
}



/* 研发能力 */
.capability {
    padding-top: 110px;
    position: relative;
    z-index: 5;
}

.capability .pubIndexTitle {
    text-align: center;
    margin-bottom: 65px;
}

.capabilityCon {
    padding-right: 170px;
}

.capabilitySwiper {
    width: 100%;
    overflow: hidden;
    padding-bottom: 100px;
}

.capabilitySwiper .swiper-slide {
    width: auto;
}

.capabilitySwiper img {
    height: 680px;
    width: auto;
}

.capabilityBtn {
    position: absolute;
    right: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
}

.capabilityBtn>div {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    margin-top: 0px !important;
    width: 74px;
    height: 74px;
    border-radius: 100px;
    border: 1px solid #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.capabilityBtn .swiper-button-prev::after,
.capabilityBtn .swiper-button-next::after {
    display: none;
}

.capabilityBtn .swiper-button-prev {
    margin-right: 50px;
    background: url(../images/prev1.png)no-repeat center center;
    background-size: 26px 26px;
}

.capabilityBtn .swiper-button-prev:hover {
    background: url(../images/prev2.png)no-repeat center center, #fff;
    background-size: 26px 26px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.capabilityBtn .swiper-button-next {
    background: url(../images/next1.png)no-repeat center center;
    background-size: 26px 26px;
}

.capabilityBtn .swiper-button-next:hover {
    background: url(../images/next2.png)no-repeat center center, #fff;
    background-size: 26px 26px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}



/*  */
.whyUs {
    margin-top: -250px;
    background: #002F5E;
    padding-top: 210px;
    padding: 210px 0px 110px 0px;
    color: #fff;
    position: relative;
}

.whyUs #anchor5 {
    display: block;
    position: absolute;
    top: 0px;
}

.whyUsCon>h3 {
    margin-bottom: 86px;
    font-family: "poppinsBold";
    max-width: 560px;
    line-height: 1.5;
}

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

.whyUsUl li {
    width: 23%;
    position: relative;
    padding: 20px 0px 0px 55px;
}

.whyUsUl li:nth-child(n+5) {
    margin-top: 100px;
}

.whyUsUl li::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    width: 23px;
    height: 18px;
    background: url(../images/whyUsIcon.png)no-repeat center center;
    background-size: 100% 100%;
}

.whyUsUl p {
    padding-top: 20px;
    border-top: 2px solid #36506B;
}



/* 问答 */
.faqs {
    padding: 90px 4% 70px 4%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.faqsR {
    margin-top: 110px;
    width: 44%;
    padding-top: 32%;
}

.faqsL {
    width: 38%;
    max-width: 600px;
}

.faqsL>p {
    margin: 10px 0px 60px 0px;
    color: #262729;
}

.faqsL>p span {
    color: #EC2227;
}

.faqsUl>li {
    padding: 12px 0px;
    border-radius: 3px;
    border: 1px solid #ADADAD;
    cursor: pointer;
    margin-bottom: 8px;
}

.faqsTop,
.faqsBtm>div {
    padding: 0px 50px 0px 36px;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.faqsTop::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 8px;
    width: 20px;
    height: 2px;
    border-radius: 100px;
    background: #FEBE2E;
}

.faqsTop>p:first-of-type {
    flex-shrink: 0;
  
}
/* .faqsTop p:last-of-type {
      font-size:18px;
} */
.faqsTop i {
    position: absolute;
    top: 7px;
    right: 20px;
    width: 15px;
    height: 8px;
    background: url(../images/triangle4.png)no-repeat center center;
    background-size: 100% 100%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.faqsUl>li.on {
    background: #F5F5F5;
}

.faqsUl>li.on i {
    transform: rotate(-180deg);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.faqsBtm {
    display: none;
}

.faqsBtm p {
    padding-top: 8px;
}

.faqsBtm p:last-of-type {
    color: #888;
}
.faqsUl>li:first-child .faqsBtm{
    display:block;
}




/* 适配 */
@media (max-width: 1680px) {
    .anchor a {
        line-height: 76px;
    }

    .overview {
        padding-top: 80px;
    }

    .missionL {
        width: 30%;
        padding: 90px 30px 0px 100px;
    }

    /* 工厂 */
    .factory {
        padding-top: 100px;
    }

    .factory {
        padding-bottom: 60px;
    }

    .factory .pubIndexTitle {
        left: 100px;
    }

    .factorySwiper .swiper-slide {
        height: 660px;
    }

    .factoryIcon {
        width: 75px;
        height: 75px;
        right: 80px;
    }

    .factorySwiper .swiper-pagination {
        bottom: 50px;
    }

    .factorySwiper .swiper-button-next,
    .factorySwiper .swiper-button-prev {
        width: 50px;
        height: 50px;
        bottom: 30px;
        background-size: 25px 25px;
    }

    .factorySwiper .swiper-pagination-bullet {
        margin: 0px 16px !important;
    }

    /* 研发能力 */
    .capabilitySwiper img {
        height: 600px;
    }

    /* 问答 */
    .whyUsCon {
        padding-left: 4%;
        padding-right: 4%;
    }
}

@media (max-width: 1440px) {
    .productsBtn {
        width: 200px;
        line-height: 50px;
    }

    .productsCon i {
        margin-left: 10px;
    }

    /* 使命 */
    .missionL {
        width: 26%;
        padding: 90px 30px 0px 30px;
    }

    .missionR i {
        margin-bottom: 38px;
    }

    .missionR h3 {
        margin-bottom: 30px;
    }

    .missionR p {
        height: 140px;
    }

    .missionR span {
        padding-top: 90px;
    }

    /* 工厂 */
    .factorySwiper .swiper-slide {
        height: 550px;
    }

    /* 研发能力 */
    .capability {
        padding-top: 20px;
    }

    #anchor4 {
        display: block;
        transform: translateY(-90px);
    }

    .capabilityCon {
        padding-right: 80px;
    }

    .capabilitySwiper img {
        height: 480px;
    }

    .capabilityBtn>div {
        width: 60px;
        height: 60px;
        background-size: 20px 20px !important;
    }

    .capabilitySwiper {
        padding-bottom: 80px;
    }

    .capabilityBtn .swiper-button-prev {
        margin-right: 26px;
    }

    .whyUsCon>h3 {
        line-height: 1.4;
        margin-bottom: 60px;
    }

    /* 为什么选择我们 */
    .whyUsUl li::before {
        width: 20px;
        height: 16px;
    }

    .whyUsUl li {
        padding: 16px 0px 0px 40px;
    }

    .whyUsUl p {
        padding-top: 16px;
    }

    .whyUsUl li:nth-child(n+5) {
        margin-top: 60px;
    }

    .whyUs {
        padding-bottom: 70px;
    }

    /* 问答 */
    .faqs {
        padding: 50px 4%;
    }

    .faqsL {
        width: 44%;
    }
}

@media (max-width: 1280px) {
    .anchor a {
        line-height: 64px;
    }

    .overview {
        padding-top: 40px;
    }

    .overviewCon {
        padding: 0px 4%;
    }

    .countBox {
        padding: 60px 4% 34px 4%;
    }

    .products {
        padding: 60px 4%;
    }

    /* 工厂 */
    .factory {
        padding-top: 50px;
    }

    .factory .pubIndexTitle {
        margin-bottom: 36px;
    }

    #anchor3 {
        display: block;
        transform: translateY(-70px);
    }

    .factorySwiper .swiper-slide {
        height: 470px;
    }

    .factoryIcon {
        width: 70px;
        height: 70px;
        right: 60px;
    }

    /* 研发能力 */
    .capability {
        padding-top: 0px;
    }

    .capability .pubIndexTitle {
        margin-bottom: 30px;
    }

    .capabilitySwiper img {
        height: 410px;
    }

    .capabilityCon {
        padding-right: 4%;
    }

    .capabilityBtn>div {
        width: 50px;
        height: 50px;
    }

    /*  */
    .whyUs {
        margin-top: -240px;
    }

    .whyUsCon>h3 {
        margin-bottom: 45px;
    }

    .whyUsUl li::before {
        width: 16px;
        height: 12px;
    }

    .whyUsUl li {
        padding: 11px 0px 0px 26px;
    }

    .whyUsUl p {
        padding-top: 14px;
    }

    .whyUsUl li:nth-child(n+5) {
        margin-top: 45px;
    }

    .whyUs {
        padding-bottom: 50px;
    }

    .faqsL {
        width: 48%;
    }
}

@media (max-width: 992px) {
    .productsCon h3 {
        margin-bottom: 40px;
    }

    .productsBtn p {
        font-size: 14px;
    }

    .productsCon i {
        width: 18px;
        height: 3px;
    }

    .productsBtn {
        width: 170px;
        line-height: 42px;
    }

    /* 使命 */
    .mission {
        flex-wrap: wrap;
    }

    .missionL,
    .missionR {
        width: 100%;
    }

    .missionL {
        padding: 40px 4% 30px 4%;
    }

    .missionL p {
        margin-top: 22px;
    }

    .missionR li {
        padding: 50px 16px 30px 16px;
    }

    .missionR i {
        width: 45px;
        height: 45px;
        margin-bottom: 20px;
    }

    .missionR h3 {
        margin-bottom: 20px;
    }

    .missionR li.active p {
        font-size: 14px;
    }

    .missionR p {
        height: 90px;
    }

    .missionR span::after {
        height: 50px;
    }

    .missionR span {
        padding-top: 60px;
    }

    /* 工厂 */
    .factorySwiper .swiper-slide {
        width: 90%;
        height: 380px;
    }

    .factorySwiper .swiper-button-next,
    .factorySwiper .swiper-button-prev {
        display: none;
    }

    .factoryIcon {
        display: none;
    }

    .factorySwiper .swiper-pagination {
        bottom: 18px;
    }

    .factory .pubIndexTitle {
        left: 65px;
        top: 40px;
    }

    .factory {
        padding-bottom: 50px;
    }

    /* 研发实力 */
    .capabilitySwiper img {
        height: 330px;
    }

    .capabilityBtn>div {
        width: 35px;
        height: 35px;
        background-size: 14px 14px !important;
    }

    .capabilityBtn .swiper-button-prev {
        margin-right: 12px;
    }

    .capabilitySwiper {
        padding-bottom: 60px;
    }

    .whyUs {
        margin-top: -170px;
        padding-top: 140px;
    }

    .whyUsUl li {
        width: 46%;
    }

    .whyUsUl li:nth-child(n+3) {
        margin-top: 35px;
    }

    /* 问答 */
    .faqs {
        flex-wrap: wrap;
        padding: 40px 4%;
    }

    .faqsL,
    .faqsR {
        width: 100%;
        max-width: unset;
    }

    .faqsL>p {
        margin-bottom: 30px;
    }

    .faqsR {
        margin-top: 34px;
        padding-top: 40%;
    }
}

@media (max-width: 767px) {

    .anchor ul,
    .anchor li {
        flex: 0 0 auto;
    }

    .anchor ul {
        overflow-x: auto;
    }

    .anchor a {
        line-height: 58px;
    }

    .anchor li {
        margin-right: 30px;
    }

    .anchor li:last-of-type {
        margin-right: 0px;
    }

    /* 公司介绍 */
    .overview {
        padding-top: 30px;
    }

    .overviewCon {
        text-align: left;
    }

    .overviewCon h3 {
        margin-bottom: 26px;
        text-align: center;
    }

    .countBox ul {
        flex-wrap: wrap;
    }

    .countBox li {
        width: 50%;
    }

    .countBox li:nth-child(n+3) {
        margin-top: 20px;
    }

    .countBox {
        padding-top: 40px;
    }

    .countBox p {
        margin-top: 6px;
    }

    /*  */
    .products {
        padding: 40px 4%;
    }

    .productsCon h3 {
        margin-bottom: 30px;
        line-height:36px;
    }

    .productsBtn {
        width: 160px;
    }

    /* 使命 */
    .missionR {
        flex-wrap: wrap;
    }

    .missionR li {
        width: 100%;
    }

    .missionR p {
        opacity: 1;
        color: #fff;
        height: auto;
    }

    .missionR li::after {
        background: #000;
        opacity: 0.2;
    }

    .missionR span {
        display: none;
    }

    .missionR li {
        padding: 40px 16px 20px 16px;
    }

    .missionR h3 {
        margin-bottom: 12px;
    }
    .missionR li.active{
        width:100%;
    }
    .missionR li.active h3{
        color:#fff;
    }

    /* 工厂 */
    .factory {
        padding-left: 4%;
        padding-right: 4%;
    }

    .factorySwiper .swiper-slide {
        width: 100%;
        height: 200px;
    }

    .factory .pubIndexTitle {
        position: relative;
        top: unset;
        left: unset;
        color: #333;
        margin-bottom: 20px;
    }

    .factorySwiper .swiper-pagination {
        bottom: 10px;
    }

    .factorySwiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0px 4px !important;
    }

    .factorySwiper .swiper-pagination-bullet-active::after {
        width: 16px;
        height: 16px;
    }

    /* 研发能力 */
    .capabilityCon {
        padding-left: 4%;
    }

    .capability .pubIndexTitle {
        margin-bottom: 25px;
    }

    /*  */
    .whyUsCon>h3 {
        width: 60%;
    }

    .whyUs {
        margin-top: -110px;
        padding-top: 80px;
    }

    .whyUsUl li {
        width: 100%;
    }

    .whyUsUl li:nth-child(n+2) {
        margin-top: 35px;
    }
    .faqsTop p:last-of-type {
        font-size: 15px;
    }

}