/* 确保页面占满全屏高度 */
			html, body {
				height: 100%;
				margin: 0;
				padding: 0;
			}
			
			/* 容器使用Flexbox实现居中 */
			.main {
				/* 使容器占满父元素高度 */
				height: 100%;
				/* 启用Flexbox布局 */
				display: flex;
				/* 垂直方向居中 */
				align-items: center;
				/* 水平方向居中 */
				justify-content: center;
				/* 让图片和文字垂直排列 */
				flex-direction: column;
				/* 可选：添加背景色便于观察 */
				background-color: #f5f5f5;
			}
			
			/* 可选：调整图片和文字的间距 */
			.Litiansuo {
				margin-bottom: 20px;
				/* 可选：限制图片最大尺寸 */
				max-width: 300px;
				max-height: 300px;
			}
			
			.sodayo {
				/* 可选：调整文字样式 */
				color: #333;
				font-size: 24px;
				margin: 0;
			}