/*banner*/
/*产品*/
.mainProduct{
    padding: 120px 0;
}
.mainProduct >div >h4{
    font-size: 60px;
    font-family: Roboto-Bold, Roboto;
    font-weight: bold;
    color: #212223;
    text-align: center;
}
.mainProduct >div >h6{
    font-size: 20px;
    font-family: Roboto-Italic, Roboto;
    font-weight: normal;
    color: #666666;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 80px;
}
.mainProduct_1 img{
    width: 100%;
}
.imgA{
    box-shadow: 5px 2px 8px 0px rgba(0, 0, 0, 0.12);
    margin-bottom: 20px;
}
.mainProduct_1 a{
    font-size: 32px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #252525;
    text-decoration: none;

    display: -webkit-box;
    word-wrap: break-word;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
}
.mainProduct_1 a:hover{
    color: #FA7A45;
}


/*图片悬停放大*/
.imgA{
    width: 100%;
    padding: 5px 5px 5px 5px;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
}
.imgA :hover{
    cursor: pointer; /*鼠标移入变为小手*/
}
.imgA img{
    transform: scale(1.1); /*原本的图片的大小，图片原来的大小不变*/
    transition: all 0.5s;

}
.imgA img:hover{
    transform:scale(1.2); /*图片按照比例，整体放大*/
}



/*关于我们*/
.about{
    padding: 140px 0;
    background: #EEFBF7;
}
.about .container >h4{
    font-size: 60px;
    font-family: Roboto-Bold, Roboto;
    font-weight: bold;
    color: #212223;
    margin-bottom: 15px;
}
.about .container >h6{
    font-size: 20px;
    font-family: Roboto-Italic, Roboto;
    font-weight: normal;
    color: #666666;
}
.p1{
    margin-top: 41px;
}
.p2{
    padding-bottom: 70px;
}
.aboutCol_1{
    position: relative;
}
.aboutCol_1 >p{
    font-size: 18px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
}
.aboutCol_1 >a{
    font-size: 18px;
    font-family: Roboto-Bold, Roboto;
    font-weight: bold;
    color: #FFFFFF;
    text-decoration: none;

    padding: 8px 15px 7px 20px;
    background: #68B9A1;
    margin-top: 30px;
    position: absolute;
    bottom: 0;
}
.aboutCol_1 >a >i{
    margin-left: 11px;
}

/*轮播图2*/
.aboutCol_2{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/*证书*/
.certification{
    padding: 120px 0;
}
.certification h4{
    font-size: 60px;
    font-family: Roboto-Bold, Roboto;
    font-weight: bold;
    color: #212223;
    text-align: center;
}
.certification h6{
    font-size: 20px;
    font-family: Roboto-Italic, Roboto;
    font-weight: normal;
    color: #666666;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 80px;
}

/*证书轮播图*/
/*左右按钮*/
.owl-carousel > .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: -144px;
    bottom: 0;
    left: -44px;/*左右按钮位置*/
    right: -44px;
    margin: auto 0;
    height: 0;
}

.owl-carousel > .owl-nav > button > span >i {
    font-size: 50px;
    color: #CCCCCC;
    transition: all 0.5s ease;
}

.owl-carousel > .owl-nav > button:hover > span {
    color: #333333;
}

/*导航点*/
/*.owl-carousel > .owl-dots {*/
/*    text-align: center;*/
/*    margin-top: 50px;*/
/*}*/

/*.owl-carousel > .owl-dots > .owl-dot {*/
/*    width: 10px;*/
/*    height: 10px;*/
/*    border-radius: 5px;*/
/*    margin: 0 5px;*/
/*    background: #999999;*/
/*}*/

/*.owl-carousel > .owl-dots > .active {*/
/*    width: 24px;*/
/*    background: red !important;*/
/*}*/


.moveAboutRow{
    display: none;
}

@media (max-width: 1040px) {
    .owl-carousel > .owl-nav {
        display:none;
    }
}
@media (max-width: 1002px) {
    .owl-carousel > .owl-nav {
        display:none;
    }
}

@media (max-width: 992px) {
    /*产品*/
    .mainProduct{
        padding-top: 65px;
        padding-bottom: 25px;
    }
    .mainProduct >div >h4{
        font-size: 24px;
        color: #000000;
    }
    .mainProduct >div >h6{
        font-size: 11px;
        color: #333333;
        margin-top: 7px;
        margin-bottom: 30px;
    }
    .mainProduct_1 a{
        font-size: 20px;
    }
    .mainProduct_1 >div{
        margin-bottom: 40px;
    }


    /*关于我们*/
    .aboutRow{
        display: none;
    }
    .moveAboutRow{
        display: block;
    }
    .about{
        padding: 65px 0;
    }
    .about .container >h4{
        font-size: 24px;
        text-align: center;
        margin-bottom: 5px;
    }
    .about .container >h6{
        font-size: 11px;
        font-family: Roboto-Italic, Roboto;
        font-weight: normal;
        color: #212223;
        text-align: center;
    }
    .p1{
        margin-top: 34px;
    }
    .aboutCol_1{
        position: relative;
    }
    .aboutCol_1 >p{
        font-size: 14px;
    }
    .p2{
        padding-bottom: 60px;
    }
    .aboutCol_1 >a{
        font-size: 14px;
        padding: 3px 17px 4px 20px;
        position: absolute;
        bottom: 0;
    }
    .aboutCol_1 >a >i{
        margin-left: 8px;
    }


    /*证书*/
    .certification{
        padding: 64px 0;
    }
    .certification h4{
        font-size: 24px;
    }
    .certification h6{
        font-size: 11px;
        margin-top: 7px;
        margin-bottom: 24px;
    }

    /*证书轮播图*/
    /*左右按钮*/
    .owl-carousel > .owl-nav {
        display: none;
    }

}