.banner {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	--swiper-theme-color: #6c807e;
	--swiper-pagination-color: #ffffff;
	--swiper-width15: 15px
}

.banner ul li {
	width: 100%;
	height: 100%;
	min-height: 100px;
	display: flex;
	align-items: center;
	background: #000;
	vertical-align: bottom;
	justify-content: center;
	position: relative;
	overflow: hidden
}

.banner ul li img {
	font-size: 0;
	display: block;
	width: 100%;
	max-width: 100%;
	object-fit: cover;
	transition: all 4s ease;
	transform: scale(1.2);
	height: 100%
}

.banner ul li.active img {
	transform: none
}
#baner_pagination{
	bottom: 1%;
    text-align: center;
    width: 100%;
}
#baner_pagination span {
	width: var(--swiper-width15);
	height: var(--swiper-width15);
	margin: 0 5px;
}

@media screen and (max-width: 960px) {
	.banner ul li {
		height: auto
	}
}