*,:after,:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body,button,dd,div,dl,dt,form,h1,h2,h3,input,li,p,select,textarea,ul {
	margin: 0;
	padding: 0;
}
article,aside,footer,header,nav,section {
	display: block;
}
body {
	width: 100%;
	min-width: 1200px;
	font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;
	font-size: 14px;
	color: #333;
	background-color: #f4f8fc;
	--color: #176cb3;
}
li {
	list-style: none;
}
img{
	border:0;
    image-rendering: -moz-crisp-edges; /* Firefox */
    image-rendering: -o-crisp-edges; /* Opera */
    image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
}
img.high {
	-ms-interpolation-mode:bicubic; 
	image-rendering: optimizeQuality; 
}
a {
	color: #999;
}
a,a:hover {
	text-decoration: none;
}
a:active,a:hover {
	outline: 0;
}
button,input,select,textarea {
	font-family: inherit;
	font-size: inherit;
	outline: 0;
	border: none;
	background-color: transparent;
	/* appearance: none; */
}
input:read-only {
	cursor: pointer;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px white inset !important;
}
::-webkit-input-placeholder {
	color: #999;
}
:-ms-input-placeholder {
	color: #999;
}
textarea {
	resize: none;
}
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	border: none;
}
table tr, table td, table th {
	border: none;
}
em,i {
	font-style: normal;
}
.scrollbar::-webkit-scrollbar {
	width: 3px;
	background: #f4f4f4;
}
.scrollbar::-webkit-scrollbar-button,
.scrollbar::-webkit-scrollbar-track {
	display: none;
}
.scrollbar::-webkit-scrollbar-track-piece {
	display: none;
}
.scrollbar::-webkit-scrollbar-thumb {
	background: #176cb3;
}
.scrollbar::-webkit-resizer,
.scrollbar::-webkit-scrollbar-corner {
	display: none;
}
.clear {
	zoom: 1;
	clear: both
}
.clear:after {
	content: "";
	display: block;
	clear: both;
}
.fl {
	float: left;
}
.fr {
	float: right;
}
.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;
	justify-content: center;
}
.centerT {
	display: flex;
	justify-content: center;
	align-items: center;
}
.cut {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.cutThree,.cutTwo {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}
.cutTwo {
	-webkit-line-clamp: 2;
}
.cutThree {
	-webkit-line-clamp: 3;
}
.c1200, .wrap{
	margin: 0 auto;
	min-width: 1200px;
}
.c1200 {
	width: 1200px;
}
.wrap {
	width: 81.25%;
}
.white {
    border-radius: 4px;
    background: #fff;
}
@media (max-width: 1480px){
    .wrap{ width: 1200px;}
}
/* 分页 */
.pagination{
	width: 100%;
	padding: 30px 0;
	display: table;
	font-size: 0;
	text-align: center
}
.pagination li {
	display: inline-block;
	vertical-align: top;
	margin: 0 5px;
}
.pagination li a,.pagination li span {
	display: block;
	font-size: 14px;
	color: #666;
	line-height: 32px;
	padding: 0 12px;
	background-color: #fff;
	border-radius: 3px;
	border: solid 1px rgba(0, 0, 0, 0.1);
	transition: all .6s ease
}
.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: #176cb3;
	border-color: #176cb3;
}
.pagination li.disabled a:hover,.pagination li.disabled span,.pagination li.disabled span:hover {
	cursor: not-allowed!important;
	opacity: 0.8;
	color: #666;
	background-color: #fff;
	border: solid 1px rgba(0, 0, 0, 0.1);
}
.pagination li a:focus,.pagination li a:hover,.pagination li span:focus,.pagination li span:hover {
	cursor: pointer;
	color: #fff;
	background-color: #176cb3;
	border-color: #176cb3;
}
.noData {
    width: 100%;
    color: #999;
    text-align: center;
    line-height: 100px;
}