.swiper-container {
    width: 100%;
    background: #fff;
    padding-bottom: 10px;
    position: relative;
}
.swiper-navigator {
    width: 100%;
    height: 100%;
    position: absolute;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
	z-index: 99;
}
.swiper-btn-next,
.swiper-btn-prev {
    color: #fff;
    position: absolute;
    width: 50%;
    height: 100%;
    -ms-display: flex;
    display: flex;
    padding-top: 3px;
    -ms-justify-content: center;
    justify-content: center;
    cursor: pointer;
}
.swiper-btn-next {
    right: 0;
}
.swiper-btn-prev {
    left: 0;
}
.swiper-wrap {
    width: 100%;
    margin: 0 auto;
	height: 450px;
    /* 父元素开启3d，才会有叠加效果 f*/
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    /* 叠加过渡好看点 */
    -ms-perspective: 300px;
    perspective: 300px;
    display: flex;
    -ms-display: flex;
    justify-content: center;
    -ms-justify-content: center;
    align-items: center;
    -ms-align-items: center;
    z-index: 0;
    position: relative;
}

.swiper-wrap li {
    position: absolute;
    left: 0;
    height: auto;
    width: 100%;
    top:auto;
}
.swiper-wrap li:nth-child(1) {
    position: relative;
}
.swiper-wrap.transition li {
    transition: .5s;
	position: absolute;
}

.swiper-wrap img {
    width: 100%;
	margin: 0 auto;
    display: block;
}
.p1 {
    z-index: 3;
    transform: translateZ(100px) scale(0.28);
    -ms-transform: translateZ(100px) scale(0.28);
    /* transform: transalteZ(10px) 数值越大越上面*/
}
.p2 {
    z-index: 2;
    transform: translate3d(15%, 0, 90px) scale(0.25);	
    -ms-transform: translate3d(15%, 0, 90px) scale(0.25);	
}
.swiper-3 .p3,
.swiper-6 .p6 {
    z-index: 2;
    transform: translate3d(-15%, 0, 90px) scale(0.22);	
    -ms-transform: translate3d(-15%, 0, 90px) scale(0.22);	
}
.swiper-6 .p3,
.swiper-5 .p3 {
    z-index: 1;
    transform: translate3d(26%, 0, 80px) scale(.18);
    -ms-transform: translate3d(26%, 0, 80px) scale(.18);
}

.swiper-6 .p4,
.swiper-4 .p3 {
    transform: translate3d(0%, 0, 80px) scale(.18);
    -ms-transform: translate3d(0%, 0, 80px) scale(.18);
}

.swiper-6 .p5,
.swiper-5 .p4 {
    z-index: 1;
    transform: translate3d(-26%, 0, 80px) scale(0.18);
    -ms-transform: translate3d(-26%, 0, 80px) scale(0.18);
}

.swiper-6 .p6,
.swiper-4 .p4,
.swiper-5 .p5 {
    z-index: 2;
    transform: translate3d(-15%, 0, 90px) scale(.22);
    -ms-transform: translate3d(-15%, 0, 90px) scale(.22);
}

.swiper-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: 3%;
    display: flex;
    justify-content: center;
}

.swiper-dots li {
    width: 30px;
    height: 2px;
    background: #a6a6a6;
    margin-right: 10px;
    float: left;
    transition: .3s;
}

.swiper-dots li:last-child {
    margin: 0;
}

.swiper-dots .active {
    background: #126bdb;
}

@media screen and (max-width: 749px) {
    .swiper-wrap,
    .swiper-navigator {
		height: 180px;
        width: 100%;
    }
	.swiper-wrap img{
		width: 100%
	}
/* 	.swiper-navigator{
		display: none;
	} */
}
@media screen and (min-width: 1360px) {
    .swiper-wrap,
    .swiper-navigator {
        /* width: 1500px; */
    }
}




