/* 页面主体容器 */
.sy-box1 {
  padding: 40px 0; /* 调整内边距 */
  background-color: #f9f9f9; /* 背景色 */
}

/* 标题样式 */
.box-tit {
  text-align: center;
  margin-bottom: 30px;
}

.box-tit .en {
  font-size: 24px;
  color: #666; /* 副标题颜色 */
  font-weight: 300;
}

.box-tit .tit {
  font-size: 36px;
  color: #333; /* 主标题颜色 */
  font-weight: bold;
  margin-top: 10px;
}

/* 列表容器 */
.list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 市场布局部分 */
.market-layout {
  background-color: #fff; /* 背景色 */
  padding: 40px 20px;
  border-radius: 12px; /* 圆角 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 阴影 */
  margin-bottom: 40px;
}

.market-layout h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.market-description {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 30px;
}

.market-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  color: #c8a97e; /* 数字颜色 */
  font-weight: bold;
}

.stat-label {
  font-size: 18px;
  color: #666;
}

.region-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.region {
  background-color: #f9f9f9; /* 区域背景色 */
  padding: 20px;
  border-radius: 8px; /* 圆角 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 阴影 */
}

.region h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.region h3 i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.region ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0; /* 默认隐藏 */
  overflow: hidden;
  transition: max-height 0.3s ease; /* 过渡效果 */
}

.region ul.active {
  max-height: 500px; /* 展开时的高度，根据需要调整 */
}

.region h3.active i {
  transform: rotate(180deg); /* 展开时箭头旋转 */
}

.region ul li {
  font-size: 16px;
  color: #666;
  margin-bottom: 8px;
}

/* 地图部分 */
.map-section {
  background-color: #fff; /* 背景色 */
  padding: 40px 20px;
  border-radius: 12px; /* 圆角 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 阴影 */
}

.map-section h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

#baidu-map {
  border-radius: 8px; /* 圆角 */
  overflow: hidden; /* 防止地图溢出 */
}
