@charset "utf-8";

/* CSS Document */
.swiper-container {
    margin: 40px 0;
}

.swiper-slide {
    width: 860px;
    position: relative;
}

.swiper-slide .info {
    position: absolute;
    top: 70px;
    left: 50px;
}

.swiper-slide .title {
    font-weight: bold;
    font-size: 36px;
    color: #FFFFFF;
    line-height: 24px;
    text-align: left;
    padding-bottom: 30px;
}

.swiper-slide .sub-title {
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 30px;
    width: 600px;
}

.swiper-slide>img {
    height: 420px;
    width: 100%;
    border-radius: 6px;
}

.swiper-slide a {
    transition: 0.2s;
}

.swiper-slide a:hover {
    opacity: .6;
}

.swiper-pagination {
    text-align: center;
    width: 100%;
    margin-top: 10px;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #02328d;
}

.swiper-button-prev {
    width: 50%;
    height: 420px;
    left: -450px;
    top: 0;
    border-radius: 6px;
    margin-top: 0;
    z-index: 99;
    transition: 0.2s;
    background: rgba(0, 0, 0, .4);
}

.swiper-button-prev:before {
    content: '';
    position: absolute;
    width: 15px;
    height: 100%;
    left: 94%;
    top: 50%;
    margin-top: -180px;
}

.swiper-button-next {
    width: 50%;
    height: 420px;
    right: -450px;
    top: 0;
    border-radius: 6px;
    margin-top: 0;
    z-index: 99;
    transition: 0.2s;
    background: rgba(0, 0, 0, .4);
}

.swiper-button-next:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 100%;
    right: 94%;
    top: 50%;
    margin-top: -180px;
    transform: rotate(180deg);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    /* opacity: 0.6; */
}