displayData.scss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /* 数据 */
  2. .head {
  3. display: flex;
  4. justify-content: space-between;
  5. background: none !important;
  6. .box {
  7. width: 690rpx;
  8. height: 184rpx;
  9. background: #ffffff;
  10. border-radius: 16rpx;
  11. padding: 20rpx 30rpx;
  12. box-sizing: border-box;
  13. .title {
  14. display: flex;
  15. align-items: center;
  16. height: 40rpx;
  17. font-size: 28rpx !important;
  18. font-family: PingFang SC-Bold, PingFang SC;
  19. font-weight: bold;
  20. color: #333333;
  21. text {
  22. color: var(--assist);
  23. font-size: 40rpx;
  24. margin-right: 10rpx;
  25. }
  26. }
  27. .data {
  28. display: flex;
  29. width: 100%;
  30. height: 84rpx;
  31. margin-top: 20rpx;
  32. text-align: center;
  33. .subarea {
  34. flex: 1;
  35. .nubmer {
  36. height: 40rpx;
  37. font-size: 28rpx;
  38. font-family: PingFang SC-Bold, PingFang SC;
  39. font-weight: bold;
  40. color: var(--assist);
  41. }
  42. .string {
  43. height: 34rpx;
  44. font-size: 24rpx;
  45. font-family: PingFang SC-Regular, PingFang SC;
  46. color: #666666;
  47. margin-top: 10rpx;
  48. }
  49. }
  50. .vertical {
  51. width: 2rpx;
  52. height: 74rpx;
  53. margin-top: 10rpx;
  54. background: #EEEEEE;
  55. }
  56. }
  57. }
  58. }
  59. .data-main {
  60. background: none !important;
  61. .data-content {
  62. padding: 30rpx;
  63. padding-right: 0;
  64. background-color: #ffffff;
  65. .title {
  66. display: flex;
  67. justify-content: space-between;
  68. width: 630rpx;
  69. height: 40rpx;
  70. &_l {
  71. font-size: 28rpx;
  72. font-family: PingFang SC-Bold, PingFang SC;
  73. font-weight: bold;
  74. color: #333333;
  75. }
  76. &_r {
  77. height: 34rpx;
  78. font-size: 24rpx;
  79. font-family: PingFang SC-Regular, PingFang SC;
  80. color: #999999;
  81. margin-top: 6rpx;
  82. }
  83. }
  84. .user-list {
  85. width: 100%;
  86. margin-top: 24rpx;
  87. width: 630rpx;
  88. background: #F5F5F5;
  89. border-radius: 16rpx;
  90. padding: 30rpx 0;
  91. .user {
  92. display: flex;
  93. justify-content: space-between;
  94. width: 600rpx;
  95. height: 40rpx;
  96. margin-top: 40rpx;
  97. margin-left: 30rpx;
  98. padding-right: 20rpx;
  99. box-sizing: border-box;
  100. view {
  101. width: 530rpx;
  102. font-size: 28rpx;
  103. font-family: PingFang SC-Regular, PingFang SC;
  104. color: #666666;
  105. }
  106. text {
  107. font-size: 40rpx;
  108. color: var(--warning);
  109. }
  110. }
  111. .user:first-child {
  112. margin-top: 0;
  113. }
  114. }
  115. .line-between {
  116. height: 1rpx;
  117. width: 100%;
  118. background-color: #EEEEEE;
  119. margin: 30rpx 0;
  120. }
  121. }
  122. }