        
        /* 主要容器 */
        .productv-container {
            margin: 0 auto;
            background-color: white;
            border-radius: 0px;
            box-shadow-: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        /* 响应式布局 */
        .productv-main {
            display: flex;
            flex-wrap: wrap;
            padding: 20px;
        }
        
        /* 左侧部分 - 图片展示 */
        .productv-left {
            width: 40%;
            padding-right: 20px;
        }
        
        /* 右侧部分 - 产品信息 */
        .productv-right {
            width: 60%;
            padding-left: 20px;
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .productv-left,
            .productv-right {
                width: 100%;
                padding: 0;
            }
            
            .productv-left {
                margin-bottom: 30px;
            }
        }
        
        /* 产品大图样式 */
        .productv-main-image {
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1;
            border-radius: 0px;
            overflow: hidden;
            margin-bottom: 20px;
            border: 1px solid #dddddd;
        }
        
        .productv-main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        /* 缩略图容器 */
        .productv-thumbnails {
            position: relative;
            display: flex;
            align-items: left;
            justify-content: left;
        }
        
        /* 缩略图滚动容器 */
        .productv-thumbnails-container {
            display: flex;
            gap: 10px;
            overflow-x: hidden;
            scroll-behavior: smooth;
            padding: 5px 0;
        }
        
        /* 缩略图样式 */
        .productv-thumbnail {
            width: 80px;
            height: 80px;
            border-radius: 5px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .productv-thumbnail.active {
            border-color: #009640;
        }
        
        .productv-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .productv-thumbnail:hover img {
            transform: scale(1.05);
        }
        
        /* 缩略图导航箭头 */
        .productv-thumb-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: background-color 0.3s;
        }
        
        .productv-thumb-nav:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }
        
        .productv-thumb-prev {
            left: 0;
        }
        
        .productv-thumb-next {
            right: 0;
        }
        
        /* 右侧内容样式 */
        .productv-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #222;
        }
        
        /* 标签栏样式 */
        .productv-tabs {
            display: flex;
            background-color: #f1f1f1;
            border-radius: 0px;
            margin-top: 28px;
			margin-bottom: 28px;
            overflow: hidden;
            flex-wrap: nowrap;
        }
        
        .productv-tab {
            flex: 1;
            text-align: center;
            padding: 15px 8px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .productv-tab.active {
            background-color: #009640;
            color: white;
        }
        
        .productv-tab:not(.active):hover {
            background-color: #e0e0e0;
        }
        
        /* 标签内容区 */
        .productv-tab-content {
            display: none;
        }
        
        .productv-tab-content.active {
            display: block;
        }
        
        /* 产品属性内容样式 */
        .productv-category {
            background-color: #e8f5e9;
            padding: 15px;
			width:400px;
            border-radius: 0px;
            margin-bottom: 20px;
			border:#ededed 1px solid;
        }
        
        .productv-category a {
            text-decoration: none;
            color: #2e7d32;
            font-size: 18px;
            font-weight: 600;
        }
        
        .productv-category span {
            font-size: 16px;
            margin-left: 10px;
            color: #666;
        }
        
        .productv-description {
            color: #666;
            margin-bottom: 25px;
            line-height: 1.7;
        }
        
        /* 按钮样式 */
        .productv-button {
            display: flex;
			width:400px;
            align-items: center;
            justify-content: center;
            background-color: #009640;
            color: white;
            text-decoration: none;
            padding: 12px 20px;
            border-radius: 0px;
            margin-bottom: 15px;
            font-weight: 600;
            transition: background-color 0.3s;
            text-align: center;
        }
        
        .productv-button:hover {
            background-color: #218838;
        }
        
        .productv-button i {
            margin-right: 10px;
            font-size: 18px;
        }
        
        /* 链接行样式 */
        .productv-link {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            text-decoration: none;
            color: #333;
            transition: color 0.3s;
        }
        
        .productv-link:hover {
            color: #009640;
        }
        
        .productv-link img {
            width: 20px;
            height: 20px;
            margin-right: 10px;
        }
        
        /* 相关产品样式 */
        .productv-related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        @media (max-width: 768px) {
            .productv-related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .productv-related-item {
            border: 1px solid #eeeeee;
            border-radius: 2px;
            overflow: hidden;
            text-decoration: none;
            color: #333;
            transition: transform 0.3s, box-shadow 0.3s;
            display: block;
        }
        
        .productv-related-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }
        
        .productv-related-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            overflow: hidden;
        }
        
        .productv-related-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .productv-related-item:hover .productv-related-image img {
            transform: scale(1.05);
        }
        
        .productv-related-title {
            text-align: center;
            padding: 12px 10px;
            font-weight: 500;
            font-size: 15px;
        }
        
        .productv-related-line {
            height: 1px;
            background-color: #dddddd;
            margin: 0 10px;
        }
        
        .productv-related-button {
            display: block;
            text-align: center;
            background-color: #999999;
            color: white;
			width:110px;
            padding: 8px;
            margin: 8px;
            border-radius: 0px;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        
        .productv-related-item:hover .productv-related-button {
            background-color: #009640;
        }
        
        /* 对话框样式 */
        .productv-dialog {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .productv-dialog-content {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            text-align: center;
        }
        
        .productv-dialog-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #666;
        }
        
        /* 打印样式 */
        @media print {
            body * {
                visibility: hidden;
            }
            
            .productv-container, .productv-container * {
                visibility: visible;
            }
            
            .productv-container {
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                box-shadow: none;
            }
        }
        
        /* 辅助样式 */
        .productv-hidden {
            display: none;
        }
		
		
 /* -------------------------------产品说明============== */		
		
	        .pro_content {
            margin: 0 auto;
            padding: 20px 0;
            color: #333;
            box-sizing: border-box;
        }

        .pro_content_title {
            font-size: clamp(1.2rem, 4vw, 1.4rem);
            font-weight: 600;
            text-align: left;
            color: #1a1a1a;
            margin: 0 0 10px 10px;
            line-height: 1.2;
        }

        .pro_content_divider {
            height: 1px;
            background-color: #dddddd;
            margin: 0 auto 20px auto;
            width: 100%;
            max-width: 100%;
        }

        .pro_content_description {
            font-size: clamp(1rem, 2.5vw, 1.125rem);
            line-height: 1.6;
            text-align: center;
            color: #666;
            margin: 0 auto 30px auto;
            max-width: 800px;
        }

        .pro_content_body {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .pro_content_feature {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .pro_content_feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .pro_content_feature h3 {
            font-size: 1.25rem;
            margin: 0 0 10px 0;
            color: #2c3e50;
        }

        .pro_content_feature p {
            font-size: 0.95rem;
            line-height: 1.5;
            color: #555;
            margin: 0;
        }

        .pro_content_image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            display: block;
        }

        @media (max-width: 768px) {
            .pro_content {
                padding: 5px;
            }
            
            .pro_content_body {
                gap: 20px;
            }
            
            .pro_content_feature {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .pro_content {
                padding: 12px;
            }
            
            .pro_content_feature {
                padding: 15px;
            }
            
            .pro_content_divider {
                max-width: 100%;
            }
        }	
		
		