	@keyframes logoFloat {
	  from {
			opacity: 0.2;
	    transform: translateY(40px);
	  }
	  to {
			opacity: 1;
	    transform: translateY(0);
	  }
	}
	

	
	.indexBg {
		position: fixed;
		top: 0;
		left: 0;
		height: 100vh;
		width: 100vw;
	}
	#indexLogo {
		opacity: 1;
		transform: translateY(0);
		height: 100%;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		animation: logoFloat 1.2s ease-out;
		/* text-shadow: 0.25rem 0.25rem 0.25rem rgba(0,0,0,.25); */
	}
	#indexLogo .logo {
		height: 5rem;
	}
	#indexLogo .logo.flax {
		height: 3rem;
	}
	#indexLogo {
		font-size: 2.75rem;
	}
	#indexLogo .enLogo{
		font-size: 2.5rem;
	}




.introduce {
	background: url('../images/indexBg.png') top center;
}

.introduce .card {
	background: #FFFFFF;
	border: none;
	padding: 2.5rem;
}
.introduce .content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: left;
	padding-bottom: 1.25rem;
	width: 100%;
	word-break: break-all;
}
.introduce .content h4 {
	font-size: 2rem;
	margin: 1.25rem 0;
	font-weight: bolder;
}
.introduce .content .mobileTitle {
	display: none;
	font-weight: bold;
	color: #333;
	font-size: 1.4rem;
}
.introduce .content .image{
	box-sizing: border-box;
	display: inline-block;
	width: 30%;
	min-width: 18.75rem;
}
.introduce .content .text{
	box-sizing: border-box;
	display: inline-block;
	width: 70%;
	padding-left: 1.25rem;
}
.introduce .content .text p{
	color: #666;
}
.history {
	padding-top: 1.25rem;
	display: flex;
}
.history .image {
	box-sizing: border-box;
	padding: 0 1.25rem;
	max-width: 25%;
}
.history .image h6 {
	font-size: 1.2rem;
	padding-top: 0.5rem;
	line-height: 2rem;
	margin: 0;
	color: #333;
}
.history .image p {
	font-size: 0.875rem;
	line-height: 1.125rem;
	color: #999;
}


@media (max-width: 992px) {
	#indexLogo .logo {
		height: 2.75rem;
	}
	#indexLogo .logo.flax {
		height: 2rem;
	}
	#indexLogo .enLogo{
		font-size: 1.4rem;
	}
	#indexLogo {
		font-size: 1.6rem;
	}
	
	.introduce{
		background: none;
		padding: 1.25rem;
	}
	.introduce .card {
		padding: 0;
	}
	.introduce .content {
		display: block;
	}
	.introduce .content h4 {
		display: none;
	}
	.introduce .content .image{
		width: 100%;
	}
	.introduce .content .mobileTitle {
		display: block;
	}
	.introduce .content .text{
		box-sizing: border-box;
		display: inline-block;
		width: 100%;
		padding-left: 0px;
		/* font-size: 1rem; */
		/* line-height: 1.6rem; */
		padding-top: 1rem;
	}
	.introduce .content .text p{
		margin: 0;
	}
	hr {
		display: none;
	}
	.history {
		padding-top: 0;
		flex-wrap: wrap;
	}
	.history .image{
		width: 50%;
		padding: 0 0.25rem;
		max-width: none;
	}
	.history .image h6 {
		/* font-size: 1rem; */
		/* line-height: 21px; */
	}
	.history .image p {
		/* font-size: 0.8rem; */
		/* line-height: 18px; */
	}
}