.article-content {
    width: 90%;
    line-height: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 10px rgba(144, 144, 144, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    margin: 1rem auto;
    padding: 2rem;
    /* 页面加载使用的样式 */
    transition: all 0.3s;
    opacity: 0;
}

.title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.date {
    font-size: 1rem;
    color: rgb(128, 128, 128);
}

.markdown-body {
    background-color: rgba(255, 255, 255, 0);
    margin: 3rem 0;
}

.markdown-body p {
    text-indent: 2rem;
}

.markdown-body pre {
    border-radius: 1rem;
}