* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Microsoft YaHei", sans-serif;
}
body {
background: #f7f7f7;
color: #333;
line-height: 1.7;
}
.container {
width: 92%;
max-width: 1000px;
margin: 0 auto;
}
header {
background: #00704A;
color: #fff;
padding: 14px 0;
}
.logo {
font-size: 22px;
font-weight: bold;
display: inline-block;
}
nav {
float: right;
}
nav a {
color: #fff;
text-decoration: none;
margin-left: 22px;
line-height: 36px;
font-size: 15px;
}
nav a.active {
color: #FFD700;
font-weight: bold;
}
.banner {
background: #009E60;
color: #fff;
text-align: center;
padding: 60px 0;
}
.banner h2 {
font-size: 30px;
margin-bottom: 10px;
}
.banner p {
font-size: 16px;
opacity: 0.95;
}
.section {
background: #fff;
padding: 40px 0;
margin: 20px 0;
border-radius: 8px;
box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.section h3 {
font-size: 22px;
color: #00704A;
margin-bottom: 20px;
position: relative;
padding-left: 12px;
border-left: 4px solid #00704A;
}
.section p {
font-size: 15px;
margin-bottom: 14px;
}
.service-list {
margin-left: 22px;
}
.service-list li {
font-size: 15px;
margin-bottom: 10px;
list-style: none;
position: relative;
padding-left: 16px;
}
.service-list li::before {
content: "•";
color: #00704A;
font-weight: bold;
position: absolute;
left: 0;
}
footer {
background: #00704A;
color: #fff;
text-align: center;
padding: 22px 0;
margin-top: 20px;
font-size: 14px;
}
@media (max-width: 768px) {
nav {
float: none;
text-align: center;
margin-top: 10px;
}
.logo {
display: block;
text-align: center;
}
nav a {
margin: 0 10px;
font-size: 14px;
}
}