@charset "utf-8";
/* ===抽卡界面10张卡顺序出现时的效果=== */
.box0 {
	animation-delay: 0s;/* 出现时间的延迟 */
}
.box1 {
	animation-delay: 0.1s;
}
.box2 {
	animation-delay: 0.2s;
}
.box3 {
	animation-delay: 0.3s;
}
.box4 {
	animation-delay: 0.4s;
}
.box5 {
	animation-delay: 0.5s;
}
.box6 {
	animation-delay: 0.6s;
}
.box7 {
	animation-delay: 0.7s;
}
.box8 {
	animation-delay: 0.8s;
}
.box9 {
	animation-delay: 0.9s;
}

@keyframes card_show {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes card_flash {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
		filter: blur(10px);
		-webkit-filter: blur(10px);
	}
	100% {
		opacity: 0;
		filter: blur(0px);
		-webkit-filter: blur(0px);
	 }
}

@keyframes pickup {
	0% {
		box-shadow: 0 3px 8px 2px #666;
	}
	50% {
		box-shadow: 0 0 15px 5px #d9534f;
		background-color: #d9534f;
		color: black;
	}
	100% {
		box-shadow: 0 3px 8px 2px #666;
	 }
}
/* ================================== */
.scroll-tip {
	position: fixed;
	z-index: 100;
	padding-top: 70px;
	width: 20px;
	height: 20px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.scroll-tip::before {
	animation: scroll 3.5s infinite;
	border: solid #ff9800;
	border-width: 0 0 2px 2px;
	content: "";
	display: inline-block;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	transform: rotate(-45deg);
	width: 20px;
	height: 20px;
}
@keyframes scroll {
	0% {
		transform: rotate(-45deg) translate(0, 0);
	}
	80% {
		transform: rotate(-45deg) translate(-30px, 30px);
	}
	0%, 80%, 100% {
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
}
/* ================================== */
/* ================================== */
/* ================================== */
/* ================================== */
/* ================================== */
/* ================================== */