/* 整体产品列表容器样式 */
#product-list {
	display: flex;
	flex-wrap: wrap;
	/* justify-content: space-around; */
	padding: 20px;
}

/* 单个产品展示项样式 */
.product-item {
	border: 1px solid #ccc;
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	width: 100%;
	margin-bottom: 20px;
	padding: 15px;
	display: flex;
	/* 使用 flexbox 布局 */
	align-items: flex-start;
	/* 垂直方向顶部对齐 */
}

.product-img-container {
	width: 15%;
	/* 图片容器宽度 */
	margin-right: 15px;
	/* 图片与内容之间的间距 */
}

.product-img-container img {
	/* width: 100%;
	height: auto; */
	margin-bottom: 0;
	/* 移除原有的底部边距 */
}

.product-content-container {
	width: calc(85% - 15px);
	/* 内容容器宽度 */
}

.product-title {
	font-size: 18px;
	margin-bottom: 5px;
}

.product-description {
	margin-bottom: 10px;
	color: #8f8f8f;
}

.download-link {
	text-decoration: none;
	color: #007bff;
	margin-bottom: 5px;
}

.download-link:hover {
	text-decoration: underline;
}

/* 隐藏产品模板，避免显示在页面上 */
.product-template {
	display: none;
}

.product-container {
	display: flex;
	flex-direction: column;
}

/* .img-product {
	width: 100%;
	height: 20%;
} */

.btn_down {
	background-color: #41a863;
	color: #fff;
	/* border: 1px solid ; */
	width: 108px;
	height: 28px;
	border-radius: 2px;
}

.btn_page {
	background-color: #41a863;
	color: #fff;
	border: none;
	width: 60px;
	height: 28px;
	border-radius: 5px;
}

@media (max-width: 1021px) {
	.product-item {
		display: flex;
		flex-direction: column;
		/* 垂直排列 */
	}

	.product-img-container {
		width: 50%;
		/* 图片容器宽度 */
	}

	.img-product {
		max-width: 50%;
		height: auto;
	}
}

@media (max-width: 450px) {
	.product-item {
		display: flex;
		flex-direction: column;
		/* 垂直排列 */
	}

	.product-img-container {
		width: 50%;
		/* 图片容器宽度 */
	}

	.img-product {
		max-width: 50;
		height: auto;
	}
}