/* 新增 */
.back_img {
  float: right;
  cursor: pointer;
  font-size: 12px;
  text-align: center;
}

.echartMain {
  display: flex;
}

.echartMain .echartL {
  flex: 1;
}

.echartMain .echartR {
  margin-top: 20px;
  margin-right: 20px;
  display: inline-block;
  width: 200px;
}

.e_title {
  background-color: #BF1211;
  color: #ffffff;
  border-radius: 6px 6px 0 0;
  padding: 8px 8px 8px 8px;
}

.e_tabs {
  display: flex;
  padding: 8px 8px 4px 8px;
  align-items: center;
  border-bottom: 1px solid #F1EFEF;
}

.e_tabs > div {
  margin-right: 12px;
  cursor: pointer;
}

.e_tabs > div.on {
  color: #BF1211;
  text-decoration: underline;
}

.e_tabs > span {
  flex: 1;
  text-align: right;
  cursor: pointer;
}

.e_detail {
  border: 1px solid #F1EFEF;
  border-radius: 0 0 6px 6px;
}

.e_list {
  padding: 0px 8px 8px 8px;
  border-radius: 0 0 6px 6px;
}

.e_list .item {
  padding: 4px 0px;
  border-bottom: 1px dashed #F1EFEF;
}

.e_list .item > div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.e_list .item > div.t2 {
  color: #B4B4B6;
}

.echartTitle {
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
}

.echart {
  width: 100%;
  height: 500px;
}

/* 新增结束 */


/* 新增的折线图和饼图柱状图*/

.echartMain2 .echart-box {
  position: relative;
  height: 280px;
  width: 900px;
  border: 2px solid rgb(0, 104, 163);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  margin: 0 auto;
}
.echartMain2 .echart-box.heightMax{
  height: 300px;
  /*padding-top: 60px;*/
}
.echartMain2 .echart-box .echart {
  height: 280px;
  width: 100%;
}
.echartMain2 .echart-box .filter-box{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 10px 0 0 20px;
}
.echartMain2 .filter-box .scale-type{
  cursor: pointer;
  font-size: 12px;
  color: #333333;
  background-color: rgb(247, 247, 247);
  border: 0;
  padding: 3px 6px;
  margin: 0 5px;
  display: inline-block;
}
.echartMain2 .filter-box .filter-label{
  font-size: 12px;
  color: #333333;
}
.echartMain2 .filter-box .scale-type.active{
  font-weight: bold;
  background-color: rgb(230, 235, 245);
}
