
    li {
      margin-top: 16px;
    }
    .img-items {
      position: relative;
    }
    a {
      position: relative;
      display: block;
      color: #262626;
      overflow: hidden;
      display: flex;
      text-decoration: none;
    }
    .img-item {
      position: relative;
      overflow: hidden;
      width: 140px;
      margin-right: 20px;
    }
    .img-item::before {
      display: block;
      content: '';
      padding-top: 66.66666666666666%;
    }

    .img-item img,
    .img-item .img {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      width: 100%;
      /* height: 100%; */
      min-height: 100%;
      object-fit: cover;
      -webkit-transition: all 0.6s ease-in;
      transition: all 0.6s ease-in;
    }
    .txt-item {
      position: relative;
      flex: 1;
      min-height: 56px;
    }
    h4 {
      display: block;
      font-size: 14px;
      line-height: 1.5;
      color: #262626;
      font-weight: 400;
      max-height: 42px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      white-space: normal;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      word-break: break-word;
    }
    h4[data-line='3'] {
      max-height: 63px;
      -webkit-line-clamp: 3;
    }
    h5 {
      font-size: 12px;
      line-height: 1.5;
      max-height: 18px;
      overflow: hidden;
      color: #8e8e8e;
      letter-spacing: 1.27px;
    }
    .tool {
      position: absolute;
      bottom: 0;
      left: 0;
      color: #8c8c8c;
    }
    .tool .time,
    .tool .source {
      color: #8c8c8c;
      font-size: 12px;
      line-height: 1;
      display: inline-block;
      vertical-align: middle;
    }
    .img-item i {
      font-size: 32px;
      line-height: 40px;
      display: none;
      position: absolute;
      width: 40px;
      height: 40px;
      top: 50%;
      left: 50%;
      margin: -20px 0 0 -20px;
      border-radius: 50%;
      z-index: 2;
      color: #fff;
      text-align: center;
      background-color: rgba(0, 0, 0, 0.3);
    }
    a:hover {
      color: #90080e;
      text-decoration: none;
    }
    a:hover h4 {
      color: #90080e;
    }
    a:hover .img-item i {
      color: #e2cd88;
    }

    /* 比例 */
    li[data-scale='16:9'] .img-item::before {
      padding-top: 56.25%;
    }
    li[data-scale='4:3'] .img-item::before {
      padding-top: 75%;
    }
    li[data-scale='1:1'] .img-item::before {
      padding-top: 100%;
    }
    /* 图片占比百分比 */
    li[data-percent='120'] .img-item {
      width: 120px;
    }
    li[data-percent='40%'] .img-item {
      width: 40%;
    }
    li[data-percent='50%'] .img-item {
      width: 50%;
    }
    li[data-percent='60%'] .img-item {
      width: 60%;
    }
    /* 显示视频图标 */
    li[data-video] i {
      display: block;
    }
    /* 鼠标悬浮至图上放大效果 */
    li[data-animation] a:hover img {
      -webkit-transform: scale(1.15);
      transform: scale(1.15);
    }
    /* 时间对其方式 */
    li[data-time='right'] .tool {
      left: auto;
      right: 0;
    }
    /* 是否显示配图 */
    li[data-none] .img-item {
      display: none;
    }
    /* 左图右文 or 左文右图 */
    li[data-reverse] a {
      flex-direction: row-reverse;
    }
    li[data-reverse] .img-item {
      margin-right: 0;
      margin-left: 20px;
    }
    /* 大尺寸 */
    /* li[data-size='lg'] {
      padding: 24px 0;
      border-bottom: 1px solid #f2f2f2;
    }
    li[data-size='lg'] .img-item {
      width: 186px;
    }
    li[data-size='lg'] .txt-item h4 {
      font-size: 20px;
      margin-bottom: 46px;
      max-height: 60px;
    }
    li[data-size='lg'] .tool .time,
    li[data-size='lg'] .tool .source {
      font-size: 14px;
    } */
    li[data-size='lg'] {
      padding: 15px 0;
      border-bottom: 1px solid #f2f2f2;
      margin-top: 0;
    }
    li[data-size='lg'] .img-item {
      width: 150px;
    }
    li[data-size='lg'] .txt-item h4 {
      font-size: 18px;
      margin-bottom: 26px;
      max-height: 56px;
    }
    li[data-size='lg'] .tool .time,
    li[data-size='lg'] .tool .source {
      font-size: 14px;
    }
  