﻿.info-row-wrap {
  margin-top: 18px;
}

.info-row-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 32px;
  box-sizing: border-box;
}

.info-row__item {
  display: block;
  min-width: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.2s ease;
  box-sizing: border-box;
}

.info-row__item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.info-row__item a {
  display: block;
  width: 100%;
}

/* 与 .module-two .item-cover 一致：横向横幅比例 */
.info-row__item .item-cover {
  width: 100%;
  aspect-ratio: 400 / 80;
  overflow: hidden;
  background-color: #000;
}

.info-row__item .item-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

@media screen and (max-width: 824px) {
  .info-row-wrap {
    margin-top: 12px;
    box-sizing: border-box;
  }

  .info-row-list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }

  .info-row__item .item-cover {
    aspect-ratio: 400 / 80;
  }
}

/* end:::横向信息流组件 */
