@keyframes swipe{
	from {transform: none;}
	to {transform: translateX(-1.2rem);}
}
.swipe-obj {
	box-sizing: border-box;
	width: 100%;
	position: relative;
	z-index: 2;
	background: #fff;
	padding:0 .12rem;
	left: 0;
	top: 0;
}	
.swipe-btn {
	width: 1.2rem;
	height: 100%;
	position: absolute;
	top:0;
	right: 0;
	background-color: #ff7360;
	color: #fff;
	span {
		position: absolute;
		left:50%;
		top:50%;
		transform: translate(-50%,-50%);
	}
}