.pro_list_box {
  width: 100%;
}

.pro_list {
  max-width: 1370px;
  width: 85%;
  margin: auto;
}

.pro_list_nav {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #F9F9F9;
}

.list_nav {
  padding: 0 calc(5px + 1rem);
  line-height: calc(16px + 2rem);
  background: #2A2C2C;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: calc(10px + 0.5rem);
  color: #FFFFFF;
  text-align: center;
}

.list_nav_item {
  font-family: Microsoft YaHei;
  font-weight: 300;
  font-size: calc(8px + 0.5rem);
  color: #333333;
  width: calc(30px + 8rem);
  /* padding: 0 calc(2px + 3rem); */
  border-left: 1px #E5E5E5 solid;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  transition: .5s;
  /* margin: auto; */

}

.list_nav_item div {
  width: calc(1px + 0.25rem);
  height: calc(1px + 0.25rem);
  border-radius: 50%;
  background-color: #23B1AF;
  opacity: 0;
  transition: .5s;
}

.list_nav_act {
  color: #23B1AF;
  gap: calc(2px + 0.25rem);
}

.list_nav_act div {
  opacity: 1;

}

.list_nav_item:hover {
  color: #23B1AF;
  gap: calc(2px + 0.25rem);
}

.list_nav_item:hover div {
  opacity: 1;
}

.pro_list_card_box {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: calc(2px + 1rem);
  row-gap: calc(2px + 2rem);
  margin-top: calc(14px + 3rem);
}

.pro_list_card {
  width: 23.3576%;
}

.pro_list_pic {
  width: 100%;
  height: calc(80px + 15rem);

  border: 2px solid #E5E5E5;
  position: relative;
}

.pro_list_pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pro_list_card p {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: calc(10px + 0.5rem);
  color: #424242;
  text-align: center;
  margin-top: calc(4px + 1rem);
}

.pic_detail {
  width: calc(5px + 3rem);
  height: calc(5px + 3rem);
  background: #23B1AF;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  font-family: Microsoft YaHei;
  font-weight: 300;
  font-size: calc(10px + 1rem);
  color: #FFFFFF;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: .5s;
}

.pro_list_pic:hover .pic_detail {
  opacity: 0.8;
}