.cardItem {
  position: relative;
  flex: 1;
  margin-right: 10px;
  padding: 10px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 5px;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
}
.cardItem .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #323232;
  font-weight: bold;
  font-size: 15px;
}
.cardItem .title .icon {
  display: flex;
  align-items: center;
}
.cardItem .num {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #656565;
  font-size: 12px;
}
