﻿@charset "utf-8";
#banner_container {
    overflow: hidden;
}

.banner-carousel {
    max-width: 100%;
    width: 100%;
    height: 500px;
    margin: 0 auto;
    background-color: #f1f1f1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.banner-carousel .swiper-slide {
    display: block;
    max-width: 1400px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #999;
    opacity: .38;
    transition: all .3s ease
}

.banner-carousel .swiper-slide-active {
    opacity: 1
}

.banner-carousel-title {
    position: absolute;
    right: 0%;
    /*transform: translateX(50%);*/
    bottom: 0;
    max-width: 390px;
    width: 30%;
    height: 60px;
    line-height: 60px;
    padding: 0 170px 0 30px;
    text-align: left;
    background-color: rgba(0, 0, 0, .5);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease
}

.banner-carousel-title h3 {
    line-height: 60px;
    font-size: 16px;
    font-weight: 700;
    color: #fff
}

.banner-carousel .swiper-slide-active .banner-carousel-title {
    opacity: 1;
    visibility: visible
}

/*.banner-controls {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    max-width: 1400px;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    margin: 0 auto*/
/*}*/

.banner-pagination.swiper-pagination {
    left: auto;
    right: 30px;
    bottom: 10px;
    width: auto;
    color: #fff;
    font-size: 24px
}

.banner-pagination.swiper-pagination span {
    margin-left: 8px;
    color: var(--color-accent);
    font-weight: 700
}