/* 修复背景模糊层遮挡问题 */
    .book-cover-blur {
      pointer-events: none;
      z-index: 0;
    }
    
    .download-container {
      position: relative;
      z-index: 1;
    }
    
    .breadcrumb-wrapper {
      position: relative;
      z-index: 1;
    }
    
    .download-info-box {
      background: #FFFFFF;
      padding: 20px;
      margin: 5px 0;
      border-radius: 8px;
      position: relative;
      z-index: 1;
    }
    .download-stats {
      display: flex;
      gap: 10px;
      margin: 10px 0;
    }
    .download-stats > div {
      flex: 1;
      background: #EBF1E3;
      color: #333;
      padding: 10px;
      text-align: left;
      border-radius: 4px;
      border: 1px solid #d4e8c8;
      font-size: 0.825rem;
    }
    .update-time-box {
      margin: 10px 0;
      padding: 10px;
      background: #EBF1E3;
      font-size: 0.825rem;
    }
    .download-stats > div span {
      color: #0066cc;
      font-weight: bold;
    }
    .download-links {
      margin: 20px 0;
    }
    .download-links a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px;
      margin: 8px 0;
      background: #fcf8ef;
      border-radius: 4px;
      text-decoration: none;
      color: #0066cc;
      cursor: pointer;
    }
    .download-links a:hover {
      background: #d4e8c8;
    }
    
    /* 下载图标 */
    .download-icon {
      position: relative;
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }
    .download-icon::before {
      content: '';
      position: absolute;
      top: 2px;
      left: 50%;
      transform: translateX(-50%);
      width: 3px;
      height: 12px;
      background: #0066cc;
      border-radius: 2px;
    }
    .download-icon::after {
      content: '';
      position: absolute;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 6px solid #0066cc;
    }
    .download-icon .box {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 18px;
      height: 8px;
      border: 2px solid #0066cc;
      border-top: none;
      border-radius: 0 0 3px 3px;
      margin-bottom: 3px;
    }
    .download-links a:hover .download-icon::before,
    .download-links a:hover .download-icon::after {
      background: #004d99;
      border-top-color: #004d99;
    }
    .download-links a:hover .download-icon .box {
      border-color: #004d99;
    }
    
    
    .download-links a:hover .read-icon::before {
      border-color: #004d99;
    }
    .download-links a:hover .read-icon::after {
      background: #004d99;
      box-shadow: 0 4px 0 #004d99, 0 8px 0 #004d99;
    }
    .download-notice {
      background: #fff3cd;
      padding: 15px;
      margin: 15px 0;
      border-radius: 4px;
      border-left: 4px solid #ffc107;
    }
    .rank-list {
      background: white;
      padding: 15px;
      border-radius: 4px;
      margin: 5px 0;
      position: relative;
      z-index: 1;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    }
    .rank-list h3 {
      margin: 0 0 15px 0;
      padding-bottom: 10px;
      border-bottom: 2px solid #FF3955;
    }
    .rank-item {
      display: flex;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px solid #eee;
    }
    .rank-num {
      width: 30px;
      height: 30px;
      line-height: 30px;
      text-align: center;
      margin-right: 10px;
      border-radius: 4px;
      font-weight: bold;
      flex-shrink: 0;
    }
    .rank-num.top3 {
      background: #ff9800;
      color: white;
    }
    .rank-num.normal {
      background: #e0e0e0;
      color: #666;
    }
    .rank-item a {
      flex: 1;
      text-decoration: none;
      color: #333;
      font-size: 0.825rem;
      text-align: left;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .rank-item a:hover {
      color: #0066cc;
    }
    .rank-count {
      flex-shrink: 0;
      font-size: 0.68rem;
      color: #999;
      white-space: nowrap;
      text-align: right;
    }
    
    /* 新增样式类 */
    .notice-img {
      max-width: 100%;
    }
    .welcome-text {
      margin: 15px 0;
      font-weight: bold;
    }
    .welcome-text .highlight {
      color: #008606;
    }
    
    .update-time-box .time {
      color: #0000ff;
    }
    .novel-intro-box {
      margin: 20px 0;
      padding: 15px;
      background: white;
      border-radius: 8px;
    }
    .novel-intro-box .intro-title {
      color: #008800;
    }
    .novel-intro-box p {
      margin: 10px 0;
      line-height: 1.8;
      font-size: 14px;
      white-space: pre-wrap;
    }
    
    /* 章节列表样式 */
    .chapter-lists-container {
      margin: 20px 0;
    }
    .chapter-list-box {
      background: white;
      padding: 15px;
      margin: 15px 0;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    .chapter-list-title {
      margin: 0 0 15px 0;
      padding-bottom: 10px;
      border-bottom: 2px solid #FF3955;
      color: #333;
      font-size: 1rem;
    }
    .chapter-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 8px;
    }
    .chapter-item {
      display: flex;
      align-items: center;
      padding: 10px;
      background: #f8f9fa;
      border-radius: 4px;
      text-decoration: none;
      color: #333;
      transition: all 0.2s;
      border-left: 3px solid transparent;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .chapter-item:hover {
      background: #e3f2fd;
      border-left-color: #0066cc;
      transform: translateX(3px);
    }
    .chapter-number {
      color: #666;
      font-size: 0.825rem;
      margin-right: 10px;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .chapter-name {
      flex: 1;
      font-size: 0.875rem;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    
    @media (min-width: 768px) {
      .chapter-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }
    }
    .download-notice p {
      margin: 0;
      text-align: center;
      font-weight: bold;
    }
    .download-notice #downloadLimitInfo {
      margin: 10px 0 0 0;
      text-align: center;
      color: #666;
      font-size: 14px;
    }
    .rank-empty {
      padding: 20px;
      text-align: center;
      color: #999;
    }
    .search-popup-animated {
      overflow: hidden;
      transition: height .2s ease 0s;
      height: auto;
    }
    
    @media (min-width: 768px) {
      .download-container {
        display: flex;
        gap: 20px;
      }
      .download-left {
        flex: 3;
      }
      .download-right {
        flex: 1.15;
      }
      .rank-item a {
      font-size: 0.825rem;
    }
    }

.seo-tag-links {
  padding: 16px 0;
  border-top: 1px solid #eee;
}

.seo-tag-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.seo-tag-label {
  font-size: 12px;
  color: #999;
  white-space: nowrap;
  flex-shrink: 0;
}

.seo-tag-link {
  font-size: 12px;
  color: #666;
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  background: #fff;
}

.seo-tag-link:hover {
  border-color: #bbb;
  color: #333;
  background: #f7f7f7;
}
