@charset "utf-8";
html {
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: none;/*取消浏览器最小字体限制*/
}

input[type="submit"], input[type="reset"], input[type="button"], input:focus, button:focus, select:focus, textarea:focus {
	outline: none;
}

input {
	font-family: "微软雅黑";
	-webkit-appearance: none;
	resize: none;
	border-radius: 0;
}

body, div, ul, li, ol, h1, h2, h3, h4, h5, h6, input, textarea, select, p, dl, dt, dd, a, img, button, form, table, th, tr, td, tbody, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

img {
	max-width: 100%;
	height: auto;
	width: auto\9;
	-ms-interpolation-mode: bicubic;
}

body, div, ul, li, ol, h1, h2, h3, h4, h5, h6, input, textarea, select, p, dl, dt, dd, a, img, button, form, table, th, tr, td, tbody, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	margin: 0;
	padding: 0;
	border: none;
}

em, i {
	font-style: normal;
}

strong {
	font-weight: normal;
}

a {
	text-decoration: none;
}

ul, ol {
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}

img {
	border: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
.fl{float: left;}
.fr{float: right;}
.clear{clear: both;}
.flex{
	display: flex;
}
.flex-center{
	display: flex;
	align-items: center;
}
.flex-center-center{
	display: flex;
	align-items: center;
	justify-content: center;
}
.flex-end{
	display: flex;
	align-items: flex-end;
}
.flex-between{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.flex-wrap{
	display: flex;
	flex-wrap: wrap;
}
.flex-direction{
	display: flex;
	flex-direction:column;
}
.ellipsis01{
	overflow: hidden;
	white-space: nowrap;
	text-overflow:ellipsis;
}
.ellipsis02{
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
body {
	margin: 0 auto;
	font-size: 0.6rem;
	-webkit-text-size-adjust: none!important;/*取消浏览器最小字体限制*/
	-webkit-overflow-scrolling: touch;/*流畅滚动*/
	font-family: "PingFang SC", "微软雅黑", "Microsoft YaHei", Helvetica, "Helvetica Neue", Tahoma, Arial, sans-serif;
	-webkit-tap-highlight-color: transparent;
}
        