/* 公共样式表css */
html,
body {
	color: #333;
	margin: 0;
	min-height: 100%;
	font-family: "Myriad Set Pro", "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: normal;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/* transition: all .3s ease-in-out 0s;  */
}

a {
	text-decoration: none;
	color: #333;
}

a,
label,
button,
input,
select {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
	border: 0;
}

body {
	background-color: #fff !important;
	color: #333;
	position: relative;
}

html,
body,
div,
dl,
dt,
dd,
ol,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
button,
fieldset,
form,
input,
legend,
textarea,
th,
td {
	margin: 0;
	padding: 0;
	word-break: break-all;
	letter-spacing: 1px;
	font-size: .28rem;
}


button {
	outline: 0;
}

img {
	border: 0;
}

button,
input,
optgroup,
select,
textarea {
	margin: 0;
	font: inherit;
	color: inherit;
	outline: none;
	font-size: 0.28rem;
}

li {
	list-style: none;
}

body {
	margin: 0 auto;
	overflow-x: hidden;
}

p,
li,
span,
a,
input,
select,
textarea,
button,
label {
	font-size: 0.28rem;
	color: #333;
	word-break: break-all;
}

button,
input {
	border: none;
	background: none;
}

textarea {
	resize: none
}

/* 兼容苹果手机 */
input[type=button],
input[type=submit],
input[type=file],
button {
	cursor: pointer;
	-webkit-appearance: none;
}


/* 容器 */
.container {
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	margin: 0 auto;
	position: relative;
}

