.layout-item {
  width: 200px;
  margin: 0 20px 20px 0;
  color: #999;
  background: #f5f5f5;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.09);
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
  h1,
  h2,
  p {
    color: #999;
  }
  &:hover {
    text-decoration: none;
  }
  &:last-child {
    margin-right: 0;
  }
  &:hover {
    box-shadow: 0 3px 10px rgba(191, 200, 209, 0.5);
    transform: translateY(-2px);
  }
  .item-intro {
    background: #fff;
    padding: 10px 20px;
    border-top: 1px solid #f5f5f5;
    p {
      text-overflow: ellipsis;
      overflow: hidden;
      margin: 0;
      &:first-child {
        margin-bottom: 5px;
      }
    }
  }
  img {
    width: 100%;
    display: block;
    padding: 45px;
  }
}
