body, html {
	height: 100%;
	margin: 0;
}

a {
  margin: 0;
  padding 0;
}

.container {
	display: flex;
	flex-direction: column;
	height: 100vh; /* 视口高度 */
	position: relative;
}

.block {
	display: flex;
	justify-content: center; /* 水平居中内容 */
	align-items: center; /* 垂直居中内容 */

}



.block img {
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.anchor-box {
	position: absolute;
		/*  background-color: rgba(255, 255, 255, 0.7); 白色背景，透明度调整 */
		width: 100%;
		height: 15%;
		border-radius: 5px;
		text-align: center;
		cursor: pointer;
}
/* 响应式样式 */
@media (max-width: 600px) {
	.container {
		/* 在小屏幕上调整样式 */
	}
}