/* 产品列表 */
.pics {
}

.pics ul {
  display: flex;
  flex-wrap: wrap;
}

.pics ul li {
  width: 50%;
  padding: 2px;
}
.pics ul a {
  display: block;
  position: relative;
  overflow: hidden;
}
.pics ul a i {
  display: block;
  border: 2px solid #f5f5f5;
  overflow: hidden;
}
.pics ul a i img {
  width: 100%;
}
.pics ul a p {
  font-size: 16px;
  line-height: 36px;
  color: #000;
  text-align: center;
}

@media (min-width: 1200px) {
  .pics {
  }
  .pics ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.2vw;
  }
  .pics ul li {
    width: 25%;
    padding: 1.2vw;
  }
  .pics ul a {
    display: block;
    position: relative;
    overflow: hidden;
  }
  .pics ul a i {
    display: block;
    overflow: hidden;
    border: 4px solid #f5f5f5;
  }
  .pics ul a i img {
    width: 100%;
    transition: 0.3s;
  }
  .pics ul a p {
    font-size: 1.2vw;
    line-height: 3.6vw;
    color: #000;
    text-align: center;
    background: #f5f5f5;
  }

  .pics ul a:hover i {
    border-color: #c90213;
  }
  .pics ul a:hover p {
    color: #fff;
    background: #c90213;
  }
}
