/* Contact Us Page - 联系我们页面样式 */

/* 页面容器 */
.contact-us-page {
  background-color: #f9fafb;
}

/* 主内容区域 */
.contact-us-main {
  padding-bottom: 5rem;
  background-color: white;
  min-height: 100vh;
}

/* 面包屑导航 */
.breadcrumb-section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.breadcrumb-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .breadcrumb-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .breadcrumb-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #4b5563;
}

.breadcrumb-link {
  color: #4b5563;
  transition: color 0.2s;
  text-decoration: none;
}

.breadcrumb-link:hover {
  color: #0033cc;
}

.breadcrumb-separator {
  margin: 0 0.5rem;
  color: #9ca3af;
}

.breadcrumb-current {
  color: #111827;
  font-weight: 500;
}

/* 内容区域 */
.contact-us-content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

@media (min-width: 640px) {
  .contact-us-content-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-us-content-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* 分类标签 */
.contact-us-category-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #111827;
}

.contact-us-category-label span:first-child,
.contact-us-category-label span:last-child {
  color: #0033cc;
  font-weight: 600;
}

/* 内容包装器 - 左右布局 */
.contact-us-content-wrapper {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .contact-us-content-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
}

/* 地图区域 - 左侧 */
.contact-us-map-section {
  flex: 1;
  min-width: 0;
  width: 100%; /* 确保移动端宽度为100% */
}

.baidu-map-container {
  width: 100%;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: relative; /* 确保地图容器有定位上下文 */
  background-color: #f3f4f6; /* 添加背景色，确保容器可见 */
}

@media (max-width: 768px) {
  .contact-us-map-section {
    width: 100%; /* 移动端确保宽度为100% */
    order: 1; /* 确保地图在移动端显示在上方 */
  }
  
  .baidu-map-container {
    height: 300px; /* 移动端适当降低高度 */
    min-height: 300px; /* 确保最小高度 */
  }
  
  .contact-us-info-section {
    order: 2; /* 联系信息在移动端显示在下方 */
  }
}

@media (min-width: 769px) {
  .contact-us-map-section {
    flex: 0 0 55%;
  }
}

/* 联系信息区域 - 右侧 */
.contact-us-info-section {
  flex: 1;
  min-width: 0;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .contact-us-info-section {
    padding: 1.5rem;
    width: 100%;
  }
}

@media (min-width: 769px) {
  .contact-us-info-section {
    flex: 0 0 45%;
  }
}

.contact-us-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #0033cc;
}

@media (max-width: 768px) {
  .contact-us-info-title {
    font-size: 1.25rem;
  }
}

.contact-us-info-content {
  font-size: 1rem;
  line-height: 1.75;
  color: #4b5563;
}

.contact-us-info-content p {
  margin-bottom: 1rem;
}

.contact-us-info-content p:last-child {
  margin-bottom: 0;
}

.contact-us-info-content h1,
.contact-us-info-content h2,
.contact-us-info-content h3,
.contact-us-info-content h4,
.contact-us-info-content h5,
.contact-us-info-content h6 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: #111827;
  font-weight: 600;
}

.contact-us-info-content ul,
.contact-us-info-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.contact-us-info-content li {
  margin-bottom: 0.5rem;
}

.contact-us-info-content a {
  color: #0033cc;
  text-decoration: underline;
  transition: color 0.2s;
}

.contact-us-info-content a:hover {
  color: #002299;
}

