        /* 右侧内容区 */
        .content {
            margin-left: 280px;
            padding: 25px;
            width: calc(100% - 240px);
            height: 100vh;
        }
        
        /* 隐藏滚动条但保持滚动功能 */
        .content::-webkit-scrollbar {
            width: 0;
            background: transparent;
        }
        
        /* 文章内容页特定样式 */
        .article-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e0d5c0;
        }
        
        .breadcrumb {
            color: #a69b8a;
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .breadcrumb a {
            color: #8B5A2B;
            transition: all 0.3s;
        }
        
        .breadcrumb a:hover {
            color: #5a4a3a;
            text-decoration: underline;
        }
        
        .breadcrumb span {
            margin: 0 5px;
        }
        
        .article-title {
            font-size: 32px;
            color: #8B5A2B;
            margin-bottom: 15px;
            font-weight: normal;
            line-height: 1.3;
            text-align: center;
        }
        
        .article-meta {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 14px;
            color: #a69b8a;
        }
        
        .article-meta span {
            margin: 0 10px;
            display: flex;
            align-items: center;
        }
        
        .article-meta i {
            margin-right: 5px;
            font-size: 14px;
        }
        
        .article-image {
            width: 100%;
            height: 400px;
            margin-bottom: 30px;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        

  .article-body {
    max-width: 900px;  /* 微调宽度 */
    margin: 0 auto;
    line-height: 2.0;  /* 更大的行高带来呼吸感 */
    color: #4a4035;    /* 更柔和的深棕色调 */
    font-family: "Georgia", "Times New Roman", serif; /* 经典衬线字体 */
    font-size: 18px;   /* 稍大的字号 */
    padding: 0 15px;   /* 添加少量内边距 */
    letter-spacing: 0.3px; /* 全局轻微字距 */
}

.article-body img {
    max-width: 100%;
    display: block;
    margin: 25px auto; /* 图片增加外边距 */
}

.article-body p {
    margin-bottom: 22px; /* 更平衡的段距 */
    text-indent: 2em;
    text-align: justify;
    word-spacing: 0.5px; /* 单词间距微调 */
    hyphens: auto;       /* 英文单词自动换行 */
}


        .article-body h2 {
            font-size: 24px;
            color: #8B5A2B;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e0d5c0;
            font-weight: normal;
        }
        
        .article-body h3 {
            font-size: 20px;
            color: #8B5A2B;
            margin: 30px 0 15px;
            font-weight: normal;
        }
        
        .article-body blockquote {
            background-color: #F5E8C4;
            border-left: 4px solid #8B5A2B;
            padding: 15px 20px;
            margin: 20px 0;
            font-style: italic;
            color: #5a4a3a;
        }
        
        .article-body .original-text {
            font-weight: bold;
            color: #8B5A2B;
            margin: 15px 0 5px;
        }
        
        .article-body .translation {
            color: #7a6a5a;
            margin-bottom: 20px;
        }
        
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin: 40px 0;
        }
        
        .article-tag {
            padding: 5px 12px;
            background-color: #F5E8C4;
            border-radius: 15px;
            font-size: 13px;
            transition: all 0.3s;
        }
        
        .article-tag:hover {
            background-color: #E8D5B5;
            color: #8B5A2B;
        }
        
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #e0d5c0;
        }
        
        .nav-btn {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            background-color: #F5E8C4;
            border-radius: 5px;
            transition: all 0.3s;
            max-width: 45%;
        }
        
        .nav-btn:hover {
            background-color: #E8D5B5;
        }
        
        .nav-btn i {
            margin: 0 8px;
        }
        
        .nav-btn-prev i {
            margin-right: 15px;
        }
        
        .nav-btn-next i {
            margin-left: 15px;
        }
        
        .nav-btn span {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .related-articles {
            margin-top: 60px;
        }
        
        .related-title {
            font-size: 22px;
            color: #8B5A2B;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e0d5c0;
            font-weight: normal;
        }
        
/* 相关文章列表样式 */
.related-articles {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f5f0;
    border-radius: 8px;
}

.related-title {
    color: #8B5A2B;
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0d6c9;
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-list-item {
    display: flex;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.article-list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-list-image {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
}

.article-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-list-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 新增的标题行样式 */
.title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.article-list-title {
    font-size: 18px;
    color: #333;
    margin: 0; /* 移除原有margin */
    transition: all 0.3s;
    flex: 1;
    min-width: 0; /* 防止flex布局溢出 */
}

.article-list-item:hover .article-list-title {
    color: #8B5A2B;
}

.article-list-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1; /* 确保简介占据剩余空间 */
}

.article-list-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

.article-list-meta i {
    margin-right: 3px;
}
/* 模型标签-佛教清净风格 */
.model-badge {
    color: #8B5A2B;
    background: none;
    border: 1px solid #e0d3b8;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 12px;
    letter-spacing: 0.5px;
    font-weight: bold;
}

/* 佛教主题图标 */
.model-badge::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
    font-size: 11px;
}

/* 不同频道的佛教元素图标 */
.model-badge.cms::before { content: "\f518"; color: #a78a6d; }       /* 文库-经书图标 */
.model-badge.music::before { content: "\f001"; color: #b3a18c; }    /* 音乐-佛乐 */
.model-badge.video::before { content: "\f03d"; color: #c4b6a5; }    /* 视频-讲经 */
.model-badge.pic::before { content: "\f03e"; color: #d8c9b4; }      /* 图片-佛像 */
.model-badge.weibo::before { content: "\f099"; color: #9c8e7b; }   /* 微博-社交 */
.model-badge.link::before { content: "\f0c1"; color: #b0a28e; }     /* 外链-链接 */
.model-badge.jingshu::before { content: "\f02d"; color: #8B5A2B; }  /* 抄经-重点突出 */
.model-badge.map::before { content: "\f3c5"; color: #a7937c; }      /* 地图-寺庙 */
.model-badge.news::before { content: "\f1ea"; color: #9e907d; }     /* 资讯-法讯 */
.model-badge.live::before { content: "\f144"; color: #b5a792; }     /* 直播-讲法 */
.model-badge.web::before { content: "\f0ac"; color: #a89984; }      /* 导航-佛教网站 */

/* 悬停效果 */
.model-badge:hover {
    border-color: #8B5A2B;
    background-color: #F8F1E0;
}


/* 关联视频音频样式表 */
    .music-item {
        background-color: #f5f0e5;
        border-radius: 8px;
        padding: 15px;
        display: flex;
        transition: all 0.3s;
        cursor: pointer;
        position: relative;
    }
    
    .music-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .music-item-cover {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 4px;
        margin-right: 15px;
    }
    
    .music-item-info {
        flex: 1;
    }
    
    .music-item-title {
        font-size: 16px;
        margin-bottom: 5px;
        color: #8B5A2B;
    }
    
    .music-item-artist {
        font-size: 14px;
        color: #7a6a5a;
        margin-bottom: 5px;
    }
    
    .play-icon {
        position: absolute;
        top: 50%;
        left: 55px; /* 图片宽度80px + margin-right 15px = 95px，减去40px居中 */
        transform: translate(-50%, -50%);
        width: 30px;
        height: 30px;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #8B5A2B;
        font-size: 12px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    
    /* 如果使用Font Awesome图标 */
    .play-icon i {
        margin-left: 2px; /* 让播放图标稍微向右偏移一点，看起来更居中 */
    }