record.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. .list-box {
  2. display: flex;
  3. width: 100vw;
  4. height: 125rpx;
  5. background-color: #fff;
  6. border-bottom: 1rpx solid #dddddd;
  7. padding: 0 30rpx;
  8. box-sizing: border-box;
  9. .circle {
  10. width: 64rpx;
  11. height: 64rpx;
  12. line-height: 64rpx;
  13. text-align: center;
  14. background-color: #3874F6;
  15. border-radius: 50%;
  16. overflow: hidden;
  17. color: #fff;
  18. font-size: 24rpx;
  19. font-family: PingFang SC-Regular, PingFang SC;
  20. color: #FFFFFF;
  21. margin: 18rpx 20rpx 0 0;
  22. flex-shrink: 0;
  23. }
  24. .content {
  25. flex: 1;
  26. .title {
  27. display: flex;
  28. height: 48rpx;
  29. color: #000000;
  30. margin-top: 14rpx;
  31. .line-1 {
  32. max-width: 450rpx;
  33. line-height: 48rpx;
  34. font-size: 28rpx;
  35. font-family: PingFang SC-Regular,
  36. PingFang SC;
  37. margin-right: 20rpx;
  38. }
  39. }
  40. .time {
  41. font-size: 24rpx;
  42. font-family: PingFang SC-Regular, PingFang SC;
  43. color: #999999;
  44. margin-top: 6rpx;
  45. }
  46. }
  47. .right {
  48. flex-shrink: 0;
  49. display: flex;
  50. align-items: center;
  51. }
  52. }
  53. .total {
  54. width: 100vw;
  55. height: 56rpx;
  56. line-height: 56rpx;
  57. text-align: center;
  58. font-size: 24rpx;
  59. font-family: PingFang SC-Regular, PingFang SC;
  60. color: #999999;
  61. }
  62. /* 概况数据展示 */
  63. .data-display {
  64. display: flex;
  65. flex-wrap: wrap;
  66. justify-content: space-around;
  67. width: 100vw;
  68. height: 290rpx;
  69. background-color: #fff;
  70. .item {
  71. width: 33.33%;
  72. height: 100rpx;
  73. margin-top: 30rpx;
  74. text-align: center;
  75. .label {
  76. height: 34rpx;
  77. line-height: 34rpx;
  78. font-size: 24rpx;
  79. font-family: PingFang SC-Regular, PingFang SC;
  80. color: #999999;
  81. }
  82. .nubmer {
  83. height: 50rpx;
  84. line-height: 50rpx;
  85. font-size: 36rpx;
  86. font-family: PingFang SC-Bold, PingFang SC;
  87. font-weight: bold;
  88. color: #333333;
  89. margin-top: 14rpx;
  90. }
  91. }
  92. }