#siteContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: #333;
  line-height: 1.6;
  background: #f8f9fa;
  min-height: 100vh;
}

.split { display: none; }

h1[itemprop="name"] {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #e9ecef;
}
.novel-row {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px dashed #e8e8e8;
    transition: background 0.2s;
}

.novel-row:hover {
    background: #f0f7ff;
}

.novel-row:last-child {
    border-bottom: none;
}

/* 小说名称：自适应，溢出省略 */
.novel-name {
    flex: 1;
    min-width: 0; /* 关键：让flex子项可以收缩到比内容更小 */
    color: #1890ff;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 16px;
}

.novel-name:hover {
    text-decoration: underline;
}

/* 章节：固定宽度，居中 */
.novel-chapter {
    width: 60px;
    text-align: center;
    color: #666;
    font-size: 14px;
    flex-shrink: 0;
    margin-right: 16px;
}

/* 时间：固定宽度，右对齐 */
.novel-time {
    width: 100px;
    text-align: right;
    color: #999;
    font-size: 13px;
    flex-shrink: 0;
}

/* 斑马纹 */
.novel-row:nth-child(even) {
    background: #fafafa;
}

.novel-row:nth-child(even):hover {
    background: #f0f7ff;
}

/* 移动端适配 */
@media (max-width: 480px) {
    .novel-row {
        padding: 10px 12px;
    }
    
    .novel-name {
        font-size: 14px;
    }
    
    .novel-chapter {
        width: 50px;
        font-size: 13px;
        margin-right: 10px;
    }
    
    .novel-time {
        width: 85px;
        font-size: 12px;
    }
}

  .genre-section {
    margin-bottom: 32px;
  }

  .genre-section h2 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #d1d5db;
  }

  .genre-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px 24px;
  }

  .genre-item {
    display: flex;
    align-items: center;
    font-size: 13px;
    line-height: 1.6;
  }

  .genre-item::before {
    content: "›";
    color: #9ca3af;
    margin-right: 6px;
    font-size: 14px;
    font-weight: 400;
  }

  .genre-item a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.15s;
  }

  .genre-item a:hover {
    color: #1d4ed8;
    text-decoration: underline;
  }

  .genre-count {
    color: #6b7280;
    margin-left: 4px;
  }

  /* 小屏幕适配 */
  @media (max-width: 1024px) {
    .genre-grid { grid-template-columns: repeat(4, 1fr); }
  }
  @media (max-width: 768px) {
    .genre-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 480px) {
    .genre-grid { grid-template-columns: repeat(2, 1fr); }
  }








