style.less 738 Bytes
.production-list {
  background: #f7f7f7;

  &_list {
    padding: 60px;
    display: flex;
    flex-wrap: wrap;

    &-item {
      width: 312px;
      height: 312px;
      color: #fff;
      margin-right: 60px;
      margin-bottom: 60px;
      cursor: pointer;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      box-sizing: border-box;
      text-align: center;
      flex-direction: column;

      &:nth-child(5n) {
        margin-right: 0;
      }

      &-img {
        width: 60px;
        height: 60px;
        margin-bottom: 30px;
      }

      &-name {
        font-size: 28px;
        height: 80px;
        line-height: 40px;
      }
    }
  }
}