.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 480px;
    margin: 15px 0 15px 0;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
}

.swiper-slide.current {
    display: block;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
}

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    z-index: 10;
    cursor: pointer;
}

.swiper-button-prev {
    left: 0;
    background: url(swiper-button-prev.png) no-repeat;
}

.swiper-button-next {
    right: 0;
    background: url(swiper-button-next.png) no-repeat;

}

/* Pagination Styles */
.swiper-pagination {
    position: absolute;
    text-align: center;
    bottom: 10px;
    left: 0;
    width: 100%;
    z-index: 10;

}

/* Bullets */
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
    margin: 0 5px;
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff;
}

.swiper-slide-text {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 92px;
    width: 100%;
    background: #666;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
}

.swiper-slide-text-cnt {
    color: #FFFFFF;
    font-size: 30px;
    padding-top: 12px;
    margin-left: 90px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.swiper-slide-text-ifo {
    margin-left: 90px;
    font-size: 12px;
    color: #FFFFFF;
}