body {
  margin: 0;
  font-size: 14px;
  background-color: #F6F7F8;
}

.list {
  padding: 16px;
  position: relative;
}
.list-wrap {
  --col: 1;
  --row-spacing: 8px;
  --col-spacing: 8px;
  width: calc(100% + var(--col-spacing));
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-top: calc(-1 * var(--row-spacing));
  margin-left: calc(-1 * var(--col-spacing));
}
.list-wrap > .item {
  margin-top: var(--row-spacing);
  margin-left: var(--col-spacing);
  width: calc((100% - var(--col) * var(--col-spacing)) / var(--col));
  min-height: 40px;
  padding-left: 34px;
  padding-right: 0;
  box-sizing: border-box;
  border-radius: 4px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2),
    0 1px 1px rgba(9, 30, 66, 0.08);
  cursor: default;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.list-wrap > .item > span {
  flex: 1;
  width: 0;
  padding: 4px 0;
}
/* .list-wrap > .item:hover {
  box-shadow: 0 4px 8px rgba(9, 30, 66, 0.04),
    0 0 1px rgba(9, 30, 66, 0.2),
    0 2px 4px rgba(9, 30, 66, 0.08);
} */
.list-wrap > .item::before {
  content: '';
  top: 10px;
  left: 10px;
  width: 20px;
  height: 20px;
  position: absolute;
  background-image: url("/img/pdf.png");
  background-size: contain;
}


.actions {
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 8px;
}
.action {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  cursor: pointer;
}
.action::before {
  content: '';
  width: 20px;
  height: 20px;
  display: flex;
  background-image: var(--icon);
  background-size: contain;
}

.yp {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  color: #333;
}
.yp > img {
  height: 30px;
  margin: 0 4px;
}

@media (min-width: 800px) {
  .list-wrap {
    --col: 2;
  }
}

@media (min-width: 1200px) {
  .list-wrap {
    --col: 3;
  }
}

@media (min-width: 1400px) {
  .list-wrap {
    --col: 4;
  }
}
