@media screen and (max-width: 750px) {
	.main {
		background-color: #fff;
	}
	.main-title {
		text-align: center;
		padding-top: 20px;
		padding-bottom: 8px;
	}
	.main-title h2 {
		color: #d80c8c;
		font-size: 22px;
		font-weight: bold;
	}
	.main-title p {
		font-size: 18px;
		color: #666;
		font-weight: bold;
	}
	.main-box {
		padding-bottom: 40px;
	}

	.main-box-desc {
		text-align: center;
		color: #666;
		font-size: 14px;
		line-height: 28px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
	}

	.main-box-desc .main-box-desc-image {
		margin-bottom: 12px;
		width: 100%;
	}
	.main-box-desc .main-box-desc-image img {
		display: block;
		width: 100%;
	}
	.main-box-desc .main-box-desc-body {
		width: 100%;
	}
	.main-box-desc .main-box-desc-body p {
		margin-bottom: 2px;
	}

	.main-box-desc span {
		color: rgb(216, 12, 140);
	}
	.main-box-content {
		margin-top: 40px;
	}
	.main-box-content-list {
		margin-bottom: 40px;
	}
	.main-box-content-list h4 {
		font-size: 18px;
		font-weight: bold;
	}
	.main-box-content-list p {
		font-size: 14px;
		color: #666;
	}
	.main-box-content-list ul {
		width: 100%;
		height: auto;
		overflow: hidden;
		margin-top: 12px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.main-box-content-list ul li {
		width: 49.5%;
		height: 110px;
		position: relative;
		overflow: hidden;
		margin-bottom: 1%;
	}
	.main-box-content-list ul li img {
		width: 100%;
		display: block;
		user-select: none;
		-webkit-user-drag: none;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		transition: transform 0.3s ease; /* 平滑的过渡效果 */
		cursor: pointer;
	}
	.main-box-content-list ul li img:hover {
		transform: translate(-50%, -50%) scale(1.04); /* 鼠标悬停时放大1.1倍 */
	}
}
