/* 设置盒模型大小 */
* {
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*::before,
*::after {
	box-sizing: border-box;
}

/* 页面显示相关 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: 'PingFang SC','Microsoft Yahei'
}
body{
	//overflow: hidden;
}
/* 清除内外边距 */
pre,
th,
td,
dl,
dt,
dd,
ul,
ol,
li,
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
form,
fieldset,
legend,
input,
button,
textarea,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

/* 重置列表元素 */
ul,
ol,
li{
	list-style: none;
}

/* 重置链接样式 */
a {
	background-color: transparent;
	text-decoration: none;
	outline: none;
	cursor: pointer;
}

a:hover,
a:active {
	color: inherit;
	outline: 0;
	text-decoration: none;
}

a[disabled] {
	color: inherit;
	pointer-events: none;
}

/* 清除浮动 */
.clearfix::after {
	content: "";
	display: block;
	height: 0;
	line-height: 0;
	clear: both;
	visibility: hidden;
}

/* 兼容ie */
.clearfix {
	zoom: 1;
}

/* 重置标题样式 */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: 400;
}

/* 斜体扶正 */
address,
cite,
dfn,
em,
var {
	font-style: normal;
}


fieldset,
img {
	border: 0;
}

/* ie字体兼容 */
button,
input,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

input::-ms-clear,
input::-ms-reveal {
	display: none;
}

main {
	display: block;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

pre {
	font-family: monospace, monospace;
	font-size: 1em;
}



abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

b,
strong {
	font-weight: bolder;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

small {
	font-size: 12px;
}

sub,
sup {
	font-size: 12px;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

img {
	border-style: none;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

details {
	display: block;
}

summary {
	display: list-item;
}

template {
	display: none;
}

[hidden] {
	display: none;
}

::-webkit-input-placeholder {
	/* WebKit browsers */
	color: #95A2B7;
}

:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #95A2B7;
}

::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #95A2B7;
}

:-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: #95A2B7;
}

.__panel {
	overflow: hidden auto !important;
}


/* WebKit浏览器 */
input:focus::-webkit-input-placeholder {
	color: rgba(0, 0, 0, 0)
}

/* Firefox 4 至 18 */
input:focus:-moz-placeholder {
	color: rgba(0, 0, 0, 0)
}

/* Firefox 19+ */
input:focus::-moz-placeholder {
	color: rgba(0, 0, 0, 0)
}

/* IE 10+ */
input:focus:-ms-input-placeholder {
	color: rgba(0, 0, 0, 0)
}

/* WebKit浏览器 */
textarea:focus::-webkit-input-placeholder {
	color: rgba(0, 0, 0, 0)
}

/* Firefox 4 至 18 */
textarea:focus:-moz-placeholder {
	color: rgba(0, 0, 0, 0)
}

/* Firefox 19+ */
textarea:focus::-moz-placeholder {
	color: rgba(0, 0, 0, 0)
}

/* IE 10+ */
textarea:focus:-ms-input-placeholder {
	color: rgba(0, 0, 0, 0)
}
