@charset "utf-8";

/* 重置样式 */

* {
	-webkit-tap-highlight-color: transparent;
	outline: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

img {
	width: 100%;
	height: auto;
	border: 0 none;
	vertical-align: top;
}

i,
em {
	font-style: normal;
}

ol,
ul {
	list-style: none;
}

input,
select,
button,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-family: inherit;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a,
a:visited {
	text-decoration: none;
	color: #333;
}

body {
	background: #f5f5f5;
	font-size: 14px;
	font-family: -apple-system, Helvetica, sans-serif;
	line-height: 1.5;
	color: #333;
	-webkit-text-size-adjust: 100% !important;
}

p {
	display: block;
	margin-block-start: 0px !important;
	margin-block-end: 0px !important;
	margin-inline-start: 0px !important;
	margin-inline-end: 0px !important;
}

html,
body,
#root {
	height: 100%;
	background: #fff;
	font-family: 'PingFangSC-Regular', 'PingFang SC';
}

body {
	height: 100%;
	overflow: auto;
	margin: 0;
}

.clearFix {
	zoom: 1;
}

.clearFix:after {
	/*：after伪对象选择符---在这个对象被浏览器渲染后添加一定的内容*/
	content: '.';
	/*content属性：添加的内容在这里属性的值里面,必须写*/
	display: block;
	/*将添加的进去的内容转化为块元素*/
	visibility: hidden;
	/*visibility：可视化属性，控制元素是否可见，但无论是否可见，但都保留其物理空间*/
	height: 0;
	/*将添加进去的内容高度设置为0，清楚其占位*/
	clear: both;
}

.single-line {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.displayFlex {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	-webkit-align-items: center;
}

.flex1 {
	flex: 1;
}
