dataOverview.scss 811 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. .head {
  2. display: flex;
  3. justify-content: space-between;
  4. margin-bottom: 0;
  5. line-height: 40rpx;
  6. font-family: PingFang SC, PingFang SC;
  7. font-weight: 700;
  8. font-size: 28rpx;
  9. color: #333333;
  10. .right {
  11. display: flex;
  12. align-items: center;
  13. .iconfont {
  14. margin-left: 10rpx;
  15. }
  16. }
  17. }
  18. .list {
  19. display: flex;
  20. flex-wrap: wrap;
  21. justify-content: space-between;
  22. .item {
  23. width: 314rpx;
  24. padding: 10rpx 20rpx;
  25. box-sizing: border-box;
  26. border-radius: 20rpx;
  27. border: 1rpx solid #E0E0E0;
  28. margin-bottom: 20rpx;
  29. .title {
  30. line-height: 28rpx;
  31. font-family: PingFang SC, PingFang SC;
  32. font-size: 20rpx;
  33. color: #999999;
  34. margin-top: 6rpx;
  35. }
  36. .value {
  37. line-height: 44rpx;
  38. font-family: PingFang SC, PingFang SC;
  39. font-weight: bold;
  40. font-size: 32rpx;
  41. color: #333333;
  42. }
  43. }
  44. }