 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;
                    }