/* ===== Description Page Styles ===== */

/* 从flex布局中移除导航栏 - 使用更具体的选择器 */
.desc-section-two .desc-section-two-container .desc-section-two-left {
  position: fixed;
  z-index: 1000;
  transform: none;
  width: 25%;
  min-width: 440px;
  max-width: 520px;
  height: auto;
  min-height: 420px;
  margin: 0;
  padding: 0;
  flex: none;
  order: -1;
  /* 确保完全脱离文档流 */
  float: none;
  clear: none;
  display: block;
  right: calc(75% - 20px); /* 向右移动，靠近中间分割线 */
}

/* 导航栏基础样式 - 位置由JavaScript控制 */
.desc-section-two-left {
  position: fixed;
  z-index: 1000;
  transform: none;
  width: 25%;
  min-width: 440px;
  max-width: 520px;
  height: auto;
  min-height: 420px;
  margin: 0;
  margin-left: 110px;
  padding: 0;
  right: calc(75% - 20px); /* 向右移动，靠近中间分割线 */
}


.desc-left-nav {
  width: 100%;
  height: auto;
  min-height: 420px;
  background-image: url('https://static.igem.wiki/teams/5736/img/desc/p2-left-nav-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* 导航下部 */
.desc-left-nav-down {
  display: flex;
  padding: 20px;
  gap: 25px;
  margin-left: 30px;
  width: calc(100% - 50px);
}


