/**
 * 认证产品Swiper轮播小部件样式
 */

.baijia-cp-wrapper {
	padding: 40px 0;
}

.baijia-cp-title {
	font-size: 24px;
	font-weight: 600;
	color: #333;
	text-align: center;
	margin-bottom: 30px;
}

.baijia-cp-swiper {
	position: relative;
	overflow: hidden;
	padding-bottom: 40px;
}

.baijia-cp-product-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	text-align: center;
	transition: transform 0.3s ease;
}

.baijia-cp-product-card:hover {
	transform: translateY(-3px);
}

.baijia-cp-product-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.baijia-cp-product-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.baijia-cp-no-image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f5f5f5;
	color: #999;
	font-size: 14px;
}

.baijia-cp-product-name {
	font-size: 14px;
	font-weight: 500;
	color: #333;
	margin: 0 0 12px 0;
	line-height: 1.4;
	min-height: 20px;
}

.baijia-cp-divider {
	width: 100%;
	height: 1px;
	background-color: #e0e0e0;
	margin-bottom: 12px;
}

.baijia-cp-co2 {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 2px;
	font-size: 13px;
	color: #666;
	width: 100%;
}

.baijia-cp-co2 svg {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.baijia-cp-co2 span {
	white-space: nowrap;
}

/* 分页点样式 */
.baijia-cp-pagination {
	position: relative !important;
	bottom: auto !important;
	left: auto !important;
	width: 100% !important;
	margin-top: 30px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.baijia-cp-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background-color: #ccc;
	opacity: 1;
	margin: 0 4px;
	transition: background-color 0.3s ease;
}

.baijia-cp-pagination .swiper-pagination-bullet-active {
	background-color: #333;
}

/* 响应式 */
@media (max-width: 768px) {
	.baijia-cp-wrapper {
		padding: 30px 0;
	}

	.baijia-cp-title {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.baijia-cp-product-name {
		font-size: 13px;
	}

	.baijia-cp-co2 {
		font-size: 12px;
	}
}
