.kingda-product-gallery {
	width: 100%;
}

.kingda-product-gallery__stage {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.kingda-product-gallery__main-link {
	display: block;
	width: 100%;
	height: 100%;
}

.kingda-product-gallery__main-image {
	display: block;
	width: 100% !important;
	max-width: none !important;
	height: 100% !important;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.kingda-product-gallery__arrow {
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
	top: 50%;
	z-index: 2;
	display: grid !important;
	width: 42px !important;
	height: 42px !important;
	min-width: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid #e2e8f0 !important;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.94) !important;
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
	font: inherit;
	font-size: 30px;
	line-height: 1 !important;
	text-decoration: none !important;
	place-items: center;
	transform: translateY(-50%);
	cursor: pointer;
}

.kingda-product-gallery__arrow:hover,
.kingda-product-gallery__arrow:focus {
	background: #fff !important;
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.14);
}

.kingda-product-gallery__arrow--prev {
	left: 14px;
}

.kingda-product-gallery__arrow--next {
	right: 14px;
}

.kingda-product-gallery__thumbs {
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 12px 2px 4px;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.kingda-product-gallery__thumbs::-webkit-scrollbar {
	display: none;
}

.kingda-product-gallery__thumb {
	-webkit-appearance: none;
	appearance: none;
	display: block !important;
	flex: 0 0 86px;
	min-width: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 3px !important;
	border-width: 2px !important;
	border-style: solid !important;
	border-color: transparent !important;
	border-radius: 8px !important;
	background: #fff !important;
	box-shadow: none !important;
	color: inherit;
	line-height: 1 !important;
	text-decoration: none !important;
	cursor: pointer;
}

.kingda-product-gallery__thumb:hover,
.kingda-product-gallery__thumb:focus {
	background: #fff !important;
	box-shadow: none !important;
}

.kingda-product-gallery__thumb-image {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 5px;
}

.kingda-product-gallery__thumb:focus-visible,
.kingda-product-gallery__arrow:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.kingda-product-gallery__empty {
	padding: 36px 20px;
	border: 1px dashed #cbd5e1;
	color: #64748b;
	text-align: center;
}

/* 平板与小屏笔记本限制图库尺寸，避免主图过高 */
@media (min-width: 768px) and (max-width: 1366px) {
	.kingda-product-gallery {
		max-width: 720px;
		margin-inline: auto;
	}
}

@media (max-width: 767px) {
	.kingda-product-gallery__arrow {
		width: 36px !important;
		height: 36px !important;
		font-size: 26px;
	}

	.kingda-product-gallery__arrow--prev {
		left: 8px;
	}

	.kingda-product-gallery__arrow--next {
		right: 8px;
	}
}