		 .top-nav-01 {
			background: linear-gradient(0deg, #ffffff, #fffd85); 
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			font-size:26px;
			background-clip: text;
			font-weight: normal;
			text-align: center;
			line-height: 1.5;
			text-shadow: 1px 1px 10px rgba(255, 244, 244, 0.3);
			transition: all 0.3s ease;
			cursor: pointer;
			display: inline-block;
		}
	
	
		.top-nav-01:hover {
			text-shadow: 1px 1px 10px rgba(255, 244, 244, 0.3);
			transform: scale(1.05);
		}
	
		.top-nav-01:active {
			transform: scale(0.98);
			transition: all 0.1s ease;
		}
		
		
		.home-nav-01 {
			background: linear-gradient(0deg, #ffffff, #fffd85); 
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			font-size:40px;
			background-clip: text;
			font-weight: normal;
			text-align: center;
			line-height: 1.5;
			text-shadow: 1px 1px 10px rgba(255, 244, 244, 0.3);
			transition: all 0.3s ease;
			cursor: pointer;
			display: inline-block;
		}
	
	
		.home-nav-01:hover {
			text-shadow: 1px 1px 10px rgba(255, 244, 244, 0.3);
			transform: scale(1.05);
		}
	
		.home-nav-01:active {
			transform: scale(0.98);
			transition: all 0.1s ease;
		}
		
		
		.home-nav-02 {
			background: linear-gradient(0deg, #ffffff, #fffd85); 
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			font-size:30px;
			background-clip: text;
			font-weight: normal;
			text-align: center;
			line-height: 1.5;
			text-shadow: 1px 1px 10px rgba(255, 244, 244, 0.3);
			transition: all 0.3s ease;
			cursor: pointer;
			display: inline-block;
		}
	
	
		.home-nav-02:hover {
			text-shadow: 1px 1px 10px rgba(255, 244, 244, 0.3);
			transform: scale(1.05);
		}
	
		.home-nav-02:active {
			transform: scale(0.98);
			transition: all 0.1s ease;
		}


		/* 为使用 home-bg-01.png 作为背景的容器添加浮动动画 */
		td[background="images/home-bg-01.png"],
		td[background*="home-bg-01.png"] {
		animation: floatUpDown 2.8s ease-in-out infinite;
		}

		/* 定义上下浮动的关键帧 */
		@keyframes floatUpDown {
		0% {
			transform: translateY(0px);
		}
		50% {
			transform: translateY(-12px); /* 向上浮动距离，可调整 */
		}
		100% {
			transform: translateY(0px);
		}
		}

		/* 三个图片统一同步放大缩小 */
		#home-nav-gaodu img[src="images/home-down-01.png"],
		#home-nav-gaodu img[src="images/home-down-02.png"],
		#home-nav-gaodu img[src="images/home-down-03.png"] {
		animation: pulseScale 2.8s ease-in-out infinite;
		}

		/* 定义放大缩小动画 */
		@keyframes pulseScale {
		0%   { transform: scale(1); }
		50%  { transform: scale(0.95); }
		100% { transform: scale(1); }
		}