@charset "utf-8";
/* CSS Document */

html{width:100%;height:100%;margin:0;padding:0;overflow-x:hidden;overflow-y:scroll;overflow:-moz-scrollbars-vertical}

   /* 通用样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: Arial, sans-serif;
            color: #333;
            background-color: #fff;
          
        }
        .container {
            display: flex;
            gap: 20px; /* 列之间的间距 */
            max-width: 1200px; /* 可根据需求调整最大宽度 */
            margin: 0 auto;
        }
		ul {
  list-style: none;
}
ul li {
	list-style:none; text-decoration:none
}
img {
  vertical-align: middle;
}
a {color:#333;text-decoration:none;position:relative;cursor:pointer;}		
		/* 头部样式 */
.header {
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.header-inner {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 100px;
  margin-right: 10px;
}

.search input {
  padding: 5px 8px;
  border: 1px solid #ccc;
  border-right: none;
  outline: none;
}

.search button {
  padding: 5px 12px;
  border: 1px solid #ccc;
  background-color: #018031;
  cursor: pointer;
  background-image: url('search-icon.png'); /* 替换为实际搜索图标 */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}

.qr-codes {
  display: flex;
}

.qr-code {
  text-align: center;
  margin-left: 15px;
}

.qr-code img {
  width: 80px;
  height: 80px;
}

.qr-code p {
  font-size: 12px;
  margin-top: 2px;
}

/* 导航栏样式 */
.nav {
      background: linear-gradient(to top, #018031, #018031, #018031, #06D062);
}

.nav-list {
  width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.nav-list li{ width:150px;}

.nav-list li a {
  display: block;
  color: #fff;
  padding: 15px 15px;text-decoration: none; /* 默认无下划线 */text-align: center; font-size:18px;
}

.nav-list li a:hover {
  background-color: #eec628; color: #018031;
}

/* 轮播图样式 */
 /* 容器样式：限制轮播范围，隐藏溢出内容 */
.banner-container {
    position: relative;
    width: 100%; /* 可根据需求调整宽度，如1200px */
    height: 560px; /* 可根据Banner图比例调整高度 */
    overflow: hidden;
    margin: 0 auto;
}

/* 图片列表：横向排列所有Banner */
.banner-slides {
    position: absolute;
    width: 600%; /* 6张图 → 宽度=6*100% */
    height: 100%;
    display: flex; /* 横向布局 */
    transition: transform 0.5s ease; /* 切换动画，平滑过渡 */
}

/* 单个Banner：占列表1/6宽度 */
.banner-slide {
    width: 16.6667%; /* 100% ÷ 6张图 */
    height: 100%;
}

/* Banner图片：适应容器，避免变形 */
.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保持图片比例，填充容器（可换为contain） */
}

/* 隐藏复选框（仅用于控制，不显示） */
.banner-container input[type="radio"] {
    display: none;
}

/* 指示器样式：默认状态 */
.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px; /* 指示器间距 */
    z-index: 10; /* 确保在Banner上方显示 */
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%; /* 圆形指示器 */
    background-color: #ccc; /* 未选中颜色 */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* 选中状态：高亮指示器 */
#banner-1:checked ~ .banner-dots label[for="banner-1"],
#banner-2:checked ~ .banner-dots label[for="banner-2"],
#banner-3:checked ~ .banner-dots label[for="banner-3"],
#banner-4:checked ~ .banner-dots label[for="banner-4"],
#banner-5:checked ~ .banner-dots label[for="banner-5"],
#banner-6:checked ~ .banner-dots label[for="banner-6"] {
    background-color: #eec628; /* 选中颜色（可自定义） */
    transform: scale(1.1); /* 选中时轻微放大，增强视觉反馈 */
}

/* 根据复选框选中状态，切换Banner位置 */
#banner-1:checked ~ .banner-slides {
    transform: translateX(0); /* 第1张图：左移0 */
}
#banner-2:checked ~ .banner-slides {
    transform: translateX(-16.6667%); /* 第2张图：左移1/6 */
}
#banner-3:checked ~ .banner-slides {
    transform: translateX(-33.3333%); /* 第3张图：左移2/6 */
}
#banner-4:checked ~ .banner-slides {
    transform: translateX(-50%); /* 第4张图：左移3/6 */
}
#banner-5:checked ~ .banner-slides {
    transform: translateX(-66.6667%); /* 第5张图：左移4/6 */
}
#banner-6:checked ~ .banner-slides {
    transform: translateX(-83.3333%); /* 第6张图：左移5/6 */
}
   /* 快捷导航容器 */
        .quick-nav {
            display: flex;
            align-items: center;
            background-color: #018031; /* 接近的红色背景 */
            color: #fff;    width: 1200px;
    margin: 0 auto;
        }
        /* 左侧黑色侧边栏 */
        .nav-side {
            width: 100px;
            background-color: #333;
           
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 10px 0;    display: flex
;align-items: flex-start;justify-content: center;align-content: center;


flex-wrap: nowrap;flex-direction: row
        }
        .nav-side span {
            writing-mode: vertical-lr; /* 文字竖排 */
          
            font-size: 14px; color:#999
        }
		  .nav-side .title1 {
            writing-mode: vertical-lr; /* 文字竖排 */
         
            font-size: 16px; color:#fff;letter-spacing: 2px; /* 正值增加间距，负值减少间距 */margin-right: 10px;
        }
        /* 导航项目容器 */
        .nav-items {
            display: flex;
            flex: 1;
            justify-content: space-around;
        }
        /* 单个导航项 */
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px 0;
            cursor: pointer;flex: 1;
  position: relative;
        }
		
		
		.nav-item::before {
  content: "";
  position: absolute;
  left: 0; /* 竖线位置 */
  top: 10px; /* 竖线顶部偏移 */
  bottom: 10px; /* 竖线底部偏移 */
  width: 1px; /* 竖线宽度 */
  background-color: #efefef; /* 竖线颜色 */
}
		
        .nav-item img {
            width: 50px;
           
            margin-bottom: 5px;
            /* 这里可替换为实际图标，若没有合适图标，用背景色模拟示意 */
        
          
            display: block; /* 解决可能的间隙问题 */
        }
        .nav-item span {
            font-size: 14px;
        }
		
		
		/* 左侧轮播图样式 */
.left-column {
  width: 35%; margin-top:20px;margin-bottom:20px;
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-item {
  display: none;
  width: 100%;
}

.carousel-item.active {
  display: block;
}

.carousel-item img {
  width: 100%;
  height: 300px;
}

.carousel-caption {
  background:#018031;
 
  
  color: #fff;
  padding-left: 10px;padding-right: 10px;
  font-size: 14px; height: 40px; line-height: 40px; overflow: hidden;
  
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}

.indicator {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.indicator.active {
  background-color: #eec628;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 20px;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* 中间和右侧列通用样式 */
.middle-column,
.right-column {
  width: 32.5%; margin-top:20px; margin-bottom:20px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.section-title .more {
  font-size: 14px;
  font-weight: normal;
  color: #666;
  text-decoration: none;
}

.news-list {
  list-style: none;
}

.news-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dotted #eee;background-image: url(tz3.png);
    background-repeat: no-repeat;    background-position: 0px 15px;
}

.news-list li a {
  text-decoration: none;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 75%;font-size: 14px;
            font-weight: normal;
            color: #666;
            text-decoration: none;    padding-left: 15px;
}

.news-list li span {
  color: #999;
  font-size: 14px;
}
		
		 /* 标题栏样式 */
        .top-bar {
          
            color: #fff;
            text-align: center;
            padding: 40px 0;
            font-size: 30px;
            font-weight: bold;
			width:1200px;
			margin:0 auto
        }
        /* 容器布局 */
        .container {
            display: flex;
            justify-content: space-around;
            
            max-width: 1200px;
            margin: 0 auto;
        }
		 /* 容器布局 */
        .zxrk_1 {
            display: flex;
            justify-content: space-around;
            gap: 10px;
            max-width: 1200px;
            margin: 0 auto;
        }
		.zxrk{width: 100%;
               margin: 0 auto 20px auto;     background: linear-gradient(180deg, #018031, #b1f4ca, #b1f4ca);}
        /* 卡片通用样式 */
        .card {
            flex: 1;
			background-image:url(bg.png);
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            min-width: 390px;    margin-bottom: 15px;
        }
        .card h2 {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }
        .card p {
            font-size: 14px;
            color: #999;
            margin-bottom: 20px;
        }
        /* 图标与箭头样式 */
        .card .icon {
            width: 60px;
            height: 60px;
            margin-right: 40px;   
            align-self: center;
        }
        .card .arrow {
           width: 40px;
    height: 40px;
    margin-top: auto;
    background: #ecfee9;
    padding: 10px;
    border-radius: 100%;
        }
        .card-content {
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: space-between;
        }
		
		/* 公告容器样式，实现两栏布局 */
.notice-container {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 单个公告栏样式 */
.notice-box {
  flex: 1;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 15px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
}

/* 公告标题样式，包含标题和更多链接 */
.notice-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;    border-bottom: 1px solid #efefef;
    padding-bottom: 10px;
}

.notice-title h3 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  position: relative;
  padding-left: 10px;
}

.notice-title h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background-color: #018031;
}

.notice-title .more {
  font-size: 14px;
  color: #018031;
  text-decoration: none;
}

/* 公告列表样式 */
.notice-list {
  list-style: none;
}

.notice-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dotted #eee;
  font-size: 14px;
}

/* 合作伙伴区域样式 */
  /* 合作伙伴区域 */
    .partner-section {
      padding: 40px 0;
      background-color: #f8f9fa;
    }
    
    .containerhz {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .section-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }
    
    .section-title h2 {
      font-size: 24px;
      color: #333;
      margin: 0;
    }
    
    .section-title .controls {
      display: flex;
      gap: 10px;
    }
    
    .section-title .controls button {
      background-color: #fff;
      border: 1px solid #ddd;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
    }
    
    .section-title .controls button:hover {
      background-color: #165DFF;
      color: #fff;
      border-color: #165DFF;
    }
    
    /* 滚动容器 */
    .scroll-container {
      position: relative;
      overflow: hidden;
    }
    
    .scroll-wrapper {
      display: flex;
      animation: scrollLeft 20s linear infinite;
    }
    
    .scroll-wrapper:hover {
      animation-play-state: paused;
    }
    
    /* 合作伙伴卡片 */
    .partner-card {
      flex: 0 0 auto;
      width: 200px;
      height: 80px;
      background-color: #fff;
      margin-right: 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: all 0.3s;
    }
    
    .partner-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .partner-card img {
      max-width: 80%;
      max-height: 60%;
      object-fit: contain;
    }
    
    /* 滚动动画 */
    @keyframes scrollLeft {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-220px * 6)); /* 200px宽 + 20px间距，共6个 */
      }
    }
/* 页脚区域样式 */
.footer {
  color: #fff;
  padding: 20px 0; clear:both;
  margin-top: 20px;
         background: linear-gradient(to top, #006633, #006633, #006633, #05B854);
}

.footer-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-left,
.footer-right {
  text-align: center;
}

.footer-left img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.footer-left button {
  background-color: #fff;
  color: #e53935;
  border: none;
  padding: 5px 15px;
  cursor: pointer;    display: block;
}

.footer-middle {
  flex: 1;
  margin: 0 20px;    text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;justify-content: center
}

.footer-nav li a {
  color: #fff;text-decoration: none;
}

.company-info {
  font-size: 14px;
  line-height: 1.8;
}

.footer-right img {
  width: 100px;
  height: 100px;
  margin-bottom: 5px;
}

.footer-right p {
  font-size: 12px;
}


/* news详情*/
.mainxq {
	width: 1200px;
	margin: 0 auto;
	clear: both;
}
.mainxq .zuo {
	width: 850px;
	float: left;
}
.mainxq .zuo .biaoti {
	line-height: 60px;
	height: 60px;
	color: #018031;
	;
	text-align: center;
}
.mainxq .zuo .biaoti h1 {
	font-size: 25px;
}
.mainxq .zuo .biaoti h2 {
	font-size: 26px;
}
.mainxq .zuo .tip {
	height: 60px;
	line-height: 60px;
	border-bottom: solid 1px #d6d6d6;
	position: relative;
	text-align: left;
}
.mainxq .zuo .tip span {
	height: 60px;
	line-height: 60px;
	position: absolute;
	font-size: 22px;
	font-weight: 600;
	left: 0;
	border-bottom: solid 1px #018031;
	color: #018031;
}
.mainxq .zuo .tip span a {
	color: #018031;
}
.mainxq .zuo .shijian {
	height: 25px;
	line-height: 25px;
	text-align: center;
	color: #999;
	font-size: 13px;
}
.mainxq .zuo .daodu {
	padding: 10px 10px;
	margin: 10px 10px;
	min-height: 50px;
	line-height: 25px;
	border: 1px solid #999;
	border-radius: 10px;
	text-align: left;
	color: #999999;
	font-size: 13px;
}
.mainxq .zuo .neirong {
	font-size: 16px;
	line-height: 25px;
	padding: 0 3% 0 3%;
	overflow: hidden;
	min-height: 300px;
	text-align: left
}
.mainxq .zuo .neirong img {
	max-width: 100%;
	height: auto!important
}
.mainxq .zuo .xiayitiao {
	width: 100%;
	overflow: hidden;
	color: #ffffff;
	background-color: #018031;
	font-size: 14px;
	text-align: left;
	height: 80px;
	margin-top: 10px;
	padding-top: 10px;margin-bottom: 20px;
}
.mainxq .zuo .xiayitiao a {
	color: #ffffff;
}
.mainxq .zuo .xiayitiao span {
	margin-left: 10px;
	line-height: 30px;
	height: 30px;
}
.mainxq .zuo .tuijian {
	text-align: center;
	font-size: 28px;
	color: #018031;
	height: 80px;
	line-height: 80px;
}
.mainxq .zuo .lie ul {
	width: 100%;
	overflow: hidden;
	margin-bottom: 30px;
}
.mainxq .zuo .lie ul li {
	width: 46%;
	overflow: hidden;
	padding: 1% 1%;
	float: left;
	border-bottom: 1px solid #efeeee;
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 10px;
	text-align: left;
	height: 27px;
	overflow: hidden;
	white-space: nowrap;
}
.mainxq .zuo .lie ul li .time {
	color: #555;
	text-align: center;
	margin-top: 10px
}
.mainxq .zuo .lie ul li .time .d {
	font-size: 40px;
	display: block;
	line-height: 1
}
.mainxq .zuo .lie ul li .time .y {
	display: block
}
.mainxq .zuo .lie ul li .zi {
	width: 79%
}
.mainxq .zuo .lie ul li .zi span {
	color: #484848;
	font-size: 16px;
	margin-bottom: 10px;
	display: block;
	height: 25px;
	overflow: hidden
}
.mainxq .zuo .lie ul li .zi span i {
	display: inline-block;
	width: 0;
	height: 1px;
	background-color: #0166ce;
	vertical-align: middle
}
.mainxq .zuo .lie ul li:hover .zi span i {
	width: 15px;
	margin-right: 5px
}
.mainxq .zuo .lie ul li:hover .zi span {
	color: #0166ce
}
.mainxq .zuo .lie ul li .zi p {
	color: #818181;
	height: 40px;
	overflow: hidden
}
.mainxq .zuo .lie ul li:hover {
	box-shadow: 0 0 40px #c3c3c3
}/*右侧通*/
.youce {
	width: 320px;
	float: right;
	margin-bottom: 30px
}
.youce .biaoti {
	color: #333;
	height: 60px;
	line-height: 60px;
	border-bottom: 1px solid #cbcbcb;
	text-align: left;
}
.youce .biaoti span {
	height: 60px;
	line-height: 60px;
	font-size: 20px;
	position: absolute;
	font-weight: 400;
	border-bottom: solid 1px #666;
}
.youce .biaoti span a {
	color: #333
}
.youce .lie ul {
	margin-top: 15px;
	margin-left: 50px;
	width: 223px;
}
.youce .lie ul li {
	text-align: center;
}
.youce .lie ul li img {
	display: block;
	height: 168px;
	width: 224px;
	border-radius: 10px;
}
.youce .lie ul li span {
	display: block;
	line-height: 25px;
	overflow: hidden;
	font-size: 12px;
	margin-bottom: 10px;
}
.youce .lie ul li span a {
	font-size: 12px;
}
.youce .lie ul li span a:hover {
	color: #018031
}
.youce .guanyu {
	color: #333;
	font-size: 20px;
	font-weight: 500;
	border-bottom: 1px solid #cbcbcb;
	text-align: left;
	line-height: 60px;
	height: 60px;
	margin-bottom: 30px;
}
.youce .about {
	overflow: hidden
}

.youce .about li {
	float: left;
	width: 100%;
	background-color: #018031;
	height: 43px;
	line-height: 43px;
	text-align: center;
	margin-bottom: 10px;
	font-size: 16px;
}
.youce .about li a {
	color: #fff;
	display: block
}
.youce .about li:hover {
	background: #018031;
}
.youce .about li:hover a {
	color: #fff;
}

/*====文章列表====*/
.article_ul{width:850px; height:auto; padding-top: 5px;margin-bottom: 20px;}
.article_ul li{ width: 850px; height: 40px; border-bottom: 1px dashed rgb(240,240,240); position: relative; padding: 5px 0;text-decoration: none;}
.article_ul li h2{ font-size: 16px; color: #000; width: 770px; height: 40px; overflow: hidden; line-height: 40px; padding-left: 30px; background-image: url(tz3.png); background-position: 10px center; background-repeat: no-repeat;     font-weight: normal;}
.article_ul li em{ display: block; position: absolute; width: 82px; height: 40px; text-align: right; right: 10px; top: 5px; line-height: 40px; color: #666; font-weight: normal;
    font-style: normal; font-size:12px;}
.article_ul a li{text-decoration: none;}
.article_ul a:hover h2{ color: #FFA704; text-decoration:none !important;}

.news_list {

}

.news_list ul {

	margin-top: 10px;

}

.news_list li {

	background: url(dian.png) no-repeat left center;

	line-height: 36px;

	padding-left: 15px;

	border-bottom: dotted 1px #ccc;overflow: hidden;
    height: 36px;

}

.cpjj{ clear:both}


  /* 容器样式，使用 flex 布局让子元素水平排列 */
    .goods-container {
        clear: both;
      /* 当内容超出宽度时，出现横向滚动条，也可根据需求改为 wrap 让其换行 */
    }

    /* 单个商品项样式，设置为弹性盒子，内部垂直排列 */
    .goods-item {
      width: 227px;
      height: 342px;
      /* 固定最小宽度，防止压缩变形 */
      background-color: #fff;
      border: 1px solid #eee;
      border-radius: 6px;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);

         margin-top: 15px;    float: left;    margin-bottom: 10px;
    margin-right: 16px;
    }
    .goods-item:nth-child(5n){margin-right:0}

    /* 商品图片样式，设置宽度、高度，让图片填充容器且保持比例 */
    .goods-item img {
      width: 227px; height: 227px;
      object-fit: cover;
      border-radius: 6px;
      margin-bottom: 10px;
    }

    /* 商品名称样式，设置字体大小和间距 */
    .goods-name {
      font-size: 14px;
      text-align: left;
      margin-bottom: 8px;   padding: 0 10px;line-height: 30px;
    overflow: hidden;
    height: 30px;
    }

    /* 商品价格样式，设置颜色和字体大小，突出显示 */
    .goods-price {
      font-size: 16px;
      color: #018031;
      font-weight: bold;
      margin-bottom: 6px; padding: 0 10px;
    }

    /* 库存地和商家信息样式，设置字体大小和颜色 */
    .goods-info {
      font-size: 12px;
      color: #999;
      text-align: left;
      line-height: 1.6; padding: 0 10px; 
    }
    
    
    
.site {
    color: #999;
	
	margin: 23px 0 8px;
    padding-bottom: 9px;
    width: 1200px;
    border-bottom: 1px solid #0024ba;
    text-align: left;
    font-size: 12px;
	
	
}.site a {color:#999;}
.page_banner { height:180px;}
.goods_info{ width:880px; height:300px; margin-top:20px;}
.goods_info .left {
    float: left; width:300px;margin-right:20px;
}.goods_info .right {
    float: left; width:490px
    
}
.large {position:relative;z-index:1;height:302px;width:302px;border: 1px solid #dcdcdc;background-color:#ffffff;}
.large img{ width:300px; height:300px;}

#cls li {
                                    float: left;
                                    list-style: none; padding-left: 20px; margin-top:20px;
                                }

                           

                                
								#cls li img{ width:140px;}

                                #cls .cls-title {
                                    font-size: 14px;
                                    font-weight: bold;
                                    text-align: center;
                                    padding-bottom: 15px;
                                }


.typeright{ width: 300px; display: block;  float: right; }     
.new{display: block; overflow: hidden;border: 1px solid #E2E2E2; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.14);transition: all 250ms ease-in-out 0s; padding-bottom: 10px; margin-top: 0px; margin-bottom: 50px;}
.new h2{ margin-top: 20px;font-weight:normal; height: 60px;  margin-left: 20px; background: url(fenlei.png) no-repeat;}





.goodsInfo {width:880px;padding-bottom:25px;background-color:#ffffff; clear:both; margin-top:20px;}
.goodsInfo h3 {position:relative;height:44px;line-height:44px;padding:0 15px;font-size:14px;font-weight:normal;color:#3c3c3c;border:1px solid #e5e5e5;background-color:#f6f6f6;}
.goodsInfo .clearfix {border:1px solid #e5e5e5;border-top:none;padding:15px;overflow:hidden;}

.sidebar {width:270px; margin:0 auto;}

.sidebar li {position:relative;z-index:1;margin-top:-1px;border:1px solid #e5e5e5; margin-bottom:15px;}
.sidebar li:hover {z-index:2;border-color:#c52e49;}
.sidebar .photo {position:relative;display:block;width:270px;height:270px;overflow:hidden;}
.sidebar .photo span {display:table-cell;vertical-align:middle;text-align:center;width:206px;height:206px;overflow:hidden;}
.sidebar .photo span img {vertical-align:bottom;width:270px;height:270px;}
.sidebar p {line-height:30px;font-size:14px;padding:0 10px;color:#555;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;white-space:nowrap;text-align:center;}

.aboutInfo {padding:0 0 10px;color:#999;   
    text-align: left;
    line-height: 22px;
    color: #666; 
}
.aboutInfo .tt {font-size: 18px;
    letter-spacing: 0px;font-weight: 700;color: #666;}
.aboutInfo span {margin-right:10px;font-size:12px;}
.aboutInfo a {color:#999;}

.aboutInfo .goods_des {
    margin-top: 6px;
    color: #999;font-size: 14px;
}

   .image-container {
    display: flex;
    justify-content: center;
    align-items: center;    clear: both;    
}

.image-container img {
    max-width: 100%; /* 确保图片在容器中不会超出边界 */
    height: auto; /* 保持图片的原始宽高比 */
}

/* 定义绿色粗右箭头样式 */
        .green-thick-arrow {
            color: #28a745; /* 绿色（可替换为其他绿色值如 #00b300、#4CAF50 等） */
            
            margin: 0 10px; /* 可选：添加间距 */
        }
        
        
        .wlxxcontainer{max-width:1200px;margin:0 auto}
.wlxx_card{width:390px;float:left;background:white;border-radius:8px;box-shadow:0 2px 10px rgba(0,0,0,0.1);margin-bottom:20px;overflow:hidden;transition:transform 0.3s ease;margin-right:15px;height:142px;margin-top: 15px;}
.wlxx_card:nth-child(3n){margin-right:0}
.wlxx_card-img{float:left;height:142px}
.wlxx_card-img img{width:142px;height:142px}
.wlxx_card-content{float:left;width:238px;padding:5px}
.wlxx_card-content h3{font-size:16px;color:#333;margin-bottom:10px;line-height:1.4;margin:0;margin-bottom:5px}
.wlxx_tags{margin-bottom:10px}
.wlxx_tag-red{background:#ffeceb;color:#018031;padding:3px 8px;border-radius:4px;font-size:12px;margin-right:8px}
.wlxx_tag-gray{background:#f5f5f5;color:#666;padding:3px 8px;border-radius:4px;font-size:12px}
.wlxx_price{font-size:14px;color:#018031;font-weight:bold;margin:8px 0}
.wlxx_price span{font-size:12px;color:#999;font-weight:normal;margin-left:5px}
.wlxx_company,.location{color:#666;font-size:14px;margin:3px 0}


/* 容器样式，设置宽度、居中及 Flex 布局 */
.nzxx_container {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
      gap: 0 10px;
}

/* 广告项样式，设置每排三个时的宽度 */
.ad-item {
  width: calc((100% - 20px) / 3);
    margin-top: 10px;
}

.ad-item img {
  width: 100%;    height: 200px;
  display: block;
}