a,
img {
	display: block;
}

a {
	cursor: pointer;
}

.header-top1 {
	top: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(-45deg, #4C4FF8 13.72%, #FF6354 100%);
	color: white;
	font-weight: 600;
	border-radius: 10px;
	margin: 0 auto;
	width: 100%;
	max-width: 750px;
	animation: jump 1s ease infinite;
}

@keyframes jump {
	0% {
		transform: translateY(0);
	}

	25% {
		transform: translateY(-15px);
	}

	/* 跳跃高度减小 */
	50% {
		transform: translateY(0);
	}

	75% {
		transform: translateY(-10px);
	}

	/* 跳跃高度减小 */
	100% {
		transform: translateY(0);
	}
}

.header-logo {
	background-color: #16362B;
	height: 80px;
	padding: 10px 0;
}

.header-logo img {
	height: 40px;
	width: auto;
	display: block;
}

.content-con img {
	width: 100%;
	height: auto;
}