﻿/* 全局样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }

        /* 通用容器 */
        .container {
            width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

a {
    text-decoration: none;
}

        /* 顶部导航栏 */
nav {
    width: 100%;
    height: 80px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed; /* 固定定位 */
    top: 0; /* 固定在顶部 */
    left: 0; /* 左右铺满 */
    z-index: 999;
}

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        /* Logo区域 */
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            
            height: 50px;
            object-fit: cover;
        }

        /* 主导航菜单 */
        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu > li {
            position: relative;
            line-height: 80px;
            transition: background-color 0.3s;
            padding: 0 20px;
        }

        .nav-menu > li > a {
            text-decoration: none;
            color: #666666;
            font-size: 16px;
            transition: color 0.3s;
        }
		
	      
		

        /* 导航栏目hover背景色 */
        .nav-menu > li:hover {
            background-color: #be0406;
        }

        .nav-menu > li:hover > a {
            color: #ffffff;
        }

        /* 二级菜单 */
        .sub-menu {
            position: absolute;
            top: 80px;
            left: 0;
            width: 180px;
            background: #be0406;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            list-style: none;
            display: none;
        }

        .sub-menu li {
            line-height: 45px;
            padding: 0;
            text-indent: 20px;
            position: relative;
        }

        .sub-menu li a {
            text-decoration: none;
            color: #ffffff;
            font-size: 14px;
            display: block;
            transition: all 0.3s;
        }

        /* 三级菜单样式 */
        .third-menu {
            position: absolute;
            top: 0;
            left: 180px;
            width: 180px;
            background: #be0406;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            list-style: none;
            display: none;
        }

        .sub-menu li:hover .third-menu {
            display: block;
        }

        /* 二级菜单hover样式 */
        .sub-menu li a:hover {
            color: #be0406;
            background: #ffffff;
            display: block;
        }

        /* 三级菜单hover样式 */
        .third-menu li a:hover {
            color: #be0406;
            background: #ffffff;
            display: block;
        }

        .nav-menu > li:hover .sub-menu {
            display: block;
        }

        /* 咨询电话 */
        .contact-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #ffffff;
            font-size: 16px;
            
            border: 1px solid #be0406;
            border-radius: 8px;
            padding: 8px 15px;
            background-color: #be0406;
            transition: all 0.3s;
        }

        /* 咨询电话hover效果 */
        .contact-phone:hover {
            background-color: #ffffff;
            color: #be0406;
            border-color: #be0406;
        }

        /* 移动端汉堡菜单按钮 */
        .mobile-menu-btn {
            display: none;
            width: 40px;
            height: 40px;
            position: relative;
            cursor: pointer;
            z-index: 999999;
            float: right;
            margin-top: 5px;
            transition: transform 0.3s;
        }

        .mobile-menu-btn:hover {
            transform: scale(1.1);
        }

        .mobile-menu-btn span {
            display: block;
            width: 30px;
            height: 3px;
            background-color: #be0406;
            border-radius: 3px;
            position: absolute;
            left: 5px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn span:nth-child(1) { top: 10px; }
        .mobile-menu-btn span:nth-child(2) { top: 19px; }
        .mobile-menu-btn span:nth-child(3) { top: 28px; }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg);
            top: 19px;
            background-color: #be0406;
        }
        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg);
            top: 19px;
            background-color: #be0406;
        }

        /* 移动端侧边菜单 */
        .mobile-nav {
	position: fixed;
	top: 0;
	right: -100%;
	width: 40%;
	max-width: 300px;
	height: 100vh;
	background-color: #A70303;
	z-index: 10000;
	padding: 80px 20px 20px;
	transition: right 0.3s ease;
	overflow-y: auto;
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav-menu {
            list-style: none;
        }
        .mobile-nav-menu > li {
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav-menu > li > a {
            display: block;
            color: #ffffff;
            text-decoration: none;
            padding: 15px 10px;
            font-size: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }

        .mobile-nav-menu > li > a:hover {
            background-color: rgba(25, 96, 180, 0.2);
        }

        .mobile-nav-menu > li > a .arrow {
            width: 16px;
            height: 16px;
            border-right: 2px solid #ffffff;
            border-bottom: 2px solid #ffffff;
            transform: rotate(-45deg);
            transition: transform 0.3s ease;
        }
        .mobile-nav-menu > li > a .arrow.active {
            transform: rotate(45deg);
        }
        .mobile-sub-menu {
            list-style: none;
            display: none;
        }
        /* 移动端三级菜单样式 */
        .mobile-third-menu {
            list-style: none;
            display: none;
            padding-left: 20px;
        }
        .mobile-sub-menu li a {
            display: block;
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            padding: 12px 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-sub-menu li a .third-arrow {
            width: 12px;
            height: 12px;
            border-right: 2px solid #ffffff;
            border-bottom: 2px solid #ffffff;
            transform: rotate(-45deg);
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .mobile-sub-menu li a .third-arrow.active {
            transform: rotate(45deg);
        }
        .mobile-third-menu li a {
            display: block;
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            padding: 12px 10px;
        }
        .mobile-third-menu li a:hover {
            color: #1960b4;
            background-color: #ffffff;
            padding-left: 20px;
        }
        .mobile-sub-menu li a:hover {
            color: #1960b4;
            background-color: rgba(255,255,255,0.1);
            padding-left: 15px;
        }

        /* 遮罩层 */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 9999;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .overlay.active {
            display: block;
            opacity: 1;
        }

        /* 响应式适配 */
        @media (max-width: 1200px) {
            .container {
                width: 100%;
            }
        }

        @media (max-width: 992px) {
            .nav-menu > li {
                padding: 0 8px;
            }
        }

        @media (max-width: 768px) {
            .nav-wrapper {
                flex-direction: row;
                height: 80px;
                padding: 0 10px;
            }
            .logo {
                order: 1;
            }
			.logo img {
	height: 50px; /* 手机端高度调整 */
	padding: 5px;
	width: auto;
    }
            .nav-menu {
                display: none;
            }
            .contact-phone {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
                order: 3;
            }
        }

 /* 新闻资讯模块核心样式 */
.news-section {
  width: 100%;
  padding: 40px 20px; /* 上下内边距，左右适配小屏幕 */
  box-sizing: border-box;
}

.news-container {
  max-width: 1300px; /* 最大宽度1400px */
  margin: 0 auto; /* 水平居中 */
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 三列等分布局 */
  gap: 20px; /* 卡片之间的间距 */
}

/* 新闻卡片样式 */
/* 新闻卡片样式（修改） */
.news-card {
  padding: 20px;
  border: 1px solid #eee; /* 卡片边框（参考图浅边框） */
  box-sizing: border-box;
  /* 新增阴影效果 */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  /* 新增过渡动画，让悬浮效果更丝滑 */
  transition: all 0.3s ease;
  border-radius: 8px; /* 可选：轻微圆角，视觉更柔和 */
}

/* 新增鼠标经过效果 */
.news-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); /* 加深阴影 */
  transform: translateY(-4px); /* 轻微上移，更有立体感 */
  border: 1px solid #e4e4e4; /* 卡片边框（参考图浅边框） */
}
/* 新闻标题 */
.news-title {
	font-size: 18px;
	font-weight: 500;
	color: #333;
	margin: 0 0 16px 0;
	line-height: 1.4;
}

/* 新闻描述 */
.news-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

/* 新闻底部（日期+更多） */
.news-footer {
	display: flex;
	justify-content: space-between; /* 日期左，更多右 */
	align-items: center;
	padding-top: 16px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #e5e7eb;
}

/* 新闻日期 */
.news-date {
  font-size: 14px;
  color: #999;
}

/* 更多链接 */
.news-more {
	font-size: 14px;
	color: #333333;
	text-decoration: none;
}

.news-more:hover {
  color: #333; /*  hover 高亮 */
}

/* 响应式适配（小屏幕自动变单列） */
@media (max-width: 768px) {
  .news-container {
    grid-template-columns: 1fr;
  }
}


        /* ==================== 精致 Footer 样式 ==================== */
        .footer {
            background: linear-gradient(135deg, #1e293b, #0f172a);
            color: #f1f5f9;
            padding: 60px 24px;
            border-top: 3px solid #be0406;
        }

        .footer-wrap {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 48px;
        }

        /* 左侧联系信息 */
        .contact-box {
            flex: 1 1 360px;
        }

        .contact-box h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 24px;
            color: #ffffff;
            position: relative;
            padding-bottom: 12px;
        }

        .contact-box h3::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: #be0406;
            border-radius: 3px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            font-size: 16px;
            transition: transform 0.2s ease;
        }

        .contact-item:hover {
            transform: translateX(4px);
        }

        .contact-item i {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 14px;
            color: #38bdf8;
            font-size: 18px;
        }

        /* 右侧二维码 */
        .qrcode-box {
            flex: 0 0 160px;
            text-align: center;
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }

        .qrcode-box p {
            font-size: 15px;
            margin-bottom: 12px;
            color: #cbd5e1;
        }

        .qrcode-box img {
            width: 120px;
            height: 120px;
            border-radius: 10px;
            background: #fff;
            padding: 6px;
            object-fit: cover;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        /* 底部版权 */
        .copyright {
            max-width: 1300px;
            margin: 50px auto 0;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 14px;
            color: #94a3b8;
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .footer-wrap {
                flex-direction: column;
                text-align: center;
				gap: 20px;
            }

            .contact-box h3::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .contact-item {
                justify-content: center;
            }
        }

 /* 页面容器 */
.news_container {
	width: 100%;
	max-width: 1300px;
	margin-top: 50px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
}
/* 顶部：左侧中英标题 + 右侧更多 */
.news-top-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	padding-bottom: 15px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #eee;
}

.title-group {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.title-cn {
	font-size: 26px;
	font-weight: bold;
	color: #000;
}
.title-en {
	font-size: 16px;
	color: #CCCCCC;
	letter-spacing: 1px;
}

.more-link {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s;
}
.more-link:hover {
  color: #be0406;
  padding-right: 5px;
}
.more-link::after {
  content: " >";
  font-size: 16px;
}

/* 新闻栏目导航 —— 已设置居中！*/
.news-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* 核心：水平居中 */
  align-items: center;
  gap: 14px;
  padding: 10px 0 10px;
}
.news-nav a {
	padding: 10px 24px;
	border-radius: 10px;
	color: #333;
	text-decoration: none;
	font-size: 15px;
	transition: all 0.3s;
	white-space: nowrap;
	border: 1px solid transparent;
	background-color: #F0F0F0;
}
.news-nav a.active {
  background: #be0406;
  color: #fff;
  font-weight: 500;
}
.news-nav a:hover:not(.active) {
  background: #eef3ff;
  color: #be0406;
  transform: translateY(-2px);
}


/* 外层容器 */
.product-section {
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 20px;
    position: relative;
}

/* 轮播外层 */
.slider-wrapper {
    width: 100%;
    position: relative;
}

/* 轮播控制箭头 —— 手机端自动缩小 */
.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	z-index: 10;
	transition: all 0.3s ease;
	border: none;
	font-size: 18px;
	color: #FFF;
	background-color: rgba(190,4,6,0.95);
}
.slider-arrow:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: #be0406;
}
.slider-arrow.prev {
    left: -20px; /* 一半压边 */
}
.slider-arrow.next {
    right: -20px; /* 一半压边 */
}

/* 滚动内容容器 —— 只在这里裁切，不影响箭头 */
.slider-container {
    width: 100%;
    overflow: hidden;
}

/* 轮播轨道 */
.slider-track {
    display: flex;
    transition: transform 0.6s ease;
    width: max-content;
}

/* 产品卡片 —— 自适应宽度 */
.product-card {
    width: 280px;
    max-width: 80vw; /* 手机端不超出屏幕 */
    margin: 0 8px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* 产品图片 */
.product-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* 产品内容 */
.product-info {
    padding: 16px;
}
.product-info h3 {
	font-size: 14px;
	color: #666;
	margin-bottom: 8px;
	font-weight: 500;
}

.product-info p {
    font-size: 13px;
    color: #777;
    line-height: 1.4;
}

/* ========== 手机端适配 ========== */
@media (max-width: 768px) {
    .product-section {
        padding: 0 15px;
        margin: 30px auto;
    }
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    .slider-arrow.prev {
        left: -18px;
    }
    .slider-arrow.next {
        right: -18px;
    }
    .product-card {
        width: 240px;
    }
    .product-img {
        height: 160px;
    }
}



        /* 全屏100% 轮播容器 - 无最大宽度限制 */
        .carousel-container {
            position: relative;
            width: 100%;
            margin: 0 auto; /* 去掉上下边距，完全顶满 */
            overflow: hidden;
        }

        /* 轮播图片包裹层 */
        .carousel-wrapper {
            display: flex;
            transition: transform 0.5s ease;
            height: 650px; /* 电脑端高度 */
        }

        /* 单张图片样式 */
        .carousel-item {
            min-width: 100%;
            height: 100%;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 图片不变形，全屏显示 */
        }

        /* 左右切换按钮 */
        .carousel-btn {
            position: absolute;
            top: 55%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            background: rgba(255,255,255,0.8);
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }
        .carousel-btn:hover {
            background: white;
        }
        /* 修改按钮类名选择器 */
        .carousel-prev-btn { left: 20px; }
        .carousel-next-btn { right: 20px; }

        /* 底部指示器 */
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
        }
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
        }
        .indicator.active {
	width: 12px;
	border-radius: 10px;
	background-color: #be0406;
        }

        /* 手机端适配 */
        @media (max-width: 768px) {
            .carousel-wrapper {
                height: 400px; /* 手机端高度 */
            }
            .carousel-btn {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
		.carousel-prev-btn {
	
	display: none !important;
}
        .carousel-next-btn {
			
		display: none !important;
			 }
        }





        
/* 搜索条容器：精致外框 + 内边距 */
.search-bar {
	display: flex;
	width: 100%;
	max-width: 1300px;
	gap: 14px;
	align-items: center;
	/* 外层精致边框 */
	border: 1px solid #E7E7E7;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	margin-top: 40px; /* 关键修改：添加px单位，设置50px上边距 */
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 16px;
	padding-right: 20px;
	padding-bottom: 16px;
	padding-left: 20px;
	background-color: #F9F9F9;
}
        /* 搜索框：高级无边框 + 聚焦高亮 */
        .search-input {
            flex: 1;
            padding: 16px 20px;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            outline: none;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #fafbfc;
        }

        .search-input:focus {
            border-color: #3b82f6;
            background: white;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
        }

        /* 搜索按钮：渐变 + 微动效 */
        .search-btn {
	padding: 16px 36px;
	color: #FFF;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	white-space: nowrap;
	transition: all 0.3s ease;
	box-shadow: 0 2px 5px rgba(59, 130, 246, 0.2);
	background-color: #be0406;
        }

        .search-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(59, 130, 246, 0.25);
        }

        /* 手机端：超美观竖版布局 */
        @media (max-width: 576px) {
            .search-bar {
	
	gap: 12px;
	padding: 10px;
	border-radius: 0px;
	display: flex;
	align-items: center;
	margin-top: 0px; 
	
            }
            .search-input {
	width: 75%;
	text-align: center;
	
            }
            .search-btn {
	width: 25%;
	padding: 18px;
	border-radius: 12px;
	
            }
        }


/* 模块容器 固定高度450px */
.site-build-banner {
    width: 100%;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    overflow: hidden;
    /* 核心修改：背景图片固定 + 跟随滚动偏移 */
    background-image: url(images/jjbg.jpg);
    background-position: center; /* 初始居中 */
    background-size: cover; /* 让图片覆盖容器（可选，也可设为100%/具体尺寸） */
    background-attachment: fixed; /* 关键：背景固定，滚动时容器移动，露出图片不同部分 */
    position: relative;
}

/* 主标题 优化字号、字重、字间距 */
.banner-title {
    color: #000;
    font-size: clamp(26px, 5vw, 45px);
    font-weight: 700;
    letter-spacing: 2px; /* 字间距加宽更大气 */
    margin-bottom: 26px;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(255,255,255,0.99); /* 轻微文字阴影更立体 */
	text-shadow: 0 2px 5px rgba(255, 255, 255, 0.99);
}

/* 描述文案 优化行高、宽度、透明度柔和白 */
.banner-desc {
    color: rgba(0, 0, 0, 0.99);
    font-size: clamp(14px, 1.7vw, 18px);
    max-width: 1000px;
    line-height: 1.8;
    margin-bottom: 48px;
	text-shadow: 0 2px 5px rgba(255, 255, 255, 1);
}

/* 美化按钮：圆角、阴影、内边距、过渡动画 */
.banner-btn {
    color: #FFFFFF;
    border: none;
    border-radius: 50px; /* 大圆角更现代 */
    font-size: clamp(15px, 2vw, 20px);
    font-weight: 500;
    padding: 15px 46px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 48, 136, 0.25);
    transition: all 0.3s ease;
    letter-spacing: 1px;
    background-color: #be0406;
}

/* 按钮hover动效：上浮+变色+加深阴影 */
.banner-btn:hover {
    background: #f8fbff;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 48, 136, 0.32);
    color: #333;
}

/* 手机端hover失效适配，点击反馈 */
.banner-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0, 48, 136, 0.2);
}
    .n-news_container {
            max-width: 1300px;
            margin: 0 auto;
        }

        /* 新闻列表项样式 */
        .n-news-item {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            display: flex;
            gap: 20px;
            align-items: center;
            transition: transform 0.2s;
        }

        .n-news-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.12);
        }

        /* 新闻图片样式 */
        .n-news-img {
            width: 180px;
            height: 120px;
            object-fit: cover;
            border-radius: 6px;
            flex-shrink: 0;
        }

        /* 无图片时的内容宽度适配 */
        .n-news-item.n-no-img .n-news-content {
            width: 100%;
        }

        /* 新闻内容区域 */
        .n-news-content {
            flex: 1;
        }

        .n-news-title {
            font-size: 20px;
            color: #222;
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .n-news-title a {
            color: #222;
            text-decoration: none;
        }

        .n-news-title a:hover {
            color: #be0406;
        }

        .n-news-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .n-news-time {
            font-size: 12px;
            color: #999;
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .n-news-item {
                flex-direction: column;
                align-items: flex-start;
            }

            .n-news-img {
                width: 100%;
                height: 200px;
            }

            .n-page-title {
                font-size: 24px;
            }

            .n-news-title {
                font-size: 18px;
            }
        }
DIV.green-black {
	MARGIN: 5px;
	TEXT-ALIGN: center;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 35px;
	padding: 5px;
	border-radius: 5px;
}
DIV.green-black A {
	PADDING-RIGHT: 8px;
	PADDING-LEFT: 8px;
	PADDING-BOTTOM: 4px;
	COLOR: #333333;
	MARGIN-RIGHT: 4px;
	PADDING-TOP: 4px;
	TEXT-DECORATION: none;
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	border-radius: 5px;
}
DIV.green-black A:hover {
	COLOR: #FFFFFF;
	background-color: #B0B0B0;
	font-family: Arial, Helvetica, sans-serif;
	border-radius: 5px;
}
DIV.green-black A:active {
	COLOR: #fff;
	background-color: #999999;
	font-family: Arial, Helvetica, sans-serif;
	border-radius: 5px;
}
DIV.green-black SPAN.current {
	PADDING-RIGHT: 8px;
	PADDING-LEFT: 8px;
	FONT-WEIGHT: bold;
	PADDING-BOTTOM: 4px;
	COLOR: #fff;
	MARGIN-RIGHT: 4px;
	PADDING-TOP: 4px;
	background-color: #FFFFFF;
	border-radius: 5px;
}
DIV.green-black SPAN.disabled {
	PADDING-RIGHT: 8px;
	PADDING-LEFT: 8px;
	PADDING-BOTTOM: 4px;
	COLOR: #ccc;
	MARGIN-RIGHT: 4px;
	PADDING-TOP: 4px;
	border: 1px double #E6E6E6;
	border-radius: 5px;
	background-color: #FFF;
}

        /* 头部banner容器 固定高度400px */
        .banner-container {
            width: 100%;
            height: 400px;
            position: relative;
            overflow: hidden;
        }

        /* banner图片铺满容器 */
        .banner-img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        /* 导航+面包屑容器：宽度1400px，底部居中 + 上下居中 */
        .nav-crumb-wrapper {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1300px;
	background-color: rgba(255, 255, 255, 0.75);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	border-radius: 8px 8px 0 0; /* 顶部圆角 */
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05); /* 轻微阴影增加层次感 */
	padding-top: 12px;
	padding-right: 40px;
	padding-bottom: 12px;
	padding-left: 40px;
        }

        /* 导航选项样式 */
        .nav-items {
            display: flex;
            gap: 30px;
        }

        .nav-item {
            font-size: 16px;
            color: #333333;
            text-decoration: none;
            padding: 8px 0; /* 增加上下内边距，点击区域更大 */
            position: relative; /* 伪元素定位 */
            transition: all 0.3s ease;
        }

        /* 激活状态的导航（技术平台）- 改用伪元素实现更精致的下划线 */
        .nav-item.active {
            color: #be0406;
        }
        .nav-item.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #be0406;
            border-radius: 1px; /* 下划线圆角 */
        }

        /* 导航链接hover效果 */
        .nav-item:hover:not(.active) {
            color: #1a66b3;
        }
        .nav-item:hover:not(.active)::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #1a66b3;
            border-radius: 1px;
            opacity: 0.7; /* hover时下划线透明度降低，更柔和 */
        }

        /* 面包屑样式 */
        .breadcrumb {
            font-size: 15px;
            color: #000; /* 深一点的灰色更清晰 */
            display: flex;
            align-items: center;
        }


        .breadcrumb a {
            color: #000;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .breadcrumb a:hover {
	color: #1a66b3;
	text-decoration: none; /* hover加下划线，提示可点击 */
        }

        /* 面包屑分隔符优化 */
        .breadcrumb span {
            margin: 0 6px;
            color: #999;
        }

        /* 移动端适配：屏幕小于1400px时导航栏宽度100% */
        @media (max-width: 1200px) {
            .nav-crumb-wrapper {
                width: 100%;
                left: 0;
                transform: none;
                border-radius: 0; /* 移动端取消圆角 */
            }
        }

        /* 平板/手机适配（屏幕宽度≤768px） */
        @media (max-width: 768px) {
            .banner-container {
                height: 400px;
            }
			
				
			
			
            .nav-crumb-wrapper {
                flex-direction: column;
                align-items: stretch; /* 拉伸子元素占满宽度 */
                padding: 15px 18px;
                gap: 12px; /* 增加间距 */
				
            }
			
			
			 .breadcrumb {
	font-size: 14px;
	word-break: break-all;
	line-height: 1.4; /* 行高优化 */
	border-bottom: 1px solid #f0f0f0; /* 分隔线 */
	padding-top: 20px;
	padding-bottom: 30px;
            }
			
			
            .nav-items {
                gap: 25px;
                width: 100%;
                justify-content: flex-start; /* 左对齐 */
                padding-bottom: 5px;
                
            }
            .nav-item {
                font-size: 16px;
                padding: 6px 0;
            }
            .breadcrumb {
                font-size: 13px;
                width: 100%;
                justify-content: flex-start;
            }
			
		
        }

        /* 小屏手机适配（屏幕宽度≤480px） */
        @media (max-width: 480px) {
            .banner-container {
                height: 400px;
            }
            .nav-items {
                gap: 20px;
                overflow-x: auto; /* 导航项过多时可横向滚动 */
                padding-bottom: 8px;
                padding-right: 10px;
                scrollbar-width: none; /* 隐藏滚动条 */
            }
            /* 隐藏webkit滚动条 */
            .nav-items::-webkit-scrollbar {
                display: none;
            }
            .nav-item {
                font-size: 14px;
                white-space: nowrap; /* 导航文字不换行 */
            }
 .breadcrumb {
	font-size: 14px;
	word-break: break-all;
	line-height: 1.4; /* 行高优化 */
	border-bottom: 1px solid #f0f0f0; /* 分隔线 */
	padding-top: 20px;
	padding-bottom: 30px;
	color: #333;
            }
            /* 面包屑位置图标缩小 */
            .breadcrumb::before {
                font-size: 12px;
            }
        }
		
.cp-product-center {
	background-color: #ffffff; /* 指定白色 */
	padding-top: 30px;
	padding-right: 0;
	padding-bottom: 80px;
	padding-left: 0;
}
/* 电脑端基础样式 */
.con_wz {
	width: 90%;
	height: auto;
	font-size: 15px; /* 文字15号 */
	line-height: 1.8; /* 可选，让文字更舒服 */
	color: #333;
	margin-right: auto;
	margin-left: auto;
}

/* 电脑端图片：≤1000px正常显示，＞1000px强制1000px，高度自动 */
.con_wz img {
	display: block;
	max-width: 1000px;
	width: 100%;
	height: auto; /* 可选，图片居中 */
	margin-top: 15;
	margin-right: auto;
	margin-bottom: 15;
	margin-left: auto;
}
.show_bt {
	width: 100%;
	height: auto;
	font-size: 20px; /* 文字15号 */
	line-height: 35px; /* 可选，让文字更舒服 */
	font-weight: bold;
	color: #be0406;
	text-align: center;
}
.show_time {
	width: 100%;
	height: auto;
	font-size: 14px; /* 文字15号 */
	line-height: 35px;
	color: #666666;
	text-align: center;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E9E9E9;
	margin-bottom: 40px;
}
/* 手机端适配：≤768px 触发 */
@media (max-width: 768px) {
  .con_wz {
    font-size: 15px; /* 手机文字14号 */
	line-height: 1.8; /* 可选，让文字更舒服 */
  }
  .con_wz img {
    max-width: 100%; /* 手机图片全屏显示 */
  }
}
#wed_s_k{
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	height: 50px;
	margin-bottom: 20px;
	padding-top: 20px;
	display: table;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #F3F3F3;
}
#wed_s_k .left1{
	width: auto;
	height: 50px;
	float: left;
	font-size: 14px;
	line-height: 50px;
	color: #000;
	margin-left: 20px;
}
#wed_s_k .right1{
	width: auto;
	height: 50px;
	float: right;
	font-size: 14px;
	line-height: 50px;
	color: #000;
	margin-right: 20px;
}
/* 手机端样式：屏幕宽度768px以下生效 */
@media screen and (max-width: 768px) {
    #wed_s_k {
        height: auto; /* 高度自适应，撑开两行内容 */
        padding: 10px 0;
    }
    #wed_s_k .left1,
    #wed_s_k .right1 {
        float: none; /* 清除浮动 */
        display: block; /* 独占一行 */
        width: 100%;
        margin: 0 20px;
        height: 40px;
        line-height: 40px;
    }
    #wed_s_k .left1 {
        margin-bottom: 5px;
    }
}

        /* 全局重置 独立前缀隔离 */
        qagent-page * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft Yahei", sans-serif;
        }

        /* 最外层总容器 全新命名 qagent-page */
        qagent-page {
            display: flex;
            flex-wrap: wrap;
            max-width: 1300px;
            margin: 20px auto;
            padding: 0 15px;
            gap: 30px;
            display: -webkit-box;
            display: -ms-flexbox;
        }

        /* 左侧省份字母导航栏 重命名 qagent-left-sidenav */
        .qagent-left-sidenav {
            flex: 1;
            min-width: 280px;
        }

        /* 单条字母行容器 qagent-letter-row */
        .qagent-letter-row {
            display: flex;
            align-items: center;
            margin: 10px 0;
            gap: 8px;
        }

        /* 左侧字母标识 qagent-letter-tag */
        .qagent-letter-tag {
            width: 20px;
            font-weight: 600;
            color: #333;
        }

        /* 省份按钮组容器 qagent-province-btn-group */
        .qagent-province-btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        /* 省份按钮 qagent-province-btn */
        .qagent-province-btn {
            padding: 6px 12px;
            border: 1px solid #ccc;
            border-radius: 2px;
            background: #fff;
            cursor: pointer;
            white-space: nowrap;
            font-size: 14px;
            /* 移除默认链接样式 */
            text-decoration: none;
            color: inherit;
            display: inline-block;
        }

        /* 当前选中省份红色样式 qagent-province-btn--active */
        .qagent-province-btn--active,
        /* 鼠标悬停样式 */
        .qagent-province-btn:hover {
            background: #be0406 !important;
            color: #fff !important;
            border-color: #be0406 !important;
        }

        /* 右侧代理商详情区域 qagent-right-info-box */
        .qagent-right-info-box {
            flex: 2;
            min-width: 350px;
        }

        /* 右侧标题 qagent-region-title */
        .qagent-region-title {
            color: #be0406;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        /* 代理商卡片网格容器 qagent-card-wrap */
        .qagent-card-wrap {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 20px;
        }
        /* 单个代理商卡片 qagent-agent-card-item */
        .qagent-agent-card-item {
            border: 1px solid #eee;
            padding: 15px;
        }

        /* 公司名称 qagent-card-company */
        .qagent-card-company {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        /* 联系人 qagent-card-contact-name */
        .qagent-card-contact-name {
            color: #666;
            font-size: 14px;
            margin-bottom: 5px;
        }

        /* 联系电话链接 qagent-card-tel-link */
        .qagent-card-tel-link {
            color: #be0406;
            font-size: 14px;
            margin-bottom: 10px;
            text-decoration: none;
            display: inline-block;
        }

        /* 代理业务描述 qagent-card-desc-text */
        .qagent-card-desc-text {
            color: #be0406;
            font-size: 14px;
            line-height: 1.5;
        }

        /* 移动端响应式 样式完全不变仅选择器更名 */
        @media (max-width: 768px) {
            qagent-page {
                gap: 20px;
            }
            .qagent-region-title {
                font-size: 16px;
            }
            .qagent-card-company {
                font-size: 15px;
            }
            .qagent-letter-row {
                margin: 8px 0;
            }
        }
		
 /* 全局重置隔离前缀，防止污染全局 */
        .bio-reagent-box * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft Yahei", sans-serif;
        }

        /* 外层总容器全新命名 */
        .bio-reagent-box {
            width: 90%;
            max-width: 1300px;
            margin: 50px auto;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* 试剂分类卡片 重命名 + 鼠标悬浮阴影效果 */
        .reagent-item-card {
            flex: 1;
            min-width: 400px;
            padding: 20px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            background-color: #ffffff;
            transition: box-shadow 0.3s ease; /* 过渡动画更丝滑 */
        }
        /* 鼠标经过阴影效果 */
        .reagent-item-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* 卡片标题类名替换 + 底部灰线样式 */
        .card-main-title {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 20px;
	padding-bottom: 10px; /* 90%细灰线（浅灰接近90%视觉效果） */
	width: 90%; /* 线的宽度90% */
	border-bottom-width: 1px;
	border-bottom-style: double;
	border-bottom-color: #E6E8EC;
        }
		 .card-main-title a {
	color: #2D2D2D;	
        }

        /* 标签行容器重命名 */
        .label-row-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        /* 试剂标签全新类名 + 链接样式优化 */
        .reagent-label-tag {
            padding: 4px 10px;
            background-color: #f3f4f6;
            color: #4b5563;
            font-size: 14px;
            border-radius: 4px;
            border: 1px solid #e5e7eb;
            text-decoration: none; /* 去除链接下划线 */
            display: inline-block; /* 保证padding生效 */
            transition: background-color 0.2s ease; /* 悬浮过渡 */
        }
        /* 标签链接悬浮效果（可选） */
        .reagent-label-tag:hover {
	background-color: #FFF0F0;
	color: #be0406;
        }
		
       /* 页面容器 - 模拟整体布局居中 */
.cp22-page-container {
	width: 95%;
	max-width: 1300px;
	display: flex;
	gap: 24px;
	flex-wrap: wrap; /* 新增：超出换行 */
	margin-top: 50px;
	margin-right: auto;
	margin-bottom: 50px;
	margin-left: auto;
}

        /* 链接重置：去掉a标签默认样式 */
        .cp22-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        /* 产品卡片样式 - 核心容器 */
.cp22-product-card {
    flex: 0 0 calc(50% - 12px); /* 修改：固定宽度50%，减去gap的一半，实现一行两个 */
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}
        /* 鼠标经过卡片美化动效 */
        .cp22-product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(180, 180, 180, 0.12);
            border-color: #e2e8f0;
        }

        /* 产品图片容器 */
        .cp22-product-img {
	width: 220px;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	border: 1px solid #EEEEEE;
	overflow: hidden;
	transition: all 0.3s ease;
	padding-top: 10px;
	padding-bottom: 10px;
        }
        .cp22-product-card:hover .cp22-product-img {
	background-color: #EAFFFF;
        }
        .cp22-product-img img {
            width: 90%;
            height: 90%;
			border-radius: 5px;
            object-fit: contain;
        }

        /* 产品信息区域 */
        .cp22-product-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        /* 产品名称样式 */
        .cp22-product-name {
            font-size: 20px;
            color: #162936;
            margin-bottom: 8px;
            font-weight: 600;
            letter-spacing: 0.5px;
            position: relative;
            padding-bottom: 12px;
        }
        /* 名称下方分割线 */
        .cp22-product-name::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 70px;
            height: 2px;
            background: linear-gradient(90deg, #be0406, #be0406);
            border-radius: 1px;
        }

        /* 产品属性表格样式 */
        .cp22-product-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
        }
        .cp22-product-table tr:hover {
            background-color: #f4fbfc;
        }
        .cp22-product-table td {
	padding: 6px;
	font-size: 15px;
	color: #334756;
        }

        /* 查看详情按钮样式 */
        .cp22-detail-btn {
	display: inline-block;
	width: 100%;
	padding: 12px 0;
	margin-top: 8px;
	text-align: center;
	border: 1px solid #ECECEC;
	border-radius: 6px;
	color: #666666;
	text-decoration: none;
	font-size: 15px;
	transition: all 0.3s ease;
        }
        .cp22-detail-btn:hover {
            background-color: #be0406;
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(19, 114, 203, 0.2);
        }

        /* 移动端自适应 */
        @media screen and (max-width: 768px) {
            .cp22-page-container {
                flex-direction: column;
            }
            .cp22-product-card {
                flex-direction: column;
            }
            .cp22-product-img {
                width: 100%;
                height: 160px;
            }
			 .cp22-product-table {
	width: 100%;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
  }
            /* 新增：手机端按钮水平居中样式 */
            .cp22-detail-btn {
                width: 100%; /* 可选：缩小按钮宽度，更美观 */
                margin-left: auto;
                margin-right: auto;
            }
			
.cp22-product-info{
	 
width: 100%; /* 可选：缩小按钮宽度，更美观 */
                margin-left: auto;
                margin-right: auto;	 
	 
	 }		
            
        }
        
       /* 所有CSS类名添加show前缀 */
        .show-container {
            width: 1300px;
            margin: 0 auto;
            padding: 20px 0;
        }
        /* 产品头部布局 */
        .show-product-header {
            display: flex;
            gap: 40px;
            margin-bottom: 30px;
            align-items: flex-start; /* 无图片时保持布局对齐 */
        }
        .show-product-img {
	width: 450px;
	object-fit: contain;
	border: none;
	flex-shrink: 0; /* 防止图片容器收缩 */
	padding: 30px;
        }
        /* 无图片时占位处理 */
        .show-product-img:empty {
            display: block;
            background-color: #f5f5f5;
        }
        .show-product-info {
            flex: 1;
        }
        .show-tag {
            display: inline-block;
            background: #e5e5e5;
            color: #666;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 14px;
            margin-bottom: 15px;
        }
        .show-product-title {
            font-size: 28px;
            color: #333;
            margin-bottom: 20px;
            font-weight: 500;
        }
        .show-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 18px;
            padding-bottom: 18px;
            border-bottom: 1px solid #eee;
        }
        .show-info-label {
            width: 80px;
            font-size: 16px;
            color: #666;
        }
        .show-info-content {
            flex: 1;
            font-size: 16px;
            color: #333;
        }
        /* 货号按钮样式 */
        .show-sku-btn {
	display: inline-block;
	padding: 4px 12px;
	color: #333;
	border: none;
	cursor: pointer;
	margin-right: 10px;
	font-size: 14px;
	background-color: #E7E7E7;
        }
        .show-sku-btn.active {
	background-color: #be0406;
	color: #FFF;
        }
        .show-sku-btn:hover {
	color: #FFF;
	background-color: #CCC;
        }
        /* YY101L按钮背景改为淡灰色 */
        .show-sku-btn[data-sku="YY101L"] {
            background-color: #f0f0f0;
            color: #333;
        }
        .show-sku-btn[data-sku="YY101L"].active {
            background-color: #e0e0e0;
            color: #000;
        }
        .show-sku-btn[data-sku="YY101L"]:hover {
            background-color: #e5e5e5;
        }
        /* 价格样式 - 加长到90%，价格居左，金额居右 */
        .show-price-wrap {
	display: flex;
	justify-content: space-between; /* 两端对齐 */
	align-items: center;
	width: 20%; /* 加长到90%宽度 */
	margin-top: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
        }
        .show-price-label {
	font-size: 16px;
	text-align: left;
	color: #666;
        }
        .show-price-value {
	font-size: 17px;
	text-align: right;
	color: #be0406;
	font-weight: bold;			
        }
        /* 标签切换样式 */
        .show-tab-nav {
            display: flex;
            border-bottom: 1px solid #eee;
            margin-bottom: 20px;
        }
        .show-tab-btn {
            padding: 12px 30px;
            background: #eee;
            border: none;
            cursor: pointer;
            font-size: 16px;
            color: #666;
        }
        .show-tab-btn.active {
	color: #fff;
	background-color: #be0406;
        }
        .show-tab-content {
            display: none;
            padding: 20px 0;
            font-size: 16px;
            line-height: 1.8;
            color: #333;
        }
        .show-tab-content.active {
            display: block;
        }
        .show-product-desc-title {
	font-size: 22px;
	color: #333;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
        }

        /* 手机端CSS适配 */
        @media (max-width: 768px) {
            .show-container {
                width: 95%; /* 手机端宽度自适应 */
                padding: 10px 0;
            }
            .show-product-header {

                flex-direction: column; /* 手机端垂直布局 */
                gap: 20px;
            }
            .show-product-img {
                width: 100%; /* 图片宽度自适应 */
                height: auto; /* 高度自动 */
                max-height: 300px; /* 限制最大高度 */
            }
            .show-product-title {
                font-size: 22px; /* 缩小标题字体 */
            }
            .show-info-item {
                flex-direction: column; /* 信息项垂直布局 */
                align-items: flex-start;
                gap: 8px;
            }
            .show-info-label {
                width: 100%; /* 标签宽度100% */
                margin-bottom: 5px;
            }
            .show-price-wrap {
                width: 100%; /* 手机端价格栏宽度100% */
                padding: 8px;
            }
            .show-tab-nav {
                flex-wrap: wrap; /* 标签栏换行 */
            }
            .show-tab-btn {
                padding: 10px 20px; /* 缩小标签按钮内边距 */
                flex: 1; /* 按钮平分宽度 */
                text-align: center;
            }
            .show-sku-btn {
                margin-bottom: 10px; /* 货号按钮增加底部间距 */
            }
        }
		

        /* 外层容器 */
        .magnet-wrap {
	max-width: 1300px;
	padding: 20px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 50px;
	margin-left: auto;
        }

        /* 模块标题 */
        .magnet-title-bar {
            font-size: 28px;
            color: #333;
            margin-bottom: 30px;
            font-weight: 300;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 15px;
        }

        /* 卡片网格容器 */
        .magnet-card-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        /* 单个产品卡片容器 */
        .magnet-item-card {
            border: 1px solid #e0e0e0;
            border-radius: 2px;
            overflow: hidden;
            text-align: center;
            transition: all 0.24s ease;
            cursor: pointer;
        }
        /* 卡片整体鼠标悬浮效果 */
        .magnet-item-card:hover {
            box-shadow: 0 4px 12px rgba(194, 193, 193, 0.18);
            transform: translateY(-3px);
        }

        /* 卡片红色头部区域 */
        .magnet-card-red-top {
	background-color: #be0406;
	padding: 25px 10px;
	transition: background-color 0.24s ease;
        }
        /* 红色头部hover加深红色 */
        .magnet-item-card:hover .magnet-card-red-top {
	background-color: #666666;
        }

        /* 卡片内标题文字 */
        .magnet-card-text-name {
            color: #fff;
            font-size: 18px;
            font-weight: 500;
        }

        /* 卡片底部按钮区域 */
        .magnet-card-bottom-btn-area {
	padding: 12px 10px;
	font-size: 12px;
	color: #666;
        }

        /* 查看详情链接按钮 */
        .magnet-link-detail {
            color: #666;
            font-size: 14px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: color 0.2s ease;
        }
        /* 查看详情文字悬浮变色 */
        .magnet-link-detail:hover {
            color: #b71c1c;
        }

        /* 详情按钮前置圆圈箭头图标 */
        .magnet-link-detail::before {
            content: "";
            display: inline-block;
            width: 12px;
            height: 12px;
            border: 1px solid #999;
            border-radius: 50%;
            
            transition: border-color 0.2s ease;
        }
        /* hover时图标边框同步变红 */
        .magnet-link-detail:hover::before {
	border-color: #b71c1c;
	background-color: #06C;            
        }

        /* 平板端响应式 2列 */
        @media (max-width: 992px) {
            .magnet-card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        /* 手机端响应式 1列 */
        @media (max-width: 576px) {
            .magnet-card-grid {
                grid-template-columns: 1fr;
            }
            .magnet-title-bar {
                font-size: 22px;
            }
            .magnet-card-text-name {
                font-size: 16px;
            }
        }
		
/* ========== 产品详情富文本内表格全局样式（仅show模块生效） ========== */
.show-tab-content table {
	width: 100%;
	border-collapse: collapse !important;
	font-size: 15px;
	color: #333;
	background: transparent !important;
	border-top-width: 3px !important;
	;
	border-bottom-width: 3px !important;
	;
	border-top-style: solid !important;
	;
	border-bottom-style: solid !important;
	;
	border-top-color: #be0406 !important;
	;
	border-bottom-color: #be0406 !important;
	;
	margin-right: 0;
	margin-bottom: 20px;
	margin-left: 0;
	margin-top: 20px;
}

/* 强制清空table、tr、td所有自带背景色 */
.show-tab-content table tr,
.show-tab-content table td {
    background: transparent !important;
}

.show-tab-content table td {
	border: 1px solid #e8e1e1 !important;
	line-height: 1.6;
	vertical-align: middle;
	padding-top: 12px;
	padding-right: 12px;
	padding-bottom: 10px;
	padding-left: 14px;
}

/* 表头样式 */
.show-tab-content table tr:first-child td {
    background-color: #f5f9ff !important;
    font-weight: 500;
}

/* 奇数行：白色 */
.show-tab-content table tr:nth-child(odd) td {
    background-color: #ffffff !important;
}

/* 偶数行：浅淡蓝色，区分度更高，肉眼清晰可见 */
.show-tab-content table tr:nth-child(even) td {
    background-color: #fdf4f4 !important;
}
/* 表格仅两列时，所有行第一列文字加粗 */
.show-tab-content table tr td:first-child:nth-last-child(2) {
	font-weight: bold;
}





/* 手机端表格适配：取消横向滚动、英文自动换行、弱化边框 */
@media (max-width:768px){
    .show-tab-content table {
        display: table;
        width: 100%;
        overflow-x: hidden;
    }
    .show-tab-content table td {
        border: 1px solid #f1f1f1 !important;
        /* 英文、长字符串自动换行 */
        word-break: break-all;
        white-space: normal;
    }
}