.functions_wrap {
  top: 40px;
  height: calc(100% - 80px);
  user-select: none;
}
.functions_wrap :global .editor-modal-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 6px;
}
.functions_wrap :global .editor-modal-content .editor-modal-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding-bottom: 0;
  overflow: hidden;
}
.functions_wrap .search {
  margin-bottom: 12px;
}
.functions_wrap .spin_wrap {
  flex: 1 1 auto;
  overflow: hidden;
}
.functions_wrap .spin_wrap :global(.editor-spin-container) {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}
.functions_wrap .spin_wrap .functions_content {
  display: flex;
  flex: 1 1 auto;
  height: 100%;
}
.functions_wrap .spin_wrap .functions_content .functions_list {
  position: relative;
  flex: 0 0 280px;
  padding-bottom: 12px;
  overflow: auto;
  border-right: 1px solid #e5e5e5;
}
.functions_wrap .spin_wrap .functions_content .function_monaco {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}
.functions_wrap .spin_wrap .functions_content .function_monaco_tabs :global .editor-tabs-tab {
  margin: 0 0 0 12px;
  padding: 12px 0;
}
.functions_wrap .spin_wrap .functions_content .function_monaco .debug_monaco {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}
.functions_wrap .spin_wrap .functions_content .function_monaco .debug_monaco .debug_btn {
  display: flex;
  align-items: center;
  padding: 12px;
  border-top: 1px solid #e5e5e5;
}
.functions_wrap .spin_wrap .functions_content .function_monaco .debug_monaco .debug_btn > * + * {
  margin-left: 8px;
}
.functions_wrap .spin_wrap .functions_content .function_monaco .debug_monaco .debug_btn button {
  display: flex;
  align-items: center;
}
.functions_wrap .spin_wrap .functions_content .function_monaco .debug_monaco .debug_btn button > * + * {
  margin-left: 8px;
}
.functions_wrap .spin_wrap .functions_content .function_monaco .debug_monaco .debug_btn button > svg {
  fill: #fff;
}
.functions_wrap .spin_wrap .functions_content .function_monaco .debug_monaco .debug_result {
  display: flex;
  flex: 1 1 auto;
  padding: 12px;
}
.functions_wrap .spin_wrap .functions_content .function_monaco .debug_monaco .debug_result_title {
  flex: 0 0 70px;
}
.functions_wrap .spin_wrap .functions_content .function_monaco .debug_monaco .debug_result_monaco {
  flex: 1 1 auto;
}
.functions_wrap .spin_wrap .empty {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.functions_wrap .spin_wrap .empty .empty_svg {
  font-size: 0;
}
.functions_wrap .spin_wrap .empty .empty_svg svg {
  width: 180px;
  height: 158px;
}
.functions_wrap .spin_wrap .empty .empty_tips {
  height: 22px;
  margin: 16px 24px;
  color: rgba(28, 36, 46, 0.45);
  font-size: 12px;
  line-height: 22px;
}
.functions_wrap .tree.child_tree {
  display: flex;
  padding: 0;
}
.functions_wrap .tree .tree_list {
  flex: 1 1 auto;
  padding-left: 12px;
}
.functions_wrap .tree .tree_node {
  display: flex;
  align-items: center;
  height: 32px;
  color: rgba(28, 36, 46, 0.85);
  line-height: 32px;
  cursor: pointer;
}
.functions_wrap .tree .tree_node::before {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 0;
  height: 32px;
  content: '';
}
.functions_wrap .tree .tree_node:hover::before {
  background: rgba(28, 36, 46, 0.04);
  transition: all 0.3s;
}
.functions_wrap .tree .tree_node.tree_node_active::before {
  z-index: 1;
  background: rgba(68, 119, 238, 0.06);
}
.functions_wrap .tree .tree_node .tree_node_iconfont {
  display: inline-flex;
  align-items: center;
}
.functions_wrap .tree .tree_node .tree_node_iconfont svg {
  z-index: 1;
  transition: all 0.3s;
  fill: rgba(28, 36, 46, 0.45);
}
.functions_wrap .tree .tree_node .tree_node_iconfont:hover svg {
  fill: rgba(28, 36, 46, 0.85);
}
.functions_wrap .tree .tree_node .tree_node_expand_icon {
  z-index: 1;
  display: inline-flex;
  align-items: center;
}
.functions_wrap .tree .tree_node .tree_node_expand_icon.tree_node_expand_icon_open {
  transform: rotate(0deg);
}
.functions_wrap .tree .tree_node .tree_node_expand_icon.tree_node_expand_icon_close {
  transform: rotate(-90deg);
}
.functions_wrap .tree .tree_node .tree_node_title {
  z-index: 1;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  padding: 0 4px;
  font-size: 12px;
  line-height: 32px;
  outline: none;
  box-shadow: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
