@charset "utf-8";
/* CSS Document */

.more-btn {
    position: relative;
    display: block;
    width: 136px;
    height: 40px;
    margin: auto;
    border-radius: 20px;
    background: #f8b500;
    font-size: 12px;
    line-height: 40px;
    text-align: center;
    transition: all .3s ease-out 0s;
    overflow: hidden;
    text-transform: uppercase;
}
.more-btn span {
    position: relative;
    z-index: 1;
    color: #fff;
}
.more-btn:after {
    position: absolute;
    top: -48px;
    left: 0;
    width: 100%;
    height: 136px;
    background: #0b706a;
    border-radius: 50%;
    content: '';
    transform: scale(0);
    transition: all ease .3s;
}
.more-btn:hover:after {
    transform: scale(1);
}

.section-block {
    padding: 60px 0;
}
.section-block .section-title .title {
    font-size: 36px;
    line-height: 1;
}
.section-block .section-title .title a {
    color: #333;
}
.section-block .section-title .title a span {
    color: #000;
}
.section-block .section-title .info {
    margin-top: 25px;
    font-size: 14px;
    line-height: 24px;
}

.swiper-pagination {
    position: absolute;
    left: 0;
    bottom: 4%;
    width: 100%;
    text-align: center;
    line-height: 10px;
}
.swiper-pagination span {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 16px;
    margin: 0 10px;
    background: #fff;
    opacity: .5;
    cursor: pointer;
}
.swiper-pagination span:before,
.swiper-pagination span:after {
    position: absolute;
    top: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    content: '';
}
.swiper-pagination span:before {
    left: -5px;
    border-right: 5px solid #fff;
}
.swiper-pagination span:after {
    right: -5px;
    border-left: 5px solid #fff;
}
.swiper-pagination .swiper-active-switch {
    background: #f8b500;
    opacity: 1;
}
.swiper-pagination .swiper-active-switch:before,
.swiper-pagination .swiper-active-switch:after {
    border-left-color: #f8b500;
    border-right-color: #f8b500;
}

.banner {
    position: relative;
    max-height: 450px;
    min-height: 300px;
}
.banner:before {
    display: block;
    padding-bottom: 30%;
    content: '';
}
.banner .banner-swiper {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.banner .banner-swiper li {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    flex-flow: column;
    justify-content: center;
}
.banner .banner-swiper li .translate-box {
    text-align: center;
    overflow: hidden;
    font-family: 'Arial';
    color: #fff;
    line-height: 70px;
}
.banner .banner-swiper li .translate-box * {
    transition: all 1s ease 1s;
}
.banner .banner-swiper li .translate-top * {
    transform: translate3d(0, -100%, 0);
    white-space: nowrap;
}
.banner .banner-swiper li .translate-bottom * {
    transform: translate3d(0, 100%, 0);
}
.banner .banner-swiper li.swiper-slide-active .translate-box * {
    transform: translate3d(0, 0, 0);
}
.banner .banner-swiper li .title {
    font-size: 48px;
}
.banner .banner-swiper li .info {
    font-size: 24px;
}
.banner .banner-swiper li .link-btn-box {
    padding: 20px 0;
}
.banner .banner-swiper li .link-btn {
    display: block;
    width: 180px;
    height: 52px;
    margin: auto;
    border: 2px solid #fff;
    font-size: 24px;
    line-height: 48px;
    text-align: center;
    color: #fff;
    transition:  background .3s, border .3s;
}
.banner .banner-swiper li .link-btn:hover {
    background: #f8b500;
    border-color: #f8b500;
}
.banner .arrow-btn {
    position: absolute;
    z-index: 2;
    top: 50%;
    height: 52px;
    margin-top: -26px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #fff;
    font-weight: 700;
    line-height: 52px;
}
.banner .arrow-btn:before,
.banner .arrow-btn:after {
    position: absolute;
    width: 0;
    height: 26px;
    border-left: 1px solid #fff;
    content: '';
    transition: all .3s;
}
.banner .arrow-btn:before {
    bottom: 50%;
    transform-origin: 100% 100%;
}
.banner .arrow-btn:after {
    top: 50%;
    transform-origin: 100% 0;
}
.banner .prev-btn {
    left: 40px;
    padding-left: 15px;
}
.banner .prev-btn:before,
.banner .prev-btn:after {
    left: 0;
}
.banner .prev-btn:hover:before {
    transform: translate3d(-23px, 0, 0) rotate(45deg) scaleY(1.3);
    -webkit-transform: translate3d(-23px, 0, 0) rotate(45deg) scaleY(1.3);
}
.banner .prev-btn:hover:after {
    transform: translate3d(-23px, 0, 0) rotate(-45deg) scaleY(1.3);
    -webkit-transform: translate3d(-23px, 0, 0) rotate(-45deg) scaleY(1.3);
}
.banner .next-btn {
    right: 40px;
    padding-right: 15px;
}
.banner .next-btn:before,
.banner .next-btn:after {
    right: 0;
}
.banner .next-btn:hover:before {
    transform: translate3d(23px, 0, 0) rotate(-45deg) scaleY(1.3);
    -webkit-transform: translate3d(23px, 0, 0) rotate(-45deg) scaleY(1.3);
}
.banner .next-btn:hover:after {
    transform: translate3d(23px, 0, 0) rotate(45deg) scaleY(1.3);
    -webkit-transform: translate3d(23px, 0, 0) rotate(45deg) scaleY(1.3);
}


/***** 关于我们 *****/
.about-block {
    min-height: 570px;
    font-family: 'Arial';
}
.about-block .container {
    position: relative;
}
.about-block .left-box {
    margin-right: 430px;
}
.about-block .content-box {
    margin-top: 45px;
    font-size: 16px;
    line-height: 28px;
    color: #666;
}
.about-block .content-box p + p {
    margin-top: 12px;
}
.about-block .more-btn {
    margin: 25px 0 30px 0;
}
.about-block .icon-list {
    padding-top: 30px;
    border-top: 1px solid #eee;
}
.about-block .icon-list li {
    position: relative;
    float: left;
    width: 33.33%;
    height: 56px;
    padding-left: 85px;
    line-height: 28px;
    color: #666;
}
.about-block .icon-list .icon {
    position: absolute;
    top: 0;
    left: 10px;
    width: 56px;
    height: 56px;
    border: 1px solid #f8b500;
    border-radius: 50%;
    text-align: center;
    line-height: 56px;
    color: #f8b500;
    font-size: 30px;
}
.about-block .icon-list .iconwo:before {
    position: relative;
    top: -2px;
    right: -1px;
}
.about-block .icon-list .number {
    font-size: 20px;
    font-weight: 700;
}
.about-block .icon-list .info {
    font-size: 16px;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.about-block .right-box {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 370px;
    height: 450px;
    margin-top: -225px;
}
.about-block .about-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.about-block .about-swiper .swiper-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.about-block .about-swiper .swiper-wrapper li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.about-block .about-swiper .swiper-slide {
    opacity: 0;
    transition: opacity .3s ease-in 0s, transform 9s ease-in .3s;
}
.about-block .about-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1.3);
}
.about-block .arrow-btn {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    font-size: 44px;
    color: #fff;
    cursor: pointer;
}
.about-block .arrow-btn:hover {
    color: #f8b500;
}
.about-block .prev-btn {
    left: 0px;
}
.about-block .next-btn {
    right: 0px;
}


/***** 主要产品 *****/
.main-products-block {
    background: #f7f7f7;
    font-family: 'Arial';
}
.main-products-block .section-title {
    text-align: center;
}
.main-products-block .products-list {
    padding: 45px 55px 0;
}
.main-products-block .products-list li {
    float: left;
    width: 33.33%;
    padding: 0 55px;
}
.main-products-block .products-list .pic {
    position: relative;
    display: block;
    padding-bottom: 75%;
    border: 2px solid transparent;
    overflow: hidden;
    transition: border .5s;
}
.main-products-block .products-list .pic span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform .5s;
}
.main-products-block .products-list .text-container {
    transition: background .5s;
}
.main-products-block .products-list .content-box {
    display: block;
    padding: 20px;
}
.main-products-block .products-list .title {
    margin-bottom: 10px;
    line-height: 26px;
    font-size: 18px;
    color: #333;
    font-weight: 400;
    transition: color .5s;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.main-products-block .products-list .info {
    height: 72px;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 24px;
    color: #666;
    transition: color .5s;
    overflow: hidden;
}
.main-products-block .products-list .label-box {
    position: relative;
    height: 44px;
    padding: 0 24px 0 20px;
    border-top: 1px solid #e1e1e1;
    overflow: hidden;
    transition: border .5s;
}
.main-products-block .products-list .label-box a {
    margin-right: 20px;
    color: #666;
    line-height: 42px;
}
.main-products-block .products-list .label-box .more {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 100%;
    margin: 0;
    border-left: 1px solid #ffcc44;
    opacity: 0;
    transition: opacity .5s;
    text-align: center;
    color: #fff;
    line-height: 42px;
}
.main-products-block .products-list .label-box .more:before {
    display: block;
    transform: translate3d(0, 100%, 0);
    transition: transform .6s;
}
.main-products-block .products-list .box:hover * {
    color: #fff;
}
.main-products-block .products-list .box:hover .pic {
    border-color: #f8b500
}
.main-products-block .products-list .box:hover .pic span {
    transform: scale(1.08);
}
.main-products-block .products-list .box:hover .text-container {
    background: #f8b500
}
.main-products-block .products-list .box:hover .label-box {
    border-color: #ffcc44;
}
.main-products-block .products-list .box:hover .label-box .more {
    opacity: 1;
}
.main-products-block .products-list .box:hover .label-box .more:before {
    transform: translate3d(0, 0, 0);
}


/***** 推荐产品 *****/
.recommend-block {
    background: #0b706a;
    font-family: 'Arial'
}
.recommend-block .section-title {
    max-width: 100%;
    width: 670px;
}
.recommend-block .section-title .title a,
.recommend-block .section-title .info {
    color: #fff;
}
.recommend-block .products-list {
    position: relative;
    margin: 0 -16px;
    padding-top: 45px;
}
.recommend-block .products-list .swiper-wrapper {
    height: auto !important;
}
.recommend-block .products-list li {
    width: 25%;
    height: auto !important;
}
.recommend-block .products-list .box {
    display: block;
    margin: 0 16px;
    background: #fff;
}
.recommend-block .products-list .pic {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
}
.recommend-block .products-list .pic .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 136px;
    height: 40px;
    margin-top: -20px;
    margin-left: -68px;
    background: #f8b500;
    border-radius: 20px;
    font-size: 12px;
    text-align: center;
    line-height: 40px;
    color: #fff;
}
.recommend-block .products-list .pic .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform .6s;
}
.recommend-block .products-list .pic .link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .75);
    opacity: 0;
    transition: opacity .3s;
}
.recommend-block .products-list .content {
    position: relative;
    padding: 16px 20px;
    color: #fff;
    line-height: 24px;
    font-size: 16px;
    transition: color .3s;
    background: #f8b500;
}
.recommend-block .products-list .content p {
    position: relative;
    z-index: 1;
    height: 48px;
    overflow: hidden;
}
.recommend-block .products-list .content:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #ffc50a;
    content: '';
    transition: all .6s;
}
.recommend-block .products-list .box:hover .pic .img {
    transform: scale(1.2);
}
.recommend-block .products-list .box:hover .pic .link {
    opacity: 1;
}
.recommend-block .products-list .box:hover .content {
    color: #fff;
}
.recommend-block .products-list .box:hover .content:before {
    height: 100%
}
.recommend-block .recommend-swiper {
    max-height: 350px;
}
.recommend-block .arrow-btn {
    position: absolute;
    top: -45px;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    font-size: 16px;
    line-height: 36px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: all .3s;
}
.recommend-block .arrow-btn:hover {
    background: #f8b500;
    border-color: #f8b500;
}
.recommend-block .prev-btn {
    right: 66px;
}
.recommend-block .next-btn {
    right: 16px;
}
.recommend-block .more-btn {
    display: none;
}


/** 我们的优势 **/
.advantage-block {
    font-family: 'Arial';
}
.advantage-block .section-title {
    max-width: 100%;
    width: 670px;
    margin: auto;
    text-align: center;
}
.advantage-block .list {
    position: relative;
    z-index: 1;
    width: 60%;
    padding-top: 63px;
}
.advantage-block .list li {
    float: left;
    width: 50%;
    padding: 32px 32px 0 0;
}
.advantage-block .list .box {
    display: block;
    position: relative;
    height: 140px;
    padding: 23px 20px 0 90px;
    border: 2px solid #eee;
    border-left-color: #f8b500;
    line-height: 24px;
    cursor: pointer;
}
.advantage-block .list .box:before {
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-top: 2px solid #f8b500;
    transform-origin: 0 0;
    transform: scaleX(0);
    content: '';
}
.advantage-block .list .box:after {
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    border-left: 2px solid #f8b500;
    transform-origin: 0 100%;
    transform: scaleY(0);
    content: '';
}
.advantage-block .list .border {
    position: absolute;
    left: -2px;
    right: -2px;
    top: -2px;
    border-top: 2px solid #f8b500;
    transform-origin: 100% 0;
    transform: scaleX(0);
}
.advantage-block .list .border,
.advantage-block .list .box:after,
.advantage-block .list .box:before {
    transition: transform .6s;
}
.advantage-block .list .title {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .3s;
}
.advantage-block .list .info {
    height: 48px;
    font-size: 14px;
    color: #666;
    overflow: hidden;
}
.advantage-block .list .icon {
    position: absolute;
    top: 50%;
    left: 0;
    width: 90px;
    text-align: center;
    color: #f8b500;
    transform: translate3d(0, -50%, 0);
    font-size: 50px;
}
.advantage-block .list .box:hover .title {
    color: #f8b500;
}
.advantage-block .list .box:hover .border,
.advantage-block .list .box:hover:after,
.advantage-block .list .box:hover:before {
    transform: scale(1);
}
.advantage-block .advantage-bg {
    position: absolute;
    bottom: -60px;
    right: 10px;
}
.advantage-block .advantage-bg img {
    display: block;
}


/*** 客服 ***/
.services-block {
    background: url(../img/footer-bg.jpg);
    text-align: center;
    font-family: 'Arial';
}
.services-block .title,
.services-block .title-info {
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
}
.services-block .title {
    padding-bottom: 2px;
    line-height: 1;
    color: #fff;
}
.services-block .title-info {
    color: #f8b500;
}
.services-block .info {
    max-width: 100%;
    width: 600px;
    margin: 25px auto 45px;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
}
.services-block .btn-box .btn {
    display: inline-block;
    width: 152px;
    height: 42px;
    margin: 0 5px;
    border: 2px solid #fff;
    font-size: 14px;
    line-height: 38px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    transition: all .3s;
}
.services-block .btn-box .btn:hover {
    background: #f8b500;
    border-color: #f8b500;
}

/*** 新闻 ***/
.news-block {
    font-family: 'Arial'
}
.news-block .section-title {
    max-width: 100%;
    width: 670px;
}
.news-block .news-list {
    position: relative;
    margin: 0 -16px;
    padding-top: 45px;
}
.news-block .news-list .swiper-wrapper {
    height: auto !important;
}
.news-block .news-list li {
    width: 33%;
    height: auto !important;
}
.news-block .news-list .box {
    display: block;
    margin: 0 16px;
    background: #fff;
}
.news-block .news-list .pic {
    position: relative;
    padding-bottom: 66%;
    overflow: hidden;
}
.news-block .news-list .pic:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .05);
    opacity: 0;
    transition: opacity .6s;
    content: '';
}
.news-block .news-list .pic:after {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    background: url(../img/icon.png) 0 -40px no-repeat;
    transform: translate3d(0, -40px, 0);
    opacity: 0;
    transition: all .6s;
    content: '';
}
.news-block .news-list .pic .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform .6s;
}
.news-block .news-list .title {
    margin-top: 25px;
    font-size: 18px;
    color: #333;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .6s;
    font-weight: 400;
}
.news-block .news-list .time {
    position: relative;
    padding-bottom: 9px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #999;
}
.news-block .news-list .time:before {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 10px;
    border-top: 1px solid #333;
    content: '';
    transition: width .6s;
}
.news-block .news-list .info {
    height: 72px;
    margin: 17px 0 25px;
    font-size: 14px;
    line-height: 24px;
    color: #666;
    overflow: hidden;
}
.news-block .news-list .box .btn {
    display: block;
    width: 120px;
    height: 36px;
    margin: auto;
    border: 1px solid #f8b500;
    border-radius: 18px;
    font-size: 14px;
    line-height: 34px;
    text-align: center;
    color: #f8b500;
    transition: all .6s;
}
.news-block .news-list .box:hover .pic .img {
    transform: scale(1.2);
}
.news-block .news-list .box:hover .pic:after,
.news-block .news-list .box:hover .pic:before {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
.news-block .news-list .box:hover .title {
    color: #f8b500;
}
.news-block .news-list .box:hover .btn {
    background: #f8b500;
    color: #fff;
}
.news-block .news-list .box:hover .time:before {
    width: 100%;
}
.news-block .news-swiper {
    max-height: 480px;
}
.news-block .arrow-btn {
    position: absolute;
    top: -45px;
    width: 40px;
    height: 40px;
    background: #333;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: all .3s;
}
.news-block .arrow-btn:hover {
    background: #f8b500;
}
.news-block .prev-btn {
    right: 66px;
}
.news-block .next-btn {
    right: 16px;
}
.news-block .more-btn {
    display: none;
}


@media screen and (max-width: 800px) {
    .banner:before {
        padding-bottom: 60%;
    }
    .banner .arrow-btn {
        display: none;
    }


    .about-block .section-title {
        text-align: center;
    }
    .about-block .left-box {
        margin-right: 0px;
    }
    .about-block .right-box {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        margin: 30px 0 0;
        max-height: 400px;
        height: auto;
    }
    .about-block .right-box:before {
        display: block;
        padding-bottom: 60%;
        content: '';
    }
    .about-block .arrow-btn {
        display: none;
    }
    .about-block .more-btn {
        margin-left: auto;
        margin-right: auto;
    }
    

    .main-products-block .products-list {
        padding-top: 5px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .main-products-block .products-list li {
        width: 50%;
        padding: 40px 20px 0;
    }


    .recommend-block .section-title {
        text-align: center;
    }
    .recommend-block .arrow-btn {
        display: none;
    }
    .recommend-block .recommend-swiper {
        max-height: none;
    }
    .recommend-block .products-list {
        padding-top: 13px;
    }
    .recommend-block .products-list li {
        display: none;
        padding-top: 32px;
    }
    .recommend-block .products-list li:nth-child(1),
    .recommend-block .products-list li:nth-child(2),
    .recommend-block .products-list li:nth-child(3),
    .recommend-block .products-list li:nth-child(4),
    .recommend-block .products-list li:nth-child(5),
    .recommend-block .products-list li:nth-child(6) {
        display: block;
    }
    .recommend-block .products-list .swiper-wrapper {
        width: auto !important;
    }
    .recommend-block .more-btn {
        display: block;
        margin-top: 50px;
    }
    .recommend-block .more-btn:after {
        display: none;
    }

    
    .advantage-block .list {
        width: 100%;
        padding-top: 28px;
    }
    .advantage-block .list li {
        padding: 32px 16px 0;
    }
    .advantage-block .advantage-bg {
        display: none;
    }


    .news-block .arrow-btn {
        display: none;
    }
    .news-block .news-swiper {
        max-height: none;
    }
    .news-block .news-list {
        padding-top: 15px;
    }
    .news-block .news-list .swiper-wrapper {
        width: 100% !important;
    }
    .news-block .news-list .pic {
        float: left;
        width: 180px;
        padding: 0;
    }
    .news-block .news-list .pic:after,
    .news-block .news-list .pic:before {
        opacity: 0 !important;
    }
    .news-block .news-list .pic:before {
        position: relative;
        display: block;
        height: auto;
        padding-bottom: 66.66%;
    }
    .news-block .news-list .pic .img {
        transform: scale(1) !important;
        background-size: cover;
    }
    .news-block .news-list .content-container {
        position: relative;
        margin-left: 200px;
        padding-top: 5px;
    }
    .news-block .news-list .title {
        margin: 0;
    }
    .news-block .news-list .time {
        border: none;
    }
    .news-block .news-list .time:before {
        display: none;
    }
    .news-block .news-list .box .btn {
        display: none;
    }
    .news-block .news-list .info {
        height: 48px;
        margin: 0;
    }
    .news-block .news-list .box {
        padding: 30px 0;
        border-bottom: 1px solid #e1e1e1;
    }
    .news-block .news-list .box:after {
        display: block;
        clear: both;
        content: '';
    }
    .news-block .section-title {
        margin: auto;
        text-align: center;
    }
    .news-block .more-btn {
        display: block;
        margin-top: 50px;
    }
}


@media screen and (max-width: 540px) {
    .more-btn {
        width: 150px;
    }


    .swiper-pagination span {
        width: 8px;
        height: 14px;
    }
    .swiper-pagination span:before,
    .swiper-pagination span:after {
        border-top-width: 7px;
        border-bottom-width: 7px;
        border-left-width: 4px;
    }
    .swiper-pagination span:before {
        left: -4px;
        border-right-width: 4px;
    }
    .swiper-pagination span:after {
        right: -4px;
        border-left-width: 4px;
    }

    .banner .banner-swiper li .title,
    .banner .banner-swiper li .info {
        line-height: 40px;
    }
    .banner .banner-swiper li .info {
        font-size: 16px;
    }
    .banner .banner-swiper li .title {
        font-size: 26px;
    }
    .banner .banner-swiper li .link-btn {
        width: 140px;
        height: 40px;
        line-height: 36px;
        font-size: 16px;
    }


    .section-block {
        padding: 40px 0;
    }
    .section-block .section-title .title {
        font-size: 24px;
    }
    .section-block .section-title .info {
        margin-top: 10px;
        line-height: 22px;
    }


    .about-block .content-box {
        margin-top: 25px;
        line-height: 24px;
        font-size: 14px;
    }
    .about-block .more-btn {
        margin-top: 20px;
    }
    .about-block .icon-list li {
        height: 40px;
        padding-left: 45px;
        line-height: 20px;
    }
    .about-block .icon-list .icon {
        left: 0;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 26px;
    }
    .about-block .icon-list .number {
        font-size: 16px;
    }
    .about-block .icon-list .info {
        font-size: 12px;
    }

    
    .main-products-block .products-list {
        padding: 15px 10px 0;
    }
    .main-products-block .products-list li {
        width: 100%;
        padding: 20px 0 0;
    }
    .main-products-block .products-list .pic {
        border: none;
        background: #fff;
    }
    .main-products-block .products-list .label-box {
        display: none;
    }
    .main-products-block .products-list .text-container {
        background: #eff1f7;
    }
    .main-products-block .products-list .content-box {
        padding: 10px;
    }
    .main-products-block .products-list .title {
        margin-bottom: 5px;
    }
    .main-products-block .products-list .info {
        height: 60px;
        line-height: 20px;
    }


    .recommend-block .products-list {
        margin: 0 -5px;
        padding-top: 25px;
    }
    .recommend-block .products-list .swiper-wrapper {
        transform: translate3d(0, 0, 0) !important;
    }
    .recommend-block .products-list .box {
        margin: 0 5px;
    }
    .recommend-block .products-list li {
        padding-top: 10px;
    }
    .recommend-block .products-list .pic .link {
        display: none;
    }
    .recommend-block .products-list .content {
        color: #fff !important;
        padding: 6px 10px 8px;
        font-size: 14px;
        line-height: 20px;
    }
    .recommend-block .products-list .content:before {
        height: 100% !important;
    }
    .recommend-block .products-list .content p {
        height: 40px;
    }
    .recommend-block .more-btn {
        margin-top: 30px;
    }



    .advantage-block .list {
        padding-top: 25px;
    }
    .advantage-block .list li {
        width: 100%;
        padding: 10px 0 0;
    }
    .advantage-block .list .info {
        height: 40px;
        line-height: 20px;
    }
    .advantage-block .list .icon {
        width: 70px;
    }
    .advantage-block .list .title {
        margin-bottom: 5px;
    }
    .advantage-block .list .box {
        height: auto;
        padding: 13px 10px 15px 70px;
    }


    .services-block .title,
    .services-block .title-info {
        font-size: 24px;
    }
    .services-block .title-info {
        line-height: 30px;
    }
    .services-block .info {
        margin: 15px auto 30px;
    }
    .services-block .btn-box .btn {
        width: 140px;
        height: 36px;
        border-width: 1px;
        line-height: 34px;
        font-size: 12px;
    }
    

    .news-block .news-list {
        margin: 0;
    }
    .news-block .news-list .pic {
        width: 130px;
    }
    .news-block .news-list .content-container {
        margin-left: 140px;
        padding: 0;
    }
    .news-block .news-list .box {
        margin: 0;
        padding: 10px 0;
    }
    .news-block .news-list .title {
        line-height: 20px;
    }
    .news-block .news-list .info {
        height: 40px;
        line-height: 20px;
    }
    .news-block .news-list .time {
        padding-bottom: 3px;
    }
    .news-block .more-btn {
        margin-top: 25px;
    }
}