.container-content {
    width: 100%;
    display: flex;
    overflow: hidden;
}
@media (max-width:768px) {
    .container-content {
        flex-direction: column; /* 手机端竖排，彻底不撑宽 */
    }
}
.BP {
    padding-block-start: 48px;
}
@media screen and (min-width: 64em) {
    .ns-content {
        max-width: 80em;
        padding-inline: 24px;
    }
}
.ns-content {
    background-color: #fff;
    width: 100%;
    margin: 0 auto;
    padding-inline: 16px;
}


/**home lei**/
.trending-content .icon {
  width: 32px;
  height: 32px;
 
}
.trending-section {
  max-width: 1200px;
  margin-top: 0px;
  margin-right: 5px;
 margin-bottom: 20px;
  margin-left: 5px;
  padding: 0 10px;
}
.trending-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}
.trending-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trending-item {
  margin: 0;
}
.trending-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* 核心修复：统一圆角 + 渐变边框完美圆角 */
.trending-content {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 10px;
  /* 用这个方案实现完美渐变边框 + 统一圆角 */
  position: relative;
  z-index: 1;
  transition: 0.2s;
}
.trending-content::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(90deg, #22d36e, #0ea5e9);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/* hover 状态：圆角保持一致 */
.trending-content:hover {
  background: linear-gradient(90deg, #22d36e, #0ea5e9);
  transform: translateY(-2px);
}
.trending-content:hover .trending-text {
  color: #fff;
}

.trending-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.trending-item .trending-icon {
  fill: url(#grad);
}
.trending-content:hover .trending-icon {
  fill: #fff !important;
}
.trending-text {
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

@media (max-width: 768px) {
  .trending-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/**center**/
    /* 标签内容默认隐藏 */
    .tab-content {
        display: none;
        width:100%;
    }
    .tab-content.active {
        display: block;
    }
    @media (max-width: 768px) {
        .tab-nav-list {
            max-width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        
        /**[class*="nav"] {
            max-width: 100%;
        }*/
    }

    @media screen and (min-width:30em) {
        :root {
            --gutter-neg:-8px;
            --gutter-pos:8px
        }
    }
    @media screen and (min-width:48em) {
        :root {
            --gutter-neg:-8px;
            --gutter-pos:8px
        }
    }
    @media screen and (min-width:64em) {
        :root {
            --gutter-neg:-12px;
            --gutter-pos:12px
        }
    }
    @media screen and (min-width:80em) {
        :root {
            --gutter-neg:-12px;
            --gutter-pos:12px
        }
    }
    .section-title {
        line-height:inherit;
        color:#141415;
        font-family:Montserrat,Arial Fallback,arial,sans-serif;
        font-size:1.125rem;
        font-weight:600;
        margin-bottom:16px;
    }
    @media screen and (min-width:48em) {
        .section-title {
            font-size:1.125rem
        }
    }
    .cover-img {
        border-radius:3px;
        display: block;
        width: 111px !important;
        height: 155px !important;
        object-fit: cover;
        object-position: center;
    }
    .rating-wrap, .rating-stars {
        display: flex;
        align-items: center;
    }
    .novel-link {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
    }
    .novel-name {
        width: 100%;
        text-align: center;
        font-size: 14px;
        line-height: 1.3;
        margin: 4px 0;
        word-wrap: break-word;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        color:#141415;
        font-weight:600;
    }
    @media screen and (min-width:48em) {
        .novel-name {
            font-size:1rem
        }
    }
    .add-area {
        font-size: 12px;
        color: #333;
        cursor: pointer;
    }
    .novel-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    @media screen and (min-width:80em) {
        .novels-cover {
            border-radius:8px;
            justify-content:center;
            align-items:center;
            padding:20px;
            display:flex
        }
    }
    .rating-wrap {
        justify-content:space-between;
        column-gap:4px;
        margin-bottom:4px;
        display:flex
    }
    @media screen and (min-width:80em) {
        .rating-wrap {
            margin-bottom:8px
        }
    }
    :root {
        --gutter-scroll-neg:-16px;
        --gutter-scroll-pos:16px;
        --half-gutter-scroll-neg:-8px;
        --half-gutter-scroll-pos:8px
    }
    .novels-list {
    /* 原来的：margin-inline: var(--gutter-scroll-neg); */
    margin-inline: 0 !important;
    flex-wrap:nowrap;
    row-gap:24px;
    display:flex;
    overflow:scroll hidden;
    margin-bottom:24px;
}
    .novels-list::-webkit-scrollbar {
        display:none
    }
    @media (hover:hover) {
        .novels-list {
            margin-inline:var(--half-gutter-scroll-neg);
            flex-wrap:wrap;
            overflow:auto
        }
        .novel-list::-webkit-scrollbar {
            display:block
        }
    }
    @media (max-width:767px) {
        .novel-item {
            flex: 0 0 35%;
            max-width: 50%;
            padding: 0 4px;
            margin: 0 0 2px 0;
        }
        .add-btn {
            display: inline-block;
            margin-top: 16px !important;
        }
    }
    .add-btn:hover {
        color: #ff5a5a !important;
        cursor: pointer;
    }
    .novel-item {
        padding-inline:0 var(--gutter-scroll-pos);
        flex:0 0 30%;
        max-width:30%
    }
    @media (max-width: 767px) {
    .novel-item {
        flex: 0 0 35%;
        max-width: 50%;
        padding: 0 4px;
        margin: 0 0 12px 0;
    }
}
    
    .novel-item:first-child {
        margin-inline-start:var(--gutter-scroll-pos)
    }
    @media (hover:hover) {
        .novel-item {
            padding:0 var(--half-gutter-scroll-pos);
            flex:0 0 33.3333%;
            max-width:33.3333%
        }
        .novel-item:first-child {
            margin-inline-start:0
        }
    }
    @media screen and (min-width:30em) {
        .novel-item {
            flex:0 0 30%;
            max-width:30%;
            padding-inline:0 16px
        }
        .novel-item:first-child {
            margin-inline-start:16px
        }
    }
    @media (hover:hover) and (min-width:30em) {
        .novel-item {
            padding:0 var(--half-gutter-scroll-pos);
            flex:0 0 33.3333%;
            max-width:33.3333%
        }
        .novel-item:first-child {
            margin-inline-start:0
        }
    }
    @media screen and (min-width:64em) {
        .novel-item {
            flex:0 0 16.6667%;
            max-width: 16.6667%;
            padding:0 12px
        }
        .novel-item:first-child {
            margin-inline-start:0
        }
        :root {
            --half-gutter-scroll-neg:-12px;
            --half-gutter-scroll-pos:12px
        }
        .novel-list {
            margin-inline:var(--half-gutter-scroll-neg);
            flex-wrap:wrap;
            overflow:auto
        }
        .novel-list::-webkit-scrollbar {
            display:block
        }
    }
    @media screen and (min-width:80em) {
        :root {
            --half-gutter-scroll-neg:-12px;
            --half-gutter-scroll-pos:12px
        }
        .novel-list {
            margin-inline:var(--half-gutter-scroll-neg);
            flex-wrap:wrap;
            overflow:auto
        }
        .novel-list::-webkit-scrollbar {
            display:block
        }
    }
    .tab-nav-wrapper {
        width:100%;
        margin-bottom:20px;
    }
    @media screen and (min-width:48em) {
        .tab-nav-wrapper {
            margin-bottom:24px
        }
    }
    @media (hover:hover) {
        .tab-nav-wrapper {
            display:flex;
            position:relative
        }
    }
    .tab-nav-list {
        white-space:nowrap;
        -webkit-overflow-scrolling:touch;
        flex-wrap:nowrap;
        align-items:center;
        width:auto;
        margin:0 -16px;
        padding:0 16px;
        display:flex;
        overflow:scroll hidden;
        transform:translateZ(0);
        border-bottom:1px solid #e0e0e0;
    }
    @media screen and (min-width:48em) {
        .tab-nav-list {
            width:100%;
            margin:0;
            padding:0
        }
    }
    @media (hover:hover) {
        .tab-nav-list {
            width:100%;
            margin:0;
            padding:0;
            overflow-x:visible
        }
    }
    .tab-nav-list::-webkit-scrollbar {
        display:none
    }
    .tab-container {
        width:100%
    }
    .tab-btn {
        cursor:pointer;
        text-align:center;
        text-transform:none;
        letter-spacing:0;
        color:#3b3d40;
        background-color:transparent;
        border:0;
        border-bottom:2px solid transparent;
        width:auto;
        padding:12px 16px;
        font-size:.875rem;
        font-weight:400;
        line-height:1.429;
        transition:background-color .25s
    }
    @media (hover:hover) {
        .tab-btn:hover {
            color:#3b3d40;
            background-color:#f5f5f5
        }
    }
    .tab-btn:focus-visible {
        outline-offset:-1px
    }
    .tab-btn:active,.tab-btn.active {
        color:#141415;
        background-color:#fff;
        border-bottom:2px solid #141415;
        font-weight:600
    }
    .novel-section {
        margin-bottom:48px;
    }
    
/**list-star xian**/    
.score-wrap {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: #ccc;
}
.Rating-rating{
    font-size: 14px;
}
/* 灰色底星 */
.score-bg::before {
    content: "\2605\2605\2605\2605\2605";
}
.score-fill {
    position: absolute;
    left: 0;
    top: 0;
    /**color: #ffb400;**/
    color:#ffcc00;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
}
.score-fill::before {
    content: "\2605\2605\2605\2605\2605";
}
.add-area {
  margin: 10px 0;
  display: inline-block;
}
.add-btn {
  display: inline-block;
  padding: 6px 0;
  background: transparent;
  color: #000;
  border: none;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}
.add-btn:hover {
  background: transparent;
  color: transparent;
  background-image: linear-gradient(90deg, #22d36e, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  transform: translateX(2px);
}
/* 基础按钮样式 */
.view-all-btn.view-all-btn {
    text-align: center;
    color: #3b3d40;
    background: #fff;
    font-weight: 400;
    box-shadow: inset 0 0 0 2px #3b3d40;
    display: flex !important;
    justify-content: center !important;
}

    .view-all-btn {
        width: fit-content;
        min-width: 130px;
        max-width: 220px;
        margin: auto;
        display: flex;
   }
@media screen and (max-width: 30em) {
    .view-all-btn {
        width: fit-content;
        min-width: 130px;
        max-width: 220px;
        margin: auto;
        display: flex;
    }
}

.view-all-btn {
     box-shadow: none;
    text-transform: none;
    color: #fff;
    background: #009e61;
    border: 0;
    border-radius: 8px;
    align-items: center;
    column-gap: 8px;
    min-height: 25px;
    padding: 8px 20px;
    font-family: inherit;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.2;
    transition: background-color .1s, color .1s, box-shadow .1s;
    display: inline-flex;

}

.view-all-btn:hover {
    background-color: #000 !important;
    color: #fff !important;
}
/**center end*/
/**rank**/
        /* 全局变量和基础样式 */
        :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;
        }
        
    .fenge{
        margin-top: 16px !important;
        margin-bottom: 16px;
    }
      
        
        /* 容器样式 */
        .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;
        }
        
        .single-line-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--box-shadow-hover);
        }
        
        /* 卡片颜色变体 */
        .single-line-card.rank-1 {
            border-left-color: #f1c40f;
        }
        
        .single-line-card.rank-2 {
            border-left-color: #95a5a6;
        }
        
        .single-line-card.rank-3 {
            border-left-color: #e67e22;
        }
        
        /* 排名样式 */
        .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;
    justify-content: flex-end; 
    gap: 30px;
    flex-shrink: 0; 
    width: 220px; 
    text-align: center;
}
        
        .info-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 120px;
             flex-shrink: 0; 
        }
       
.date-label {
    white-space: nowrap;
}
        
        .score-container {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .score-icon {
            color: var(--success-color);
            width: 18px;
            height: 18px;
        }
        
        .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);
        }
        
        .length-label {
            font-size: 0.9rem;
            color: var(--medium-gray);
            margin-top: 2px;
        }
        
        .date-label {
            font-size: 13px;
            color: var(--dark-gray);
        }
        
        .status-label {
            font-size: 0.9rem;
            color: var(--medium-gray);
            margin-top: 2px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .info-section {
                gap: 20px;
            }
            
            .info-item {
                min-width: 100px;
            }
        }
        .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;
}
        
        @media (max-width: 768px) {
            .single-line-card {
                flex-direction: column;
                align-items: flex-start;
                padding: 12px;
            }
            
            .card-top {
                display: flex;
                width: 100%;
                align-items: center;
                margin-bottom: 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;
        }
        
        .text-center {
            text-align: center;
        }
/* =========================
   ✅ MOBILE ONLY（≤768px）
   ========================= */
.text-right {
    text-align: right;
}
 a.LPceitwo {
  color: #333 !important; 
  font-size: 13px;
}

/**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. 封面图：自适应 */
    .cover-image img {
        width: 80px;
        height: auto;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
    }

    /* 4. 标题 + 分类：图片右侧 */
    .content-section {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-left: 36px; /* 给排名留空间 */
        min-width: 0;
    }
.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;
    }

    .genre-tag a {
        font-size: 12px;
        padding: 2px 8px;
        background: var(--light-gray);
        border-radius: 4px;
        text-decoration: none;
        color: var(--dark-gray);
    }

    /* 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 .emoji {
        font-size: 16px;
    }
  .info-item:has(.format-label) {
    display: none !important;
  }
  .info-item:has(.date-label) {
    display: none !important;
  }
}

/**rank end**/
/**home down**/       
@media (max-width: 768px) {
    
    .mnl_btn_dk.mnl_btn_ol {
        max-width: 90% !important;
        
        
    }
    
    .mnl_col{
        max-width: 95% !important;
        
    }
    .mnl_container, .mnl_wrapper {
        max-width: 100vw;
        overflow-x: hidden;
    }
    .mnl_container > *, .mnl_wrapper > * {
        max-width: 100% !important;
        box-sizing: border-box;
    }
}

.mnl_btn {
	box-shadow:none;
	text-transform:none;
	color:#fff;
	background:#009e61;
	border:0;
	border-radius:8px;
	align-items:center;
	column-gap:8px;
	min-height:40px;
	padding:8px 20px;
	font-family:inherit;
	font-size:.875rem;
	font-weight:600;
	line-height:1.4;
	transition:background-color .1s,color .1s,box-shadow .1s;
	display:inline-flex
}
.mnl_btn:hover {
	cursor:pointer;
	background:#00805e
}
.mnl_btn:active {
	color:#fff;
	background:#009e61
}
.mnl_btn:disabled {
	opacity:.5;
	cursor:not-allowed;
	pointer-events:none
}
.mnl_btn:disabled:focus-visible {
	outline:none
}
.mnl_btn[disabled]:focus-visible {
	outline:none
}
.mnl_btn_ol {
	color:#009e61;
	background:#fff;
	font-weight:400;
	box-shadow:inset 0 0 0 2px #009e61
}
.mnl_btn_ol:hover {
	color:#fff;
	background:#00805e
}
.mnl_btn_ol:active {
	color:#009e61;
	background:#fff
}
.mnl_btn_dk {
	color:#fff;
	background:#3b3d40;
	font-weight:400
}
.mnl_btn_dk:hover {
	color:#fff;
	background:#141415
}
.mnl_btn_dk:active {
	color:#fff;
	background:#3b3d40
}
.mnl_btn_dk.mnl_btn_ol {
    text-align: center;
	color:#3b3d40;
	background:#fff;
	font-weight:400;
	box-shadow:inset 0 0 0 2px #3b3d40;
	display: flex !important;
    justify-content: center !important
}
.mnl_btn_dk.mnl_btn_ol:hover {
	color:#fff;
	background:#141415
}
.mnl_btn_dk.mnl_btn_ol:active {
	color:#fff;
	background:#141415;
	box-shadow:inset 0 0 0 2px #141415
}
.mnl_btn_w {
width: fit-content;
        min-width: 160px;
        max-width: 220px;
        margin: auto;
        display: flex;
        text-align: center
}
.mnl_container {
	width:100%;
	display:flex;
	margin-top: 20px;
}
.mnl_wrapper {
	background-color:#fff;
	width:100%;
	margin:0 auto;
	padding-inline:16px
}
@media screen and (min-width:30em) {
	.mnl_wrapper {
	max-width:80em;
	padding-inline:16px
}
}@media screen and (min-width:48em) {
	.mnl_wrapper {
	max-width:80em;
	padding-inline:16px
}
}@media screen and (min-width:64em) {
	.mnl_wrapper {
	max-width:80em;
	padding-inline:24px
}
}@media screen and (min-width:80em) {
	.mnl_wrapper {
	max-width:80em;
	padding-inline:24px
}
}
.mnl_row {
	margin-inline:var(--gutter-neg);
	flex-wrap:wrap;
	display:flex
	
}
.mnl_col {
	padding:0 var(--gutter-pos);
	flex: 0 0 auto;
	max-width:100%;
	margin-bottom: 16px;
}
@media screen and (min-width:30em) {
	:root {
	--gutter-neg:-8px;
	--gutter-pos:8px
}
}@media screen and (min-width:48em) {
	:root {
	--gutter-neg:-8px;
	--gutter-pos:8px
}
}@media screen and (min-width:64em) {
	:root {
	--gutter-neg:-12px;
	--gutter-pos:12px
}
.mnl_col_third {
	flex:0 0 33%;
	max-width:33%
}
}@media screen and (min-width:80em) {
	:root {
	--gutter-neg:-12px;
	--gutter-pos:12px
}
}
.mnl_anchor a:focus-visible {
	outline-offset:-1px
}
.mnl_focus_alt:focus-visible {
	outline-offset:-1px
}
.mnl_focus_alt2:focus-visible {
	outline-offset:-1px
}
@media screen and (min-width:48em) {
.mnl_focus_alt3:focus-visible {
	outline-offset:-1px
}
}.mnl_focus_alt4:focus-visible {
	outline-offset:-1px
}
.mnl_focus_alt5:focus-visible {
	outline-offset:-1px
}

.mnl_focus_alt6:focus-visible {
	outline-offset:-1px
}
.mnl_outline:focus-visible {
	outline-offset:-1px
}


.mnl_title {
	line-height:inherit;
	color:#141415;
	font-family:Montserrat,Arial Fallback,arial,sans-serif;
	font-size:1.125rem;
	font-weight:600
}
@media screen and (min-width:48em) {
	.mnl_title {
	font-size:1.125rem
}
}
.mnl_flex_row {
	column-gap:16px;
	display:flex
}
.mnl_info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}


.mnl_thumb_wrap>* {
	max-width:none;
	line-height:0;
	display:flex
	
}
.mnl_thumb_wrap {
    margin-right: 16px; 
}

.mnl_img {

	border-radius:3px
}
@supports not (aspect-ratio:calc(1 / 1)) {
	.mnl_img:after {
	float:inline-start;
	content:"";
	padding-block-start:100%
}
}
.mnl_link {
	display:block
}
.mnl_name {
    color: #141415;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-block-end: 4px;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    text-align: left;
    display: block;
    width: 100%;
}

.mnl_link[href]:hover {
	cursor:pointer
}
.mnl_link[href]:hover .mnl_name {
	text-decoration:underline
}
.mnl_link.mnl_link_compact .mnl_thumb {
	width:50px;
	height:71px
}
.mnl_section {
	margin-block-end:32px
}


/* 整体容器上边距 */
.mnl_focus:focus-visible {
	outline-offset:-1px
}

.mnl_module {
	flex-direction:column;
	row-gap:16px;
	display:flex
}
.mnl_item {
	border-block-end:1px solid #e0e0e0;
	padding-block:12px
}
.mnl_item:first-child {
	border-block-start:1px solid #e0e0e0
}
.mnl_more_wrap {
	text-align:center;
	width:auto;
	margin:auto
}
@media screen and (min-width:48em) {
	.mnl_more_wrap {
	width:100%
}
}@media screen and (min-width:30em) {
	.mnl_btn_i {
	width:fit-content;
	min-width:160px;
	max-width:220px;
	margin:auto;
	display:flex
}
}
.mnl_details::details-content {
	transition:all .5s ease,content-visibility .3s allow-discrete;
	height:0;
	overflow:clip
}
.mnl_details[open]::details-content {
	height:auto
}
@supports (-webkit-line-clamp:3) {
}
@supports (-webkit-line-clamp:3) {
}
.mnl_input_focus:focus-visible {
	outline-offset:-1px
}
@supports (-webkit-line-clamp:3) {
}
:root {
	--gutter-scroll-neg:-16px;
	--gutter-scroll-pos:16px;
	--half-gutter-scroll-neg:-8px;
	--half-gutter-scroll-pos:8px
}@media screen and (min-width:64em) {
:root {
	--half-gutter-scroll-neg:-12px;
	--half-gutter-scroll-pos:12px
}
}@media screen and (min-width:80em) {
:root {
	--half-gutter-scroll-neg:-12px;
	--half-gutter-scroll-pos:12px
}
}
.mnl_details_alt::details-content {
	transition:all .5s ease,content-visibility .3s allow-discrete;
	height:0;
	overflow:clip
}
.mnl_details_alt[open]::details-content {
	height:auto
}
.mnl_card:not(:has(.mnl_card_body)) .mnl_card_header {
	min-height:48px
}
@media (min-width:48em) {
	.mnl_card:not(:has(.mnl_card_body)) .mnl_card_header {
	min-height:auto
}
}
@container prime-picks-item (width>=500px) {
}.mnl_focus_alt8:focus-visible {
	outline-offset:-1px
}


.mnl_focus_alt9:focus-visible {
	outline-offset:-2px
}
.mnl_modal::backdrop {
	background:rgba(0,0,0,.8)
}

.mnl_score-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}
.mnl_info > a {
    display: block;
    overflow: hidden;
    width: 100%;
    text-decoration: none;
}

.mnl_info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
a.rated.off.LPceitwo:hover {
    color: #ff4500!important;
    cursor: pointer;
}
/**home down end**/







