@import url('/edu/ruxuezhinan/style.css');

.tabs .tab {
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

@media (min-width: 700px) {
  .tabs .tab {
    flex-direction: row;
    gap: 6px;
  }
}

.book-cards {
  grid-template-columns: 1fr;
}

.book-card .name {
  word-break: break-word;
}

.book-card .book-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.book-card .badge-muted {
  background: var(--primary-soft);
  color: var(--primary);
}

.book-card .book-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 13px;
  line-height: 1.75;
}

.book-card .book-note .label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
}

.book-card .book-note .text {
  display: block;
  color: var(--ink-2);
  word-break: break-word;
}

@media (min-width: 700px) {
  .book-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .book-card {
    padding: 18px 20px;
  }
}
