
        html{filter:gray;}
        .mn-wrap {
            overflow: hidden;
            margin: 10px 0;
            position: relative;
        }
        .mn-wrap .mn-swiper{
            overflow: hidden;
            height: 100%;
            position: relative !important;
        }
        .mn-wrap .swiper-wrapper {
            -webkit-transition-timing-function: linear;    /*之前是ease-out*/
            -moz-transition-timing-function: linear;
            -ms-transition-timing-function: linear;
            -o-transition-timing-function: linear;
            transition-timing-function: linear;
            margin: 0 auto;
          }
        .mn-wrap .mn-swiper .swiper-slide a{
            width: 100%;
            height: 100%;
            display: block;
            overflow: hidden;
        }
        .mn-wrap .mn-swiper .swiper-slide{
            width: 168px;
            height: 80px;
            /*background: #000000;*/
            /*opacity: 0.5;   */
            border-radius: 8px;
            font-size: 24px;
            font-family: Microsoft YaHei;
            font-weight: bold;
            color: #FFFFFF;
            margin: 0px 10px 0 10px;
            text-align: center;transition:all .7s ease 0s;
            overflow: hidden;
        }
        .mn-wrap .mn-swiper .swiper-slide .img-wrapper{
            width: 100%;
            height: 150px !important;
        }
        .mn-wrap .mn-swiper .swiper-slide:hover{
        
            opacity: 0.9;  box-shadow: -1px 1px 27px -5px rgba(0,0,0,0.7);
        -webkit-box-shadow: -1px 1px 27px -5px rgba(0,0,0,0.7);
        -moz-box-shadow: -1px 1px 27px -5px rgba(0,0,0,0.7);
        
        }
/* ===== 基础图片标签样式 ===== */
.pic-tag {
  background-color: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.4;
  margin: 2px;
}

/* 高亮/激活状态标签 */
.pic-tag.active, 
.pic-tag-h {
  background-color: var(--theme-color);
  color: #FFFFFF;
}

/* 评分标签特殊样式（红色） */
.pic-tag.comic-score {
  color: #ff0000 !important;
  font-weight: bold;
}

/* ===== 图片文本样式 ===== */
.pic-text, 
.pic-title-b {
  background-repeat: no-repeat;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, .5));
  color: #FFFFFF;
  padding: 6px 12px;
  font-size: 14px;
  display: block;
}

.pic-text.active {
  background: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
}

/* 顶部标题样式 */
.pic-title-t {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  color: #FFFFFF;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: bold;
}

/* ===== 右下角定位样式 ===== */
.pic-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.text-right {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 4px 12px;
  z-index: 20;
  text-align: right;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .pic-tag {
    font-size: 10px;
    padding: 2px 6px;
  }
  
  .pic-text, .pic-title-b {
    font-size: 12px;
    padding: 4px 8px;
  }
  
  .text-right {
    bottom: 5px;
    right: 5px;
    padding: 2px 8px;
    font-size: 12px;
  }
}

    /* 紧凑型筛选器样式 */
    .category-filter {
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .category-filter.loaded {
        opacity: 1;
    }
    .category-filter .swiper-container {
        margin-top: 5px;
        margin-bottom: 5px;
        visibility: hidden; /* 初始隐藏 */
        opacity: 0;
        transition: visibility 0s 0.3s, opacity 0.3s ease;
    }
    .category-filter.loaded .swiper-container {
        visibility: visible;
        opacity: 1;
        transition-delay: 0s;
    }
    .category-filter .swiper-slide {
        width: auto !important;
        padding: 2px !important;
        transform: translateY(10px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .category-filter.loaded .swiper-slide {
        transform: translateY(0);
        opacity: 1;
    }
    
    .category-filter .swiper-slide a {
        white-space: nowrap !important;
        padding: 4px 10px !important;
        border-radius: 15px !important;
        background: #f5f5f5 !important;
        border: 1px solid #e0e0e0 !important;
        display: inline-block !important;
        text-decoration: none !important;
        color: #666 !important;
        font-size: 13px !important;
        transition: all 0.2s !important;
    }
    .category-filter .swiper-slide.active a {
        background: #f0f9ff !important;
        color: #1890ff !important;
        border-color: #1890ff !important;
        font-weight: bold !important;
    }
    .category-filter .swiper-slide a:hover {
        background: #e6f7ff !important;
        color: #1890ff !important;
        border-color: #91d5ff !important;
    }
    
    /* 修复布局问题 - 让标签和按钮在一行显示 */
    .ewave-screen__list {
        padding: 8px 0 !important;
        margin-bottom: 5px !important;
        border-bottom: 1px solid #eee !important;
        overflow: hidden; /* 防止内容溢出 */
        display: flex; /* 关键：使用flex布局 */
        align-items: center; /* 垂直居中 */
    }
    
    .ewave-screen__list .filter-label {
        margin-bottom: 0 !important;
        margin-right: 12px !important;
        display: inline-block !important;
        color: #333 !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        flex-shrink: 0; /* 防止被压缩 */
        white-space: nowrap; /* 防止换行 */
        min-width: 50px; /* 减少宽度，减少空白 */
    }
    
    .ewave-screen__list:last-child {
        border-bottom: none !important;
    }
    
    /* 调整Swiper容器占据剩余空间 */
    .ewave-screen__list .swiper-container {
        flex: 1; /* 占据剩余空间 */
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        overflow: hidden !important; /* 改为hidden以启用滚动 */
        min-height: 30px;
        max-width: calc(100% - 70px); /* 限制最大宽度 */
    }
    
    /* 修复Swiper样式 */
    .swiper-container {
        overflow: hidden !important; /* 必须为hidden才能滚动 */
    }
    
    .swiper-wrapper {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        width: auto !important;
    }
    
    .swiper-slide {
        width: auto !important; /* 确保宽度自适应 */
        flex-shrink: 0; /* 防止被压缩 */
    }
    
    /* 排序部分单独样式 */
    .ewave-screen__list:last-child .filter-label {
        min-width: 40px;
    }
    
    /* 修复排序按钮样式 */
    .sort-nav {
        opacity: 0;
        transform: translateY(10px);
        transition: transform 0.3s ease, opacity 0.3s ease;
        display: flex; /* 使用flex布局 */
        align-items: center; /* 垂直居中 */
        flex: 1; /* 占据剩余空间 */
        overflow: hidden; /* 防止溢出 */
        max-width: calc(100% - 70px); /* 限制最大宽度 */
    }
    .category-filter.loaded .sort-nav {
        opacity: 1;
        transform: translateY(0);
    }
    .sort-nav .nav-head {
        display: flex !important;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 10px;
        flex-wrap: nowrap;
        overflow: visible;
    }
    .sort-nav .nav-head li {
        list-style: none;
        flex-shrink: 0;
    }
    .sort-nav .nav-head li a {
        text-decoration: none;
        padding: 4px 12px !important;
        border-radius: 15px;
        background: #f5f5f5;
        border: 1px solid #e0e0e0;
        display: inline-block;
        font-size: 13px;
        color: #666;
        transition: all 0.2s;
        line-height: 1.5;
        white-space: nowrap;
    }
    .sort-nav .nav-head li.active a {
        background: #f0f9ff !important;
        color: #1890ff !important;
        border-color: #1890ff !important;
        font-weight: bold !important;
    }
    .sort-nav .nav-head li a:hover {
        background: #e6f7ff;
        color: #1890ff;
        border-color: #91d5ff;
    }
    
    /* 漫画卡片加载动画 */
    .comics-card {
        margin-bottom: 20px;
        padding: 5px;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.5s ease forwards;
    }
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .comics-card__poster {
        position: relative;
        display: block;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transition: transform 0.3s;
    }
    .comics-card__poster:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    .comics-card__poster .cover {
        width: 100%;
        padding-bottom: 140%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-color: #f5f5f5;
    }
    .comics-card__info {
        display: block;
        margin-top: 8px;
        color: #333;
        text-decoration: none;
    }
    .comics-card__title h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
    }
    .tags {
        display: block;
        margin-top: 4px;
        font-size: 12px;
        color: #888;
    }