index.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. .header_custom {
  2. float: left;
  3. width: 100%;
  4. }
  5. .header-title {
  6. display: flex;
  7. align-items: center;
  8. flex-direction: row;
  9. padding: 0 26rpx;
  10. justify-content: flex-start;
  11. width: 100%;
  12. }
  13. .header-title .goback {
  14. width: 30px;
  15. text-align: center;
  16. }
  17. .userbg {
  18. height: 500rpx;
  19. position: relative;
  20. overflow: hidden;
  21. }
  22. .userbg > image {
  23. width: 100%;
  24. height: 100%;
  25. position: absolute;
  26. top: 0;
  27. left: 0;
  28. z-index: 2;
  29. }
  30. .userbg .usermsg {
  31. justify-content: flex-start;
  32. margin: 300rpx 0 0 36rpx;
  33. position: relative;
  34. z-index: 5;
  35. color: #FFFFFF;
  36. }
  37. .userbg .usermsg .userimg {
  38. width: 64px;
  39. height: 64px;
  40. margin-right: 28rpx;
  41. border-radius: 32px;
  42. overflow: hidden;
  43. border: 2px solid rgba(255, 255, 255, 0.3);
  44. }
  45. .chart_box {
  46. margin: 0 32rpx;
  47. }
  48. .chart_box .btn_group {
  49. justify-content: flex-start;
  50. }
  51. .chart_box .btn_group > view {
  52. width: 144rpx;
  53. height: 56rpx;
  54. font-size: 28rpx;
  55. border: 1px solid #EFF0F1;
  56. border-radius: 28rpx;
  57. color: #646C73;
  58. margin-right: 32rpx;
  59. transition: all 0.3s ease;
  60. }
  61. .chart_box .btn_group .active {
  62. background: #EAFAF8;
  63. color: #04B49C;
  64. border: 1px solid transparent;
  65. }
  66. .chart_box .lenged_box {
  67. justify-content: flex-end;
  68. font-size: 14px;
  69. }
  70. .chart_box .lenged_box > text {
  71. color: var(--nodateColor);
  72. }
  73. .chart_box .lenged_box .lenged_item {
  74. font-size: 13px;
  75. color: #8D9399;
  76. }
  77. .chart_box .lenged_box .lenged_item > view {
  78. margin-right: 12px;
  79. }
  80. .chart_box .lenged_box .lenged_item .leng::before {
  81. content: '';
  82. display: inline-block;
  83. width: 10px;
  84. height: 10px;
  85. margin-right: 5px;
  86. background: #04B49C;
  87. }
  88. .chart_box .lenged_box .lenged_item .re::before {
  89. content: '';
  90. display: inline-block;
  91. width: 10px;
  92. height: 10px;
  93. margin-right: 5px;
  94. background: #FF8800;
  95. }
  96. .chart_box .logchart {
  97. height: 420rpx;
  98. width: 100%;
  99. color: var(--nodateColor);
  100. font-size: 14px;
  101. }
  102. .adjust_list {
  103. padding: 24rpx 0;
  104. margin: 32rpx;
  105. border-radius: 4px;
  106. border: 1px solid #EFF0F1;
  107. justify-content: space-around;
  108. }
  109. .adjust_list .list_item > text:nth-child(1) {
  110. font-size: 56rpx;
  111. color: #2B3036;
  112. }
  113. .adjust_list .list_item > text:nth-child(2) {
  114. margin-top: 12rpx;
  115. font-size: 32rpx;
  116. color: #8D9399;
  117. }
  118. .adjust_record {
  119. height: 118rpx;
  120. margin: 0 32rpx 32rpx;
  121. padding: 0 24rpx;
  122. background: #FFFFFF;
  123. justify-content: space-between;
  124. box-shadow: 0px 6px 20px 0px rgba(43, 48, 54, 0.1);
  125. border-radius: 4px;
  126. }
  127. .adjust_record view {
  128. font-size: 36rpx;
  129. color: #2B3036;
  130. }
  131. .adjust_record view image {
  132. width: 32rpx;
  133. height: 32rpx;
  134. margin-right: 24rpx;
  135. }
  136. .adjust_feedback {
  137. margin: 0 32rpx 64rpx;
  138. }