//字体颜色
$title-color: rgba(0, 0, 0, 0.85); //!标题颜色

//!Echarts图表
$title-echarts: $title-color;

//!一级阴影(一般盒子使用一级阴影)
$box-shadow-level1: 0 0.3rem 0.6rem -0.4rem rgba(0, 0, 0, 0.45);

//! echart图的标题文字(弹窗里面的不算)
@mixin graph-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: $title-color;
  line-height: 1.5;
  padding: 0.4rem;
}

//!第三层（里面装echarts）背景色及内边距,外边距根据实际情况自己设定
@mixin third-layer-echarts {
  padding: 1rem;
  background: #fff;
}
