/*
 * 文章页面 (article-content) 专属样式表
 * 用于规范化管理关于我们、服务协议等页面的内容排版
*/

.article-content h2 {
    font-size: 1.5rem;      /* 24px */
    font-weight: 700;
    color: #1D2129;
    margin-top: 2.5rem;     /* 40px */
    margin-bottom: 1rem;    /* 16px */
}

.article-content h3 {
    font-size: 1.25rem;     /* 20px */
    font-weight: 600;
    color: #1D2129;
    margin-top: 2rem;       /* 32px */
    margin-bottom: 0.75rem; /* 12px */
}

.article-content p {
    color: #4E5969;
    font-size: 1rem;        /* 16px */
    line-height: 1.8;       /* 宽松的行间距 */
    margin-bottom: 1.5rem;  /* 24px */
}

.article-content ul {
    list-style-type: disc;
    list-style-position: inside;
    color: #4E5969;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.article-content a {
    color: #0096FF; /* 主题色 */
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.article-content a:hover {
    text-decoration: underline;
    color: #007ae5; /* 鼠标悬停时颜色稍深 */
}