/*列表详情*/
.article-details .article-content{
  background: #fff;
  border-radius: 12px;
  margin-bottom:10px;
}
.article-details .banner-img img{
  width: 100%;
  max-height: 90px;
  border-radius:12px;
  overflow: hidden;
  margin-bottom: 10px;
}

/* 列表详情 上下一篇模块 */
.article-nav{
    background: #fff;
    border-radius: 10px;
    padding:15px 20px;
    font-size: 14px;
}
.article-nav .prev,
.article-nav .next{
    color: #333;
    line-height: 32px;
}
.article-nav .prev span,
.article-nav .next span{
    color: #999;
}
.article-nav a{
    color: #333;
    text-decoration: none;
}
.article-nav a:hover{
    color: #0066cc;
}

/* 列表详情 相关文章模块 */
.relative-header{
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
}
.relative-header .title{
    font-size: 14px;
    font-weight: bold;
}
.relative-header .tag{
    background: #ECF3FF;
    color: #2A54A1;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
}
.relative-header .tag:hover{
    background: #E83625;
    color: #fff;
}
.relative-list{
    padding: 10px 20px;
    font-size: 14px;
}
.relative-list .item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height:35px;
}
.relative-list .item:last-child{
    border-bottom: none;
}
.relative-list .item .dot-text{
    display: flex;
    gap: 6px;
}
.relative-list .item .dot{
    color: #999;
}
.relative-list .item a{
    color: #333;
    text-decoration: none;
}
.relative-list .item a:hover{
    color: #0066cc;
}
.relative-list .date{
    color: #999;
    font-size: 12px;
}


/* 列表文章详情内容 */
.article-side{
  padding: 20px;
  color: #333;
}
.article-side .article-title {
    font-size: 20px;
    font-weight: bold;
    line-height: 24px;
    margin-bottom: 12px;
}
/* 文章头部信息 */
.article-side .article-meta {
    display: flex;
    gap: 24px;
    color: #666;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    margin:0 -20px 20px -20px;
    padding-left: 20px;
}
/*文章内容区 副文本*/
.article-side .article-info{
    display: block; overflow: hidden; padding-bottom:20px; line-height:28px; font-size:14px;
}
.article-side .article-info img{
    max-width:100% !important; max-height:100% !important; display:block;margin-left:auto;margin-right:auto;
}
    .article-side .article-info hr {
        margin-top:10px; margin-bottom:10px;
    }
    .article-side .article-info h1, h2, h3, h4, h5, h6 {
        font-weight:700 !important;
    }

/* 高亮芯片标签（文中蓝色框） */
.article-side .chip-inline-tag {
    padding: 2px 6px;
    background: #ECF3FF;
    border-radius: 4px;
    border: 1px solid #2A54A1;
    color: #333;
}
.article-side a.chip-inline-tag {
   color: #2A54A1;
   cursor: pointer;
}
.article-side a.chip-inline-tag:hover {
    color: #fff;
    background: #2A54A1;
}
/* 文章图片 */
.article-side .article-img {
    width: 100%;
    border-radius: 6px;
    margin: 18px 0;
    display: block;
}
/* 小标题 */
.article-side .sub-title {
    font-size: 16px;
    font-weight: bold;
    margin: 28px 0 10px;
}
/* 分割线 */
.article-side .divider {
    height: 1px;
    background: #eee;
    margin: 20px -20px;
}
/* 底部芯片标签区域 */
.article-side .chip-tag-area .tip-text {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: bold;
}
.article-side .chip-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.article-side .chip-tag-item {
    border: 1px solid #eee;
    padding: 6px 14px;
    background: #fff;
    border-radius: 5px;
    color: #333;
    cursor: pointer;
}
.article-side .chip-tag-item.active,
.article-side .chip-tag-item:hover {
    border: 1px solid #2A54A1;
    color: #2A54A1;
}
