/*---------要件预览------开始*/
.filePreviewDialog .filePreviewContainer {
  display: flex;
  flex-direction: row;
  height: 100%;
}
.filePreviewDialog .fileTreePart {
  width: 260px;
  height: 100%;
  overflow-y: auto;
}
.filePreviewDialog .filePreviewPart {
  width: calc(100% - 260px - 12px);
  height: 100%;
  margin-left: 12px;
}

.filePreviewDialog .filePreviewContainer >>> .custom-tree-node {
  width: 100%;
}
.filePreviewDialog .treeLevelCon {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
.filePreviewDialog .treeLevelCon .treeNodeName {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 160px;
}
.filePreviewDialog .treeNodeCell {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.filePreviewDialog .customTreeNode {
  font-size: 14px;
  color: #303133;
  display: flex;
  align-items: center;
  width: 100%;
  height: 24px;
}
.filePreviewDialog .fileSum {
  color: red;
  margin-left: 6px;
}
.filePreviewDialog .treeNodeImg {
  width: 36px;
  height: 100%;
  display: block;
  text-align: center;
  line-height: 24px;
}
.filePreviewDialog .treeNodeImg > img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.filePreviewDialog .treeNodeFileName {
  display: block;
  width: 100px;
  line-height: 24px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.filePreviewDialog .treeNodeFileNameMax {
  width: 120px;
}
.filePreviewDialog .treeNodeIcon {
  display: block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
}
.filePreviewDialog .btnsCon {
  height: 36px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.filePreviewDialog .filePreviewCon {
  width: 100%;
  height: calc(100% - 36px);
  border: 1px solid var(--border-color);
  position: relative;
}
.filePreviewDialog .filePreviewConMax {
  height: 100%;
}
.filePreviewDialog .filePreviewConBtnLeft,
.filePreviewDialog .filePreviewConBtnRight {
  position: absolute;
  top: calc(50% - 16px);
  min-width: unset !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 16px !important;
  padding: 0 !important;
  margin: 0 !important;
}
.filePreviewDialog .filePreviewConBtnLeft {
  left: 24px;
}
.filePreviewDialog .filePreviewConBtnRight {
  right: 24px;
}
.filePreviewDialog .filePreviewCon > div {
  height: 100%;
}
.filePreviewDialog .filePreviewImg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.filePreviewDialog .fileThumbnail {
  width: 100%;
  height: 64px;
  margin-top: 12px;
  overflow-x: scroll;
}
.filePreviewDialog .imgItem {
  width: 64px;
  height: 64px;
  margin: 0 6px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid transparent;
  overflow: hidden;
  float: left;
}
.filePreviewDialog .imgItem >>> .el-image {
  width: 64px;
  height: 64px;
}
.filePreviewDialog .imgItem >>> .el-image__inner {
  width: 64px;
  height: 64px;
}
.filePreviewDialog .isActive {
  border: 2px solid var(--primary-color);
}
.filePreviewDialog .rarPreview {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.filePreviewDialog .rarPreviewImg {
  width: 60px;
  height: 60px;
  display: block;
}
.filePreviewDialog .rarPreviewText {
  display: block;
  margin-top: 12px;
}
.filePreviewDialog .download {
  color: var(--primary-color);
}

.filePreviewDialog .el-tree-node__content > label.el-checkbox {
  margin-top: -3px;
}
.filePreviewDialog .fileCarouselCon {
  height: 100%;
}
.filePreviewDialog
  .el-tree--highlight-current
  .el-tree-node.is-current
  > .el-tree-node__content {
  background-color: rgba(24, 112, 215, 0.2);
}

/*---------要件预览------结束---*/

/*---------批量上传------开始---*/

.batchUploadDialog .batchUploadContainer {
  height: 100%;
}
.batchUploadDialog .content {
  height: calc(100% - 48px);
  width: 100%;
  display: flex;
  flex-direction: row;
}
.batchUploadDialog .footer {
  height: 36px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}
.batchUploadDialog .contentPart {
  width: calc(50% - 60px);
  height: 100%;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 12px;
  overflow-y: auto;
}
.batchUploadDialog .btnsPart {
  width: 120px;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 12px;
}
.batchUploadDialog button.el-button.el-button--primary {
  min-width: unset;
  margin: 0 6px;
}

.batchUploadDialog .batchUploadContainer >>> .custom-tree-node {
  width: 100%;
}
.batchUploadDialog .treeLevelCon {
  width: 100%;
  height: 24px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
}
.batchUploadDialog .treeLevelCon > span {
  display: flex;
  align-items: center;
  height: 24px;
  line-height: 24px;
}
.batchUploadDialog .treeLevelCon >>> .el-checkbox {
  margin-right: 6px;
}
.batchUploadDialog .treeNodeCell {
  width: 100%;
  height: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.batchUploadDialog .customTreeNode {
  font-size: 14px;
  color: #303133;
  width: 100%;
}
.batchUploadDialog .treeNodeImg {
  width: 36px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.batchUploadDialog .treeNodeImg > img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.batchUploadDialog .treeNodeFileName {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: calc(100% - 36px - 24px);
  padding: 0 6px;
}
.batchUploadDialog .fileListIcon,
.batchUploadDialog .treeNodeIcon {
  display: block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
}

.batchUploadDialog .filePreviewCon > div {
  height: 100%;
}
.batchUploadDialog .filePreviewImg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.batchUploadDialog .fileThumbnail {
  width: 100%;
  height: 64px;
  margin-top: 12px;
  overflow-x: scroll;
}
.batchUploadDialog .uploadCon {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.batchUploadDialog .batchUpload,
.batchUploadDialog .el-upload,
.batchUploadDialog .el-upload-dragger {
  width: 100%;
  height: 100%;
}
.batchUploadDialog .fileListCon {
  width: 100%;
  height: calc(100% - 180px - 12px);
  margin-top: 12px;
  overflow-y: auto;
}
.batchUploadDialog .fileListItem {
  width: 100%;
  height: 100%;
}
.batchUploadDialog .fileListItemCon {
  padding: 6px;
  height: 36px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: move;
}
.batchUploadDialog .fileListItemCon:hover {
  background-color: #f0f8ff;
}
.batchUploadDialog .fileLifileListItemConstItem:hover > .fileListName {
  color: var(--primary-color);
}

.batchUploadDialog .fileListImg {
  width: 36px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.batchUploadDialog .fileListImg > img {
  width: 24px;
  height: 24px;
}
.batchUploadDialog .fileListName {
  display: block;
  line-height: 24px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: calc(100% - 36px - 24px);
  padding: 0 6px;
}
.batchUploadDialog .treeNodeDrag {
  width: 100%;
  height: 24px;
}
.batchUploadDialog .treeNodeDragItem {
  width: 100%;
  height: 24px;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.batchUploadDialog .treeNodeDragItemEmpty {
  min-height: 24px;
  border: 1px dashed var(--border-color);
  padding: 0 12px;
  background-color: var(--normal-bgColor);
}
.batchUploadDialog .treeNodeDragItemEmpty > span {
  color: #606266;
  font-size: 12px;
}

/*---------批量上传------结束---*/
