	.product-detail {
		padding: 1.3rem 0 1.6rem;
		display: flex;
		flex-wrap: wrap;
		background: white;
		border-radius: 12px;
		overflow: hidden;
		gap:80px;
	}
	.prodetails-text img{max-width: 100%;}
	.product-gallery {
		flex: 1;
		min-width: 300px;
		padding: 0px;
	}

	.product-info {
		flex: 1;
		min-width: 300px;
		padding: 30px;
	}

	.gallery-title {
		font-size: 20px;
		margin-bottom: 20px;
		color: #222;
		font-weight: 600;
		border-bottom: 1px solid #eee;
		padding-bottom: 10px;
	}

	/* 主轮播图样式 */
	.main-swiper {
		width: 100%;
		height: 480px;
		border-radius: 8px;
		overflow: hidden;
		margin-bottom: 15px;
		cursor: pointer;
		transition: transform 0.3s ease;
		border:1px solid #e4e4e4;
	}

	.main-swiper:hover {
		transform: translateY(-2px);
	}

	.main-swiper .swiper-slide {
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
	}

	.main-swiper .swiper-slide img {
		max-width: 100%;
		/*height: 100%;*/
		/*object-fit: cover;*/
		display: block;
	}

	/* 缩略图轮播样式 */
	.thumbnail-swiper {
		width: 100%;
		height: 110px;
		margin-top: 10px;
		box-sizing: border-box;
		padding:0 1px;
	}

	.thumbnail-swiper .swiper-slide {
		height: 110px;
		opacity: 0.5;
		cursor: pointer;
		border-radius: 6px;
		overflow: hidden;
		border:1px solid #e4e4e4;
		
	}
	.thumbnail-swiper .swiper-slide-active{opacity: 1;
	/*border:1px solid #004f94*/
	}
	

	.thumbnail-swiper .swiper-slide:hover {
		opacity: 0.8;
	}

	.thumbnail-swiper .swiper-slide-thumb-active {
		opacity: 1;
		border-color: #4a6cf7;
	}

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

	/* 产品信息样式 */
	.product-title {
		font-size: 28px;
		font-weight: 700;
		margin-bottom: 10px;
		color: #222;
	}

	.product-price {
		font-size: 32px;
		color: #ff6b6b;
		font-weight: 700;
		margin-bottom: 15px;
	}

	.product-price .original-price {
		font-size: 20px;
		color: #999;
		text-decoration: line-through;
		margin-left: 10px;
	}

	.product-description {
		margin-bottom: 25px;
		color: #555;
		font-size: 16px;
		line-height: 1.7;
	}

	.product-features {
		margin-bottom: 25px;
	}

	.product-features h3 {
		margin-bottom: 10px;
		font-size: 18px;
		color: #333;
	}

	.product-features ul {
		padding-left: 20px;
	}

	.product-features li {
		margin-bottom: 8px;
		color: #666;
	}

	.product-actions {
		display: flex;
		gap: 15px;
		margin-top: 30px;
	}

	.btn {
		padding: 14px 28px;
		border: none;
		border-radius: 6px;
		font-size: 16px;
		font-weight: 600;
		cursor: pointer;
		transition: all 0.3s ease;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.btn-primary {
		background-color: #4a6cf7;
		color: white;
		flex: 2;
	}

	.btn-primary:hover {
		background-color: #3a5ce5;
		transform: translateY(-2px);
		box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
	}

	.btn-secondary {
		background-color: #f1f3f9;
		color: #333;
		flex: 1;
	}

	.btn-secondary:hover {
		background-color: #e4e8f7;
	}

	/* 放大查看模态框 */
	.modal-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.9);
		display: none;
		justify-content: center;
		align-items: center;
		z-index: 9999;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.modal-overlay.active {
		display: flex;
		opacity: 1;
	}

	.modal-content {
		max-width: 90%;
		max-height: 90%;
		position: relative;
	}

	.modal-swiper {
		width: 800px;
		max-width: 90vw;
		height: 600px;
		max-height: 90vh;
	}

	.modal-swiper .swiper-slide {
		display: flex;
		align-items: center;
		justify-content: center;
		background: #fff;
	}

	.modal-swiper .swiper-slide img {
		max-width: 100%;
		max-height: 100%;
		object-fit: contain;
	}

	.close-modal {
		position: absolute;
		top: 20px;
		right: 20px;
		background: rgba(255, 255, 255, 0.1);
		color: white;
		border: none;
		width: 50px;
		height: 50px;
		border-radius: 50%;
		font-size: 24px;
		cursor: pointer;
		z-index: 10000;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: background 0.3s ease;
	}

	.close-modal:hover {
		background: rgba(255, 255, 255, 0.2);
	}

	.modal-nav {
		position: absolute;
		bottom: 6px;
		left: 0;
		width: 100%;
		display: flex;
		justify-content: center;
		z-index: 10000;
	}

	.modal-thumbnail {
		width: 360px;
		height: 60px;
	}

	.modal-thumbnail .swiper-slide {
		opacity: 0.5;
		cursor: pointer;
		border-radius: 4px;
		overflow: hidden;
		transition: opacity 0.3s ease;
	}

	.modal-thumbnail .swiper-slide-active {
		opacity: 1;
		border: 1px solid #4a6cf7;
	}

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

	/* 响应式设计 */
	@media (max-width: 768px) {
		.product-detail {
			flex-direction: column;
		}

		.product-gallery,
		.product-info {
			border-right: none;
			border-bottom: 1px solid #eee;
		}

		.main-swiper {
			height: 300px;
		}

		.thumbnail-swiper {
			height: 70px;
		}

		.product-title {
			font-size: 24px;
		}

		.product-price {
			font-size: 28px;
		}

		.modal-swiper {
			height: 400px;
		}
	}

	@media (max-width: 480px) {
		.main-swiper {
			height: 250px;
		}

		.thumbnail-swiper {
			height: 60px;
		}

		.product-actions {
			flex-direction: column;
		}

		.btn {
			width: 100%;
		}
	}

	.product-rating {
		display: flex;
		align-items: center;
		margin-bottom: 15px;
	}

	.stars {
		color: #ffc107;
		font-size: 20px;
		margin-right: 10px;
	}

	.rating-text {
		color: #666;
		font-size: 15px;
	}

	.product-sku {
		margin-bottom: 15px;
		color: #777;
		font-size: 14px;
	}

	.product-sku span {
		color: #333;
		font-weight: 600;
	}

	/* Swiper导航按钮样式 */
	.swiper-button-next,
	.swiper-button-prev {
		color: white;
		background-color: rgba(0, 0, 0, 0.5);
		width: 50px;
		height: 50px;
		border-radius: 50%;
	}

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

	.swiper-button-next:hover,
	.swiper-button-prev:hover {
		background-color: rgba(0, 0, 0, 0.8);
	}
	
	
	@media screen and (max-width: 980px) {
		.product-gallery{width: 100%;}
		.prodetail_top .info{width: 100%;}
		.thumbnail-swiper .swiper-slide{height: 60px;}
		.swiper-button-next, .swiper-button-prev{width: 30px;height: 30px;}
		.product-detail{padding: .8rem 0 .5rem}
	}
	