body,
input,
h1,
h2,
h3,
h4,
h5,
h6,
p,
textarea,
table,
div,
ul,
li,
select,
td,
th,
em,
span,
i,
button,
code,
a {
	margin: 0;
	padding: 0;
	color: inherit;
	line-height: inherit;
	font-family: inherit;
	box-sizing: border-box;
	text-decoration: none;
	font-size: inherit;
	list-style: none;
}

img {
	border: 0;
	display: inline-block;
	max-width: 100%;
	vertical-align: middle;
	height: auto;
}

:focus {
	outline: none !important;
	border-color: inherit;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
}

em,
i {
	font-style: normal;
}

input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="text"] {
	-webkit-appearance: none;
}

input[type="button"] {
	border: none;
}

textarea {
	-webkit-appearance: none;
}

.auto {
	margin: 0 auto;
	max-width: 1400px;
	width: 90%;
}

:hover {
	transition: all .2s;
}

.img_hover_wrap {
	overflow: hidden;
}

.img_hover {
	transition: all .3s;
}

.img_hover:hover {
	transform: scale(1.05, 1.05);
}

.img_traslate {
	transition: all .3s;
}

.img_traslate:hover {
	transform: translateY(-10px);
}

.img_rotate {
	transition: all .3s;
}

.img_rotate:hover {
	transform: rotate(-360deg);
}

.img {
	display: block;
	height: auto;
}

.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.item_scale .icon {
	transition: all .3s;
}

.item_scale:hover .icon {
	transform: scale(1.08, 1.08);
}

.clamp {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-box-orient: vertical;
}

.imgbox {
	display: block;
	overflow: hidden;
}

.item .img {
	transition: all 1s;
	width: 100%;
	display: block;
}

.item:hover .imgbox .img {
	transform: scale(1.1, 1.1);
}

.zoomimg {
	position: relative;
	overflow: hidden;
	height: 0;
	display: block;
}

.zoomimg .img {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.flipx .icon {
	transition: all .3s;
}

.flipx:hover .icon {
	transform: scaleX(-1);
}

.scale .icon {
	transition: all .3s;
}

.scale:hover .icon {
	transform: scale(1.1, 1.1);
}

.underline {
	text-decoration: underline;
}

label {
	-webkit-tap-highlight-color: rgba(255, 0, 0, 0);
}

.img_full {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.flex {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.flex-align-start {
	align-items: flex-start;
}

.flex-align-center {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.flex-align-end {
	align-items: flex-end;
}

.flex-pack-center {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.flex-pack-justify {
	-webkit-box-pack: justify;
	-webkit-justify-content: pace-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.flex-pack-start {
	justify-content: flex-start;
}

.flex-pack-end {
	justify-content: flex-end;
}

.flex-v {
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.flex-w {
	flex-wrap: wrap;
}

.flex-1 {
	flex: 1;
	min-width: 0;
	min-height: 0;
}

.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.body {
	color: #666;
	font-size: 18px;
	line-height: 1.5;
	background: #fff;
	font-family: "Noto Sans SC", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
	box-sizing: border-box;
}

::-webkit-input-placeholder {
	color: #999;
}

:-moz-placeholder {
	color: #999;
}

::-moz-placeholder {
	color: #999;
}

:-ms-input-placeholder {
	color: #999;
}

.squareimg {
	width: 100%;
	padding-bottom: 100%;
	overflow: hidden;
	position: relative;
}

.squareimg .img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
}

.item:hover .imgbox.squareimg .img {
	transform: translate(-50%, -50%) scale(1.1, 1.1);
}


/* 更多按钮 */
.read-more {
	height: 35px;
	padding: 0 20px 0 25px;
	border-radius: 10px;
	color: #fff;
	border: 2px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;

	&:after {
		content: '\e600';
		font-family: 'iconfont';
		margin-left: 16px;
	}

	&:hover {
		background: #fff;
		color: #239ccf;
	}

	&.this {
		background: linear-gradient(#50baa6, #239ccf);
		border: 0;

		&:hover {
			background: linear-gradient(#239ccf, #239ccf);
			color: #fff;
		}
	}

}





@media screen and (min-width:1261px) and (max-width:1400px) {
	.body {
		font-size: 17px;
	}
}

@media (max-width:1260px) {
	.body {
		font-size: 16px;
	}

}