/* PC 端图片地图容器 */
.image-map-container {
  position: relative;
  margin-top: 2rem;
}

.image-map-tab {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0.5rem 0.5rem 0 0;
}

.image-map-tab.active {
  background-color: #f5f5f5;
  color: #00ab95;
  border-left: 3px solid #00ab95;
}

.image-map-tab .title {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.image-map-tab .title img.before,
.image-map-tab .title img.after {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.5rem;
}

.image-map-tab .desc {
  font-size: 0.9rem;
  color: #666;
}

.image-map-content {
  display: none;
  margin-top: 1rem;
}

.image-map-content.active {
  display: block;
}

.location-image {
  width: 100%;
  max-width: 1200px;
  height: 460px;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 1rem rgba(0,0,0,0.1);
}

/* 移动端地图图片容器 */
.mmap-card {
  margin-top: 2rem;
}

.mmap-box {
  display: none;
  padding: 1rem;
}

.mmap-box.active {
  display: block;
}

.mmap-image-container {
  margin-top: 1rem;
}

.m-location-image {
  width: 100%;
  max-width: 920px;
  height: 730px;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 1rem rgba(0,0,0,0.1);
}

/* 响应式设计 */
@media screen and (max-width: 800px) {
  .location-image {
    height: auto;
    max-height: 400px;
  }
  
  .m-location-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 500px;
  }
  
  .image-map-tab {
    padding: 1rem;
  }
  
  .image-map-tab .title img.before,
  .image-map-tab .title img.after {
    width: 1rem;
    height: 1rem;
  }
  
  .image-map-tab .title {
    font-size: 0.9rem;
  }
  
  .image-map-tab .desc {
    font-size: 0.8rem;
  }
  
  .mmap-box {
    padding: 0.5rem;
  }
}

@media screen and (max-width: 480px) {
  .m-location-image {
    max-height: 300px;
  }
}