.new-report .card-content {
  padding: 12px 0;
}
.new-report .list .list-item {
  padding: 12px 0;
  cursor: pointer;
}
.new-report .list .list-item:hover .report-name {
  color: #1259F0;
}
.new-report .list .list-item .report-name {
  display: block;
  width: 100%;
  line-height: 18px;
  font-size: 14px;
  color: #39435A;
  padding-left: 18px;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}
.new-report .list .list-item .report-name::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #D2D5E3;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
}
.new-report .list .list-item .info {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}
.new-report .list .list-item .info .info-item {
  line-height: 18px;
  font-size: 14px;
  color: #585A6E;
  display: flex;
  position: relative;
}
.new-report .list .list-item .info .info-item:last-child::after {
  display: none;
}
.new-report .list .list-item .info .info-item::after {
  content: '';
  width: 1px;
  height: 12px;
  background-color: #E6E6E6;
  opacity: 0.8;
  position: absolute;
  top: 3px;
  right: -12px;
}
.new-report .list .list-item .info .info-item .icon {
  width: 18px;
  margin-right: 2px;
}
