/* 
 * 云南震序律师事务所网站样式 - 主样式文件
 * 创建日期：2023-03-17
 * 这个文件只包含公共样式组件
 */

/* 页面特定样式已移至条件加载 */

/* 全局基础样式 */
body {
    font-family: "HarmonyOS Sans SC", "HarmonyOS Sans", sans-serif; /* 全局默认字体 */
    font-size: 16px; /* 默认正文字号 (P) */
    line-height: 1.6; /* 默认行高 */
    color: #333; /* 默认文字颜色 */
}

/* 全局标题基础样式 (PC) */
h1 {
    font-size: 60px;
    font-weight: bold; /* 假设需要粗体 */
    margin: 0.5em 0 !important; /* 统一垂直外边距 */
}

h2 { /* 章节主标题 */
    font-size: 42px;
    font-weight: bold;
    margin: 0.5em 0 !important; /* 统一垂直外边距 */
    letter-spacing: 5px !important;
}

h3 { /* 英文副标题 */
    font-size: 24px;
    font-weight: normal; /* 通常英文副标题字重轻 */
    margin: 0.5em 0 !important; /* 统一垂直外边距 */
}

h4 { /* 次级标题 */
    font-size: 48px;
    font-weight: bold;
    margin: 0.4em 0 !important; /* 统一垂直外边距 */
    letter-spacing: 12px !important; /* 添加字间距 */
}

/* 全局正文段落基础样式 (PC) */
p {
    font-size: 18px; /* 再次确认 */
    line-height: 2
}

/* 可能需要定义粗体字体 */
h1, h2, h4, strong, b {
    font-family: "HarmonyOS Sans SC Bold", "HarmonyOS Sans Bold", sans-serif; /* 如果有单独的粗体文件 */
}

/* 链接默认样式 */
a {
    color: #007bff; /* 示例蓝色 */
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* ... 其他可能的基础样式 (重置、容器等) ... */
