/* 修改所有按钮，背景为none，字体为bootstrap的字体 */
.custom-theme.ztree li span.button{
  background-image: none;
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
/* switch 高度保持一致 */
.custom-theme.ztree li span.button.switch{
  line-height: 15px;
}
/* 最上层打开字体图标 */
.custom-theme.ztree li span.button.roots_open::before{
  content: "\e114";
}
/* 最上层折叠字体图标 */
.custom-theme.ztree li span.button.roots_close::before{
  content: "\e080";
}
/* 最后一个打开图标 */
.custom-theme.ztree li span.button.bottom_open::before{
  content: "\e114";
}
/* 最后一个折叠图标 */
.custom-theme.ztree li span.button.bottom_close::before{
  content: "\e080";
}
/* 子节点全未选中时的checkbox，保持对齐 */
.custom-theme.ztree li span.button.chk.checkbox_false_full{
  margin-top: -3px;
}
/* 子节点全未选中时的checkbox，字体图标 */
.custom-theme.ztree li span.button.chk.checkbox_false_full::before{
  content: "\e157";
}
/* 子节点全未选中时的checkbox，鼠标滑过，保持对齐 */
.custom-theme.ztree li span.button.chk.checkbox_false_full_focus{
  margin-top: -3px;
}
/* 子节点全未选中时的checkbox，鼠标滑过，字体图标 */
.custom-theme.ztree li span.button.chk.checkbox_false_full_focus::before{
  content: "\e157";
}
/* 子节点全选中时的checkbox，保持对齐 */
.custom-theme.ztree li span.button.chk.checkbox_true_full{
  margin-top: -3px;
}
/* 子节点全选中时的checkbox，字体图标 */
.custom-theme.ztree li span.button.chk.checkbox_true_full::before{
  content: "\e067";
}
/* 子节点全选中时的checkbox，鼠标划过，保持对齐 */
.custom-theme.ztree li span.button.chk.checkbox_true_full_focus{
  margin-top: -3px;
}
/* 子节点全选中时的checkbox，鼠标划过，字体图标 */
.custom-theme.ztree li span.button.chk.checkbox_true_full_focus::before{
  content: "\e067";
}
/* 子节点部分选中时的checkbox，保持对齐 */
.custom-theme.ztree li span.button.chk.checkbox_true_part{
  margin-top: -3px;
}
/* 子节点部分选中时的checkbox，字体图标 */
.custom-theme.ztree li span.button.chk.checkbox_true_part::before{
  content: "\e067";
}
/* 子节点部分选中时的checkbox，字体图标 */
.custom-theme.ztree li span.button.chk.checkbox_true_part::after{
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  display: block;
  width: 8px;
  height: 8px;
  background-color: rgba(0, 0, 0, .3);
}
/* 子节点部分选中时的checkbox，鼠标滑过，保持对齐 */
.custom-theme.ztree li span.button.chk.checkbox_true_part_focus{
  margin-top: -3px;
}
/* 子节点部分选中时的checkbox，鼠标滑过，字体图标 */
.custom-theme.ztree li span.button.chk.checkbox_true_part_focus::before{
  content: "\e067";
}
/* 暂时无用 */
.custom-theme.ztree li {
  position: relative;
  padding-top: 10px;
}
/* 去掉虚线 */
.custom-theme.ztree li ul.line{
  background: none;
}
/* 隐藏文件夹关闭图标 */
.custom-theme.ztree li span.button.ico_close{
  display: none;
}
/* 隐藏文件夹打开图标 */
.custom-theme.ztree li span.button.ico_open{
  display: none;
}
/* 隐藏没有子节点的文件夹图标 */
.custom-theme.ztree li span.button.ico_docu{
  display: none;
}
/* 当前选中 */
.custom-theme.ztree li a.curSelectedNode{
  padding-top: 0px;
  background-color: rgba(0, 0, 0, 0);
  color: #428bca;
  height: 16px;
  border: none;
  opacity: 0.8;
}
/* .custom-theme.ztree li a{
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  padding-left: 34px;
  width: 100%;
  z-index: 1;
}
.custom-theme.ztree li a:hover{
  background-color: #428bca;
} */