/*ios移动端关于事件绑定区域点击闪屏的解决*/

body,
html {
	/*font-family: 'NotoSansCJKsc-Regular';*/
	width: 100%;
	height: 100%;
	font-size: 12px;
	margin: 0;
	padding: 0;
	border: none;
	overflow-x: hidden;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-overflow-scrolling: touch;
	/*去除点击出现的颜色*/
	/*font-size: calc(266.67% + 57.3333 * (100vw - 320px) / 430);*/
	font-size: calc(100vw / 750 * 100);
}

img {
	border: 0;
}

a {
	text-decoration: none;
	color: #000;
	outline: none;
}

a:hover {
	text-decoration: none;
}

em,
strong,
i {
	font-style: normal;
}

li {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
span,
strong,
i,
ul,
li,
label,
button,
p,
input {
	font-size: 100%;
	font-weight: normal;
	margin: 0;
	padding: 0;
}

button {
	background-color: #fff;
}

textarea {
	margin: 0;
	padding: 0;
	outline: none;
	border: none;
	resize: none;
}


/*输入框,多行输入框在IOS上的默认样式清除*/

input[type="button"],
input[type="submit"],
input[type="reset"] {
	-webkit-appearance: none;
}

textarea {
	-webkit-appearance: none;
}

input {
	box-sizing: border-box;
	line-height：normal;
	outline: none;
	-webkit-appearance: none;
	/*去除系统默认样式*/
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	/*点击高亮的颜色*/
	-webkit-user-select: auto;
	-webkit-user-modify: read-write-plaintext-only;
}

input[type=button],
input[type=submit],
input[type=file],
button {
	cursor: pointer;
	-webkit-appearance: none;
}

input,
button {
	-webkit-appearance: none;
	outline: none;
	border: none;
	background: none;
}

input {
	box-sizing: border-box;
	line-height: normal;
	outline: none;
	-webkit-appearance: none;
	/*去除系统默认样式*/
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	/*点击高亮的颜色*/
	/*-webkit-user-select: auto;*/
	-webkit-user-modify: read-write-plaintext-only;
	-webkit-user-select: text !important;
}
/*::-webkit-scrollbar{
	width: 0;
	height: 0;
	color: transparent;
}*/
/*底部*/

#footer{
	width: 100%;
	height: 1.56rem;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 1;
	display: flex;
	background: #111C39;
}
.footera{
	width: 50%;
	height: 1.56rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 0.24rem;
	color: #4A576A;
}
.footera>img{
	width: 0.72rem;
	height:0.72rem;
}
.head{
	width: 2rem;
	height: 2rem;
	background: #111C39;
	border-radius: 50%;
	position: fixed;
	left: 50%;
	bottom: 0.3rem;
	margin-left: -1rem;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
}
.head>img{
	width: 1.58rem;
	height: 1.58rem;
	border-radius: 50%;
	background: linear-gradient(#00B0F1,#00BFD8);
}
