.product-card-container2 {
	display: flex;
	flex-wrap: nowrap;
	gap: 24px;
	align-items: stretch;
}

/* 产品卡片样式 */
.product-card2 {
	box-sizing: border-box;
	background: rgb(242, 243, 245);
	border-radius: 8px;
	cursor: pointer;
	flex: 1 1 50%;
	/* 一行2个 */
	min-width: 180px;
    max-width: 836px;
    max-height:530px;
    padding: 10px 0;
    padding-left:  clamp(30px, 3vw, 100px); ;
   
	/* 保证图片显示 */
	/* max-width: calc(50% - 10px); */
	/* 适配gap */
	/* height: 240px; */
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
	display: flex;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
}

/* 核心修改：文字区域相对于父盒子居中，内部内容左对齐 */
.product-text2 {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	/* 文字区域整体水平居中（相对于product-card1） */
	justify-content: center;
	/* 文字区域整体垂直居中（相对于product-card1） */
	text-align: left;
	/* 内部文字左对齐 */
	min-width: 70px;
	box-sizing: border-box;
	width: 100%;
}

/* 内部内容容器：统一承载标题、描述、链接，确保左对齐一致性 */
.product-text-content2 {
	width: 100%;
	/* 继承product-text的宽度，确保左对齐范围完整 */
	max-width: 280px;
	/* 新增：限制最大宽度，避免PC端父容器过宽时内容排版松散 */
}

/* 标题：超出一行显示省略号（左对齐） */
.product-card-title2 {
	font-size:clamp(0.8rem, 1.3vw, 1.9rem);
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
	letter-spacing: 0.2px;
	/* 超出一行省略号核心样式 */
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
	/* 基于内部容器左对齐，省略号生效 */
}

/* 描述：超出2行显示省略号（左对齐） */
.product-card-desc2 {
	font-size: clamp(1rem, 1.3vw, 1.5rem);
	color: #656565;
    margin-top: clamp(12px,1vw, 15px);
	margin-bottom: clamp(20px,1vw, 50px);
	letter-spacing: 0.1px;
	/* 超出2行显示省略号核心样式 */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
	/* 基于内部容器左对齐 */
	line-height: 1.4;
	/* 优化行高，2行高度适中 */
}

/* 图片容器：确保移动端显示 */
.product-card-img2 {
	/* flex: 1; */
	/* display: flex;
	justify-content: center;
	align-items: center;
	min-width: 70px; */
    width: 100%;
    /* flex:1; */
    /* width:510px ;
    height: 510px; */
    max-width: 510px;
    max-height:510px ;
	/* 强制保留图片区域，避免被挤压 */
}

.product-card-img2 img {
	width: 100%;
   
	/* object-fit: contain */
	object-fit: contain;
    max-width: 510px;
    max-height: 510px;
	/* 保持图片比例完整，不拉伸 */
}

/* 链接图标：左对齐（基于内部容器） */
.product-card-link2 {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	/* 图标左对齐 */
}

.product-card-link2 img {
        max-width: 111px;
        max-height: 19px;
		object-fit: contain;
	/* 清除居中margin */
}

/* hover效果 */
.product-card2:hover {
	transform: scale(1.03);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* 媒体查询：平板端（768px ~ 1023px） */
@media (max-width: 1023px) and (min-width: 768px) {
	.product-card2 {
		height: 224px;
		min-width: 170px;
	}
	.product-text2 {
		padding-left: 20px;
	}
	.product-card-img2 img {
		max-height: 128px;
	}
}

/* 媒体查询：移动端（≤767px） */
@media (max-width: 767px) {
	.product-card-box2 {
		margin-top: 19px;
	}

	.product-card2 {
		padding: 0 8px;
	}

	.product-card-container2 {
		gap: 12px;
	}

	.product-card2 {
		height: 208px;
		min-width: 160px;
	}

	.product-card-img2 img {
		max-height: 120px;
		min-height: 72px;
	}
}

/* 媒体查询：小屏手机（≤375px） */
@media (max-width: 375px) {
	.product-card2 {
		height: 192px;
		min-width: 140px;
	}

	/* 强制文字最小12px，保证可读性 */
	.product-card-title2,
	.product-card-desc2 {
		font-size: 12px;
	}

	.product-card-img2 img {
		max-height: 104px;
		min-height: 64px;
	}

	.product-card2 {
		padding: 0 5px;
	}

	.product-card-link2 img {
		width: 40px;
		/* 固定图标尺寸，节省空间 */
	}
}

/* 媒体查询：超小屏手机（≤320px） */
@media (max-width: 320px) {
	.product-card2 {
		min-width: 120px;
	}

	.product-text2 {
		padding: 0 5px;
	}

	.product-card-img2 {
		min-width: 60px;
		/* 缩小图片区域最小宽度，平衡文字空间 */
	}
}
