
        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;
  }
}