* {
	margin: 0;
	padding: 0;
}
@media only screen and (device-height: 812px) {
	html,
	body {
		min-height: 812px;
	}
}
@media only screen and (device-height: 896px) {
	html,
	body {
		min-height: 896px;
	}
}
html::-webkit-scrollbar {
	display: none;
}
.view {
	min-height: 100vh;
	background: #F84141;
	position: relative;
	height: 100vh;
}
#app {
	position: relative;
	height: 100vh;
    background: #FF4141;
}
img {
	height: auto;
}
.container-bg {
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 7.5rem;
	height: auto;
}
.container {
	position: absolute;
	left: 0;
	right: 0;
	padding-top: 10.8rem;
	/* bottom: 0;
	height: 4.7rem; */
}
.action-box {
	margin: 0.2rem;
}
.action-btn {
	background: url('../image/index/btn@2x.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	-moz-background-size: 100% 100%;
	width: 6.916rem;
	height: 1.916rem;
	margin: 0 auto;
	animation: myBreath 1s linear infinite;
}

.footer {
	padding: .6rem 0 0;
}

.footer_text{
	color: #ffedc7;
	text-align: center;
	font-size: .271rem;
	line-height: .375rem;
	font-family: PingFang SC;
}

@keyframes myBreath {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}
