handleSuggest.wxss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /* pages/handleSuggest/handleSuggest.wxss */
  2. /* 设置页面背景 */
  3. page{
  4. padding: 20rpx;
  5. height: 100%;
  6. background-color: #FFF2CC;
  7. }
  8. /* 顶部的建议信息 */
  9. .suggestHead{
  10. margin-top: 10rpx;
  11. }
  12. /* 顶部建议信息详情、结案日期详情、状态处理详情 */
  13. .suggestHeadDetail,
  14. .suggestHeadId,
  15. .handleDateDetail,
  16. .handleStatusDetail{
  17. margin-left: 20rpx;
  18. font-weight: bold;
  19. }
  20. .suggestHeadId{
  21. color: #00B0F0;
  22. text-decoration: underline;
  23. }
  24. /* 建议详情 */
  25. .suggestTitle{
  26. margin-top: 30rpx;
  27. display: flex;
  28. flex-direction: column;
  29. }
  30. /* 标题 */
  31. .suggestTitleText{
  32. text-align: center;
  33. font-weight: bold;
  34. margin-bottom: 10rpx;
  35. }
  36. /* 内容 */
  37. .suggestTitleDetail{
  38. width: 94%;
  39. }
  40. /* 结案日期 */
  41. .handleDate{
  42. margin-top: 40rpx;
  43. }
  44. /* 处理状态 */
  45. .handleStatus{
  46. margin-top: 40rpx;
  47. }
  48. .handleStatusDetail{
  49. color: red;
  50. }
  51. /* 处理结果 */
  52. .handleResult{
  53. display: flex;
  54. flex-direction: column;
  55. }
  56. .handleResultTitle{
  57. text-align: center;
  58. margin: 20rpx 0;
  59. font-weight: bold;
  60. }
  61. /* 处理结果详情 */
  62. .handleDetail{
  63. padding: 10rpx;
  64. background-color: #fff;
  65. border: 1rpx solid gray;
  66. border-radius: 20rpx;
  67. width: 93%;
  68. margin-bottom: 40rpx;
  69. }
  70. .handleResultDetail{
  71. min-height: 200rpx;
  72. padding: 10rpx;
  73. background-color: #fff;
  74. border-radius: 20rpx;
  75. width: 93%;
  76. margin-bottom: 40rpx;
  77. }
  78. /* 结案 */
  79. .handleEnd{
  80. display: flex;
  81. justify-content: center;
  82. margin-bottom: 40rpx;
  83. }
  84. .handleClosed{
  85. background-color: #8FAADC;
  86. font-size: 40rpx;
  87. padding: 10rpx 30rpx;
  88. border-radius: 40rpx;
  89. color: white;
  90. }