

html {
	font-size: 100px;
}

body {
	margin: 0;
	padding: 0;
	background-color:#7e0000;
	font-family: "Microsoft YaHei"
}

.container {
	position: relative;
	max-width: 720px;
	margin: 0 auto;
	background-color:#f6f6f6;
}

.kefu a{
	position: fixed;
	top: 10%;
	right: 2%;
	width: 1rem;
	height: 1rem;
	background-image: url("../img/btn_advisory.png");
	background-size: 100% 100%;
	z-index: 999;
}

.container .downBtn{
	position: absolute;
	top: 65%;
	left: 15%;
	width: 70%;
	height: 1.2rem;
	background-image: url("../img/teen-patti-vungo-btn.gif");
	background-size: 100% 100%;
	background-repeat: no-repeat;
	animation: rotate .8s linear infinite;
}
.container .online{
	position: absolute;
	top: 58%;
	left: 52%;
	width: 2.2rem;
	height: 1.2rem;
	background-image: url("../img/bg_online.gif");
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

.telegram a{
	position: absolute;
	top: 74.5%;
	left: 30%;
	width: 40%;
	height: 1rem;
	align-items: center;
	background-image: url("");
	background-size: 100% 100%;
	z-index: 999;
}

.container .footer{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 1rem;
	color: #ffffff;
}

.footer p{
	padding: 0;
	margin: 0;
}

@keyframes rotate {
	0% {
		transform: scale(1)
	}
	50% {
		transform: scale(0.85)
	}
	100% {
		transform: scale(1)
	}
}