﻿/* 全局文字样式优化 */
body {
    font-family: "微软雅黑", "Helvetica Neue", Arial, sans-serif; /* 选用易读字体 */
    font-size: 16px; /* 基础字号，可根据需求调整 */
    line-height: 1.8; /* 增大行高，提升行内阅读舒适度 */
    letter-spacing: 0.5px; /* 适当字间距，缓解拥挤感 */
    color: #333; /* 深灰色文字，比纯黑更柔和 */
}

/* 段落间距优化 */
p {
    margin-bottom: 1.2em; /* 段落底部间距，区分不同内容块 */
}

/* 标题样式（若页面有标题） */
h1, h2, h3, h4 {
    margin: 1.5em 0 0.8em;
    font-weight: 600;
    color: #222;
}

/* 链接交互优化 */
a {
    color: #000000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* 分隔线样式（若页面有分割线） */
hr {
    margin: 1.5em 0;
    border: 0;
    border-top: 1px solid #eee;
}