.logo{
	width: 128px;
	height: 19px;
}

.nav-scroller {
		    position: relative;
		    z-index: 2;
		    height: 2.75rem;
		    overflow-y: hidden;
		  }

		  .nav-scroller .nav {
		    display: flex;
		    flex-wrap: nowrap;
		    padding-bottom: 1rem;
		    margin-top: -1px;
		    overflow-x: auto;
		    text-align: center;
		    white-space: nowrap;
		    -webkit-overflow-scrolling: touch;
		  }

.item-list-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
}

.item-list-card {
  display: flex;
  align-items: flex-start;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.2s;
  text-decoration: none;
  color: inherit;
  min-width: 0; /* 防止内容溢出 */
}

.item-list-card:hover {
  background-color: #f0f0f0;
}

.item-list-img {
  width: 70px;
  height: 70px;
  border-radius: 4px;
  margin-right: 12px;
  flex-shrink: 0;
  object-fit: cover;
}

.item-list-text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0; /* 关键：防止文本内容溢出 */
}

.item-title {
  font-size: 16px;
  margin: 0 0 2px 0;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word; /* 防止长文本溢出 */
}

.item-desc {
  font-size: 14px;
  margin: 0 0 2px 0;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word; /* 防止长文本溢出 */
}

.item-star {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  margin: 0;
}

.ic-star {
  width: 12px;
  height: 12px;
  margin-left: 4px;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .item-list-container {
    grid-template-columns: 1fr;
  }
}

/* 平板适配 */
@media (min-width: 769px) and (max-width: 1024px) {
  .item-list-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 添加这个媒体查询 */
@media (min-width: 1024px) {
  .item-list-container {
    grid-template-columns: repeat(3, 1fr);
  }
}