@charset "utf-8";
/* CSS Document */
/* public.css 全站公用样式：导航栏+底部版权 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif;
}
body {
    background-color: #f8fbf9;
    color: #222;
    line-height: 1.7;
}
/* 统一导航栏：绿色底色+白色文字 */
.nav-box {
    width: 100%;
    padding: 25px 0;
    text-align: center;
    background-color: #2d884a;
    box-shadow: 0 2px 8px rgba(0, 80, 40, 0.1);
}
.nav-box a {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    margin: 0 14px;
    transition: 0.3s;
    font-weight: 500;
}
.nav-box a:hover {
    color: #c7f0d6;
    border-bottom: 2px solid #fff;
    padding-bottom: 4px;
}
/* 统一底部版权栏 */
footer {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    background-color: #2d884a;
    color: #fff;
    font-size: 14px;
    margin-top: 60px;
}
/* 页面通用大标题样式（所有子页标题统一风格） */
.page-title {
    text-align: center;
    margin: 40px 0;
}
.page-title h1 {
    color: #2d884a;
    font-size: 32px;
    margin-bottom: 12px;
}
.page-title p {
    color: #555;
    font-size: 16px;
}
