$graph-height: 40rem;
$box-shadow-level1: 0 0.3rem 0.6rem -0.4rem rgba(0, 0, 0, 0.45);


@mixin graph-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: $title-color;
  line-height: 1.5;
  padding: 0.4rem;
}

@mixin third-layer-echarts {
  padding: 1rem;
  background: #fff;
}

$title-color: rgba(0, 0, 0, 0.85); //!标题颜色



.chart-card {
  @include third-layer-echarts;
  overflow: hidden;
  height: 100%;

  .chart-title {
    @include graph-title;
  }

  .chart-body {
    position: relative;
    height: calc(100% - 2.9rem);
  }

  .echarts {
    width: 100%;
    height: 100%;
  }

  .echartfontsize {
    font-size: 1.2rem;
  }
}
