html,
body {
    position: relative;
    height: 100%;
}

/*  banner轮播样式 */
.mbanner {
    display: none;
}

.swiper {
    width: 100%;
    height: 820px;
    overflow: hidden;
}

.swiper-slide {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

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

.mySwiper .swiper-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    background: #FFFFFF;
    border-radius: 2px 2px 2px 2px;
    margin: 0px 10px;
    opacity: 1;
    transition: all 0.3s;
}

.mySwiper .swiper-pagination .swiper-pagination-bullet-active {
    width: 60px;
    background: #01AAAD;
    transition: all 0.3s;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 22px;
}

/* 搜索产品 */
.productSearch {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    background: linear-gradient(180deg, rgba(1, 170, 173, 0.25) 0%, rgba(1, 170, 173, 0) 100%);
}

.productSearch form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.productSearch input {
    width: 536px;
    line-height: 60px;
    border-radius: 5px 5px 5px 5px;
    border: 1px solid rgba(112, 112, 112, 0.25);
    padding: 0px 20px 0px 60px;
    background: url(../images/ss.png)no-repeat center left 20px, #FFFFFF;
    background-size: 28px 28px;
    margin-right: 20px;
}

.productSearch button {
    padding: 0px 34px;
    line-height: 60px;
    background: #01AAAD;
    border-radius: 5px 5px 5px 5px;
    border: 0px;
    color: #FFFFFF;
    cursor: pointer;
}

/* 产品中心 */
.product {
    /*padding-top: 50px;*/
    padding-bottom: 40px;
}

.product .indexTitle {
    text-align: left;
    margin-bottom: 34px;
}

.indexTitle p {
    color: #707070;
    opacity: 0.2;
    margin-bottom: -60px;
    text-transform: uppercase;
}

.product .indexTitle p {
    margin-left: -10px;
}

.indexTitle h2 {
    font-weight: 400;
    color: #333333;
    position: relative;
}

.indexTitle h2::after {
    content: '';
    display: block;
    width: 29px;
    height: 3px;
    background: #01AAAD;
    position: absolute;
    left: 0px;
    bottom: -4px;
}

/* 产品 tab */
.productTab {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 40px;
}

.productTab li {
    margin-left: 100px;
    color: #333333;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
}

.productTab li:hover {
    color: #01AAAD;
    transition: all 0.3s;
}

.productTab li::after {
    content: '';
    display: block;
    width: 0px;
    height: 3px;
    background: #01AAAD;
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.productTab li.active {
    color: #01AAAD;
}

.productTab li.active::after {
    width: 17px;
    transition: all 0.3s;
}

/* 产品内容 */
.productBox {
    margin-bottom: 20px;
}

.productItem {
    display: none;
}

.productItem ul {
    display: flex;
    flex-wrap: wrap;
}

.productItem li {
    margin: 0px 0.5% 24px 0.5%;
    width: 24%;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.07);
}

.productItem a {
    display: block;
    width: 100%;
    padding: 20px;
}

.productItem img {
    display: block;
    width: 100%;
    height: 230px;
    margin-bottom: 20px;
}

.productItem p {
    color: #333;
    margin-bottom: 16px;
}

.productItem span {
    display: inline-block;
    padding: 0px 20px;
    line-height: 32px;
    background: #FFFFFF;
    border-radius: 3px 3px 3px 3px;
    color: #707070;
    border: 1px solid #707070;
}

.productItem li:hover span {
    border: 1px solid #01AAAD;
    color: #01AAAD;
}

/* 更多按钮 */
.moreBtn {
    text-align: center;
}

.moreBtn a {
    display: inline-block;
    line-height: 60px;
    border-radius: 5px 5px 5px 5px;
    border: 1px solid #01AAAD;
    color: #01AAAD;
    padding: 0px 22px;
}

.moreBtn a:hover {
    color: #fff;
    background: #01AAAD;
    transition: all 0.3s;
}

/* 关于我们 */
.about {
    padding-top: 50px;
    padding-bottom: 40px;
}

.about .indexTitle {
    text-align: center;
}

.about .indexTitle h2::after {
    content: '';
    display: block;
    width: 29px;
    height: 3px;
    background: #01AAAD;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -4px;
}

.aboutCon {
    margin-top: 50px;
}

.aboutCon p {
    color: #333;
    white-space: pre-line;
    text-align: justify;
}

.aboutCard {
    width: 100%;
    padding: 32px 120px 22px 120px;
    background: #FFFFFF;
    box-shadow: 0px 3px 24px 1px rgba(0, 151, 154, 0.11);
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

.aboutCard>div {
    text-align: center;
}

.aboutCard>div div {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.aboutCard p {
    color: #333;
    transition: all 0.3s;
}

.aboutCard>div:hover p {
    color: #01AAAD;
    transition: all 0.3s;
}

.aboutCard .card1 div {
    background: url(../images/ico1.png)no-repeat center center;
    background-size: 100% 100%;
    transition: all 0.3s;
}

.aboutCard .card2 div {
    background: url(../images/ico2.png)no-repeat center center;
    background-size: 100% 100%;
    transition: all 0.3s;
}

.aboutCard .card3 div {
    background: url(../images/ico3.png)no-repeat center center;
    background-size: 100% 100%;
    transition: all 0.3s;
}

.aboutCard .card1:hover div {
    background: url(../images/ico1g.png)no-repeat center center;
    background-size: 100% 100%;
    transition: all 0.3s;
}

.aboutCard .card2:hover div {
    background: url(../images/ico2g.png)no-repeat center center;
    background-size: 100% 100%;
    transition: all 0.3s;
}

.aboutCard .card3:hover div {
    background: url(../images/ico3g.png)no-repeat center center;
    background-size: 100% 100%;
    transition: all 0.3s;
}

.about .moreBtn {
    margin-top: 40px;
}

/* 移动端 */
@media (max-width: 767px) {
    .mbanner {
        display: block;
    }

    .banner {
        display: none;
    }

    .swiper {
        height: auto;
    }

    .mySwiper .swiper-pagination .swiper-pagination-bullet {
        width: 14px;
        height: 2px;
        margin: 0px 3px;
    }

    .mySwiper .swiper-pagination .swiper-pagination-bullet-active {
        width: 22px;
        background: #01AAAD;
        transition: all 0.3s;
    }

    .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        bottom: 6px;
    }

    /* 搜索 */
    .productSearch {
        padding-top: 30px;
        padding-bottom: 30px;
    }

/*    .productSearch button {
        display: none;
    }
*/
.productSearch button{width: 100px;line-height: 50px;padding: 0;text-align: center;margin-left: 10px}
    .productSearch input {
        width: 100%;
        margin-right: 0px;
        line-height: 50px;
    }

    /* 产品 */
    .product {
        padding-top: 10px;
        padding-bottom: 50px;
    }

    .indexTitle p {
        margin-bottom: -45px
    }

    .productTab {
        justify-content: flex-start;
    }

    .productTab li {
        width: auto;
        margin-left: 0px;
        white-space: nowrap;
        margin-right: 30px;
    }

    .productItem ul {
        justify-content: space-between;
    }

    .productItem li {
        width: 48%;
        text-align: center;
        background: #FFFFFF;
        box-shadow: 0px 3px 10px 1px rgb(0 0 0 / 7%);
    }

    .productItem img {
        height: auto;
    }

    .productBox {
        margin-bottom: 20px;
    }

    .moreBtn a {
        line-height: 50px;
    }

    .about {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .aboutCon {
        margin-top: 30px;
    }

    .aboutCard {
        margin-top: 40px;
        padding: 20px 30px;
    }

    .aboutCard>div div {
        width: 60px;
        height: 60px;
        margin-bottom: 8px;
    }

    .about .moreBtn {
        margin-top: 30px;
    }
}