   .product-detail {
            padding: 20px 0;
        }
        .product-detail .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 24px 20px 0 20px;
            display: flex;
            flex-wrap: wrap;
            position: relative;
        }
        .product-gallery {
            flex: 1;
            min-width: 500px;
            position: static;
        }
        .image-wrapper {
            position: relative;
            width: 500px;
            height: 500px;
            border: 1px solid #ddd;
            overflow: hidden;
            background: #fff;
            cursor: crosshair;
        }
        .image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .lens {
            position: absolute;
            width: 150px;
            height: 150px;
            background: rgba(255,255,255,.35);
            border: 1px solid #ccc;
            display: none;
            pointer-events: none;
            backdrop-filter: blur(2px);
        }
        .zoom-result {
            position: absolute;
            top: 0;
            left: 540px;
            width: 500px;
            height: 500px;
            border: 1px solid #ddd;
            background: #fff;
            background-repeat: no-repeat;
            display: none;
            z-index: 999;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
        }
        .thumbnail-list {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        .thumbnail-item {
            width: 80px;
            height: 80px;
            border: 2px solid transparent;
            cursor: pointer;
            overflow: hidden;
        }
        .thumbnail-item.active {
            border-color: #CC2936;
        }
        .thumbnail-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .product-info {
            flex: 1;
            min-width: 400px;
        }
        .product-title {
       font-size: 1.27em;
            color: #333;
        
            border-bottom: 1px solid #eee;
            padding-top: 10px;
        }
        .product-description {
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
        }
        .product-actions {
            display: flex;
            gap: 15px;
       
            flex-wrap: wrap;
        }
        .btn {
            padding: 12px 30px;
            border: none;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        .btn-primary {
            background-color: #CC2936;
            color: #fff;
        }
        .btn-primary:hover {
            background-color: #a8222d;
        }
        .btn-secondary {
            background-color: #fff;
            color: #CC2936;
            border: 1px solid #CC2936;
        }
        .btn-secondary:hover {
            background-color: #CC2936;
			color:#fff;
        }
        .product-breadcrumb {
            margin-bottom: 20px;
            font-size: 14px;
        }
        .product-breadcrumb a {
            color: #666;
            text-decoration: none;
        }
        .product-breadcrumb a:hover {
            color: #CC2936;
        }
        .product-breadcrumb span {
            margin: 0 8px;
            color: #999;
        }

        /* 产品参数样式 */
        .product-params {
            width: 100%;
     
            padding-top: 30px;
            border-top: 1px solid #eee;
        }
        .product-params h3 {
            font-size: 20px;
            color: #e31e24;
            margin-bottom: 20px;
            border-bottom-style: solid;
            border-bottom-width: 3px;
            border-bottom-color: #e31e24;
            padding: 0 0 15px 0;
        }
        .params-table {
            width: 100%;
            border-collapse: collapse;
        }
        .params-table tr {
            border-bottom: 1px solid #eee;
        }
        .params-table th {
            width: 25%;
            padding: 12px 0;
            text-align: left;
            color: #666;
            font-weight: 500;
        }
        .params-table td {
            color: #333;
            padding: 12px 0;
        }

        /* 翻页导航 */
        .product-nav {
            width: 100%;
            margin-top: 40px;
            font-size: 16px;
            color: #333;
            display: flex;
            justify-content: space-between;
            line-height: 1.5;
            gap: 15px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        .product-nav span {
            color: #666;
            white-space: normal;
        }

        /* 相关产品轮播 */
        .related-products {
            width: 100%;
            margin-top: 40px;
        }
        .related-products h3 {
            font-size: 20px;
            color: #e31e24;
            margin-bottom: 20px;
            border-bottom-style: solid;
            border-bottom-width: 3px;
            border-bottom-color: #e31e24;
            padding: 0 0 15px 0;
        }
        .related-slide {
            overflow: hidden;
            margin-bottom: 20px; /* 给下方按钮留出空间 */
        }
        .related-item {
            border: 1px solid #eee;
            border-radius: 6px;
            padding: 15px;
            text-align: center;
        }
        .related-item img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 4px;
            margin-bottom: 10px;
        }
        .related-item p {
            font-size: 14px;
            color: #333;
            line-height: 1.4;
            margin-bottom: 15px;
        }
        /* 新增：相关产品按钮样式 */
        .related-item .product-buttons {
            display: flex;
            gap: 8px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .related-item .product-buttons a {
            padding: 8px 15px;
            font-size: 13px;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .related-item .product-buttons .consult-btn {
            background-color: #CC2936;
            color: #fff;
            border: 1px solid #CC2936;
        }
        .related-item .product-buttons .consult-btn:hover {
            background-color: #a8222d;
        }
        .related-item .product-buttons .view-more-btn {
            background-color: #fff;
            color: #CC2936;
            border: 1px solid #CC2936;
        }
        .related-item .product-buttons .view-more-btn:hover {
            background-color: #fef0f2;
        }
        /* 调整轮播按钮样式 - 移到轮播下方 */
        .swiper-nav-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
        }
        .swiper-button-prev,
        .swiper-button-next {
            color: #CC2936;
            transform: scale(0.8);
            position: static !important; /* 取消绝对定位 */
            margin: 0 !important; /* 重置margin */
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: #fff;
            cursor: pointer;
            transition: all 0.3s ease;
			border: 1px #ddd solid;
        }
        .swiper-button-prev:hover,
        .swiper-button-next:hover {
            background-color: #CC2936;
            color: #fff;
        }
        .swiper-button-prev.swiper-button-disabled,
        .swiper-button-next.swiper-button-disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background-color: #f5f5f5;
				
        }
        .swiper-navigation-icon {
            width: 11px;
            height: 20px;
        }
        .swiper-button-next .swiper-navigation-icon {
       
			display:none;
        }

        /* 手机端适配 */
        @media (max-width: 768px) {
            .product-nav {
                flex-direction: column;
                gap: 12px;
            }
            .product-detail .container{
                display: block;
            }
        }
        @media (max-width: 1024px) {
            .product-detail .container {
                flex-direction: column;
            }
            .zoom-result {
                display: none !important;
            }
            .product-gallery,
            .product-info {
                min-width: 100%;
            }
            .image-wrapper {
                width: 100%;
                height: auto;
            
            }
        }
		/* 左箭头 ← */
.swiper-button-prev .swiper-navigation-icon {
     transform: rotate(180deg) !important;
	 display:none;
}
/* 右箭头 → */
.swiper-button-next .swiper-navigation-icon {
  transform: rotate(0deg); 
}







.params-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.params-list li {
    display: flex;
    border-bottom: 1px solid #eee; /* 模拟表格分隔线 */
    padding: 8px 0;
}

.params-list .param-label {
    flex: 0 0 30%; /* 标签宽度，和原表格th列宽匹配 */
    font-weight: bold;
    color: #333;
}

.params-list .param-value {
    flex: 1;
    color: #666;
    padding-left: 20px;
}

/* 可选：第一行添加上边框，完全模拟表格样式 */
.params-list li:first-child {
    border-top: 1px solid #eee;
}

 a{
	 text-decoration : none;
	 color:#666;
}