/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  border-radius: 4px;
  background-color: transparent;
}
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  border-radius: 6px;
  -webkit-box-shadow: none;
  background-color: rgba(144, 147, 153, 0.3);
}
/*定义最上方和最下方的按钮*/
::-webkit-scrollbar-button {
  display: none;
  background-color: #252540;
  border: 1px solid #252540;
}
.ant-statistics-card {
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(37, 37, 37, 0.08);
  padding: 16px 20px 10px 16px;
  cursor: pointer;
}
.ant-statistics-card:hover {
  box-shadow: 2px 3px 6px rgba(87, 134, 247, 0.36);
}
.ant-statistics-card-content {
  line-height: 36px;
  display: flex;
}
.ant-statistics-card-icon {
  font-size: 36px;
  margin-right: 8px;
}
.ant-statistics-card-mes {
  font-size: 14px;
  text-align: left;
  color: #333;
}
.ant-statistics-card-num {
  font-weight: bold;
  font-size: 24px;
  text-align: right;
  color: #252525;
}
