 body {
     --theme-el-bg-color: #fff;
     --theme-color-h: 0;
     --theme-color-s: 0%;
     --theme-color-l: 15%;
     --theme-color-hsl: var(--theme-color-h), var(--theme-color-s), var(--theme-color-l);
     --theme-black-color: hsl(var(--theme-color-hsl));
     --theme-gray-color: hsla(var(--theme-color-hsl), .8);
     --theme-light-color: hsla(var(--theme-color-hsl), .6);
     --theme-line-color: hsla(var(--theme-color-hsl), .07);
     --theme-border-color: hsla(var(--theme-color-hsl), .2)
 }

 blockquote {
     background: var(--theme-line-color);
     border-left: 0;
     border-radius: 4px;
     color: var(--theme-gray-color);
     font-size: 16px;
     padding: 30px 30px 30px 66px !important;
     position: relative;
     margin: 10px 0 !important;
 }

 .text-line2 {
     overflow: hidden;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     text-overflow: clip;
     white-space: normal
 }

 .text-line1 {
     overflow: hidden;
     display: block;
     text-overflow: ellipsis;
     white-space: nowrap;
 }

 
  /* 文章内容容器基础设置 */
                    .article_content {
                        line-height: 1.8;
                        /* 黄金行高，提升阅读舒适度 */
                        font-size: 16px;
                        color: #333;
                        word-wrap: break-word;
                        padding: 10px 0;
                    }

                    /* 标题样式：层次分明 */
                    .article_content h1,
                    .article_content h2,
                    .article_content h3 {
                        color: #222;
                        margin: 30px 0 15px;
                        font-weight: 600;
                        line-height: 1.4;
                    }

                    .article_content h2 {
                        font-size: 24px;
                        padding-bottom: 10px;
                        border-bottom: 2px solid #eee;
                        position: relative;
                    }

                    /* 蓝色装饰块，让H2更专业 */
                    .article_content h2::after {
                        content: '';
                        position: absolute;
                        bottom: -2px;
                        left: 0;
                        width: 50px;
                        height: 2px;
                        background: #3b82f6;
                    }

                    /* 段落间距 */
                    .article_content p {
                        margin-bottom: 20px;
                        text-align: justify;
                        /* 两端对齐，排版更整齐 */
                    }

                    /* 图片自适应：防止撑破容器 */
                    .article_content img {
                        max-width: 100%;
                        height: auto;
                        display: block;
                        margin: 25px auto;
                        border-radius: 8px;
                        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
                    }

                    /* 引用块（blockquote）样式 */
                    .article_content blockquote {
                        margin: 25px 0;
                        padding: 15px 25px;
                        background-color: #f8f9fa;
                        border-left: 5px solid #3b82f6;
                        color: #666;
                        font-style: italic;
                        border-radius: 0 4px 4px 0;
                    }

                    /* 列表样式 */
                    .article_content ul,
                    .article_content ol {
                        margin-bottom: 20px;
                        padding-left: 25px;
                    }

                    .article_content li {
                        margin-bottom: 8px;
                    }

                    /* 代码块样式（如果你的文章包含技术内容） */
                    .article_content pre {
                        background: #282c34;
                        color: #abb2bf;
                        padding: 15px;
                        border-radius: 6px;
                        overflow-x: auto;
                        font-family: Consolas, Monaco, 'Andale Mono', monospace;
                        font-size: 14px;
                        line-height: 1.5;
                    }

                    /* 链接点击效果 */
                    .article_content a {
                        color: #3b82f6;
                        text-decoration: none;
                        border-bottom: 1px dashed #3b82f6;
                        transition: all 0.2s;
                    }

                    .article_content a:hover {
                        color: #2563eb;
                        border-bottom-style: solid;
                    }
                    
                    
                    /* 文章内容容器 */
.article_content2 {
    font-size: 16px;
    line-height: 1.9;
    color: #2f2f2f;
    padding: 12px 0;
    word-break: break-word;
}

/* 标题：杂志感层级 */
.article_content2 h1,
.article_content2 h2,
.article_content2 h3 {
    font-weight: 700;
    color: #111;
    margin: 40px 0 18px;
    letter-spacing: -0.3px;
}

.article_content2 h1 {
    font-size: 30px;
}

.article_content2 h2 {
    font-size: 24px;
}

.article_content2 h3 {
    font-size: 20px;
}

/* 段落 */
.article_content2 p {
    margin-bottom: 22px;
    text-align: justify;
}

/* 图片 */
.article_content2 img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 6px;
}

/* 引用块 */
.article_content2 blockquote {
    margin: 30px 0;
    padding: 18px 24px;
    background: #f6f6f6;
    border-left: 3px solid #999;
    color: #555;
}

/* 列表 */
.article_content2 ul,
.article_content2 ol {
    margin-bottom: 22px;
    padding-left: 28px;
}

.article_content2 li {
    margin-bottom: 10px;
}

/* 代码块 */
.article_content2 pre {
    background: #f3f4f6;
    color: #1f2937;
    padding: 16px;
    border-radius: 6px;
    overflow-x: auto;
    font-family: Consolas, Monaco, monospace;
    font-size: 14px;
    line-height: 1.6;
}

/* 链接 */
.article_content2 a {
    color: #1f2937;
    text-decoration: underline;
    text-decoration-color: #d1d5db;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.article_content2 a:hover {
    color: #000;
    text-decoration-color: #000;
}
                    
                    