.lt-tr {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

.lt-tr * {
  box-sizing: border-box
}

.lt-tr .list-box {
  width: 7vw;
  height: 100%;
}

.lt-tr .right {
  width: 46vw;
}

.lt-tr .list-box>ul>li i {
  margin-right: 1px;
  margin-left: 4px;
  min-width: 20px
}

.lt-tr .list-box .list-header {
  width: 100%;
  height: 30px;
  line-height: 30px;
  border: 1px solid #ddd;
  padding: 0 2px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.lt-tr .list-box>ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  color: transparent;
}

.lt-tr .list-box>ul.lul {
  
}

.lt-tr .list-box>ul.rul {
  padding: 3px 3px 3px 0
}

.lt-tr .list-box.left>ul {
  direction: rtl
}

.lt-tr .list-box>ul>li {
  list-style: none;
  display: list-item;
  text-align: -webkit-match-parent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  position: relative
}

.lt-tr .list-box>ul>li.disabled {
  background-color: lightgrey !important;
  cursor: not-allowed;
  color: #aaa !important;
  border: 1px solid lightgrey !important;
  box-shadow: none !important
}

.lt-tr.sm .list-box>ul>li {
  height: 32px;
  line-height: 32px;
  border-radius: 7px
}

.lt-tr.md .list-box>ul>li {
  height: 42px;
  line-height: 42px;
  border-radius: 8px
}

.lt-tr.lg .list-box>ul>li {
  height: 17%;
}

.lt-tr .list-box.left>ul>li {
  direction: ltr
}

.draw-line {
  stroke: red;
  stroke-width: 3;
  fill: red;
  cursor: pointer
}

.draw-line[id*=drea_temp_mark] {
  stroke-dasharray: 3, 2
}

.draw-line:hover {
  stroke-width: 3;
  stroke-dasharray: 3, 2;
  stroke: darkorange
}

.lt-tr .list-box>ul>li>div {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row
}

.lt-tr .list-box>ul>li>div>span:not(.close) {
  white-space: nowrap;
  overflow: hidden;
  flex: 1;
  text-overflow: ellipsis;
  display: inline-block;
  width: 100%;
  height: 100%
}

.lt-tr .list-box>ul>li>div>span.close:hover {
  font-size: 16px
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background-color: #f5f5f5
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px white;
  -webkit-box-shadow: inset 0 0 6px white;
  border-radius: 10px;
  background-color: #f5f5f5
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
  background-color: lightgrey
}