/* 基础样式 */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1 0 auto;
}

/* 继承基础样式 */
.container {
  width: 1200px;
  margin: 0 auto;
}

.nav {
  height: 60px;
  background: #8B0000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 20px;
  font-size: 18px;
}

/* 联系我们页面特有样式 */
.contact-content {
  padding: 30px 0;
}

.page-title {
  font-size: 32px;
  color: #8B0000;
  text-align: center;
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-info {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #8B0000;
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #666;
}

.info-item i {
  margin-right: 10px;
  color: #8B0000;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: #333;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.form-textarea {
  height: 120px;
  resize: vertical;
}

.submit-btn {
  background: #8B0000;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #660000;
}

.map-section {
  margin-top: 40px;
}

.map-container {
  height: 400px;
  background: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* 页脚样式 */
.footer {
  flex-shrink: 0;
  background: #8B0000;
  color: #fff;
  padding: 20px 0;
  width: 100%;
}

.footer-content {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
}

.footer-content p {
  margin: 5px 0;
}

.footer-content a {
  color: #fff;
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
} 