.cplblist_box {
  width: 100%;
  margin: 50px 0 100px;
}
.cplblist_box .w{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cpfl_box {
  width: 100%;
  overflow: hidden;
  display: grid;
  /* border-bottom: 1px solid #e0e0e0; */
  margin-bottom: 30px;
  gap: 10px;
  grid-template-columns: repeat(4, 24.5%);
}
.cpfl_box li{
  text-align: center;
  margin: 0;
  background: #f7f7f7;
}
.cpfl_box li a{
  font-size: 15px;
  color: #333;
  padding: 12px 10px;
  display: block;
  transition: all 0.5s;
}
.cpfl_box li a.allbtn{
  background-color: #080e2b;
  color: #fff;
}
.cpfl_box li a.xzactive,
.cpfl_box li:hover a{
  background-color:#005ee3;
  color: #fff;
}
.pordList{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap:20px 1.3%;
  height: fit-content; 
}
.pordList .pordList_tit{
  width: 100%;
  overflow: hidden;
}
.pordList .pordList_tit h2{
  font-size: 46px;
  color: #333;
  margin: 0;
  font-weight: bold;
  font-family: 'BarlowCondensed-Bold';
}
.pordList .pordList_tit p{
  font-size: 18px;
  line-height: 28px;
  color: #666;
  margin: 0;
}
.pordList li {
  width: 24%;
  overflow: hidden;
  margin: 0;
  background: #fff;
  border: 1px solid #eee;
  box-sizing: border-box;
  transition: all 0.5s;
  border-radius: 8px;
  position: relative;
}
.pordList li:hover{
  box-shadow: 0 3px 12px rgb(35 35 35 / 20%);
}
.pordList li .prod_pic{
  width:100%;
  overflow: hidden;
  position: relative;
}
.pordList li .porditem_btn{
  position: absolute;
  width: 100%;
  height: 100%;
  background: #0000004f;
  justify-content: center;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: all 0.5s;
  z-index: 9;
}
.pordList li:hover .porditem_btn{
  opacity: 1;
}
.pordList li .porditem_btn span{
  font-size: 44px;
  color: #fff;
  background: #005ee3;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 100%;
}
.pordList li .prod_pic img{
  width: 80%;
  height: auto;
  margin: auto;
  display: block;
  transition: all 0.5s;
}
.pordList li:hover .prod_pic img{
  transform: scale(1.2);
}
.pordList li .prod_wz{
  width: 100%;
  overflow: hidden;
  padding: 20px;
}
.pordList li .prod_wz h3{
  font-size: 18px;
  font-weight: bold;
  margin:0 0 10px;
  color: #333;
  transition: all 0.5s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.pordList li .prod_wz p{
  font-size: 15px;
  color: #666666;
  line-height: 30px;
  margin: 0;
}
.fy{
  width: 100%;
  text-align: right;
  font-size: 15px;
}
@media(max-width:768px){
  .cplblist_box {
    width: 100%;
    margin-top: 20px;
  }
  .cpfl_box {
    width: 100%;
    border-bottom: 0;
    margin-bottom: 20px;
    grid-template-columns: repeat(2, 49%);
  }
  .cpfl_box li {
    margin: 0;
    width: 100%;
  }
  .cpfl_box li a{
    padding: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .pordList {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px 1.3%;
  }
  .pordList li {
    width: 100%;
  }
  




}