

      /* 热门阅读列表样式优化 */
.news-right .hotRead ul {
    padding-left: 0;           /* 移除默认左侧内边距 */
    list-style: none;         /* 去掉项目符号 */
}

.news-right .hotRead ul li {
    margin-bottom: 15px;      /* 增加下边距，拉开项间距 */
    padding-bottom: 10px;     /* 内边距辅助呼吸感 */
    border-bottom: 1px solid #f0f0f0;  /* 浅色分割线，清晰区分每项 */
}

/* 最后一项去掉边框和多余间距 */
.news-right .hotRead ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* 链接样式优化，提升点击区域和美观度 */
.news-right .hotRead ul li a {
    display: block;           /* 使链接占满整行，方便点击 */
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.2s;
}

/* 鼠标悬停效果 */
.news-right .hotRead ul li a:hover {
    color: #1677ff;           /* 与模板主色调一致 */
    text-decoration: none;
}


#article-toc .toc-list {
    padding-left: 0;
    margin-bottom: 0;
}
#article-toc .toc-list li {
    border-bottom: 1px dashed #eee;
    padding: 6px 0;
}
#article-toc .toc-list li a {
    display: block;
    color: #333;
    font-size: 14px;
    transition: color 0.2s;
}
#article-toc .toc-list li a:hover {
    color: #1677ff;
    text-decoration: none;
}