/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #a0d880;
    line-height: 1.6;
}

/* Header 样式 */
.header {
    max-width: 960px;
    margin: 0px auto;
    padding: 10px;
    background: white;
    border: 1px solid #d1e7a9;
    display: flex;
    gap: 10px;
    align-items: center;
}

.logo {
    width: 100px;
    height: auto;
    flex-shrink: 0;
}

/* 导航容器样式 */
.nav-container {
    flex-grow: 1;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
}

.nav-item {
    background: rgba(255, 255, 255, 0.5);
    text-align: center;
    text-decoration: none;
    color: #2c662d;
    font-size: 14px;
    border: 1px solid rgba(44, 102, 45, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background: #b3d1a0;
    color: #1a5928;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 顶部菜单样式 */
.top-menu {
    background: #006600;
    padding: 5px 0;
    text-align: center;
    margin: 5px 0;
}

.top-menu a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

/* 主要内容区域样式 */
.main-content {
    max-width: 960px;
    margin: 0px auto;
    background: #ffffff;
    padding: 20px;
    border: 1px solid #d1e7a9;
    font-size:14px;
}

.section-title {
    background: #ccc;
    padding: 10px;
    margin-bottom: 15px;
    text-align: center;
}

.content-text {
    line-height: 1.6;
    margin-bottom: 20px;
}

.content-text p{
    text-indent: 2.0em;
    margin-top:1em;
}

/* 页脚样式 */
footer {
    text-align: center;
    padding: 20px;
    color: #333;
    background: rgba(255,255,255,0.8);
    max-width: 960px;
    margin: 5px auto;
}



/* 响应式设计 */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        width: 95%;
		padding:0px;
		gap:0px;
    }

    .nav-grid {
        grid-template-columns: repeat(6, 1fr);
		gap:2vw;
    }

    .main-content {
        width: 95%;
        padding: 10px;
    }
}