              * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft Yahei", sans-serif;
        }

        body {
            background-color: #fff;
            padding: 0;
        }

        
        /* 头部导航 - SEO语义化 */
        header {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 0;
            border-bottom: 1px solid #eee;
        }

        .logo a {
            font-size: 24px;
            color: #222;
            text-decoration: none;
            font-weight: 700;
        }

        nav ul {
            display: flex;
            list-style: none;
            margin-top: 15px;
            gap: 30px;
        }

        nav ul li a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #e63946;
        }

        nav ul li a.active {
            color: #e63946;
            font-weight: 600;
        }

        /* 面包屑导航 */
        .breadcrumb {
            width: 90%;
            max-width: 1400px;
            margin: 20px auto;
            font-size: 14px;
            color: #999;
        }

        .breadcrumb a {
            color: #666;
            text-decoration: none;
        }

        .breadcrumb span {
            margin: 0 8px;
        }

        /* 核心布局：左右分栏 */
        .main-container {
            border-radius: 10px;
            padding: 15px;
            background: #f8f9fa;
            max-width: 1400px;
            margin: 10px auto;
            display: grid;
            grid-template-columns: 320px 1fr;
        }

        /* 左侧分类栏 - 跟随滚动 */
        .category-sidebar {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 20px;
            position: sticky;
            top: 20px;
            align-self: flex-start;
            height: fit-content;
        }

        .category-title {
            font-size: 20px;
            color: #222;
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }

        .category-list {
            list-style: none;
        }
        .category-list a{
            text-decoration: none;
        }

        .category-item {
            border-bottom: 1px dashed #ccc;
            padding: 12px 15px;
            border-radius: 4px;
            margin-bottom: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #666;
        }

        .category-item:hover {
            background-color: #f1f1f1;
            color: #03a882;
        }

        .category-item.active {
            background-color: #03a882;
            color: #fff;
        }















        /* 右侧产品区域 */
      
        

        /* 页面标题 */
        .NewHPro-page-title {
            text-align: center;
            font-size: 28px;
            margin-bottom: 30px;
            color: #333;
        }

        /* 产品列表容器 - 弹性布局，一行4个 */
        .NewHPro-product-list {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 20px; /* 产品卡片之间的间距 */
        }

        /* 产品卡片 - 固定一行4个 */
        .NewHPro-product-item {
            width: calc(25% - 15px);
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        /* 鼠标悬浮效果 */
        .NewHPro-product-item:hover {
            transform: translateY(-5px);
        }

        /* 正方形图片容器（核心） */
        .NewHPro-product-img-box {
            width: 100%;
            height: 0;
            padding-bottom: 100%; /* 正方形关键：高度=宽度 */
            position: relative;
            background-color: #eee;
        }

        /* 产品图片 */
        .NewHPro-product-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* 保证图片不变形 */
        }

        /* 产品标题 */
        .NewHPro-product-title {
            padding: 15px;
            text-align: center;
            font-size: 16px;
            color: #333;
            font-weight: 500;
        }

        /* 移动端适配：一行2个 */
        @media (max-width: 768px) {
            .NewHPro-product-item {
                width: calc(50% - 10px);
            }
        }

        /* 小屏手机：一行1个 */
        @media (max-width: 480px) {
            .NewHPro-product-item {
                width: 100%;
            }
        }










.HbreadcrumbS, .product-area .NewHPro-product-list {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0px 20px !important;
    padding: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
}








        
        /* 底部 */
        footer {
            width: 100%;
            background-color: #f5f5f5;
            padding: 40px 0;
            margin-top: 50px;
        }

        .footer-wrap {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
            color: #666;
            font-size: 14px;
        }

        .footer-wrap p {
            margin-bottom: 10px;
        }

        .footer-wrap a {
            color: #e63946;
            text-decoration: none;
        }

        /* 响应式适配（可选） */
        @media (max-width: 992px) {
            .main-container {
                flex-direction: column;
            }
            .category-sidebar {
                width: 100%;
                position: static;
            }
            .product-card-list {
                flex-direction: column;
                height: auto;
            }
            .product-img-wrap, .product-info {
                width: 100%;
            }
            .product-img-wrap {
                height: 250px;
            }
        }

        .main-container .category-item.active a{color: #fff;}
        .breadcrumbS{margin-bottom: 0px;margin-top: 10px;}
        .product-header{padding: 5px 10px;}
        .main-content{gap: 10px;}




        .hero {
            background: linear-gradient(rgb(186 211 205 / 90%), rgb(167 185 181 / 80%)), url(../images/xjyy.jpg) center / cover no-repeat;
        }


        /* 案例列表容器：核心弹性布局，适配1-3个卡片 */
.case-list {
    width: 90%;          /* 容器宽度，可根据页面调整 */
    margin: 0 auto;      /* 整体居中 */
    display: flex;       /* 弹性布局实现横向排列 */
    gap: 20px;           /* 卡片之间的间距，可调整 */
    flex-wrap: wrap;     /* 小屏幕自动换行 */
    justify-content: center; /* 1/2个卡片时居中显示 */
    padding: 20px 0;     /* 上下内边距，避免贴边 */
}

/* 单个案例卡片样式 */
.case-item {
    flex: 1;             /* 自动平分容器宽度（1个占满/2个各50%/3个各33%） */
    min-width: 280px;    /* 小屏幕最小宽度，避免卡片过窄 */
    max-width: 400px;    /* 限制最大宽度，避免卡片过宽 */
    border-radius: 8px;  /* 圆角，美化卡片 */
    overflow: hidden;    /* 裁剪超出部分（比如图片圆角） */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* 轻微阴影，提升质感 */
}

/* 案例图片容器 */
.case-img {
    width: 100%;
    height: 200px;       /* 固定图片高度，保持统一 */
}

/* 案例图片样式：自适应+不变形 */
.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 图片裁剪填充，不拉伸变形 */
    display: block;      /* 消除图片底部默认空隙 */
}

/* 案例名称样式 */
.case-name {
    padding: 12px 0;     /* 上下内边距 */
    text-align: center;  /* 文字居中 */
    font-size: 16px;     /* 字体大小 */
    color: #333;         /* 字体颜色 */
    line-height: 1.4;    /* 行高，提升可读性 */
}

/* 链接样式：去除下划线，继承颜色 */
.case-item a {
    text-decoration: none; /* 去掉链接下划线 */
    color: inherit;        /* 继承父元素颜色 */
    display: block;        /* 让a标签包裹整个卡片，点击区域更大 */
}

/* 鼠标悬浮效果（可选，提升交互） */
.case-item a:hover {
    opacity: 0.95;        /* 轻微透明 */
    transition: opacity 0.3s; /* 过渡动画，更丝滑 */
}



/* 相关新闻 */

.news-section-pro {
  margin: 30px 0;
  padding: 20px;
  background: #fff;
  border: 1px solid #eee;
}
/* 标题栏（pro版） */
.news-header-pro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.news-header-pro h3 {
  font-size: 18px;
  color: #333;
  margin: 0;
}
/* 查看更多链接（pro版） */
.more-link-pro {
  font-size: 14px;
  color: #666;
  text-decoration: none;
}
.more-link-pro:hover {
  color: #00a651; /* 悬停变品牌绿 */
}
/* 新闻列表（核心调整：2列布局）（pro版） */
.news-list-pro {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 固定2列，每2条一组 */
  gap: 15px; /* 组内/组间间距 */
}
/* 新闻卡片（pro版） */
.news-item-pro {
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer; /* 鼠标悬浮变手型 */
}
.news-item-pro:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
/* 新闻缩略图（pro版） */
.news-thumb-pro {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}
/* 新闻标题（pro版） */
.news-title-pro {
  font-size: 15px;
  color: #333;
  margin: 0 0 5px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-item-pro:hover .news-title-pro {
  color: #00a651; /* 品牌绿色 */
}
/* 新闻日期（pro版） */
.news-date-pro {
  font-size: 12px;
  color: #999;
}
/* 新闻摘要（pro版） */
.news-desc-pro {
  font-size: 13px;
  color: #666;
  margin: 5px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* 响应式适配：手机端变回单列 */
@media (max-width: 768px) {
  .news-list-pro {
    grid-template-columns: 1fr;
  }
}