*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	word-break: break-all;
}

body {
	font-family:  "Microsoft YaHei", "微软雅黑";
	/* user-select: none; */
	/* 禁止用户鼠标在页面上选中文字/图片等 */
	-webkit-tap-highlight-color: transparent;
	/* webkit是苹果浏览器引擎，tap点击，highlight背景高亮，color颜色，颜色用数值调节 */
	color: #333;
	font-size: 16px;
}

.clear-fix::after {
	clear: both;
	content: '';
	display: block;
	width: 0;
	height: 0;
	visibility: hidden;
}

.clear-fix {
	zoom: 1;
}

img{
	max-width: 100% !important;
}
#map img{
	max-width: auto !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;
}
a:hover{
	color: #000;
}
input,
textarea,
select {
	outline: none;
	resize: none;
}

button {
	border: 0;
	outline: none;
	cursor: pointer;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 400;
}
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;
	font-size: 15px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-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: #314aa7;
	color: #fff;
}

/* 遮罩层 */
.mask,
.mask1,
.mask2{
	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-weight: 700;
	font-size: 18px;
	margin-bottom: 35px;
}
/* .ts-h::before {
    display: inline-block;
    content: "";
    height: 21px;
	width: 5px;
    background: url(../images/bule-shu1.png);
	vertical-align: bottom;
    margin-right: 20px;
} */
.ts-h2{
	font-size: 22px;
	font-weight: 400;
	font-size: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e6e6e6;
	text-align: left;
}
/* .ts-h2::before {
    display: inline-block;
    content: "";
    height: 22px;
	width: 5px;
    background: url(../images/bule-shu1.png);
	vertical-align: bottom;
    margin-right: 15px;
} */
h1,h2,h3{
	font-weight: 700;
}
.text-one{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.text-two{
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.text-three{
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.text-four{
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}
.text-six {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
}



