report.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /* pages/report/report.wxss */
  2. .report-title{
  3. margin: 40rpx 32rpx 24rpx;
  4. width: 686rpx;
  5. height: 42rpx;
  6. font-size: 30rpx;
  7. font-family: PingFangSC-Semibold, PingFang SC;
  8. font-weight: 600;
  9. color: rgba(0,0,0,0.87);
  10. line-height: 42rpx;
  11. }
  12. .report-type{
  13. margin-left: 32rpx;
  14. width: 718rpx;
  15. height: auto;
  16. display: flex;
  17. flex-flow: row wrap;
  18. }
  19. .report-type-check{
  20. color: #FF5700 !important;
  21. background: rgba(255,87,0,0.05) !important;
  22. border: 1px solid #FF5700 !important;
  23. }
  24. .report-type>text{
  25. width: 328rpx;
  26. height: 80rpx;
  27. line-height: 80rpx;
  28. font-size: 30rpx;
  29. font-weight: 400;
  30. color: rgba(0,0,0,0.6);
  31. background: #F5F6F9;
  32. border-radius: 4px;
  33. border: 1px solid rgba(0,0,0,0.08);
  34. text-align: center;
  35. margin-right: 22rpx;
  36. margin-bottom: 24rpx;
  37. }
  38. .more-title{
  39. margin: 40rpx 32rpx 24rpx;
  40. width: 686rpx;
  41. height: 42rpx;
  42. line-height: 42rpx;
  43. display: flex;
  44. flex-direction: row;
  45. justify-content: space-between;
  46. }
  47. .more-title>text:nth-child(1){
  48. width: auto;
  49. height: 42rpx;
  50. font-size: 30rpx;
  51. font-family: PingFangSC-Semibold, PingFang SC;
  52. font-weight: 600;
  53. color: rgba(0,0,0,0.87);
  54. line-height: 42rpx;
  55. }
  56. .more-title>text:nth-child(2){
  57. width: auto;
  58. height: 42rpx;
  59. font-size: 30rpx;
  60. font-family: PingFangSC-Regular, PingFang SC;
  61. font-weight: 400;
  62. color: rgba(0,0,0,0.4);
  63. line-height: 42rpx;
  64. }
  65. .content{
  66. width: 686rpx;
  67. height: 240rpx;
  68. margin: 0 32rpx;
  69. background-color: #F5F6F9;
  70. border-radius: 4px;
  71. display: flex;
  72. }
  73. .content>textarea{
  74. margin: 24rpx 32rpx;
  75. width: 622rpx;
  76. height: 192rpx;
  77. font-size: 26rpx;
  78. font-family: PingFangSC-Regular, PingFang SC;
  79. font-weight: 400;
  80. color: rgba(0,0,0,0.87);
  81. line-height: 36rpx;
  82. }
  83. .img-box{
  84. width: 718rpx;
  85. height: auto;
  86. display: flex;
  87. flex-flow: row wrap;
  88. padding: 0 0 96rpx 32rpx;
  89. }
  90. .img-view{
  91. width: 216rpx;
  92. height: 216rpx;
  93. margin-right: 20rpx;
  94. margin-bottom: 20rpx;
  95. position: relative;
  96. }
  97. .img-view>image:nth-child(1){
  98. width: 216rpx;
  99. height: 216rpx;
  100. border-radius: 4px;
  101. }
  102. .img-view>image:nth-child(2){
  103. width: 32rpx;
  104. height: 32rpx;
  105. position: absolute;
  106. top: -8rpx;
  107. right: -8rpx;
  108. }
  109. .img-upload{
  110. width: 216rpx;
  111. height: 216rpx;
  112. margin-right: 20rpx;
  113. margin-bottom: 20rpx;
  114. display: flex;
  115. background-color: #F5F6F9;
  116. }
  117. .img-upload>image:nth-child(1){
  118. width: 80rpx;
  119. height: 80rpx;
  120. margin: auto;
  121. }
  122. .submit-view{
  123. width: 750rpx;
  124. height: auto;
  125. display: flex;
  126. /* margin-top: 120rpx; */
  127. padding-bottom: env(safe-area-inset-bottom);
  128. }
  129. .submit-view>text{
  130. width: 686rpx;
  131. height: 90rpx;
  132. background: rgba(0,0,0,0.87);
  133. border-radius: 23px;
  134. font-size: 34rpx;
  135. font-family: PingFangSC-Medium, PingFang SC;
  136. font-weight: 500;
  137. color: #FFFFFF;
  138. line-height: 90rpx;
  139. letter-spacing: 1px;
  140. text-align: center;
  141. margin: 32rpx;
  142. }