dataOverview.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. margin-top: 10rpx;
  11. .right {
  12. display: flex;
  13. align-items: center;
  14. .iconfont {
  15. margin-left: 10rpx;
  16. }
  17. }
  18. }
  19. .list {
  20. display: flex;
  21. flex-wrap: wrap;
  22. justify-content: space-between;
  23. .item {
  24. position: relative;
  25. width: 314rpx;
  26. padding: 10rpx 20rpx;
  27. box-sizing: border-box;
  28. border-radius: 20rpx;
  29. border: 1rpx solid #E0E0E0;
  30. margin-bottom: 20rpx;
  31. .title {
  32. display: flex;
  33. align-items: center;
  34. line-height: 28rpx;
  35. font-family: PingFang SC, PingFang SC;
  36. font-size: 20rpx;
  37. color: #999999;
  38. margin-top: 6rpx;
  39. .iconfont{
  40. font-size: 20rpx;
  41. padding-left: 10rpx;
  42. }
  43. }
  44. .value {
  45. line-height: 44rpx;
  46. font-family: PingFang SC, PingFang SC;
  47. font-weight: bold;
  48. font-size: 32rpx;
  49. color: #333333;
  50. }
  51. .title,.value{
  52. width: 90%;
  53. }
  54. .detail {
  55. position: absolute;
  56. right: 10rpx;
  57. top: 50%;
  58. transform: translateY(-50%) rotate(-90deg);
  59. }
  60. }
  61. }