* {
	margin: 0;
	padding: 0;
	outline: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body,
html {
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	-webkit-overflow-scrolling: touch;
}

body {
	font: 0.28rem -apple-system-font, HSSM, Arial;
	color: #333;
	background-color: #fff;
	--color: #0070d5;
	margin: 0 auto !important;
	font-family: "AlibabaPuHuiTiR";
}

body,
header,
div,
ul,
li,
p,
a,
span,
form,
input,
textarea,
button {
	margin: 0;
	padding: 0;
}

header,
footer,
nav,
article,
aside,
section {
	display: block;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	color: #999;
}

input,
select,
textarea,
button {
	font: inherit;
	color: inherit;
	border: none;
	border-radius: 0;
	background-color: transparent;
	/* -webkit-appearance: none; */
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	/* -webkit-appearance: none; */
	margin: 0;
	height: auto;
}

textarea {
	resize: none;
}

table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	border: none;
}

table tr, table td, table th {
	border: none;
}

img {
	border: none;
	image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

li {
	list-style: none;
}

a {
	border: 0;
	color: #999;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.clear {
	zoom: 1;
	clear: both
}

.clear:after {
	content: "";
	display: block;
	clear: both
}

.fl {
	float: left
}

.fr {
	float: right
}

.hide {
	display: none;
}

.white {
	background-color: #fff;
}

.left {
	display: flex;
	flex-wrap: wrap;
}

.right {
	display: flex;
	justify-content: flex-end;
}

.between {
	display: flex;
	justify-content: space-between;
}

.around {
	display: flex;
	justify-content: space-around;
}

.center {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.centerT {
	display: flex;
	justify-content: center;
	align-items: center;
}

.cut {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.cutTwo {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.cutThree {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

@font-face {
	font-family: "AlibabaPuHuiTiR";
	src: url(../fonts/Alibaba-PuHuiTi-Regular.ttf)
}
@font-face {
	font-family: "AlibabaPuHuiTiM";
	src: url(../fonts/Alibaba-PuHuiTi-Medium.ttf)
}
@font-face {
	font-family: "AlibabaPuHuiTiB";
	src: url(../fonts/Alibaba-PuHuiTi-Bold.ttf)
}

.noData {
	width: 100%;
	color: #333;
	font-size: 0.4rem;
	padding: 1rem 0;
	text-align: center;
}

/* 分页 */
.pagination {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 0.4rem;
}

.pagination li {
	display: none;
	margin: 0 0.2rem;
}

.pagination li:first-child,
.pagination li:last-child,
.pagination li.active {
	display: block;
}

.pagination li a,
.pagination li span {
	display: block;
	background-color: var(--color);
	border-radius: 0.08rem;
	color: #fff;
	font-size: 0.24rem;
	line-height: 0.6rem;
	width: 1.4rem;
	text-align: center
}

.pagination .active a,
.pagination .active a:focus,
.pagination .active a:hover,
.pagination .active span,
.pagination .active span:focus,
.pagination .active span:hover {
	color: #fff;
	cursor: default;
	background-color: var(--color);
}

.pagination li a:focus,
.pagination li a:hover,
.pagination li span:focus,
.pagination li span:hover {
	cursor: pointer;
	color: #fff;
	background-color: var(--color);
}


/* pageCommon */
.pageCommon {
	width: 100%;
	padding: 0.4rem 0.3rem 1rem;
}

.pageCommon h4 {
	width: 100%;
	margin-top: 0.6rem;
	text-align: center;
	color: #333;
	font-size: 0.36rem;
	line-height: 0.4rem;
	font-weight: normal;
}
@-webkit-keyframes toTop  {0%{opacity: 0; transform: translateY(-1rem);}100%{ transform: translateY(0); opacity: 1;}}
@-moz-keyframes toTop  {0%{opacity: 0; transform: translateY(-1rem);}100%{ transform: translateY(0); opacity: 1;}}
@keyframes toTop  {0%{opacity: 0;transform: translateY(-1rem); opacity: 0;}100%{ transform: translateY(0); opacity: 1;}}

@-webkit-keyframes toBottom  {0%{opacity: 0; transform: translateY(0.5rem);}100%{ transform: translateY(0); opacity: 1;}}
@-moz-keyframes toBottom  {0%{opacity: 0; transform: translateY(0.5rem);}100%{ transform: translateY(0); opacity: 1;}}
@keyframes toBottom  {0%{opacity: 0;transform: translateY(0.5rem); opacity: 0;}100%{ transform: translateY(0); opacity: 1;}}




