@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(/wp-content/css/font/fa-solid-900-4d986b00ff9ca3828fbd.woff2) format('woff2'),
       url(/wp-content/css/font/fa-solid-900-bacd5de623fb563b961a.ttf) format('truetype');
}
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #ffffff;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: #1a1a2e;
            line-height: 1.5;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 32px 24px;
        }

        /* ========== 顶部标题区 ========== */
        .page-header {
            margin-bottom: 32px;
        }
        .page-header h1 {
            font-size: 2rem;
            font-weight: 700;
            color: #0a0a0a;
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }
        .page-header .native-title {
            font-size: 1rem;
            color: #8e8e93;
            margin-bottom: 24px;
        }

        /* 导航栏 */
        .tabs-nav {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            gap: 4px;
            background: #ffffff;
            padding: 0 0 4px 0;
            margin-bottom: 32px;
            border-bottom: 1px solid #f0f0f0;
        }
        .tab-btn {
            background: transparent;
            border: none;
            padding: 10px 20px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #8e8e93;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s ease;
            border-radius: 0;
        }
        .tab-btn:hover {
            color: #1a1a2e;
        }
        .tab-btn.is-active {
            color: #1a1a2e;
            font-weight: 600;
            border-bottom: 2px solid #1a1a2e;
        }

        /* ========== 三栏布局 ========== */
.three-columns {
    display: grid;
    grid-template-columns: 180px 1fr 280px;
    gap: 40px;
    align-items: start;
}

.span-full-content {
    grid-column: 1 / 3;
    margin-top: 5px;
}

/* 右侧保持在第一行 */
.right-panel {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

        .left-panel {
            flex: 0 0 220px;
        }

        .center-panel {
            flex: 1;
            min-width: 260px;
        }

        .right-panel {
            flex: 0 0 auto;
            min-width: 200px;
            max-width: 300px;
        }

        /* ========== 左侧样式 ========== */
        .cover-card {
            margin-bottom: 28px;
        }

        .cover-img {
            width: 100%;
            aspect-ratio: 2 / 3;
            object-fit: cover;
            display: block;
            border-radius: 12px;
        }

        .action-card {
            margin-bottom: 28px;
        }

        .shelf-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: #1a1a2e;
            color: white;
            border: none;
            padding: 10px 0;
            border-radius: 48px;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            margin-bottom: 24px;
        }

        .shelf-btn:hover {
            background: #2d2d44;
        }

        .shelf-btn.active {
            background: #00b894;
        }

        .shelf-btn svg {
            width: 16px;
            fill: white;
        }

        .status-label {
            font-size: 0.7rem;
            font-weight: 500;
            color: #8e8e93;
            margin-bottom: 8px;
            display: block;
            letter-spacing: 0.5px;
        }

        .status-select {
            width: 100%;
            padding: 8px 0;
            border: none;
            border-bottom: 1px solid #e9ecef;
            background: #ffffff;
            font-size: 0.85rem;
            cursor: pointer;
            margin-bottom: 24px;
            color: #1a1a2e;
        }

        .status-select:focus {
            outline: none;
            border-bottom-color: #1a1a2e;
        }

        .tag-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 5px;
            letter-spacing: 0.5px;
        }

        .tag-group {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
    .ttags {
    color: #2980b9;    
    font-size: 12px; 
   }

.tag {
    background-color: #e8f4fc;
    color:#2980b9;
    font-size: 0.85rem;
    padding: 3px 10px;
    border-radius: 12px;
    text-decoration: none;
 }
.tag:hover {
   background-color: #d4e9fa;
   text-decoration: underline;
 }
.genres {
    font-size: 0.8rem;
    padding: 2px 8px;
}
.genres {
    background-color: #e8f4fc;
    color: #2980b9;
    font-size: 0.85rem;
    padding: 3px 10px;
    border-radius: 12px;
    text-decoration: none;
}
        .genres:hover {
            background-color: #d4e9fa;
            text-decoration: underline;
        }

        .info-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 5px;
            letter-spacing: 0.5px;
        }

        .info-list {
            list-style: none;
        }

        .info-list li {
            display: flex;
            padding: 8px 0;
            font-size: 0.8rem;
            border-bottom: 1px solid #f5f5f5;
        }

        .info-list li:last-child {
            border-bottom: none;
        }

        .info-label {
            font-size: 0.9rem;
            width: 88px;
            font-weight: 500;
           white-space: nowrap;      /* 关键 */
           flex-shrink: 0;          /* 防止被压缩 */
        }

        .info-value {
            flex: 1;
            color: #1a1a2e;
        }
.info-list a{
 color: #2980b9;
  text-decoration: underline;
}
        .status-completed {
            color: #00b894;
        }

        .share-section {
            margin-top: 20px;
            display: flex;
            justify-content: flex-start;
            gap: 16px;
        }

        .share-icon {
            transition: opacity 0.2s;
            opacity: 0.5;
        }

        .share-icon:hover {
            opacity: 1;
        }

        /* ========== 中间样式 ========== */
        .intro-card {
            background: transparent;
            padding: 0;
            margin-bottom: 40px;
        }

        .description {
            line-height: 1.8;
            color: #2c3e50;
            font-size: 1rem;
        }

        .description p {
            margin-bottom: 24px;
        }

        .quote {
            padding: 0 0 0 24px;
            margin: 28px 0;
            font-style: normal;
            color: #4a5568;
            font-size: 1rem;
            border-left: 3px solid #e0e0e0;
        }

        /* 章节列表样式 */
        .chapter-section {
            margin-top: 40px;
        }

        .chapter-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 20px;
            padding-bottom: 8px;
            padding-left: 18px;
            padding-right: 10px;
           border-bottom: 1px solid #f0f0f0;
        }

        .chapter-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a2e;
        }

        .chapter-title span {
            font-size: 0.8rem;
            font-weight: 400;
            color: #8e8e93;
            margin-left: 8px;
        }

        .filter-btn {
            background: transparent;
            border: 1px solid #e9ecef;
            border-radius: 20px;
            padding: 5px 16px;
            font-size: 0.75rem;
            color: #1a1a2e;
            cursor: pointer;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .filter-btn:hover {
            background: #f5f5f5;
            border-color: #1a1a2e;
        }

        .chapter-table {
            width: 100%;
            border-collapse: collapse;
        }

        .chapter-table th,
        .chapter-table td {
            padding: 12px 8px;
            text-align: left;
            border-bottom: 1px solid #f5f5f5;
            font-size: 0.85rem;
        }

        .chapter-table th {
            font-weight: 600;
            color: #8e8e93;
            font-size: 0.75rem;
        }

        .chapter-table td {
            color: #1a1a2e;
        }

        .chapter-table tr:hover td {
            background-color: #fafafa;
        }

        .release-link {
            color: #0066cc;
            text-decoration: none;
        }

        .release-link:hover {
            text-decoration: underline;
        }

        .pagination {
            display: flex;
            gap: 8px;
            margin-top: 20px;
            justify-content: flex-end;
            align-items: center;
            flex-wrap: wrap;
        }

        .page-btn {
            padding: 6px 12px;
            border: 1px solid #e9ecef;
            background: #ffffff;
            border-radius: 6px;
            font-size: 0.75rem;
            color: #1a1a2e;
            cursor: pointer;
            transition: all 0.2s;
        }

        .page-btn:hover {
            background: #f5f5f5;
        }

        .page-btn.active {
            background: #1a1a2e;
            color: white;
            border-color: #1a1a2e;
        }

        .page-dots {
            color: #8e8e93;
            font-size: 0.75rem;
        }

        /* ========== 弹窗样式 ========== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-container {
            background: #ffffff;
            border-radius: 20px;
            width: 90%;
            max-width: 400px;
            box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 20px;
            border-bottom: 1px solid #f0f0f0;
        }

        .modal-header h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a2e;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #8e8e93;
            transition: color 0.2s;
        }

        .modal-close:hover {
            color: #1a1a2e;
        }

        .modal-body {
            padding: 20px;
        }

        .filter-group {
            margin-bottom: 20px;
        }

        .filter-group label {
            font-size: 0.75rem;
            font-weight: 600;
            color: #8e8e93;
            display: block;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }

        .filter-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .filter-link {
            display: inline-block;
            padding: 6px 16px;
            background: #f8f9fa;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #1a1a2e;
            text-decoration: none;
            transition: all 0.2s;
        }

        .filter-link:hover {
            background: #1a1a2e;
            color: white;
        }

        .apply-filter {
            width: 100%;
            padding: 10px;
            background: #1a1a2e;
            color: white;
            border: none;
            border-radius: 48px;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 10px;
        }

        .apply-filter:hover {
            background: #2d2d44;
        }

        /* ========== 右侧样式 ========== */
        .like-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: #141415;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
            border-bottom: 1px solid #f5f5f5;
        }

        .like-list {
            list-style: none;
        }

        .like-item {
            display: flex;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid #f5f5f5;
        }

        .like-item:last-child {
            border-bottom: none;
        }

        .like-cover {
            flex-shrink: 0;
            width: 38px;
            height: 54px;
            border-radius: 6px;
            overflow: hidden;
            background: #fafafa;
        }

        .like-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .like-info {
            flex: 1;
        }

        .like-name {
            font-size: 0.8rem;
            font-weight: 500;
            color: #1a1a2e;
            margin-bottom: 4px;
            display: block;
            text-decoration: none;
            line-height: 1.35;
        }

        .like-name:hover {
            color: #0066cc;
        }

        .like-rating {
            font-size: 14px;
            color: #8e8e93;
        }

        .more-btn {
            display: block;
            text-align: center;
            margin-top: 20px;
            padding: 8px;
            background: transparent;
            color: #8e8e93;
            font-size: 0.75rem;
            text-decoration: none;
            transition: all 0.2s;
        }

        .more-btn:hover {
            color: #1a1a2e;
        }

        .tab-pane {
            display: none;
        }
        .tab-pane.active {
            display: block;
        }

        /* ========== 响应式 ========== */
/* ========== 响应式 ========== */
@media (max-width: 900px) {
    .container {
        padding: 20px 16px;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    /* 移动端：覆盖 Grid，改用 Flex 列排列 */
    .three-columns {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
    
    /* 移动端：评论模块占满宽度 */
    .span-full-content {
        width: 100%;
        margin-top: 20px;
    }
    
    /* 移动端：左侧内部横向布局 */
    .left-panel {
        flex: auto;
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
    }
    .cover-card {
        flex: 0 0 100px;
        margin-bottom: 0;
    }
    .action-card {
        flex: 1;
        margin-bottom: 0;
        min-width: 200px;
    }
    .info-card-left {
        flex: 1 1 100%;
    }
    
    /* 移动端：右侧在最后 */
    .right-panel {
        flex: auto;
        max-width: 100%;
        order: 3;
    }
    
    .center-panel {
        flex: auto;
    }
    
    .chapter-table th,
    .chapter-table td {
        padding: 10px 6px;
        font-size: 0.75rem;
    }
}
@media (max-width: 900px) {
    .three-columns {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
    
    .span-full-content {
        width: 100%;
        margin-top: 5px;
    }
    
    .right-panel {
        order: 3;
    }
}
/**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;}

/**zhuangtaitishi**/
#floating-mes {
    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-mes.show{opacity:1;}
#temp-login-tip {
    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;
}
#login-tip.show{opacity:1;}

/* 模块容器 zhuangtai */
.module-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}
.select-wrapper {
    position: relative;
    width: 148px;  
    height: 36px;
    flex-shrink: 0;
    background-color: #fff;
}

.select-wrapper:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0%;
    width: 20%;
    height: 100%;
    background-color: #85c1e9;
    pointer-events: none;
    border-radius: 0 8px 8px 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 9l7 7 7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    transition: background-color 0.2s ease;
}

/* select样式 */
.status-select {
    /**background-color: #3498db;*/
    color: #333;
    padding: 8px 22% 8px 12px;  /* 左边距小一点 */
    font-size: 14px;  /* 字体稍小 */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    cursor: pointer;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.custom-select .options{
    background-color: #ffffff;
}

.status-select::-ms-expand {
    display: none;
}

.select-wrapper:hover::after {
    background-color: #7fb3d5;
}

.select-wrapper:hover .status-select {
    background-color: #fff;
}

/* 红心按钮 - 红色背景，白色心形 */
.favourite {
    width: 32px;  /* 稍小一点 */
    height: 32px;
    background-color: #e74c3c;
    border-radius: 6px;  /* 圆角稍小 */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
    position: relative;
    z-index: 10;
}

.favourite svg {
    width: 16px;  /* 心形稍小 */
    height: 16px;
    color: #ffffff;  /* 白色心形 */
    display: block;
}

.favourite:hover {
    background-color: #c0392b;
}
.lister-item {
    display: inline-block;
    padding: 6px 12px;
    margin: 10px 0;  /* 上下距离10px */
    color: #22d36e;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.lister-item:hover {
    color: #0ea5e9;
    background: rgba(34, 211, 110, 0.1);
}      
#comme {
  display: none;
}
/**moer**/
	.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}
        .boxbow{
            box-sizing: border-box;
            padding: 75px 10px 0; 
            padding-top: 175px;
            width: 100%;
            height: 200px;
            overflow: hidden;
        }
       
        .newstext{
            margin-top: -175px;
            font-size: 14px;
            line-height: 25px;
            word-wrap: break-word;
            white-space: normal;
            word-break: break-all;
        }
        .ry{
            float: right;
            font-size: 12px;
            line-height: 25px;
            
           
        }
        .ry a{
            color:red;
            cursor: pointer;
        }
        .ha{
            height:auto; 
        }
        .retract{
            display: none;
        }
        .my_more{
            display: none;
        }	
/**end**/
		
	/**pl-the more**/
       .clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}
        .boxboc{
            box-sizing: border-box;
             padding: 75px 10px 0;   /* 上 75px，左右 20px，下 0 */
            padding-top: 75px;
            width: 100%;
            height: 100px;
            overflow: hidden;
        }
       
        .texttext{
            margin-top: -75px;
            font-size: 13px;
            line-height: 25px;
            word-wrap: break-word;
            white-space: normal;
            word-break: break-all;
        }
        .rt{
            float: right;
            font-size: 12px;
            line-height: 25px;
        }
        .rt a{
            color:red;
            cursor: pointer;
        }
        .ha{
            height:auto; 
        }
        .retract{
            display: none;
        }
        .my_more{
            display: none;
        }	
		/**end**/		
/**pingfenxianshi**/
	.ReviewsSection__listHeader {
    margin: 5px 0;
}
@media only screen and (min-width: 40em) and (max-width: 63.9375em) {
    .Text__title3, .Text__title3-secondary {
        font-size: 1.8rem;
        line-height: 2.4rem;
    }
}
h3 {
    font-size: 1.4em;
    font-weight: normal;
}


@media only screen and (min-width: 40em) and (max-width: 63.9375em) {
    .Text__title3, .Text__title3-secondary {
        font-size: 1.8rem;
        line-height: 2.4rem;
    }
}
.ReviewsSectionStatistics {
    padding-bottom: 1.2rem;
}
@media only screen and (max-width: 79.9375em) {
    .RatingStatistics {
        flex-direction: column;
    }
}
.RatingStatistics {
    border-radius: 0.8rem;
    display: inline-flex;
    padding: 0.8rem;
    margin: -0.8rem -0.8rem 0 -0.8rem;
}
.RatingStatistics__column {
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 79.9375em) {
    .RatingStatistics__column {
        padding-bottom: 0.4rem;
    }
}
.RatingStatistics__column {
    display: flex;
}
.star-rating {
    display: inline-block;
    font-size: 0;
    position: relative;
}
.RatingStatistics__rating {
    font-family: Copernicus, "Libre Baskerville", Georgia, serif;
    font-weight: 600;
    font-size: 2.6rem;
    margin: 0 0 1.2rem 1px;
}
.RatingStatistics__meta {
    color: var(--color-text-subdued);
    font: 400 1.4rem / 1.35714 "Proxima Nova", Montserrat, Arial, sans-serif;
    padding-top: 0.4rem;
}


.progress-wrapper {
    width: 78%;
    max-width: 1200px; 
    margin: 10px auto; 
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .progress-wrapper {
        width: 58%; 
        margin-left: 28px; 
        margin-right: auto; 
    }
}
.progress-container {
    flex-grow: 1;
    background-color: #f0f0f0;
    border-radius: 5px;
    position: relative;
    margin: 0 10px;
}

.progress-bar {
    height: 10px;
    /**background-color: #e87400;*/
    background-color:#ffd596;
    width: 0%;
    border-radius: 5px;
}

.star-ratin, .details {
    display: inline-block;
}

.details {
    margin-left: 10px;
}
.cle{
border-bottom: 1px solid #e4e4e4;
}


#Rating{
    margin-bottom: 5px;
    font-size: 18px;
    margin-top: 5%;
    margin-left: 30px;
}

/**starxianshi**/
        .star-rating {
            display: inline-block;
            font-size: 0;
            position: relative;
        }

        .star-rating .stars {
            display: inline-block;
            font-size: 36px;
            color: #ccc;
        }

        .star-rating .stars::before {
            /**content: "★★★★★";
        **/
         content: "\2605\2605\2605\2605\2605";  
            
        }

        .star-rating .filled-stars {
            position: absolute;
            top: 0;
            left: 0;
            white-space: nowrap;
            overflow: hidden;
            width: 0;
            font-size: 36px;
            color: #ffcc00;
        }

        .star-rating .filled-stars::before {
            content: "\2605\2605\2605\2605\2605";  
                    }
/**end**/

/**plxianshis**/
[class*="pure-"] {
    font: normal 1em var(--ap-font-primary);
}
#reviews, #screening {
    margin-bottom: 36px;
}
.reviews-hd h2 {
    border-bottom: 1px solid #eaeaea;
    color: #111;
    margin-bottom: 18px;
    padding-bottom: 10px;
}
h2 {
    font-size: 1.7em;
    font-weight: normal;
}
.reviews-hd h2 span {
    font-size: 13px;
    margin-left: 12px;
}
@media (min-width: 48em) {
    .md-4-5 {
        width: 80%;
    }
}
@media (min-width: 48em) {
    .md-1-2, .md-1-3, .md-2-3, .md-1-4, .md-3-4, .md-1-5, .md-2-5, .md-3-5, .md-4-5, .md-1-8, .md-7-8, .md-1-12, .md-5-24, .md-11-24, .md-13-24 {
        display: inline-block;
        zoom: 1;
        letter-spacing: normal;
        word-spacing: normal;
        vertical-align: top;
        text-rendering: auto;
    }
}
.pure-2-3, .pure-1-4, .pure-3-4, .pure-1-5, .pure-2-5, .pure-3-5, .pure-4-5, .pure-1-6, .pure-5-6, .pure-1-8, .pure-7-8, .pure-12-24 {
    display: inline-block;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
}

.avatarHeader {
    line-height: 14px;
}
.avatarHeader .avatar {
    float: left;
    margin-right: 0.5em;
    width: 30px;
    height: 30px;
}
.pure-3-5 > a {
    vertical-align: top;
}
.avatar {
    overflow: hidden;
    height: 20px;
    width: 20px;
    display: inline-block;
    margin-right: 0.3em;
    margin-bottom: -0.3em;
    border-radius: 50%;
}
.avatarHeader .avatar img {
    width: 30px;
    height: 30px;
}
.authorDate {
    line-height: 16px;
    float: left;
    padding-right: 0.5em;
}
.authorDate a {
    display: block;
    font-size: 1.3em;
    color: var(--color-link);
}
.name[itemprop="name"] {
    font-size: 12px;
}
.time {
    color: #676767;
    font-size: 0.7em;
}

/**user-pl star*/
        .rating-stars {
            display: inline-block;
            font-size: 0;
        }

        .rating-stars .rating-star {
            font-size: 15px;
            color: #ccc; 
            display: inline-block;
        }

        .rating-stars .rating-star.active {
            color: #ffcc00; 
        }
		
		
	.EntryPage__content .userActions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.userActions {
    white-space: nowrap;
    font-size: smaller !important;
    text-align: right;
}
.pure-1 {
    width: 100%;
}

.lgyPl_v2_record_item {
    padding: 10px 0;
    position: relative;
}	
.controlBar .cta {
    margin: 1em 0;
}
.recoCta {
    white-space: nowrap;
    width: 100%;
}
.cta {
    background-color: #f8f9fa; /* 浅灰色背景 */
    margin: 0.5em auto;
}

.addedBy, .cta {
    font-size: smaller;
    min-width: 119px;
    border-radius: 2px;
    padding: 0.6em 1.6em;
    display: inline-block;
    text-align: center;
}
.horizontal-cta > a:first-child {
    padding-left: 0;
}
.horizontal-cta > a {
    padding: 0.6em;
    border-right: var(--border-style);
    color: var(--color-text);
}
#rated-off {
    cursor: pointer;
}
.horizontal-cta > a {
    padding: 0.6em;
    border-right: var(--border-style);
    color: var(--color-text);
}
.lgyPl_v2_digg_icon {
    margin-right: 15px;
    opacity: .8;
    color: #666;
}
#iconComment:before {
    content: "\f075";
}
.recoCta > a:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    padding-right: 0.3em;
}
#rated-off:before {
    content: "\2b";
}
.recoCta > a:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    padding-right: 0.3em;
}
#rated-off {
    cursor: pointer;
}
.horizontal-cta > a:last-child {
    border-right: none;
    padding-right: 0;
}
.horizontal-cta > a {
    padding: 0.6em;
    border-right: var(--border-style);
    color: var(--color-text);
}
.lgyPl_v2_digg_icon {
    margin-right: 15px;
    opacity: .8;
    color: #666;
}		
		
.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;
    justify-content: center;
}

    .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;
}
/**nei-chapter**/
.CharacterGrid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    
    .CharacterCard {
        width: calc(50% - 10px);
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        display: flex;
        min-height: 150px;
    }
    
    .CharacterImage {
        width: 111px;
        height: 155px;
        flex-shrink: 0;
    }
    
    .CharacterImage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .CharacterContent {
        flex: 1;
        padding: 15px;
        display: flex;
        flex-direction: column;
    }
    
    .CharacterName {
        font-size: 16px;
        font-weight: bold;
        color: #333;
        margin-bottom: 8px;
    }
    
    .CharacterRole {
        display: inline-block;
        background-color: #e3f2fd;
        color: #1976d2;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        margin-bottom: 10px;
    }

    /* 新增：角色简介样式 */
    .CharacterDesc {
        font-size: 13px;
        color: #666;
        line-height: 1.4;
        margin-bottom: 12px;
        /* 最多显示2行，超出省略 */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .CharacterActions {
        margin-top: auto;
        display: flex;
        gap: 10px;
    }
    
    .ActionButton {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 16px;
        color: #666;
        padding: 4px 8px;
        border-radius: 4px;
        transition: all 0.2s;
    }
    
    .ActionButton:hover {
        background-color: #f5f5f5;
    }
    
    .LikeButton:hover {
        color: #e74c3c;
    }
    
    .DislikeButton:hover {
        color: #3498db;
    }
    
    @media (max-width: 768px) {
        .CharacterCard {
            width: 100%;
        }
    }
    li {
  list-style: none;
}
.CharacterCard__action[data-action="dislike"] .char_icon {
  fill: #999 ;
  vertical-align: middle;
}
.CharacterActions .char_icon {
  display: inline-block;
  vertical-align: middle; /* 核心：垂直居中 */
  margin-right: 2px;
}

/* 数字变小、居中对齐 */
.CharacterActions a {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 12px; /* 数字变小 */
  color: #666;
  text-decoration: none;
  line-height: 1;
}
/**nei-chapter-end**/
/**nei-list**/
   /* =========================================
   基础布局设置
   ========================================= */

/* 1. 网格容器 - 控制整个列表的排列 */
.listGrid {
    display: grid; /* 使用CSS Grid布局 */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 自动适应列数，每列最小280px，最大1fr */
    gap: 20px; /* 网格项之间的间距 */
    max-width: 1200px; /* 最大宽度限制 */
    margin: 0 auto; /* 水平居中 */
    margin-bottom: 20px;
    padding: 0 2px; /* 左右内边距 */
    box-sizing: border-box; /* 盒模型设置为border-box */
}

/* 2. 单个卡片容器 */
.listCard {
    background: white; /* 白色背景 */
    border-radius: 8px; /* 圆角边框 */
    overflow: hidden; /* 隐藏溢出内容 */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* 阴影效果 */
    display: flex; /* 使用Flex布局 */
    min-height: 150px; /* 最小高度 */
}

/* =========================================
   左侧图片区域
   ========================================= */

/* 3. 图片容器 */
.listImage {
    display: flex; /* Flex布局 */
    align-items: center; /* 垂直居中 */
    padding: 15px 0 15px 15px; /* 内边距：上0 右0 下0 左15px */
    z-index: 1; /* 层级 */
    position: relative; /* 相对定位 */
    flex-shrink: 0; /* 禁止收缩 */
    width: 180px; /* 固定宽度 */
}

/* 4. 图片链接 */
.listImage a {
    display: flex; /* Flex布局 */
}

/* 5. 图片样式 */
.listImage img {
    width: 80px; /* 固定宽度 */
    height: 110px; /* 固定高度 */
    object-fit: cover; /* 保持比例填充 */
    border-radius: 4px; /* 圆角 */
    border: 1px solid #eee; /* 边框 */
    margin-left: -25px; /* 负边距实现重叠效果 */
    box-shadow: 2px 2px 6px rgba(0,0,0,0.2); /* 阴影 */
    transition: transform 0.2s, z-index 0.2s; /* 过渡动画 */
    background: #fff; /* 背景色 */
}

/* 6. 第一张图片特殊处理 */
.listImage img:first-child {
    margin-left: 0; /* 移除负边距 */
}

/* 7. 图片悬停效果 */
.listImage img:hover {
    transform: translateY(-5px); /* 上移5px */
    z-index: 10 !important; /* 提高层级 */
}

/* =========================================
   右侧信息区域
   ========================================= */

/* 8. 信息容器 */
.listInfo {
    padding: 15px; /* 内边距 */
    flex-grow: 1; /* 占据剩余空间 */
    z-index: 2; /* 层级 */
    position: relative; /* 相对定位 */
    background: #fff; /* 背景色 */
    display: flex; /* Flex布局 */
    flex-direction: column; /* 垂直排列 */
    justify-content: center; /* 垂直居中 */
    min-width: 0; /* 关键：允许Flex子项被压缩 */
    overflow: hidden; /* 隐藏溢出内容 */
}

/* 9. 标题样式 */
.listTitle {
    font-size: 14px; /* 字体大小 */
    font-weight: 600; /* 字体粗细 */
    color: #333; /* 颜色 */
    margin-bottom: 8px; /* 底部外边距 */
    line-height: 1.4; /* 行高 */
    white-space: nowrap; /* 不换行 */
    overflow: hidden; /* 隐藏溢出 */
    text-overflow: ellipsis; /* 显示省略号 */
    width: 100%; /* 占满容器 */
}

/* 10. 描述样式 */
.listDesc {
    font-size: 14px; /* 字体大小 */
    color: #666; /* 颜色 */
    line-height: 1.6; /* 行高 */
    margin-bottom: 12px; /* 底部外边距 */
    display: -webkit-box; /* 多行文本截断 */
    -webkit-line-clamp: 2; /* 限制2行 */
    -webkit-box-orient: vertical; /* 垂直方向 */
    overflow: hidden; /* 隐藏溢出 */
}

/* 11. 操作栏容器 */
.listActions {
    display: flex; /* Flex布局 */
    align-items: center; /* 垂直居中 */
    border-top: 1px solid #f0f0f0; /* 上边框 */
    padding-top: 10px; /* 上内边距 */
    flex-wrap: wrap; /* 允许换行 */
    gap: 10px; /* 子项间距 */
}

/* 12. 操作项链接 */
.listCard__action a {
    display: flex; /* Flex布局 */
    align-items: center; /* 垂直居中 */
    font-size: 13px; /* 字体大小 */
    color: #888; /* 颜色 */
    text-decoration: none; /* 去除下划线 */
    margin-right: 10px;
    cursor: pointer; /* 手型光标 */
    flex-shrink: 0; /* 禁止收缩 */
}

/* 13. 用户名特殊处理 */
.username {
    max-width: 100px; /* 最大宽度限制 */
    white-space: nowrap; /* 不换行 */
    overflow: hidden; /* 隐藏溢出 */
    text-overflow: ellipsis; /* 显示省略号 */
    display: inline-block; /* 行内块元素 */
    vertical-align: middle; /* 垂直居中 */
}

/* 14. 悬停效果 */
.icon-thumbs-up:hover { 
    color: #00b359; /* 绿色 */
}
.icon-thumbs-down:hover { 
    color: #ff4d4f; /* 红色 */
}

/* =========================================
 /* =========================================
   手机端适配 (优化版)
   ========================================= */
@media (max-width: 768px) {
    /* 1. 强制单列布局 */
    .listGrid {
        grid-template-columns: 1fr; 
        gap: 12px; /* 进一步缩小间距，让卡片更紧凑 */
        padding: 8px; /* 缩小容器内边距 */
    }

    /* 2. 调整卡片整体布局比例 */
    .listCard {
        min-height: 130px; /* 稍微降低整体高度 */
    }

    /* 3. 左侧图片区域 - 变得更窄 */
    .listImage {
        width: 100px; /* 从原来的180px/120px改为100px，显著缩小左侧宽度 */
        padding: 8px 0 8px 8px; /* 进一步缩小内边距 */
        flex-shrink: 0; /* 确保宽度固定不被压缩 */
    }

    /* 4. 左侧图片 - 尺寸进一步缩小 */
    .listImage img {
        width: 50px;   /* 从60px缩小到50px，宽度减小16.7% */
        height: 70px;  /* 从85px缩小到70px，高度减小17.6% */
        margin-left: -18px; /* 负边距相应缩小 */
    }

    /* 5. 右侧信息区域 - 获得更多空间 */
    .listInfo {
        padding: 8px 12px; /* 减少内边距，让内容区域更宽 */
        flex: 1; /* 占据剩余的所有空间 */
        min-width: 0; /* 关键：允许内容被压缩 */
    }

    /* 6. 文字内容优化，充分利用右侧空间 */
    .listTitle {
        font-size: 13px; /* 稍微缩小字体，以便显示更多字符 */
        margin-bottom: 5px;
        white-space: normal; /* 允许换行，充分利用宽度 */
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* 最多显示2行 */
        -webkit-box-orient: vertical;
        line-height: 1.4; /* 行高略减小 */
    }

    .listDesc {
        font-size: 12px; /* 描述文字更小 */
        margin-bottom: 8px;
        -webkit-line-clamp: 2; /* 保持2行 */
        line-height: 1.5; /* 行高略减小 */
    }

    /* 7. 底部操作栏调整 */
    .listActions {
        padding-top: 8px; /* 缩小上内边距 */
        gap: 8px; /* 子项间距 */
        font-size: 12px; /* 操作栏文字更小 */
    }

    /* 8. 用户名显示优化 */
    .username {
        max-width: 80px; /* 用户名允许更宽，因为右侧空间大了 */
        font-size: 12px; /* 用户名字体也相应缩小 */
    }

    /* 9. 图标大小调整，保持比例 */
    .listCard__action a {
        font-size: 12px; /* 图标相关文字缩小 */
    }
    
    /* 10. 如果使用SVG图标，可以相应缩小 */
    .listCard__action svg {
        width: 14px; /* 稍微缩小图标 */
        height: 14px;
    }
}
.char_icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}
.mynovel_icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.user-img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-right: 10px;
}
    /**nei-list-end**/		
/**list-star xian**/    
.score-wrap {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: #ccc;
}
/* 灰色底星 */
.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";
}		
		
.filter-link {
    display: block;
    padding: 8px 12px;
    margin: 4px 0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
}

.filter-link:hover {
    background: #f0f0f0;
}

/* 选中状态：黑底白字 */
.filter-link.active {
    background: #1a1a2e;
    color: #fff;
}		
	h3 {
   font-size: 1.7em;
    font-weight: normal;

}
.associated {
    padding: 8px 10px;
    min-height: 32px;
    line-height: 1.6;
    color: #555;
}
		