/* 滚动条样式 */
*::-webkit-scrollbar {
  width: 6px;
}
*::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: rgb(44, 44, 44);
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
*::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
  background: #ededed;
  border-radius: 6px;
}
.plot-panel-container {
  position: relative;
  width: 300px;
  max-height: 693px;
  z-index: 9999;
}
.plot-panel-container .panel-heading {
  cursor: move;
  color: #E1E1E1;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  background-color: rgb(44, 44, 44);
  border-color: rgba(68, 68, 68, 1);
  padding: 13px 25px 13px 15px;
  border-bottom: 1px solid rgba(68, 68, 68, 1);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.plot-panel-container .panel-body {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px;
  background-color: rgb(44, 44, 44);
  font-size: 14px;
}

.plot-panel-container .list .key {
  color: #E1E1E1;
}

