		body {
			background: #eee;
			position: relative;
			z-index: -5;
		}

		.head {
			/*height: 637px;		
			background: url(/front/images/ic23.png) no-repeat;*/
		}

		
		.head .bottom {
			position: absolute;
			bottom: 10px;
			display: flex;
			height: 125px;
			justify-content: space-between;
			left: 0;color: white;
			left:130px;
			right:170px;
			align-items: center;
		}
		
/*第一屏*/

section {
	margin-top: 550px;
}

.content {
	/*min-width: 1700px;*/
	/*height: 1022px;*/
}

.content .page {
	background-color: white;
	background-color: rgb(238,238,238);
	display: flex;
	justify-content: center;
	align-items: flex-end;
	padding-top: 50px;
	flex-wrap: wrap;
	
}

.op1 {
	animation: in .8s forwards;
	opacity: 1;
}

.op0 {
	animation: dispear .8s forwards;
	opacity: 0;
}

.hide {
	display: none !important;
}

.content .page .item {
	max-width: 372px;
	min-width: 372px;
	max-height: 340px;
	min-height: 340px;
	background-color: #fff;
	margin: 10px 10px;
	display: flex;
	flex-direction: column;
	text-align: left;
	padding: 10px 10px;
	text-align: left;
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: break-all;
}

.content .page .item img {
	height: 194px;
	width: 372px;
}

.content .page .item span {
	padding-top: 10px;
	text-overflow: ellipsis;
	word-wrap: break-word;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: break-all;
	-webkit-box-orient: vertical;
}

.content .nav {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
	margin-bottom: 50px;
}

.content .nav span {
	height: 10px;
	width: 10px;
	background-color: gray;
	border-radius: 50%;
	margin-right: 10px;
	cursor: pointer;
}

.content .nav .active {
	height: 15px;
	width: 15px;
	background-color: #e84309;
}

/*动画定义*/
@keyframes dispear {
	from {
		opacity: 1;
	}

	top {
		opacity: 0;
	}
}

@keyframes in {
	from {
		opacity: 0;
	}

	top {
		opacity: 1;
	}
}

@media (max-width: 900px) {
			.content .item {
				width: 90%;
				min-width: auto !important;
				min-height: auto !important;
				max-height: none !important;
			}

			.head .bottom {
				display: none;
			}

			.content .page .item img {
				height: auto;
				width: 100%;
			}
		}