satisfactionQuestions.wxss 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* padding / margin */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .align_items_left.data-v-8c1ff8ec {
  28. align-items: flex-start;
  29. }
  30. .active_option.data-v-8c1ff8ec {
  31. background: #18ba89 !important;
  32. color: white !important;
  33. }
  34. .mask_form.data-v-8c1ff8ec {
  35. width: 100%;
  36. height: 100%;
  37. position: absolute;
  38. top: 0;
  39. left: 0;
  40. z-index: 100;
  41. }
  42. .container.data-v-8c1ff8ec {
  43. overflow: hidden;
  44. }
  45. .scroll_view.data-v-8c1ff8ec {
  46. height: 100%;
  47. }
  48. .top_bg_box.data-v-8c1ff8ec {
  49. position: relative;
  50. }
  51. .top_bg_box image.data-v-8c1ff8ec {
  52. width: 100%;
  53. height: 456rpx;
  54. position: absolute;
  55. top: 0;
  56. left: 0;
  57. z-index: 1;
  58. }
  59. .top_bg_box .ques_introduce.data-v-8c1ff8ec {
  60. padding: 46rpx 52rpx 0 52rpx;
  61. box-sizing: border-box;
  62. position: absolute;
  63. top: 0;
  64. left: 0;
  65. z-index: 2;
  66. }
  67. .top_bg_box .ques_introduce text.data-v-8c1ff8ec:nth-child(1) {
  68. font-size: 36rpx;
  69. font-weight: bold;
  70. color: white;
  71. margin-bottom: 20rpx;
  72. }
  73. .top_bg_box .ques_introduce text.data-v-8c1ff8ec:nth-child(2) {
  74. line-height: 45rpx;
  75. font-size: 28rpx;
  76. color: white;
  77. }
  78. .main_box.data-v-8c1ff8ec {
  79. padding: 470rpx 30rpx 190rpx 30rpx;
  80. box-sizing: border-box;
  81. position: relative;
  82. z-index: 2;
  83. }
  84. .ques_item_box.data-v-8c1ff8ec {
  85. padding: 30rpx;
  86. box-sizing: border-box;
  87. background: white;
  88. border-radius: 20rpx;
  89. margin-bottom: 32rpx;
  90. }
  91. .ques_item_box > .ques_title_box > text.data-v-8c1ff8ec {
  92. line-height: 50rpx;
  93. font-size: 36rpx;
  94. font-weight: bold;
  95. color: #1c1c1c;
  96. }
  97. .ques_item_box .mustQuest_tag.data-v-8c1ff8ec {
  98. color: #dc2828;
  99. }
  100. .ques_options.data-v-8c1ff8ec {
  101. margin-top: 34rpx;
  102. }
  103. .choice_item.data-v-8c1ff8ec {
  104. width: 100%;
  105. line-height: 80rpx;
  106. font-size: 30rpx;
  107. color: #686868;
  108. text-align: center;
  109. margin-bottom: 16rpx;
  110. border-radius: 10rpx;
  111. background: #f8f8fa;
  112. }
  113. .choice_item.data-v-8c1ff8ec:last-child {
  114. margin-bottom: 0;
  115. }
  116. .input_label.data-v-8c1ff8ec {
  117. line-height: 40rpx;
  118. font-size: 32rpx;
  119. color: #474747;
  120. }
  121. .textarea_box.data-v-8c1ff8ec {
  122. width: 100%;
  123. padding: 20rpx;
  124. box-sizing: border-box;
  125. border-radius: 10rpx;
  126. background: #f8f8fa;
  127. margin-top: 22rpx;
  128. }
  129. .textarea_box textarea.data-v-8c1ff8ec {
  130. width: 100%;
  131. }
  132. .matrix_textarea_box.data-v-8c1ff8ec {
  133. width: 70%;
  134. }
  135. .picker_box.data-v-8c1ff8ec {
  136. width: 100%;
  137. }
  138. .picker.data-v-8c1ff8ec {
  139. width: 100%;
  140. height: 80rpx;
  141. padding: 22rpx;
  142. box-sizing: border-box;
  143. background: #f9f9f9;
  144. border-radius: 20rpx;
  145. justify-content: space-between;
  146. }
  147. .picker text.data-v-8c1ff8ec {
  148. white-space: nowrap;
  149. font-size: 28rpx;
  150. color: #686868;
  151. }
  152. .picker image.data-v-8c1ff8ec {
  153. width: 12rpx;
  154. height: 24rpx;
  155. }
  156. .matrix_options.data-v-8c1ff8ec {
  157. width: 100%;
  158. margin-bottom: 34rpx;
  159. justify-content: space-between;
  160. }
  161. .matrix_options text.data-v-8c1ff8ec {
  162. font-size: 30rpx;
  163. color: #1c1c1c;
  164. text-align: center;
  165. padding: 20rpx;
  166. box-sizing: border-box;
  167. word-wrap: break-word;
  168. word-break: break-all;
  169. }
  170. .matrix_border.data-v-8c1ff8ec {
  171. border: 1px solid #f0f0f0;
  172. }
  173. .matrix_options_title.data-v-8c1ff8ec {
  174. background: #f5f5f5;
  175. }
  176. .matrix_icon_box.data-v-8c1ff8ec {
  177. width: 100%;
  178. align-items: flex-start;
  179. }
  180. .matrix_icon_box text.data-v-8c1ff8ec {
  181. font-size: 30rpx;
  182. color: #1c1c1c;
  183. margin-bottom: 36rpx;
  184. padding: 0 20rpx;
  185. box-sizing: border-box;
  186. }
  187. .matrix_icon_box image.data-v-8c1ff8ec {
  188. width: 40rpx;
  189. height: 40rpx;
  190. }
  191. .sub_title.data-v-8c1ff8ec {
  192. background: none;
  193. }
  194. .img_list.data-v-8c1ff8ec {
  195. width: 100%;
  196. margin-bottom: 24rpx;
  197. justify-content: flex-start;
  198. flex-wrap: wrap;
  199. }
  200. .img_list .item_img.data-v-8c1ff8ec {
  201. width: 100%;
  202. height: 100%;
  203. }
  204. .add_img.data-v-8c1ff8ec {
  205. width: 32%;
  206. height: 200rpx;
  207. margin-right: 2%;
  208. margin-bottom: 3%;
  209. position: relative;
  210. }
  211. .add_img.data-v-8c1ff8ec:nth-child(3n) {
  212. margin-right: 0;
  213. }
  214. .add_img_tips.data-v-8c1ff8ec {
  215. width: 100%;
  216. }
  217. .add_img_tips text.data-v-8c1ff8ec {
  218. font-size: 30rpx;
  219. color: #474747;
  220. }
  221. .cha_img.data-v-8c1ff8ec {
  222. width: 50rpx;
  223. height: 50rpx;
  224. position: absolute;
  225. top: -15rpx;
  226. right: -5rpx;
  227. }
  228. .options_item_box.data-v-8c1ff8ec {
  229. width: 100%;
  230. padding: 0 10rpx;
  231. box-sizing: border-box;
  232. margin-bottom: 20rpx;
  233. justify-content: space-between;
  234. }
  235. .options_item_box text.data-v-8c1ff8ec {
  236. font-size: 28rpx;
  237. color: #686868;
  238. word-wrap: break-word;
  239. word-break: break-all;
  240. }
  241. .options_item_box image.data-v-8c1ff8ec {
  242. width: 40rpx;
  243. height: 40rpx;
  244. margin: 20rpx 0;
  245. }
  246. .matrix_input_box.data-v-8c1ff8ec {
  247. width: 100%;
  248. }
  249. .matrix_input_box text.data-v-8c1ff8ec {
  250. width: 30%;
  251. white-space: nowrap;
  252. }
  253. .matrix_input_box input.data-v-8c1ff8ec {
  254. width: 70%;
  255. }
  256. .footer_box.data-v-8c1ff8ec {
  257. width: 100%;
  258. padding: 30rpx 30rpx 60rpx 30rpx;
  259. box-sizing: border-box;
  260. background: white;
  261. position: fixed;
  262. bottom: 0;
  263. left: 0;
  264. z-index: 10;
  265. }
  266. .footer_box text.data-v-8c1ff8ec {
  267. width: 100%;
  268. line-height: 88rpx;
  269. font-size: 36rpx;
  270. color: white;
  271. text-align: center;
  272. border-radius: 88rpx;
  273. background: #18ba89;
  274. display: block;
  275. }
  276. .modal_wrap.data-v-8c1ff8ec {
  277. width: 100%;
  278. height: 100%;
  279. background-color: rgba(0, 0, 0, 0.6);
  280. position: fixed;
  281. left: 0;
  282. top: 0;
  283. z-index: 99;
  284. display: flex;
  285. align-items: center;
  286. justify-content: center;
  287. }
  288. .modal_box.data-v-8c1ff8ec {
  289. width: 600rpx;
  290. max-height: 600rpx;
  291. background-color: #fff;
  292. border-radius: 5px;
  293. padding: 40rpx 40rpx 60rpx;
  294. }
  295. .modal_tit.data-v-8c1ff8ec {
  296. text-align: center;
  297. font-size: 30rpx;
  298. }
  299. .modal_box_b1.data-v-8c1ff8ec {
  300. background-color: #f2f2f2;
  301. border-radius: 5px;
  302. line-height: 80rpx;
  303. margin-top: 40rpx;
  304. /* padding-left: 40rpx; */
  305. text-align: center;
  306. }
  307. .modal_user_item.data-v-8c1ff8ec {
  308. background: #f2f2f2;
  309. padding: 30rpx;
  310. margin-top: 40rpx;
  311. position: relative;
  312. }
  313. .modal_user_right_img.data-v-8c1ff8ec {
  314. width: 12rpx;
  315. height: 21rpx;
  316. position: absolute;
  317. right: 30rpx;
  318. top: 0;
  319. bottom: 0;
  320. margin: auto 0;
  321. }
  322. .modal_t1.data-v-8c1ff8ec {
  323. font-weight: bold;
  324. display: inline-block;
  325. margin-right: 20rpx;
  326. font-size: 32rpx;
  327. }
  328. .modal_t3.data-v-8c1ff8ec {
  329. margin-top: 20rpx;
  330. }
  331. .modal_btn.data-v-8c1ff8ec {
  332. width: 46%;
  333. line-height: 75rpx;
  334. text-align: center;
  335. border-radius: 50rpx;
  336. margin-top: 40rpx;
  337. }
  338. .modal_btn1.data-v-8c1ff8ec {
  339. background: #aaaaaa;
  340. color: #fff;
  341. }
  342. .modal_btn2.data-v-8c1ff8ec {
  343. background: #61c88f;
  344. color: #fff;
  345. }
  346. .yjfl.data-v-8c1ff8ec {
  347. position: fixed;
  348. bottom: 340rpx;
  349. right: 0;
  350. z-index: 100;
  351. width: 160rpx;
  352. text-align: center;
  353. }
  354. .yjfl .title.data-v-8c1ff8ec {
  355. color: #fff;
  356. position: absolute;
  357. bottom: 10rpx;
  358. right: 4rpx;
  359. width: 100%;
  360. text-align: center;
  361. font-size: 24rpx;
  362. }