/* 轮播图效果修饰 */

.banner {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.banner .swiper-wrapper {
    width: 100%;
    margin: 0 auto;
}
.swiper-wap{
    display: none;
}

.banner .swiper-wrapper .swiper-slide {
    height: 620px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
}
.home-banner .swiper-wrapper .swiper-slide {
    height: 620px;
}
.about-banner .swiper-wrapper .swiper-slide {
    height: 600px;
}
.banner img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: none;
}

.banner .swiper-text {
    position: absolute;
    left: 50%;
    margin-left: -600px;
    width: 1200px;
    height: 100%;
    z-index: 2;
    color: #333;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner .swiper-text .text-title {
    font-size: 48px;
    color: #262626;
}

.text-sub{
    font-size: 24px;
    color: #262626;
    line-height: 29px;
    padding: 24px 0 56px;
}

.banner .swiper-text .text-menu {
    margin-top: 10px;
}

.banner .swiper-text .text-menu p {
    width: 100px;
    height: 48px;
    line-height: 48px;
    display: inline-block;
    text-align: center;
    margin-right: 16px;
    color: #333;
    font-size: 16px;
    border-radius: 2px;
    background: linear-gradient( 180deg, #F0F0F0 0%, #FFFFFF 70%);
}
@media screen and (max-width: 1200px) {
    .banner .swiper-text {
        left: 0;
        margin-left: 20px;
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .banner {
        height: auto;
    }

    .swiper-wap {
        display: block;
    }

    .swiper-pc {
        display: none;
    }

    .banner .swiper-wrapper .swiper-slide {
        height: auto;
    }

    .banner img {
        display: block;
        width: 100%;
    }

    .banner .swiper-text {
        left: 0;
        margin-left: 0;
        width: 100%;
        text-align: center;
        justify-content: flex-start;
        padding-top: 1.2rem;
    }

    .banner .swiper-text .text-title {
        font-size: 0.56rem;
        line-height: 0.66rem;
        margin-bottom: 0.16rem;
        color: #FFFFFF;
    }

    .banner .swiper-text .text-menu {
        margin-top: 0.24rem;
    }

    .banner .swiper-text .text-menu p {
        width: 1.2rem;
        height: 0.64rem;
        background: #E1E4EB;
        border-radius: 2px;
        font-size: 0.24rem;
        color: #999999;
        line-height: 0.64rem;
        margin: 0 0.12rem;
    }
}
