/* 信息展示区样式 */
.hangzhou-info-section {
  width: 770px;
  height: 100px;
  margin: 15px auto;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  overflow: hidden;
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  position: relative;
}

.hangzhou-info-container {
  height: 70px;
  overflow: hidden;
  position: relative;
}

.hangzhou-info-content {
  transition: transform 0.4s ease-in-out;
}

.hangzhou-info-item {
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.hangzhou-info-item:hover {
  background: #f8f9fa;
}

/* 修复：使用CSS伪元素显示链接图标 */
.hangzhou-info-item:hover::after {
  content: "→";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #1890ff;
  font-weight: bold;
}

.hangzhou-info-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 6px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.hangzhou-info-item:hover .hangzhou-info-title {
  color: #1890ff;
}

.hangzhou-info-text {
  font-size: 14px;
  color: #666;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 760px;
  transition: color 0.2s ease;
}

.hangzhou-info-item:hover .hangzhou-info-text {
  color: #333;
}

.hangzhou-info-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: #fafafa;
  border-top: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 15px;
}

.hangzhou-control-btn {
  background: white;
  border: 1px solid #d9d9d9;
  color: #666;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: inherit;
}

.hangzhou-control-btn:hover {
  background: #e6f7ff;
  border-color: #1890ff;
  color: #1890ff;
}

.hangzhou-indicator-dots {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.hangzhou-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d9d9d9;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.hangzhou-dot.active {
  background: #1890ff;
  transform: scale(1.3);
}

.hangzhou-info-link {
  background: #1890ff;
  color: white;
  padding: 2px 8px;
  text-decoration: none;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}

.hangzhou-info-link:hover {
  background: #40a9ff;
  transform: translateY(-1px);
}

/* 响应式设计 */
@media (max-width: 850px) {
  .hangzhou-info-section {
    width: 95%;
  }
  
  .hangzhou-info-text {
    max-width: 90%;
    font-size: 13px;
  }
  
  .hangzhou-info-item:hover::after {
    right: 10px;
    font-size: 12px;
  }
}