* {
	padding: 0;
	margin: 0;
}

.content {
	margin: auto;
	width: 1200px;
}
.hidden{
	display: none !important;
}

/* 盒子布局 */
.flex{
	display: flex;
}
.flex-center {
	display: flex;
	align-items: center;
}

.flex-c-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.flex-end {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

/* 清除浮动 */
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.clear {
	clear: both;
}

/***float***/
.fl {
	float: left !important;
}

.fr {
	float: right !important;
}

/*无序有序列表*/
ul {
	list-style: none;
}

/*文本省略*/
.text-one {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.no-ellipsis {
	overflow: auto;
	text-overflow: initial;
	white-space: normal;
}

.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;
}
.strong{
	font-weight: bold;
}

/*自定义链接颜色(可自由更换)*/
a {
	color: #555;
	text-decoration: none;
}

/*链接-颜色*/
a:hover {
	color: #1773FA;
}
/*外边距,全,上,下,左,右*/
.mg-10{ margin: 10px;}
.mt-100{ margin-top: 100px;}
.mt-85{ margin-top: 85px;}
.mt-80{ margin-top: 80px;}
.mt-70{ margin-top: 70px;}
.mt-60{ margin-top: 60px;}
.mt-50{ margin-top: 50px;}
.mt-45{ margin-top: 45px;}
.mt-40{ margin-top: 40px;}
.mt-30{ margin-top: 30px;}
.mt-25{ margin-top: 25px;}
.mt-20{ margin-top: 20px;}
.mt-15{ margin-top: 15px;}
.mt-10{ margin-top: 10px;}
.mt-5{ margin-top: 5px;}
.mr-70{ margin-right: 70px;}
.mr-40{ margin-right: 40px;}
.mr-30{ margin-right: 30px;}
.mr-20{ margin-right: 20px;}
.mr-15{ margin-right: 15px;}
.mr-10{ margin-right: 10px;}
.mr-5{ margin-right: 5px;}
.ml-70{ margin-left: 70px;}
.ml-50{ margin-left: 50px;}
.ml-40{ margin-left: 40px;}
.ml-30{ margin-left: 30px;}
.ml-20{ margin-left: 20px;}
.ml-15{ margin-left: 15px;}
.ml-10{ margin-left: 10px;}
.ml-5{ margin-left: 5px;}
.mb-100{ margin-bottom: 100px;}
.mb-20{ margin-bottom: 20px;}
.mb-15{ margin-bottom: 15px;}
.mb-10{ margin-bottom: 10px;}
.mb-5{ margin-bottom: 5px;}

/*文本排列*/
.text-center{
	text-align: center;
}

/*文本颜色*/
.text-gray{
	color: #999;
}

/*链接-悬浮颜色*/
.hvr-shutter-in-horizontal {
	display: inline-block;
	vertical-align: middle;
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	backface-visibility: hidden;
	position: relative;
	background: #1773FA;
	transition-property: color;
	transition-duration: 0.3s;
}

.hvr-shutter-in-horizontal:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	transform: scaleX(1);
	transform-origin: 50%;
	transition-property: transform;
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
}

.hvr-shutter-in-horizontal:hover,
.hvr-shutter-in-horizontal:focus,
.hvr-shutter-in-horizontal:active {
	color: #fff !important;
}

.hvr-shutter-in-horizontal:hover:before,
.hvr-shutter-in-horizontal:focus:before,
.hvr-shutter-in-horizontal:active:before {
	transform: scaleX(0);
}

.zoomImg {
	-webkit-animation: banner_inside 20s ease 1 forwards;
	-moz-animation: banner_inside 20s ease 1 forwards;
	-o-animation: banner_inside 20s ease 1 forwards;
	animation: banner_inside 20s ease 1 forwards;
}

@-webkit-keyframes banner_inside {
	from {
		-webkit-transform: scale(1.23);
		transform: scale(1.23);
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-moz-keyframes banner_inside {
	from {
		-moz-transform: scale(1.23);
		transform: scale(1.23);
	}

	to {
		-moz-transform: scale(1);
		transform: scale(1);
	}
}

@-o-keyframes banner_inside {
	from {
		-o-transform: scale(1.23);
		transform: scale(1.23);
	}

	to {
		-o-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes banner_inside {
	from {
		-webkit-transform: scale(1.23);
		-moz-transform: scale(1.23);
		-o-transform: scale(1.23);
		transform: scale(1.23);
	}

	to {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
}
