.block-lists {
  .block-list-row {
    display: flex;
    flex-direction: row;
  }

  .block-item {
    position: relative;
    flex: 1;
    margin-bottom: 10px;
    color: #999;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
    &:hover {
      text-decoration: none;
      transform: translateY(-2px);
    }
  }

  .item-intro {
    background-color: transparent;
    padding: 10px 20px 10px 0;
    border-top: 1px solid #f5f5f5;
    p {
      margin: 0;
      &:first-child {
        margin-bottom: 3px;
      }
    }
  }
  .snapshoot {
    display: flex;
    height: 200px;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 4px;
    & > img {
      border-radius: 4px;
    }

    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    background: #fcfcfc;
    transition: all 0.3s ease;

    &:hover {
      box-shadow: 0 0 10px rgba(191, 200, 209, 0.5);
    }

    img {
      max-width: 100%;
      max-height: 100%;
      display: block;
    }
  }

  &.layout {
    .snapshoot {
      height: auto;
    }
  }
}

.newly-created {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 20px;
  line-height: 20px;
  text-align: center;

  background-color: rgba(255, 164, 0, 80);
  border-bottom-right-radius: 4px;
  border-top-left-radius: 4px;
  color: #fff;

  font-size: 12px;
}
