complaint.wxss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. @charset "UTF-8";
  2. /**
  3. * 主题色配置
  4. * 默认在 uni.scss 全局引入:@import '@/theme.scss';
  5. * <script> 下使用主题变量:import x from '@/theme.scss';
  6. */
  7. .page {
  8. background-color: #f8f8f8;
  9. font-family: PingFangSC;
  10. }
  11. .safeAreaPad {
  12. padding-bottom: constant(safe-area-inset-bottom);
  13. padding-bottom: env(safe-area-inset-bottom);
  14. box-sizing: content-box;
  15. }
  16. .complaint-page {
  17. min-height: 100vh;
  18. background: #F8F8F8;
  19. padding: 20rpx;
  20. padding-bottom: 120rpx;
  21. }
  22. .complaint-page .status-block {
  23. background: #FFFFFF;
  24. border-radius: 12rpx;
  25. padding: 30rpx;
  26. margin-bottom: 20rpx;
  27. }
  28. .complaint-page .status-block .status-title {
  29. font-size: 32rpx;
  30. font-weight: 600;
  31. color: #222;
  32. }
  33. .complaint-page .status-block .divider {
  34. height: 2rpx;
  35. background: #EEEEEE;
  36. margin: 20rpx 0;
  37. }
  38. .complaint-page .status-block .status-info .info-row {
  39. display: flex;
  40. font-size: 28rpx;
  41. line-height: 48rpx;
  42. }
  43. .complaint-page .status-block .status-info .info-row .label {
  44. color: #333;
  45. min-width: 140rpx;
  46. }
  47. .complaint-page .status-block .status-info .info-row .value {
  48. color: #333;
  49. flex: 1;
  50. }
  51. .complaint-page .status-block .status-info .info-row .status-text {
  52. color: #FF5B5B;
  53. }
  54. .complaint-page .complaint-records .complaint-item {
  55. background: #FFFFFF;
  56. border-radius: 12rpx;
  57. padding: 30rpx;
  58. margin-bottom: 20rpx;
  59. }
  60. .complaint-page .complaint-records .complaint-item .complaint-header {
  61. margin-bottom: 24rpx;
  62. }
  63. .complaint-page .complaint-records .complaint-item .complaint-header .header-main {
  64. display: flex;
  65. flex-direction: column;
  66. gap: 8rpx;
  67. }
  68. .complaint-page .complaint-records .complaint-item .complaint-header .header-main .title {
  69. font-size: 32rpx;
  70. font-weight: 600;
  71. color: #222222;
  72. }
  73. .complaint-page .complaint-records .complaint-item .complaint-header .header-main .time {
  74. font-size: 26rpx;
  75. color: #999;
  76. }
  77. .complaint-page .complaint-records .complaint-item .complaint-content .info-row {
  78. display: flex;
  79. margin-bottom: 16rpx;
  80. font-size: 28rpx;
  81. line-height: 1.5;
  82. }
  83. .complaint-page .complaint-records .complaint-item .complaint-content .info-row .label {
  84. color: #333;
  85. white-space: nowrap;
  86. }
  87. .complaint-page .complaint-records .complaint-item .complaint-content .info-row .value {
  88. color: #333;
  89. flex: 1;
  90. }
  91. .complaint-page .complaint-records .complaint-item .complaint-content .image-list .label {
  92. display: block;
  93. font-size: 28rpx;
  94. color: #333;
  95. margin-bottom: 16rpx;
  96. }
  97. .complaint-page .complaint-records .complaint-item .complaint-content .image-list .images {
  98. display: flex;
  99. flex-wrap: wrap;
  100. gap: 20rpx;
  101. }
  102. .complaint-page .complaint-records .complaint-item .complaint-content .image-list .images image {
  103. width: 140rpx;
  104. height: 140rpx;
  105. border-radius: 8rpx;
  106. }
  107. .complaint-page .form-block {
  108. background: #FFFFFF;
  109. border-radius: 12rpx;
  110. padding: 0 30rpx;
  111. margin-bottom: 20rpx;
  112. }
  113. .complaint-page .required::before {
  114. content: '*';
  115. color: #FF5B5B;
  116. margin-right: 4rpx;
  117. }
  118. .complaint-page .form-item {
  119. padding: 30rpx 0;
  120. }
  121. .complaint-page .form-item .input-wrapper {
  122. display: flex;
  123. justify-content: flex-end;
  124. align-items: center;
  125. font-size: 28rpx;
  126. color: #333;
  127. }
  128. .complaint-page .form-item .input-wrapper .placeholder {
  129. color: #999;
  130. }
  131. .upload-image .u-list-item {
  132. background: #ffffff !important;
  133. }