@mixin textOverflow {
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: nowrap;
}

.wb-card{
  display: flex;
  flex-flow: column;
  height: 100%;
  border: 1px solid #DCE2E6;
  border-radius:2px;
  box-shadow:0 2px 10px 0 rgba(45,76,102,0.2);
  .ant-card-head{
    flex: 1;
    border-bottom: 1px solid #DCE2E6;
  }
  .card-title{
    color: #04173F;
    font-size: 18px;
    font-weight: 400;
    .card-total{
      display: inline-block;
      margin-left: 10px;
      color: #C53536;
      font-size: 16px;
    }
  }
  .ant-card-head{
    padding: 0 20px;
  }
  .ant-card-head-title{
    padding: 12px 0;
  }
  .ant-card-body::-webkit-scrollbar{
    width: 6px;
  }
  .ant-card-body::-webkit-scrollbar-thumb {
    border-radius: 3px;
  }
}

.chartCard {
  position: relative;
  .footer {
    border-top: 1px solid #CCD3D9;
    padding-top: 9px;
    margin-top: 8px;
    & > * {
      position: relative;
    }
  }
}
