.example {
  flex-grow: 0; /* 默认：不拉伸 */
  flex-grow: 1; /* 与其他子项按比例分配剩余空间 */
  flex-shrink: 1; /* 默认：允许收缩 */
  flex-shrink: 0; /* 禁止收缩（固定宽度） */
  flex-basis: auto; /* 默认：根据内容或 width 决定 */
  flex-basis: 200px; /* 固定初始宽度 */
  flex: 1 0 auto; /* 等价于 flex-grow:1; flex-shrink:0; flex-basis:auto; */
  flex: 1; /* 常用：flex-grow:1，其他默认 */
  margin-left: auto; /* 将右对齐的元素推到最右侧 */
}

.header_container {
  display: flex;
  flex-direction: row;
  position: sticky;
  top: 0px;
  z-index: 9999;
  height: 80px;
}
.header_container:hover {
  background: red;
}

/* 导航栏的logo css设置 */
.item_logo {
  display: flex;

  flex-basis: 100px;
  order: 0;
  align-items: center;
  justify-content: center;
}

/* -------导航栏的logo css设置------ */
.item_black {
  /*这个css和item_title是同一级别的，只是空白占位的作用*/

  display: flex;
  flex: 1 1 auto;
  margin-right: auto;
  align-items: center;
  justify-content: center;
}
/* 这个是产品中心等的css，当鼠标悬浮在上面时会显示各自的导航栏 */
.item_title {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  margin-right: auto;
  align-items: center;
  justify-content: center;
}
.item-title-hide {
  display: none;
  position: absolute;
  top: 100%;
  left: -10%;
  height: 250%;
  width: 120%;
  background: white;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 10px;
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
.item_title:hover {
  background: white;
}
.item_title:hover .item-title-hide {
  display: block;
}

/* -----------这个是产品中心等的css，当鼠标悬浮在上面时会显示各自的导航栏 ---------------------*/

.logo_font {
  flex-basis: auto;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.title_font {
  text-align: center;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif; /* 中文字体优先 */
  font-size: 16px;
  font-weight: 600; /* 中等加粗 */
  color: #333; /* 默认深灰色 */
  text-decoration: none; /* 去除下划线 */
  padding: 10px 15px; /* 内边距增加点击区域 */
  transition: all 0.3s ease; /* 平滑过渡动画 */
}
.title_font:hover {
  color: red; /* 悬停时蓝色（可替换品牌色） */
  transform: translateY(-2px); /* 轻微上浮效果（可选） */
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* 产品中心的div分布css设置 */
.pro-nav {
  /* 产品中心下拉栏的导航栏 */
  display: flex;
  flex-direction: column;
}
.pro-nav-content {
  /* 产品中心下拉栏的导航栏的具体属性 */
  display: flex;
  flex: 1 1 auto; /*可放大 可缩小 宽度自动*/
  padding: 10px;
  align-items: center;
  justify-content: center;
}

/* ---------------------产品中心的div分布css设置 ------------------*/
