/* 全局初始化：清除默认内外边距，设置列表样式、字体等 */
* {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: "微软雅黑", sans-serif;
    text-decoration: none;
}
body {
    background: #f5fff8;
    color: #333;
}
/* 头部导航 header 样式：设置宽度、高度、居中、弹性布局等 */
#header {
    width: 1200px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#nav ul {
    display: flex;
    gap: 35px;
}
#nav ul li a {
    font-size: 16px;
    color: #236b34;
}
#nav ul li a:hover {
    color: #4CAF50;
}
/* 首页 Banner 横幅区域样式（仅首页使用，可根据实际情况完善更多样式） */
#banner_wrap {
    background: #eeeeee;
}
#banner {
    width: 1200px;
    margin: 0 auto;
}
/* 首页内容板块样式：设置宽度、外边距，标题样式等 */
#content {
    width: 1200px;
    margin: 30px auto;
}
.page_title {
    text-align: center;
    font-size: 24px;
    color: #225930;
    margin-bottom: 25px;
}
.page_title small {
    font-size: 14px;
    color: #666;
    margin-left: 12px;
}
#content table p {
    margin-top: 8px;
    font-size: 17px;
    color: #225930;
}
/* 底部 footer 样式：设置背景色、文本颜色、内边距等 */
#footer {
    background: #225930;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
#footer p {
    line-height: 2;
    font-size: 15px;
}
#footer a {
    color: #fff;
    text-decoration: none;
}
#footer a:hover {
    text-decoration: underline;
}