*, :after, :before{box-sizing:border-box}
body, h1,h2,h3,h4,h5,h6, hr, p, blockquote,pre, dl,dt,dd,ul,li,ol,th,td, img,form,fieldset,legend,button,select,input,textarea{margin:0; padding:0} 
article,aside,details,figcaption,figure,summary,hgroup,section,nav,menu,header,main,footer{display:block}
body, html{-webkit-tap-highlight-color:rgba(0,0,0,0)}
input,button,select,a{display:inline-block; box-shadow:none; outline:none; border:none}
img{max-width:100%; border:0px}
a,a:hover{outline:none; text-decoration:none; color:#fff; cursor:pointer}
body{    
    font:12px v-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";   
    color: #fff;
    background-color: #15171d;
}
.container {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
}
.header {
	padding: 0 15px 20px;
	text-align: center;
}
.download-tip {
	padding: 15px 0 0;
	text-align: center;
}
.download-tip a {
	font-size: 16px;
	color: #da2538;
}
.download {
	padding: 20px 2%;
	text-align: center;
	overflow: hidden;
}
.download a {
	width: 46%;
	margin: 0 2%;
	padding: 16px 10px;
	background-color: #da2538;
	border-radius: 10px;
	display: inline-block;
	position: relative;
	overflow: hidden;
}
.download a img {
	width: 20px;
	vertical-align: middle;
	display: inline-block;
}
.download a span {
	height: 20px;
	line-height: 20px;
	font-size: 16px;
	vertical-align: middle;
	display: inline-block;
}
.download .badge {
	width: 42px;
	position: absolute;
	left: 0;
	top: 0;
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.85);
}
.popup {
    position: fixed;
	max-height: 100%;
	overflow-y: auto;
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	transition: transform .3s;
	transition: transform .3s,-webkit-transform .3s;
	-webkit-overflow-scrolling: touch;
}
.popup .popup-close-icon {
	width: 30px;
	height: 30px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
    cursor: pointer;
}
.popup-center {
	top: 50%;
	left: 50%;
	-webkit-transform: translate3d(-50%,-50%,0);
	transform: translate3d(-50%,-50%,0);
}
.popup-bottom {
	bottom: 0;
	left: 0;
	width: 100%;
}
.animate-fade-enter-active {
    -webkit-animation: .3s animate-fade-in both ease-out;
    animation: .3s animate-fade-in both ease-out;
}
.animate-fade-leave-active {
    -webkit-animation: .3s animate-fade-out both ease-in;
    animation: .3s animate-fade-out both ease-in;
}
.animate-slide-center-enter-active {
    -webkit-animation: .3s animate-bounce-in both ease-out;
    animation: .3s animate-bounce-in both ease-out;
}
.animate-slide-center-leave-active {
    -webkit-animation: .3s animate-bounce-out both ease-in;
    animation: .3s animate-bounce-out both ease-in;
}
.animate-slide-bottom-enter-active {
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.animate-slide-bottom-leave-active {
	-webkit-transition-timing-function: ease-in;
	transition-timing-function: ease-in;
}
.animate-slide-bottom-enter,
.animate-slide-bottom-leave-active {
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
}
@-webkit-keyframes animate-fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}
@keyframes animate-fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}
@-webkit-keyframes animate-fade-out {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}
@keyframes animate-fade-out {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}
@-webkit-keyframes animate-bounce-in {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-50%,-50%,0) scale(.5);
        transform: translate3d(-50%,-50%,0) scale(.5)
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(-50%,-50%,0) scale(1);
        transform: translate3d(-50%,-50%,0) scale(1)
    }
}
@keyframes animate-bounce-in {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-50%,-50%,0) scale(.5);
        -ms-transform: translate3d(-50%,-50%,0) scale(.5);
        transform: translate3d(-50%,-50%,0) scale(.5)
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(-50%,-50%,0) scale(1);
        -ms-transform: translate3d(-50%,-50%,0) scale(1);
        transform: translate3d(-50%,-50%,0) scale(1)
    }
}
@-webkit-keyframes animate-bounce-out {
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-50%,-50%,0) scale(.7);
        transform: translate3d(-50%,-50%,0) scale(.7)
    }
    30% {
        -webkit-transform: translate3d(-50%,-50%,0) scale(1.05);
        transform: translate3d(-50%,-50%,0) scale(1.05)
    }
    0% {
        -webkit-transform: translate3d(-50%,-50%,0) scale(1);
        transform: translate3d(-50%,-50%,0) scale(1)
    }
}
@keyframes animate-bounce-out {
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-50%,-50%,0) scale(.7);
        -ms-transform: translate3d(-50%,-50%,0) scale(.7);
        transform: translate3d(-50%,-50%,0) scale(.7)
    }
    30% {
        -webkit-transform: translate3d(-50%,-50%,0) scale(1.05);
        -ms-transform: translate3d(-50%,-50%,0) scale(1.05);
        transform: translate3d(-50%,-50%,0) scale(1.05)
    }
    0% {
        -webkit-transform: translate3d(-50%,-50%,0) scale(1);
        -ms-transform: translate3d(-50%,-50%,0) scale(1);
        transform: translate3d(-50%,-50%,0) scale(1)
    }
}
.popup-guide {
	width: 100%;
	height: 100%;
}
.popup-guide .container {
	padding: 20px 0;
}
.popup-guide .container h3 {
	padding: 10px;
	text-align: center;
	font-size: 18px;
	color: #da2538;
}
.popup-guide .container h4 {
	padding: 10px 15px;
	font-size: 15px;
}
.popup-guide .container p {
    padding: 5px 10px 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #b3b3b3;
}
.popup-guide .container p img {
    width: 68%;
	max-width: 300px;
    margin: 0 auto;
    display: block;
}
.popup-qrcode {
	width: 80%;
	max-width: 320px;
	padding: 20px;
}
.popup-qrcode p {
	font-size: 16px;
	line-height: 1.8;
	text-align: center;
}
.popup-qrcode .qrcode {
	width: 176px;
	margin: 10px auto;
	padding: 10px;
	background-color: #fff;
	border-radius: 10px;
}
@media (max-width: 480px) {
	.download a {
		padding: 12px 5px;
	}
	.download a img {
		width: 18px;
	}
	.download a span {
		height: 18px;
		line-height: 18px;
		font-size: 14px;
	}
}