.product_content {
  display: flex;
}
.product_content .products_list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-left: 30px;
  height: fit-content;
}
.product_content .products_list .products_item {
  width: 32%;
  margin-right: 12px;
  border-bottom: 2px solid #ccc;
  margin-bottom: 20px;
}
.product_content .products_list .products_item div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 290px;
  border: 1px solid #eee;
  padding: 10px;
}
.product_content .products_list .products_item img {
  width: 100%;
  background-color: #eee;
}
.product_content .products_list .products_item p {
  display: -webkit-box;
  /* autoprefixer: off */
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 52px;
  font-size: 16px;
  color: #4c4c4c;
  margin: 10px 0;
  line-height: 25px;
  padding: 0 10px;
}
.product_content .products_list .products_item:hover {
  box-shadow: 0 0 5px 5px #eee;
  transform: scale(1.02);
  transition: 0.3s linear;
}
.product_content .news_list {
  flex: 1;
  margin-left: 30px;
  height: fit-content;
}
.product_content .news_list .news_item {
  position: relative;
  display: flex;
  height: 110px;
  border-bottom: 2px solid #f6f6f6;
  padding-top: 10px;
  margin-bottom: 20px;
}
.product_content .news_list .news_item:hover {
  background-color: #f6f6f6;
}
.product_content .news_list .news_item:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  height: 2px;
  text-align: center;
  background-color: #0e4b9c;
}
.product_content .news_list .news_item .times {
  width: 70px;
  text-align: center;
  margin-top: 10px;
}
.product_content .news_list .news_item .times i {
  font-size: 36px;
  color: #666;
  font-style: normal;
}
.product_content .news_list .news_item .details {
  flex: 1;
  display: flex;
  justify-content: space-between;
  margin-left: 20px;
  padding-right: 20px;
}
.product_content .news_list .news_item .details .des {
  width: 680px;
}
.product_content .news_list .news_item .details .des p {
  display: -webkit-box;
  /* autoprefixer: off */
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #666;
  line-height: 25px;
}
.product_content .news_list .news_item .details .des p span {
  margin-right: 20px;
}
.product_content .news_list .news_item .details .seedetail {
  display: block;
  width: 70px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  background-color: #999999;
  color: #ffffff;
  margin-top: 30px;
}
