/**top**/
        /* 全局变量和基础样式 */
        :root {
            --primary-color: #3498db;
            --success-color: #27ae60;
            --info-color: #2980b9;
            --warning-color: #f39c12;
            --danger-color: #e74c3c;
            --light-gray: #f5f8fa;
            --medium-gray: #bdc3c7;
            --dark-gray: #2c3e50;
            --border-radius: 8px;
            --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            --box-shadow-hover: 0 4px 15px rgba(0, 0, 0, 0.12);
            --transition-speed: 0.3s;
        }
      
        
        /* 容器样式 */
        .novel-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .page-title-container {
            text-align: center;
            margin-bottom: 30px;
            padding: 20px 0;
        }
        
        .page-main-title {
            font-size: 2.5rem;
            color: var(--dark-gray);
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .page-description {
            color: #7f8c8d;
            font-size: 1.1rem;
        }
        
        /* 单行卡片容器 */
        .novel-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        /* 单行卡片主体样式 */
        .single-line-card {
            display: flex;
            align-items: center;
            background-color: white;
            border-radius: var(--border-radius);
            padding: 16px 20px;
            box-shadow: var(--box-shadow);
            transition: all var(--transition-speed) ease;
            border-left: 4px solid transparent;
        }
        
 
@media (max-width: 768px) {
    .single-line-card {
        transition: none;
    }
}    
        
        
        .single-line-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--box-shadow-hover);
        }
        
        /* 卡片颜色变体 */
        .single-line-card.rank-1 {
            border-left-color: #f1c40f;
        }
        
        /* 排名样式 */
        .rank-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            min-width: 50px;
        }
        
        .rank-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .rank-number.rank-1 {
            background-color: #f1c40f;
        }
        
        .rank-number.rank-2 {
            background-color: #95a5a6;
        }
        
        .rank-number.rank-3 {
            background-color: #e67e22;
        }
        
        /* 封面图片样式 */
        .cover-container {
            width: 60px;
            min-width: 60px;
            height: 85px;
            margin-left: 20px;
            margin-right: 20px;
        }
        
        .novel-cover {
            width: 100%;
            height: 100%;
            border-radius: 6px;
            object-fit: cover;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
        }
        
        /* 内容区域 */
        .card-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex: 1;
            min-width: 0;
        }
        
        .title-section {
            flex: 1;
            min-width: 0;
            margin-right: 20px;
        }
        
        .novel-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 8px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .title-link {
            text-decoration: none;
            color: inherit;
        }
        
        .title-link:hover {
            color: var(--primary-color);
        }
        
        .genre-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        
        .genre-link {
            background-color: #e8f4fc;
            color: var(--info-color);
            font-size: 0.85rem;
            font-weight: 500;
            padding: 3px 10px;
            border-radius: 12px;
            text-decoration: none;
        }
        
        .genre-link:hover {
            background-color: #d4e9fa;
            text-decoration: underline;
        }
        
        /* 信息区域 - 单行布局 */
        .info-section {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        
        .info-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 120px;
        }
        
        .score-container {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .score-value {
            font-size: 1rem;
            font-weight: 700;
            color: #333;
        }
        
        .users-count {
            font-size: 0.9rem;
            color: var(--medium-gray);
            margin-top: 2px;
        }
        
        .format-label {
            font-size: 13px;
            color: var(--dark-gray);
        }
        
        .date-label {
            font-size: 13px;
            color: var(--dark-gray);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .info-section {
                gap: 20px;
            }
            
            .info-item {
                min-width: 100px;
            }
        }
        
        @media (max-width: 768px) {
            .single-line-card {
                flex-direction: column;
                align-items: flex-start;
                padding: 12px;
            }
            
            .rank-container {
                width: 40px;
                min-width: 40px;
            }
            
            .rank-number {
                width: 35px;
                height: 35px;
                font-size: 1.1rem;
            }
            
            .cover-container {
                width: 50px;
                min-width: 50px;
                height: 70px;
                margin-left: 15px;
                margin-right: 15px;
            }
            
            .card-content {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }
            
            .info-section {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                width: 100%;
            }
            
            .info-item {
                min-width: auto;
                align-items: flex-start;
                text-align: left;
            }
        }
        
        @media (max-width: 480px) {
            .info-section {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            
           
            
            .genre-tags {
                gap: 4px;
            }
            
            .genre-link {
                font-size: 0.8rem;
                padding: 2px 8px;
            }
        }
        
        /* 实用工具类 */
        .ellipsis {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
/* =========================
   ✅ MOBILE ONLY（≤768px）
   ========================= */
 a.LPceitwo {
  color: #333 !important; 
}

/**wap**/
/* =========================
   ✅ MOBILE ONLY（≤768px）
   ========================= */
@media (max-width: 768px) {

    /* 1. 卡片整体：左图 + 右文字 */
    .single-line-card {
        flex-direction: row;
        align-items: flex-start;
        padding: 12px;
        position: relative;
        gap: 12px;
    }

    /* 2. 排名：图片左侧、缩小 */
    .rank-container {
        position: absolute;
        left: 6px;
        top: 6px;
        z-index: 2;
    }

    .rank-number {
        width: 26px;
        height: 26px;
        font-size: 14px;
        line-height: 26px;
        text-align: center;
        border-radius: 50%;
        background: var(--primary-color);
        color: white;
        font-weight: bold;
    }

    /* 3. 封面图：自适应 */

    /* 4. 标题 + 分类：图片右侧 */
.title-section {
        flex: 1;
        min-width: 0;
        margin-right: 2px;
        margin-bottom: 8px;
        display: block;
        overflow: hidden;
        padding-right: 10px !important;
        box-sizing: border-box !important;
    }
    .novel-title {
        font-size: 16px;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    }

    .genre-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 8px;
    }

    /* 5. 下方3个信息：占满整行，横向并排 */
    .info-section {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 8px;
        border-top: 1px solid var(--medium-gray);
        margin-top: 8px;
        font-size: 13px;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 4px;
        color: var(--dark-gray);
    }

    .info-item span {
        font-weight: bold;
    }

  .info-item:has(.date-label) {
    display: none !important;
  }
}
.W6Jox4 .icon {
  width: 16px;   
  height: 16px; 
  fill: currentColor; 
}

.kWmh_7 .icon {
  width: 28px;   
  height: 28px; 
  fill: currentColor; 
}
 a.LPceione {
         font-size: 13px;
}

.P_iKfA {
    width: 100%; 
    text-align: center;
    margin: 0; 
}
/**list-star xian**/    
 .score-wrap {
    display: inline-block;
    font-size: 0;
    position: relative;
}

.score-wrap .score-bg {
    display: inline-block;
    font-size: 20px;
    color: #ccc;
}

.score-wrap .score-bg::before {
    content: "★★★★★";
}

.score-wrap .score-fill {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    font-size: 20px;
    color: #ffcc00;
}

.score-wrap .score-fill::before {
    content: "★★★★★";
}

/**footer**/
.footer{font-size: 0;text-align: center;padding: 20px 0;border-top:1px solid #E8E8E8; background:#fff;}
.footer img{width: auto;height: auto;}
.footerNav {margin-bottom: 12px;}
.footerNav a {font-size: 14px;color: #333;margin: 0 10px;}
.footerNav a:hover{color:#FF4F4F}
.footerNav span {font-size: 14px;border-left: 1px solid #9e9e9e;}
.footerNav span:nth-child(1){border-left: 0;}
.footerCopy{font-size: 14px;color:#9e9e9e;}
.footerCopy p{margin-top:12px;line-height: 20px;}
.footerCopy p>a{color: #9e9e9e;}
.footerCopy p>a:hover{color:#FF4F4F;text-decoration: underline;}
.footerMore{font-size: 14px;color: #9e9e9e;margin-top: 12px;}
.footerMore a {color: #9e9e9e;}
.footer {padding:20px 10px 10px 10px;}

/**zhuangtaitishi**/
#floating-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    background: #000;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transition: .3s;
    pointer-events: none;
}
#floating-message.show{opacity:1;}
/**xialameihua**/
/* ====== select 容器 ====== */
.select-wrapper {
  position: relative;
  display: inline-block;
  width: 170px;
}

/* 自定义箭头 */
.select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #888;
  font-size: 13px;
}

/* ====== select 本体 ====== */
.status-select {
  width: 100%;
  padding: 8px 28px 8px 10px;
  font-size: 14px;
  border: 1px solid #ccd1da;
  border-radius: 6px;
  background: #fff;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .2s;
}

.status-select:hover {
  border-color: #999;
}

.status-select:focus {
  outline: none;
  border-color: #4f46e5;
}

@media (max-width: 768px){
.select-wrapper {
  position: relative;
  display: inline-block;
  width: 108px;
}
/**.status-select {
  width: 100%;
   padding: 8px 28px 8px 10px; 
  font-size: 12px;
  border: 1px solid #ccd1da;
  border-radius: 6px;
  background: #fff;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .2s;
}**/

}

/**xiala end**/
.single-line-card {
    display: flex;
    gap: 16px;
}


.title-section {
    min-height: 70px;  
}

.genre-tags {
    min-height: 32px; 
    flex-wrap: wrap;
    gap: 4px;
}

.info-section {
    margin-top: auto; 
}

