manageSuggestDetail.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /* pages/manageSuggestDetail/manageSuggestDetail.wxss */
  2. /* 设置页面背景 */
  3. page {
  4. height: 100%;
  5. background-color: #FFF2CC;
  6. padding: 20rpx;
  7. }
  8. .wrapper {
  9. position: relative;
  10. height: 100%;
  11. }
  12. /* 建议号、建议人、建议日期 */
  13. .suggestHead {
  14. display: flex;
  15. margin-top: 10rpx;
  16. padding: 10rpx;
  17. }
  18. .suggestHeadDetail,
  19. .suggestHeadDetailID {
  20. margin-left: 20rpx;
  21. font-weight: bold;
  22. }
  23. /* 建议人和处理人ID */
  24. .suggestHeadDetailID {
  25. color: #00B0F0;
  26. text-decoration: underline;
  27. }
  28. /* 建议标题 */
  29. .suggestTitle,
  30. .suggestContent {
  31. margin-top: 40rpx;
  32. display: flex;
  33. }
  34. /* 建议标题内容 */
  35. .suggestTitleDetail {
  36. display: block;
  37. width: 70%;
  38. height: 120rpx;
  39. margin-left: 20rpx;
  40. overflow: hidden;
  41. text-overflow: ellipsis;
  42. display: -webkit-box;
  43. -webkit-box-orient: vertical;
  44. -webkit-line-clamp: 3;
  45. }
  46. /* 建议内容 */
  47. .suggestContentDetail {
  48. display: block;
  49. width: 70%;
  50. height: 200rpx;
  51. margin-left: 20rpx;
  52. overflow: hidden;
  53. text-overflow: ellipsis;
  54. display: -webkit-box;
  55. -webkit-box-orient: vertical;
  56. -webkit-line-clamp: 5;
  57. }
  58. /* 处理结果 */
  59. .handleResult {
  60. margin-top: 60rpx;
  61. display: flex;
  62. }
  63. /* 处理结果详情 */
  64. .handleResultDetail {
  65. display: block;
  66. width: 70%;
  67. height: 80rpx;
  68. margin-left: 20rpx;
  69. overflow: hidden;
  70. text-overflow: ellipsis;
  71. display: -webkit-box;
  72. -webkit-box-orient: vertical;
  73. -webkit-line-clamp: 2;
  74. }
  75. /* 结案日期、处理状态 */
  76. .handleDate,
  77. .handleStatus {
  78. display: flex;
  79. margin-top: 40rpx;
  80. }
  81. /* 结案日期详情、状态详情 */
  82. .DateDetail,
  83. .handleStatusDetail {
  84. margin-left: 20rpx;
  85. font-weight: bold;
  86. }
  87. /* 状态详情颜色 */
  88. .handleStatusDetail {
  89. color: red;
  90. }
  91. /* 开始处理按钮 */
  92. .handleStart {
  93. position: absolute;
  94. bottom: 160rpx;
  95. width: 200rpx;
  96. margin-left: auto;
  97. margin-right: auto;
  98. left: 0;
  99. right: 0;
  100. }
  101. .handleBtn {
  102. padding: 10rpx 20rpx;
  103. border-radius: 30rpx;
  104. background-color: #8FAADC;
  105. color: white;
  106. }