/* echart 特殊处理勿动 */

.mask-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(64, 40, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.fullscreen {
  width: 100%;
  height: 100%;
}

.mask-echart-content {
  padding: 10px;
  background-color: #0f131d;
}

.propagation-box {
  padding: 20px;
}
.propagation-box canvas {
  height: calc(100% - 40px);
}
.propagation-box-fullscreen {
  width: 920px;
  height: 620px;
}
.echart-canvas canvas:hover {
  cursor: default;
}
.echart-box {
  height: 100%;
  width: 100%;
  display: inline-block;
}

.echart-top {
  line-height: 24px;
  padding-right: 20px;
}
.echart-top span {
  color: var(--c-theme-font);
}
.echart-top .btns {
  text-align: right;
  display: inline-block;
}
.echart-top .btns button {
  color: var(--c-theme-icon);
  display: inline-block;
  cursor: pointer;
  margin-left: 10px;
  border: none;
  outline: none;
  background: none;
  padding: 0;
}
.echart-top .btns button i {
  font-size: 18px;
}
.echart-top .btns button:hover,
.echart-top .btns button.on {
  color: var(--c-theme);
}

.echart-table-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  display: flex;
  color: var(--c-theme-font);
  font-size: 14px;
  font-weight: bolder;
  background: var(--c-first-media-table-hover);
  text-align: center;
  height: 42px;
  line-height: 42px;
}
.echart-table-header span {
  flex: 1;
  display: inline-block;
  white-space: nowrap;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
.echart-table-header span:first-child {
  min-width: 140px;
  flex-shrink: 0;
}
.echart-table-body span:first-child {
  min-width: 140px;
  flex-shrink: 0;
}

.echart-table-body .tr {
  display: block;
  cursor: default;
  color: var(--c-theme-font);
  text-align: center;
  height: 42px;
  line-height: 42px;
}
.echart-table-body .tr:hover {
  background-color: var(--c-linear-gradient-1);
}
.echart-table-body .tr .td {
  flex: 1;
  display: block;
  white-space: nowrap;
  word-wrap: break-word;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
}
.echart-table-body .tr .td:first-child {
  min-width: 140px;
  flex-shrink: 0;
}


.echart-bar-wrap .not-box {
  margin: 0;
}
/* echart 特殊处理勿动 */

.el-scrollbar {
	overflow: hidden;
	position: relative
}

.el-scrollbar:active>.el-scrollbar__bar,
.el-scrollbar:focus>.el-scrollbar__bar,
.el-scrollbar:hover>.el-scrollbar__bar {
	opacity: 1;
	-webkit-transition: opacity 340ms ease-out;
	transition: opacity 340ms ease-out
}

.el-scrollbar__wrap {
	overflow: scroll;
	height: 100%;
	overflow-y:auto;
}

.el-scrollbar__wrap--hidden-default::-webkit-scrollbar {
	width: 0;
	height: 0
}

.el-scrollbar__thumb {
	position: relative;
	display: block;
	width: 0;
	height: 0;
	cursor: pointer;
	border-radius: inherit;
	background-color: rgba(144, 147, 153, .3);
	-webkit-transition: .3s background-color;
	transition: .3s background-color
}

.el-scrollbar__thumb:hover {
	background-color: rgba(144, 147, 153, .5)
}

.el-scrollbar__bar {
	position: absolute;
	right: 2px;
	bottom: 2px;
	z-index: 1;
	border-radius: 4px;
	opacity: 0;
	-webkit-transition: opacity 120ms ease-out;
	transition: opacity 120ms ease-out
}

.el-scrollbar__bar.is-vertical {
	width: 6px;
	top: 2px
}

.el-scrollbar__bar.is-vertical>div {
	width: 100%
}

.el-scrollbar__bar.is-horizontal {
	height: 6px;
	left: 2px
}

.el-scrollbar__bar.is-horizontal>div {
	height: 100%
}


.flex {
  display: flex;
}

.flex-1 {
  flex: 1;
}
