.my-table {
    border: 1px solid black;
    border-collapse: collapse;
}
.my-table th,
.my-table td {
    border: 1px solid black;
}


.article-content {
    text-indent: 2rem;
    line-height: 1.8; /* 行高很重要 */
    font-size: 16px; /* 阅读舒适的基准大小 */
    font-family: google fantasy;
}

.article-content p{
    text-indent: 2rem;
}

li{list-style-type:none;}


/* h2 标题优化 */
.article-content h2 {
    text-indent: 0rem;
    font-size: 24px; /* 或 1.5rem */
    font-weight: 600;
    line-height: 1.4;
    margin-top: 0.5em;
    color: #333;
}

/* h3 标题 */
.article-content  h3 {
    text-indent: 0rem;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.8em;
}


.article-content ul {
   margin-left: 0rem;
}

/* 图片响应式 */
.article-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5em 0;
}

/* 代码块 */
.article-content code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.9em;
}

/* 引用块 */
.article-content blockquote {
    border-left: 4px solid #ddd;
    padding-left: 1em;
    margin-left: 0;
    color: #666;
}