/* 导航位置页面专属样式 */
.page-banner .banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.page-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 64, 175, 0.65);
  z-index: 2;
}
.page-banner .banner-content {
  z-index: 3;
}
.map-section {
  padding: 60px 0 40px;
}
.map-container {
  width: 100%;
  height: 500px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.route-guide-section {
  padding: 20px 0 80px;
}
.route-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.route-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}
.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.route-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 12px;
}
.route-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}
.warm-tip {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--secondary-color);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent-color);
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .map-container {
    height: 320px;
  }
  .route-cards {
    grid-template-columns: 1fr;
  }
  .route-card {
    padding: 20px;
  }
  .map-section {
    padding: 40px 0 20px;
  }
  .route-guide-section {
    padding-bottom: 40px;
  }
}