.detail_section {
	padding: 0 0 60px;
}

/* 通用图片轮播 */
.images_swiper {
	margin-bottom: 30px;
}

.main_swiper {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	background: #f5f5f5;
}

.main_swiper .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}

.main_swiper .swiper-slide img {
	width: 100%;
	max-height: 600px;
	object-fit: contain;
	display: block;
	background: #fff;
}

.thumbs_swiper {
	margin-top: 12px;
	padding: 0;
}

.thumbs_swiper .swiper-wrapper {
	justify-content: flex-start;
}

.thumbs_swiper .swiper-slide {
	width: 120px;
	height: 80px;
	flex-shrink: 0;
	opacity: 0.4;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 2px solid transparent;
	border-radius: 6px;
	overflow: hidden;
}

.thumbs_swiper .swiper-slide-thumb-active {
	opacity: 1;
	border-color: var(--accent);
}

.thumbs_swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* 通用轮播图导航按钮 */
.main_swiper .swiper-button-prev,
.main_swiper .swiper-button-next {
	color: #fff;
	background: rgba(0, 0, 0, 0.4);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.main_swiper .swiper-button-prev:hover,
.main_swiper .swiper-button-next:hover {
	background: rgba(0, 0, 0, 0.6);
}

.main_swiper .swiper-button-prev:after,
.main_swiper .swiper-button-next:after {
	font-size: 20px;
	font-weight: bold;
}

/* 通用轮播图分页器 */
.main_swiper .swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	width: 10px;
	height: 10px;
	transition: all 0.3s ease;
}

.main_swiper .swiper-pagination-bullet-active {
	background: var(--accent);
	width: 24px;
	border-radius: 10px;
}

/* 推荐价格 */
.recommend_price {
	color: var(--accent);
	font-size: 14px;
	font-weight: 600;
}

.detail_wrapper {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 24px;
}

/* 左侧内容区域 */
.detail_main {
	min-width: 0;
}

.detail_card {
	background: white;
	border-radius: 12px;
	padding: 40px;
	box-shadow: 0 2px 12px rgba(26, 54, 93, 0.08);
}

.detail_header {
	margin-bottom: 32px;
	padding-bottom: 24px;
	border-bottom: 2px solid var(--border);
}

.detail_title {
	font-size: 28px;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 16px;
	line-height: 1.4;
}

.detail_meta {
	display: flex;
	gap: 32px;
	align-items: center;
}

.meta_item {
	font-size: 14px;
	color: var(--muted);
}

.detail_image {
	margin-bottom: 32px;
	border-radius: 8px;
	overflow: hidden;
}

.detail_image img {
	width: 100%;
	height: auto;
	display: block;
}

.detail_content {
	margin-bottom: 32px;
	font-size: 16px;
	color: var(--text-dark);
	line-height: 1.8;
}

.detail_content img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	margin: 16px 0;
}

.detail_content p {
	margin-bottom: 16px;
}

.detail_back {
	text-align: center;
	padding-top: 20px;
	border-top: 1px dashed var(--border);
}

.back_btn {
	display: inline-block;
	padding: 12px 40px;
	background: var(--accent);
	color: white;
	font-size: 15px;
	font-weight: 500;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.back_btn:hover {
	background: var(--accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

/* 右侧边栏 */
.detail_sidebar {
	min-width: 0;
}

.sidebar_card {
	background: white;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 2px 12px rgba(26, 54, 93, 0.08);
	position: sticky;
	top: 100px;
}

.sidebar_title {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 20px;
	padding-left: 12px;
	border-left: 3px solid var(--accent);
}

.recommend_list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.recommend_item {
	display: flex;
	gap: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	padding: 8px;
	border-radius: 8px;
}

.recommend_item:hover {
	background: var(--surface);
}

.recommend_image {
	width: 80px;
	height: 60px;
	flex-shrink: 0;
	border-radius: 6px;
	overflow: hidden;
}

.recommend_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.recommend_info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.recommend_title {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-dark);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.3s ease;
}

.recommend_item:hover .recommend_title {
	color: var(--accent);
}

.recommend_date {
	font-size: 12px;
	color: var(--muted);
}

/* 响应式 */
@media (max-width: 1024px) {
	.detail_wrapper {
		grid-template-columns: 1fr;
	}
	
	.detail_sidebar {
		display: none;
	}
}

@media (max-width: 768px) {
	.detail_section {
		padding: 0 0 40px;
	}

	.detail_card {
		padding: 24px;
	}

	.detail_title {
		font-size: 22px;
	}

	.detail_meta {
		gap: 16px;
		flex-wrap: wrap;
	}
}
