.wrapper .swiper-container .swiper-pagination {
    bottom: 25px;
}

.wrapper .swiper-container .swiper-pagination-bullet {
    opacity: 1;
    position: relative;
    width: 50px;
    height: 3px;
    border-radius: 0;
    margin: 0 4px;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color .3s ease;
}

.wrapper .swiper-container .swiper-pagination-bullet::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: 0 0;
}

.wrapper .swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    animation: sliderPagination 3s linear forwards
}

.wrapper .swiper-container .swiper-pagination-bullet:hover {
    background-color: #fff;
}

@keyframes sliderPagination {
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

.diepic {
    position: relative;
    width: 100%;
    margin: 20px auto 0 auto
}

.diepic h2 {
    font-size: 36px;
    margin-bottom: 17px;
    text-align: center;
    font-weight: normal;
    line-height: 42px;
    height: 60px;
}

.diepic .swiper-container {
    padding-bottom: 60px;
}

.diepic .swiper-slide {
    width: 50%;
    height: 210px;
    background: #fff;
    box-shadow: 0 6px 10px 0 rgba(20, 34, 67, .1);
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    cursor: pointer;
    text-align: center;
}

.diepic .swiper-slide img {
    width: 100%;
    text-align: center;
    display: block;
}

.diepic .swiper-slide p {
    line-height: 98px;
    padding-top: 0;
    text-align: center;
    color: #636363;
    font-size: 1.1em;
    margin: 0;
}

.diepic .swiper-pagination {
    width: 100%;
    bottom: 30px;
}

.diepic .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
    /* border: 3px solid #fff; */
    overflow: hidden;
    background-color: #030000;
    width: 10px;
    height: 10px;
    opacity: .6;
}

.diepic .swiper-pagination-bullets .swiper-pagination-bullet-active {
    width: 34px;
	display: inline-block;
	height: 10px;
	border-radius: 10px;
	transition: width .4s cubic-bezier(.4, 0, .2, 1);
	background-image: linear-gradient(80deg, #0989c5, #995cb6);
	opacity: 1;
}

.diepic .swiper-button-prev {
    left: 10px;
    top: 230px;
    width: 36px;
    height: 36px;
}

.diepic .swiper-button-next {
    right: 10px;
    top: 230px;
    width: 36px;
    height: 36px;
}