/* 重置默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "SimSun", "宋体", serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* 头部样式 */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    color: #2c5530;
    font-weight: bold;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    color: #333;
    font-size: 16px;
    padding: 5px 0;
    position: relative;
}

nav a:hover,
nav a.active {
    color: #2c5530;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c5530;
    transition: width 0.3s;
}

nav a:hover:after,
nav a.active:after {
    width: 100%;
}

/* 页脚样式 */
footer {
    background: #2c5530;
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-info h3,
.footer-links h3,
.footer-hours h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* 通用样式 */
section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

h2 {
    text-align: center;
    font-size: 28px;
    color: #2c5530;
    margin-bottom: 30px;
}

.more {
    display: inline-block;
    color: #2c5530;
    margin-top: 10px;
}

.more:hover {
    text-decoration: underline;
} 