html,body{margin:0;padding:0}
body {
    font-family: Arial, "SimHei", sans-serif;
    line-height: 1; /* 单倍行距 */
    text-align: justify; /* 两端对齐 */
    margin: 0;
    padding: 0;
}
/* 正文样式 */
p {
    font-family: "Times New Roman", "SimSun", serif;
    font-size: 10pt;
    margin:0;
    line-height: 1.2;
    white-space: pre-line;
}
/* h1 样式 */
h1 {
    font-size: 26pt;
    font-weight: bold;
    line-height: 1.5;
    margin: 0;
    padding: 0; 
}
/* h2 样式 */
h2 {
    font-size: 22pt;
    font-weight: bold;
    line-height: 1.5;
    background-color: rgb(113, 150, 79);
}
/* h3 样式 */
h3 {
    font-size: 18pt;
    font-weight: bold;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}
/* h4 样式 */
h4 {
    font-size: 14pt;
    font-weight: bold;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}
/* h5 样式 */
h5 {
    font-size: 12pt;
    font-weight: bold;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}
/* h6 样式 */
h6 {
    font-size: 10pt;
    font-weight: bold;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

/* 左边导航栏 */
.sidebar {
    width: 160px;
    background-color: #d8e6c6;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    position: fixed; /* 固定导航栏 */
    top: 0;
    left: 0;
    bottom: 10px;
    height: 100vh; /* 导航栏高度占满屏幕 */
    overflow-y: auto;
}

.sidebar h2 {
    margin-top: 0;
}

.sidebar ul {
    list-style: none;
    padding: 0px;
}

.sidebar li {
    margin: 10px 0;
}

.sidebar a {
    text-decoration: none;
    color: #333;
}
.main-menu li {
    margin: 10px 0;
}
.main-menu ul {
    list-style: none;
    padding: 0;
}

/* 二级菜单样式 */
.sub-menu {
    margin-left: 1em; /* 缩进二级菜单 */
}
.sub-menu li {
    margin: 10px 0;
}
.sub-menu ul {
    list-style: none;
    padding: 0;
}
.header {
    position: fixed; /* 固定定位 */
    top: 0; /* 固定在页面顶端 */
    left: 200px; /* 为导航栏留出空间 */
    right: 150px; /* 为备注栏留出空间 */
    text-align: center;
    background-color: #d9ebc3; /* 背景颜色 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* 阴影效果 */
    z-index: 1000; /* 确保div在最上层 */
}

/* 中间正文栏 */
.content {
    margin-left: 200px; /* 为导航栏留出空间 */
    margin-right: 150px; /* 为备注栏留出空间 */
    margin-top: 120px;
    padding: 20px;
    overflow-y: auto; /* 允许内容滚动 */
}

.content h1 {
    margin-top: 0;
}

/* 右边备注栏 */
.notes {
    width: 110px;
    background-color:#d8e6c6;
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    position: fixed; /* 固定备注栏 */
    top: 0;
    right: 0;
    height: 100vh; /* 备注栏高度占满屏幕 */
}
a{padding:5px; text-decoration:none; color:#487aba;}
img{
    width: 100%;
    height: auto;}
