/* 修复背景模糊层遮挡问题 */
    .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: 20px 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: 8px;
      margin: 20px 0;
      position: relative;
      z-index: 1;
    }
    .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;
    }
    .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;
    }
    .rank-item a:hover {
      color: #0066cc;
    }
    
    /* 新增样式类 */
    .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;
    }
    .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: 2;
      }
      .download-right {
        flex: 1;
      }
      .rank-item a {
      font-size: 0.825rem;
    }
    }