@charset "utf-8";

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

ul,
li {
	list-style: none;
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: #3e3e3e;
}

::selection {
	background: #003e6d;
	color: #fff;
}

input {
	-webkit-appearance: none;
}


html,
body {
	font-family: "microsoft yahei";
	font-size: 14px;
	color: #3e3e3e;
}

/* 去除iphone按钮默认样式代码 */
input[type=button],
input[type=submit],
input[type=file],
button {
	cursor: pointer;
	-webkit-appearance: none;
}

/* 通用回到顶部代码 */
.backTop {
	position: fixed;right: 70px;bottom: -100px;width: 50px;height: 50px;background-color: #fff;box-shadow: 0 0 20px rgba(0, 0, 0, .2);cursor: pointer;line-height: 50px;font-size: 28px;
	border-radius: 50%;z-index: 999;color: rgba(0, 0, 0, .6);text-align: center;-webkit-transition: all .5s;cursor: pointer;
}

.backTop.active {bottom: 50px}
.backTop:hover {background-color: #1e6db6;color: #fff}

 