@charset "utf-8";

* {
	box-sizing: border-box;
}

body,
html {
	height: 100%;
	overflow: hidden;
	background: linear-gradient(to right bottom, #00d789, #00bfb0);
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo {
	border-radius: 30px;
	padding: 5px;
	display: block;
	width: 92px;
	margin: 0 auto;
	background-color: white;
}

.language {
	margin: 15px 60px 0 0;
	position: absolute;
	right: 0;
	text-align: right;
	margin-right: 25px;
	top: 0;
	color: #fdfdfd;
}

.app-name {
	font-size: 22px;
	padding-top: 8px;
	text-align: center;
	color: white;
}

.apk-down-tips {
	width: 240px;
	margin-top: 20px;
	color: white;
	text-align: center;
	display: none;
}

.download {
	padding: 30px 0 50px 0;
}

.download a {
	display: block;
	width: 171px;
	height: 43px;
	background: #fff;
	background-size: 123px auto;
	border-radius: 999px;
	margin: auto;
}

.download a.android {
	text-align: center;
	color: #00c7a4;
	font-size: 16px;
	line-height: 42px;
}

.download a.ios {
	text-align: center;
	color: #00c7a4;
	font-size: 16px;
	line-height: 40px;
}

.apk-down {
	display: flex;
    justify-content: space-evenly;
    height: 30px;
    text-align: center;
	line-height: 30px;
	display: none;
	margin-top: 20px;
}

.cancel {
	width: 60px;
	color: white;
}

.apk-down-btn {
	width: 140px;
	color: #00c7a4;
	border-radius: 30px;
	background-color: white;
}

.bottom-img {
	width: 90%;
	margin: auto;
	position: relative;
}

.bottom-img .bg,
.bottom-img .phone {
	width: 100%;
}

.bottom-img .phone {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	animation: phoneAni 1s linear infinite alternate;
}

@keyframes phoneAni {
	100% {
		top: 10px;
	}
}

.open-tips {
	position: fixed;
	z-index: 9;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .8);
	overflow: hidden;
	display: none;
}

.open-tips img {
	width: 300px;
	float: right;
	margin-right: 20px;
}