

img {
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}





.banner {
    overflow: hidden;
    height: 100vh;
}

.banner .swiper-container {
    height: 100%;
}

.banner .swiper-slide {
    overflow: hidden;
    height: 100%;
}

.banner .swiper-slide::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .8));
    height: 2rem;
}

.banner .swiper-slide>video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.banner .swiper-slide>img {
    height: 100%;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transition: all 2s;
    -webkit-transition: all 2s;
    -moz-transition: all 2s;
    -ms-transition: all 2s;
    -o-transition: all 2s;
}

.banner .swiper-slide-active>img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.banner .mouse {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    bottom: .8rem;
    z-index: 9;
    width: .16rem;
}

.banner .mouse img {
    animation: 1.5s linear 0s infinite alternate mouse;
    -webkit-animation: 1.5s linear 0s infinite alternate mouse;
    background-size: 100%;
}

.banner .swiper-pagination {
    width: 150px !important;
    height: 30px;
    background: url(../images/banner-line.svg)no-repeat center;
    left: 50%;
    bottom: .4rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    background-size: 100% 100%;
}

.banner .swiper-pagination-bullet {
    background-color: #ECC474;
    width: 14px;
    height: 2px;
    opacity: 1;
    position: relative;
    z-index: 2;
}
/*
.banner .swiper-pagination-bullet:nth-child(1),
.banner .swiper-pagination-bullet:nth-child(5) {
    transform: translateY(9px);
    -webkit-transform: translateY(9px);
    -moz-transform: translateY(9px);
    -ms-transform: translateY(9px);
    -o-transform: translateY(9px);
}

.banner .swiper-pagination-bullet:nth-child(2),
.banner .swiper-pagination-bullet:nth-child(4) {
    transform: translateY(15px);
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
}

.banner .swiper-pagination-bullet:nth-child(3) {
    transform: translateY(17px);
    -webkit-transform: translateY(17px);
    -moz-transform: translateY(17px);
    -ms-transform: translateY(17px);
    -o-transform: translateY(17px);
}
*/
.banner .swiper-pagination-bullet-active {
    background: url(../images/baanner-dot-bor.png) no-repeat;
    width: 14px;
    height: 2px;
    opacity: 1;
    position: relative;
    z-index: 2;
}
.banner .swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    
    right: -8px;
    bottom: -3px;
    /*border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #ECC474;*/
	height: 0.5rem;
	width: 0.4rem;
    border-color: #fff;
    background: url(../images/baanner-dot-bor.png) no-repeat;
    background-size: 100% 100%;    
    z-index: 1;
}

