index.wxss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. /* pages/repair/repair.wxss */
  2. .container,page{
  3. background-color: #F1F1F1;
  4. }
  5. .public_view{
  6. width: 730rpx;
  7. display: flex;
  8. flex-direction: column;
  9. background-color: #FFFFFF;
  10. margin: 10rpx 10rpx 0 10rpx;
  11. border-radius: 20rpx;
  12. position: relative;
  13. }
  14. .task_content{
  15. height: 302rpx;
  16. }
  17. .task_content_input{
  18. /* margin-top: 20rpx;
  19. margin-left: 62rpx; */
  20. padding: 20rpx;
  21. display: flex;
  22. flex-direction: row;
  23. }
  24. .task_content_input textarea{
  25. width: 660rpx;
  26. height: 200rpx;
  27. }
  28. .task_content_input .voicebtn{
  29. display: inline-block;
  30. width: 153rpx;
  31. height: 153rpx;
  32. position: absolute;
  33. z-index: 1000;
  34. right: 10rpx;
  35. top: 140rpx;
  36. }
  37. .task_content_input .voicebtn .voiceimg{
  38. display: inline-block;
  39. /* margin-top: 80rpx; */
  40. width: 100%;
  41. height: 100%;
  42. }
  43. .task_content_input .voicebtn .delimg{
  44. display: inline-block;
  45. width: 50rpx;
  46. height: 50rpx;
  47. position: absolute;
  48. top: 70rpx;
  49. right: -10rpx;
  50. }
  51. .voicebtnfinish{
  52. display: inline-block;
  53. width: 230rpx;
  54. height: 48rpx;
  55. position: absolute;
  56. z-index: 1001;
  57. right: 25rpx;
  58. top: 200rpx;
  59. background:rgba(235,234,234,1);
  60. border-radius:10rpx;
  61. padding: 12rpx 24rpx 20rpx 24rpx;
  62. }
  63. .voicebtnfinish .playimg{
  64. display: inline-block;
  65. width: 48rpx;
  66. height: 48rpx;
  67. vertical-align: middle;
  68. margin-right: 22rpx;
  69. }
  70. .voicebtnfinish .blimg{
  71. display: inline-block;
  72. width: 93rpx;
  73. height: 33rpx;
  74. vertical-align: middle;
  75. margin-right: 22rpx;
  76. }
  77. .voicebtnfinish .delimg{
  78. position: absolute;
  79. width: 36rpx;
  80. height: 36rpx;
  81. z-index: 1002;
  82. right: -18rpx;
  83. top: -18rpx;
  84. }
  85. .voicebtnfinish .second{
  86. width: 42rpx;
  87. height: 48rpx;
  88. line-height: 48rpx;
  89. display: inline-block;
  90. font-size: 30rpx;
  91. color: var(--themeColor);
  92. }
  93. /* .images{ */
  94. /* height: 336rpx; */
  95. /* } */
  96. .images_imgs{
  97. margin: 30rpx 50rpx;
  98. display: flex;
  99. flex-direction: row;
  100. }
  101. .images_imgs view{
  102. display: inline-block;
  103. width: 145rpx;
  104. height: 145rpx;
  105. position: relative;
  106. margin: 0 20rpx 20rpx 0;
  107. }
  108. .images_imgs view .images_img{
  109. width: 100%;
  110. height: 100%;
  111. }
  112. .images_imgs view .delimg{
  113. position: absolute;
  114. z-index: 1000;
  115. width: 50rpx;
  116. height: 50rpx;
  117. right: -15rpx;
  118. top: -15rpx;
  119. }
  120. .images_select_btn{
  121. text-align: center;
  122. padding: 35rpx 25rpx 20rpx 25rpx;
  123. }
  124. .images_select_btn .images_img{
  125. width: 192rpx;
  126. height: 192rpx;
  127. border-radius: 96rpx;
  128. margin-bottom: 10rpx;
  129. }
  130. .images_select_btn_desc{
  131. font-size: 20rpx;
  132. color: #999999;
  133. padding-bottom: 20rpx;
  134. text-align: center;
  135. }
  136. .images_select_btn_desc.border{
  137. border-bottom: 1rpx dashed rgb(74, 188, 206);
  138. }
  139. .button_view{
  140. padding: 60rpx 0 80px 0;
  141. width: 100%;
  142. height: 210rpx;
  143. background-color: #F1F1F1;
  144. }
  145. button{
  146. width: 640rpx;
  147. height: 72rpx;
  148. line-height: 72rpx;
  149. color: #FFFFFF;
  150. font-size: 38rpx;
  151. }
  152. .button_view_submit{
  153. margin-top: 10rpx;
  154. background-color: var(--themeColor);
  155. }
  156. .button_view_toWuYe{
  157. margin-top: 28rpx;
  158. background-color: #407FCC;
  159. }
  160. .pull-right{
  161. float: right;
  162. }
  163. .anonymity{
  164. width: 690rpx;
  165. height: 100rpx;
  166. line-height: 100rpx;
  167. padding: 0 20rpx;
  168. background-color: #FFFFFF;
  169. margin: 10px;
  170. border-radius: 20rpx;
  171. }
  172. .select_area{
  173. padding: 20rpx 30rpx 0 30rpx;
  174. width: 690rpx;
  175. height: auto;
  176. }
  177. .select_area.cur{
  178. padding: 0 30rpx 0 30rpx;
  179. width: 690rpx;
  180. height: auto;
  181. }
  182. .select_area .select_list{
  183. width: 690rpx;
  184. height: 80rpx;
  185. line-height: 80rpx;
  186. color: #5C5C5C;
  187. border-bottom: 1rpx solid #CCCCCC;
  188. font-size:32rpx;
  189. font-family:PingFang-SC-Medium;
  190. font-weight:500;
  191. }
  192. .select_area .select_list:last-child{
  193. border-bottom: 0;
  194. }
  195. .select_list_title{
  196. display: inline-block;
  197. width: 180rpx;
  198. /* padding-left: 30rpx; */
  199. }
  200. .select_list_title.cur{
  201. color: var(--themeColor);
  202. font-size: 34rpx;
  203. font-weight: bold;
  204. }
  205. .select_list_content{
  206. display: inline-block;
  207. width: 463rpx;
  208. text-align: right;
  209. padding-right: 15rpx;
  210. color: #999999;
  211. font-size: 30rpx;
  212. }
  213. .select_list_img{
  214. display: inline-block;
  215. width: 12rpx;
  216. height: 20rpx;
  217. }