displayData.scss 3.5 KB

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