html,body,div,img,p,a{
	padding: 0;
	margin: 0;
}
html{
	height: 100%;
}
body{
	background-image: url('../img/bg.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

@font-face{
	font-family: dingding;
	src:url('../fonts/DingTalk JinBuTi.ttf');
}

.logo{
	width: 100px;
	height: 100px;
	border-radius: 10px !important;
	-moz-border-radius: 10px; /* Mozilla浏览器的私有属性 */
	-webkit-border-radius: 10px; /* Webkit浏览器的私有属性 */
	-ms-border-radius:10px;
	-o-border-radius: 10px;
	margin-top: 85px;
}

.app_name{
	font-size: 23px;
	font-family: dingding;
	font-weight: 400;
	color: #333333;
	height: 23px;
	line-height: 23px;
	text-align: center;
	margin-top: 24px;
}

a{
	text-decoration: none;
	display: inline-block;
	-webkit-user-select: none;
	-moz-user-focus: none;
    -moz-user-select: none;
}
a:hover{
	-webkit-tap-highlight-color:rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
    outline:none;
    text-decoration: none;
}
.download_container{
	display: flex;
	flex-direction: column;
	align-items: center;
	position: fixed;
	bottom: 40px;
}
.ios_icon{
	width: 22px;
	height: 22px;
}
.down_text{
	height: 17px;
	font-size: 16px;
	font-family: PingFang SC;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 17px;
	margin-left: 14px;
}
.download{
	width: 268px;
	height: 50px;
	background: #2774F2;
	border-radius: 25px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.cover_bg{
	position: fixed;
	left: 0;
	width: 100%;
	height: 100%;
	top: 0;
	display: none;
}
.cover_bg img{
	width: 100%;
	height: 100%;
}