/* zuoping.css */

/* Reset and Global Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color:#f9dbac ;
}

/* Header and Footer Styles */
.header,
.footer {
  background-color: #ffa07a; /* 主色调 */
  color: #fff;
  padding: 20px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #bdc3c7;
}

/* Main Content Styles */
.main-content {
  padding: 40px 20px;
  text-align: center;
}

.hero {
  background-color: #f4f4f4; /* 副色调 */
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.hero-image {
  max-width: 100%;
  border-radius: 8px;
  margin-top: 20px;
  cursor: pointer;
  transition: transform 0.3s;
}

.hero-image:hover {
  transform: scale(1.05);
}

/* Footer Styles */
.footer {
  text-align: center;
}

/* Additional Effects */
/* Add any additional styles here */
