* {
	margin: 0;
	padding: 0;
	box-sizing: border-box; /* 新增 */
}
a{
	text-decoration: none;
}
html,
body {
	background: black;
	position: relative;
	width: 100%;
	height: 100%;
	overflow-x: hidden; /* 新增 */
}

.centerBox {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	color: white;
	display: flex; /* 新增 */
	flex-direction: column; /* 新增 */
	justify-content: center; /* 新增关键属性 */
	align-items: center; /* 新增关键属性 */
}
.center-list{
	z-index: 100;
	width: 70%;
	margin: 0 15%;
	flex: 1; /* 新增 */
	display: flex; /* 新增 */
	flex-direction: column; /* 新增 */
	justify-content: center; /* 新增 */
	height: 100%; /* 新增 */
}
.centerBody{
	width: 100%;
	text-align: center;
	transform: translateY(-5%); /* 微调位置 */
}
.centerBody img{
	margin: 0 auto;
	max-width: 100%; /* 新增 */
}
.btn-p{
	margin: 30px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
}
.btn-p a{
	font-size: 14px;
	color: #FFFFFF;
	padding: 8px 30px;
	border-radius:30px;
	background: rgba(29, 29, 29, 0.5);
	border:1px solid rgba(89, 129, 183, 0.2);
	min-width: 120px;
	text-align: center;
	transition: all 0.3s ease; /* 新增 */
}


/* 移动端适配调整 */
@media screen and (max-width: 950px) {
	.centerBody{
		margin-top: 0; /* 重置 */
		transform: none; /* 移除变换 */
	}
	.center-list {
		width: 90%;
		margin: 0 5%;
		justify-content: flex-start; /* 内容顶部对齐 */
		padding-top: 20%; /* 添加顶部间距 */
	}
}

@media screen and (max-width: 768px) {
	.center-list {
		padding-top: 15%; /* 减少顶部间距 */
		justify-content: center; /* 恢复居中 */
	}
	.centerBody img{
		margin-bottom: 20px; /* 添加图片底部间距 */
	}
}

@media screen and (max-width: 480px) {
	.center-list {
		padding-top: 10%;
	}
	.centerBody {
		margin-top: -5%; /* 微调位置 */
	}
}
