complaint.wxss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 .form-block {
  23. background: #FFFFFF;
  24. border-radius: 12rpx;
  25. padding: 0 30rpx;
  26. margin-bottom: 20rpx;
  27. }
  28. .complaint-page .required::before {
  29. content: '*';
  30. color: #FF5B5B;
  31. margin-right: 4rpx;
  32. }
  33. .complaint-page .form-item {
  34. padding: 30rpx 0;
  35. }
  36. .complaint-page .form-item .input-wrapper {
  37. display: flex;
  38. justify-content: flex-end;
  39. align-items: center;
  40. font-size: 28rpx;
  41. color: #333;
  42. }
  43. .complaint-page .form-item .input-wrapper .placeholder {
  44. color: #999;
  45. }
  46. .upload-image .u-list-item {
  47. background: #ffffff;
  48. }