index.scss 717 Bytes
.workplatform {
  color: #4A4A4A;
  height: 100%;
  overflow: hidden;

  .district {
    margin: 10px 0;

    /deep/.el-radio__label {
      font-size: 20px;
    }

    &-name {
      font-size: 20px;
      font-weight: 600;
    }
  }

  .data-statistics {
    .sta-item {
      height: 150px;
      background-color: #FFFFFF;
      border-radius: 5px;
      @include flex-center();
      flex-direction: column;
      margin: 15px 0;

      h5 {
        font-size: 20px;
        margin-bottom: 8px;
      }
    }
  }

  .statistical-chart-content {
    height: calc(100% - 210px);
  }

  .statistical-chart {
    display: flex;

    .chart {
      width: 50%;
      min-height: 460px;
      height: 100%;
    }
  }
}