*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	word-break: break-all;
}

html{
	font: 16px;
}

body {
	font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
	font: 16px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif !important;
	/* user-select: none; */
	/* 禁止用户鼠标在页面上选中文字/图片等 */
	-webkit-tap-highlight-color: transparent;
	/* webkit是苹果浏览器引擎，tap点击，highlight背景高亮，color颜色，颜色用数值调节 */
	background: var(--color-background);
	color: var(--color-text);
}

.clear-fix::after {
	clear: both;
	content: '';
	display: block;
	width: 0;
	height: 0;
	visibility: hidden;
}

.clear-fix {
	zoom: 1;
}

img{
	max-width: 100% !important;
}

.left {
	float: left;
}

.right {
	float: right;
}

ul,
span,
li {
	padding: 0px;
	margin: 0px;
	list-style: none;
}

a {
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
	color: #000;
}

input,
textarea,
select {
	outline: none;
	resize: none;
}

button {
	border: 0;
	outline: none;
	cursor: pointer;
}

i {
	font-style: normal;
}

/* 分页 */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	/* margin: 25px 0 50px; */
}

.pagination span,
.pagination a {
	display: inline-block;
	border: 1px #dadada solid;
	padding: 4px 6px;
	min-width: 30px;
	text-align: center;
	border-radius: 2px;
}

.pagination .active span {
	border: 0;
}


.pagination li {
	margin-right: 6px;
	background-color: #f7f7f7;
}

.pagination li:nth-last-child(1) {
	margin-right: 0;
}

.pagination .active {
	background-color: #009944;
	color: #fff;
}

/* 遮罩层 */
.mask,
.mask1{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, .3);
	z-index: 10;
}
.mask1{
	background-color: rgba(0, 0, 0, .9);
	z-index: 10;
}

/* 特殊h3 */
.ts-h{
	font-size: 14px;
	font-weight: 700;
	font-size: 20px;
}
.ts-h::before {
    display: inline-block;
    content: "";
    height: 22px;
	width: 5px;
    background: url(../images/bule-shu.png);
	vertical-align: bottom;
    margin-right: 20px;
}
h1,h2,h3{
	font-weight: 700;
}

.ts-wy{
	top: 38.5% !important;
}


