@charset "utf-8";

.st_tree {
  padding-bottom: 10px;
}

/* 超链接 */
.st_tree a {
  text-decoration: none;
  color: #5B5F69;
  width: 70%;
  line-height: 20px;
  /* display: inline-block; */
}

/* 鼠标经过的超链接 */
/* .st_tree a:hover {} */

/* 菜单 */
.st_tree ul {
  padding: 0px;
  margin: 0;
}

/* 菜单项 */
.st_tree ul li {
  display: flex;
  font-size: 14px;
  cursor: pointer;
  font-weight: 400;
  padding: 8px 0;
  box-sizing: border-box;
  position: relative;
}
.st_tree ul li[data-level='0'] a{
  /* font-weight:bold */
  color: #28282B;
}
.st_tree ul li:hover {
  /* background: #f6f8fc */
}

.st_tree ul li:hover a {
  color: #1180ff
}

/* 子菜单 */
/* .st_tree ul li ul {} */

/* 子菜单项 */
/* .st_tree ul li ul li {} */

/* 子菜单的父节点 */
/* .st_tree .folder {} */

/* 展开的父节点 */
/* .st_tree .open {} */

/* 选中的节点*/
.st_tree li.select_active {
  /* background: #f6f8fc; */
}

.st_tree li.select_active a {
  color: #1180ff!important;
}

.st_tree li>i.fold-icon {
  background-image: url("/static/assets/common/st_tree/img/fold-nav-arrow-unuseful.svg");
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 2px 4px 0 10px;
}
.st_tree li>i.lock-icon {
  background-image: url("/static/assets/common/st_tree/img/lock.svg");
  display: inline-block;
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  /* margin: 0 10px; */
  margin-top: 0px;
  position: absolute;
  right: 10px;
}
.st_tree li.folder>i.fold-icon {
  background-image: url("/static/assets/common/st_tree/img/fold-nav-arrow.svg");
}

.st_tree li.open>i.fold-icon {
  background-image: url("/static/assets/common/st_tree/img/fold-nav-arrow-open.svg");
}