@charset "utf-8";
/* 幻灯片 */
.banner .item {
	display: block;
	position: relative;
}
.banner .bg_litpic {
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}
.banner .item .box {
	width: max-content;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	padding: 0 .15rem;
}
.banner .item .box .title {
	font-size: .6rem;
	font-weight: bold;
	color: #FFFFFF;
	text-shadow: 0 .02rem .05rem rgba(6,6,6,0.85);
	margin-bottom: .3rem;
}
.banner .item .box .desc {
	font-size: .18rem;
	color: #FFFFFF;
	text-shadow: 0 .02rem .05rem rgba(6,6,6,0.85);
	margin-bottom: .6rem;
}
.banner .item .box .btn {
	width: 1.5rem;
	height: .45rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: .01rem solid #FFFFFF;
	margin: 0 auto;
	font-size: .16rem;
	color: #FFFFFF;
	transition: all .3s;
}
.banner .item .box .btn:hover {
	border: .01rem solid #fabd0a;
	color: #fabd0a;
}

.banner .swiper-pagination {
	bottom: 4%;
}

.banner .swiper-pagination-bullet {
	width: .8rem;
	height: .08rem;
	border-radius: 0;
	margin: 0 .12rem!important;
	background: rgba(182, 180, 180, .7);
}

.banner .swiper-pagination-bullet-active {
	background: rgba(255, 204, 0, .8);
}

@media (max-width: 767px) {
	.banner .item .box {
		width: 100%;
	}
	.banner .item .box .desc {
		font-size: .24rem;
	}
	.banner .item .box .btn {
		width: 2rem;
		height: .6rem;
		font-size: .24rem;
	}
}
/* 幻灯片 */