.lbt-box {
	position: relative;
	width: 14.6rem;
	height: 6rem;
	margin: 0 auto;
	margin-top: 1rem;
}

.imgs {
	width: 100%;
	height: 100%;
	perspective: 1000px;
}

.imgitem {
	position: absolute;
	width: 4rem;
	height: 4.2rem;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 0;
	transition: .8s;
	opacity: 0;
}
.imgitem a{
display:block;
width:100%;
height:100%;
}
.imgitem:active{
	cursor: grabbing;

}
.imgitem img {
	width: 100%;
	height: 100%;
    object-fit: cover;
}

.cur-img {
	width: 9.6rem;
	z-index: 100;
	height: 4.9rem;
	opacity: 1;
}

.pre-img {
	transform: translateX(-5.3rem) rotateY(50deg) scale(0.8);
	z-index: 9;
	opacity: 0.9;
}

.next-img {
	transform: translateX(5.3rem) rotateY(-50deg) scale(0.8);
	z-index: 9;
	opacity: 0.9;
}

.handle {
	display: flex;
	justify-content: center;
}
.handle button{
	background-color: transparent;
	border: none;
	cursor: pointer;
}
.handle span{
	font-size: 14px;
}