#treeView ul, li { list-style-type: none; }

#treeView {
  width: 100%;
  height: 250px;
  overflow: auto;
  border: 1px solid #f2f2f2;
}
.treeNode {
  height: 32px;
  border: 1px solid #fff;
  border-width: 1px 0;
  cursor: pointer;
  font-size: 0;
}
.treeNode:hover {
  background: #f4f9fd;
  border-color: #e5f0fb;
}
.treeNode-cur,
.treeNode-cur:hover {
  background: #e5f0fb;
  border-color: #BBD4EF #fff;
}
#treeView .icon {
  display: inline-block;
  background: url(icon.png) no-repeat;
  vertical-align: middle;
}
#treeView .icon-minus {
  width: 15px;
  height: 15px;
  margin: 0 4px;
  background-position: -30px -22px;
}
#treeView .icon-add {
  width: 15px;
  height: 15px;
  margin: 0 4px;
  background-position: -30px 0;
}
#treeView .icon-empty {
  width: 15px;
  height: 15px;
  margin: 0 4px;
  background-position: -50px 0;
}
#treeView .icon-file {
  width: 22px;
  height: 18px;
  margin-right: 5px;
  background-position: 0 -22px;
}
#treeView .title {
  position: relative;
  top: 6px;
  font-size: 14px;
}

.treeNode-empty .icon-minus {
  background-position: -999px -999px;
}
.treeNode-empty .icon-add {
  background-position: -999px -999px;
}

#treeView ul.none {
  display: none;
}

.file-save-name {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.file-save-name span {
    width: 100px;
}

#saveSelect {
  padding: 20px;
  overflow: inherit;
}

#saveSelect .layui-form-select {
  width: calc(100% - 78px);
}

#xlsxTip {
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 12px;
  color: #FA5252;
}
#xlsxTip i {
  font-size: 12px;
  margin-right: 5px;
}