.datasource-relation-popover .editor-popover-arrow-content {
  background-color: #f6f8fa;
}
.datasource-relation-popover .editor-popover-inner {
  border-radius: 6px;
}
.datasource-relation-popover .editor-popover-inner-content {
  padding: 0;
  min-width: 320px;
}
.datasource-relation-popover .editor-popover-inner-content .head {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  background-color: #f6f8fa;
  font-size: 12px;
  color: #1c242e;
  line-height: 18px;
  font-weight: 500;
  width: 100%;
  overflow: hidden;
  justify-content: space-between;
}
.datasource-relation-popover .editor-popover-inner-content .head .tipLabel {
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 1;
  overflow: hidden;
}
.datasource-relation-popover .editor-popover-inner-content .close {
  fill: rgba(28, 36, 46, 0.75);
  text-align: right;
  cursor: pointer;
}
.datasource-relation-popover .editor-popover-inner-content .close span {
  transform: scale(0.8);
  margin-right: -20%;
}
.datasource-relation-popover .editor-popover-inner-content .list {
  padding: 0 12px;
  max-height: 266px;
  width: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.datasource-relation-popover .editor-popover-inner-content .list .empty {
  align-self: center;
  width: 100%;
}
.datasource-relation-popover .editor-popover-inner-content .list .row {
  display: flex;
  align-items: center;
  padding: 8px 0;
}
.datasource-relation-popover .editor-popover-inner-content .list .row .item {
  display: flex;
  align-items: center;
}
.datasource-relation-popover .editor-popover-inner-content .list .row .item .spanFontSize {
  font-size: 12px;
}
.datasource-relation-popover .editor-popover-inner-content .list .row .item .icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.datasource-relation-popover .editor-popover-inner-content .list .row .item .icon img {
  width: 100%;
  height: 100%;
}
.datasource-relation-popover .editor-popover-inner-content .list .row .item a {
  color: #1c242e;
  font-size: 12px;
}
.datasource-relation-popover .editor-popover-inner-content .list .row .item a:hover {
  color: #47e;
}
.datasource-relation-popover .editor-popover-inner-content .list .row .item .divider {
  padding: 0 4px;
}
.datasource-relation-popover .editor-popover-inner-content .list .row .item:last-child {
  flex: 1;
  overflow: hidden;
}
.datasource-relation-popover .editor-popover-inner-content .list .row .item:last-child a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.datasource-relation-popover .editor-popover-inner-content .list .row:not(:last-child) {
  position: relative;
}
.datasource-relation-popover .editor-popover-inner-content .list .row:not(:last-child)::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(to left, transparent 0%, transparent 50%, #f0f0f0 50%, #f0f0f0 100%);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  bottom: 0;
  left: 0;
}
.datasource-relation-popover .editor-popover-inner-content .list::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.datasource-relation-popover .editor-popover-inner-content .list::-webkit-scrollbar-track {
  background: #efefef;
  border-radius: 2px;
}
.datasource-relation-popover .editor-popover-inner-content .list::-webkit-scrollbar-thumb {
  background: #bfbfbf;
  border-radius: 10px;
}
.datasource-relation-popover .editor-popover-inner-content .list::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
