order_detail.wxss 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .details.data-v-75db3b88 {
  28. position: relative;
  29. height: 100vh;
  30. overflow: hidden;
  31. }
  32. .details .content.data-v-75db3b88 {
  33. height: 100vh;
  34. overflow-y: scroll;
  35. }
  36. .details .content .box1.data-v-75db3b88 {
  37. display: flex;
  38. align-items: center;
  39. justify-content: space-between;
  40. padding: 30rpx;
  41. border-bottom: 20rpx solid #fcfcfc;
  42. }
  43. .details .content .box1 .imgs.data-v-75db3b88 {
  44. border-radius: 10rpx;
  45. height: 180rpx;
  46. overflow: hidden;
  47. }
  48. .details .content .box1 .imgs image.data-v-75db3b88 {
  49. width: 280rpx;
  50. height: 180rpx;
  51. }
  52. .details .content .box1 .box1cont.data-v-75db3b88 {
  53. flex: 1;
  54. padding-left: 30rpx;
  55. }
  56. .details .content .box1 .box1cont .title.data-v-75db3b88 {
  57. font-size: 36rpx;
  58. font-weight: bold;
  59. }
  60. .details .content .box1 .box1cont .moneytime.data-v-75db3b88 {
  61. display: flex;
  62. justify-content: space-between;
  63. padding-top: 40rpx;
  64. }
  65. .details .content .box1 .box1cont .moneytime .money.data-v-75db3b88 {
  66. font-size: 32rpx;
  67. color: #ff0000;
  68. font-weight: bold;
  69. }
  70. .details .content .box1 .box1cont .moneytime .time.data-v-75db3b88 {
  71. color: #333;
  72. font-size: 26rpx;
  73. }
  74. .details .content .orderinfo.data-v-75db3b88 {
  75. border-bottom: 20rpx solid #fcfcfc;
  76. padding: 30rpx;
  77. }
  78. .details .content .orderinfo .orderA.data-v-75db3b88 {
  79. display: flex;
  80. justify-content: space-around;
  81. align-items: center;
  82. padding-top: 30rpx;
  83. }
  84. .details .content .orderinfo .orderA view.data-v-75db3b88 {
  85. font-size: 32rpx;
  86. }
  87. .details .content .orderinfo .orderA view image.data-v-75db3b88 {
  88. width: 80rpx;
  89. height: 80rpx;
  90. margin-right: 30rpx;
  91. }
  92. .details .content .orderinfo .title.data-v-75db3b88 {
  93. font-size: 34rpx;
  94. font-weight: bold;
  95. margin-bottom: 10rpx;
  96. }
  97. .details .content .orderinfo .title.data-v-75db3b88::before {
  98. content: '';
  99. display: inline-block;
  100. width: 0;
  101. height: 40rpx;
  102. border-left: 8rpx solid #00cfe2;
  103. margin-right: 20rpx;
  104. vertical-align: text-bottom;
  105. }
  106. .details .content .orderinfo .conts_price.data-v-75db3b88 {
  107. display: flex;
  108. justify-content: space-between;
  109. }
  110. .details .content .orderinfo .cont.data-v-75db3b88 {
  111. font-weight: bold;
  112. font-size: 28rpx;
  113. line-height: 60rpx;
  114. }
  115. .details .content .orderinfo .cont text.data-v-75db3b88 {
  116. color: #dddbdb;
  117. padding-left: 20rpx;
  118. font-size: 32rpx;
  119. }
  120. .details .content .orderinfo .items.data-v-75db3b88 {
  121. border-bottom: 1px solid #f9f9f9;
  122. padding: 20rpx 0;
  123. }
  124. .details .content .orderinfo .conts.data-v-75db3b88 {
  125. font-size: 36rpx;
  126. color: #ff0000;
  127. font-weight: bold;
  128. padding: 30rpx 0;
  129. text-align: right;
  130. }
  131. .details .btnbox.data-v-75db3b88 {
  132. position: absolute;
  133. bottom: 0;
  134. left: 0;
  135. width: 100%;
  136. height: 120rpx;
  137. background-color: #fff;
  138. border-top: 1px solid #fdfdfd;
  139. display: flex;
  140. justify-content: space-around;
  141. }
  142. .details .btnbox view.data-v-75db3b88 {
  143. font-size: 30rpx;
  144. text-align: center;
  145. background-color: #2ebdd9;
  146. color: #fff;
  147. width: 47%;
  148. height: 50%;
  149. padding: 15rpx 0;
  150. border-radius: 50px;
  151. }
  152. .details .recording.data-v-75db3b88 {
  153. background-color: rgba(0, 0, 0, 0.5);
  154. width: 100%;
  155. height: 100%;
  156. position: fixed;
  157. top: 0;
  158. left: 0;
  159. }
  160. .details .recording .recording_content.data-v-75db3b88 {
  161. width: 100%;
  162. height: 60%;
  163. position: absolute;
  164. bottom: 0;
  165. background-color: #fff;
  166. }
  167. .details .recording .recording_content .btn.data-v-75db3b88 {
  168. display: flex;
  169. justify-content: space-between;
  170. padding: 20rpx 30rpx;
  171. }
  172. .details .recording .recording_content .time.data-v-75db3b88 {
  173. font-size: 70rpx;
  174. font-weight: bold;
  175. text-align: center;
  176. padding: 200rpx 0;
  177. }
  178. .details .recording .recording_content .Playparse.data-v-75db3b88 {
  179. text-align: center;
  180. }
  181. .details .recording .recording_content .Playparse image.data-v-75db3b88 {
  182. width: 80rpx;
  183. height: 80rpx;
  184. }
  185. .details .dialog.data-v-75db3b88 {
  186. position: fixed;
  187. top: 0;
  188. left: 0;
  189. width: 100%;
  190. height: 100%;
  191. background: rgba(0, 0, 0, 0.5);
  192. z-index: 10;
  193. transition: -webkit-transform 0.3s ease-out;
  194. transition: transform 0.3s ease-out;
  195. transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  196. }
  197. .details .dialog .closebox.data-v-75db3b88 {
  198. height: calc(50vh - 60rpx);
  199. width: 100%;
  200. }
  201. .details .dialog .now.data-v-75db3b88 {
  202. position: absolute;
  203. bottom: 0;
  204. left: 0;
  205. width: 100%;
  206. text-align: center;
  207. height: 100rpx;
  208. background-color: #f7f8fa;
  209. padding-top: 10rpx;
  210. }
  211. .details .dialog .now text.data-v-75db3b88 {
  212. display: inline-block;
  213. height: 80rpx;
  214. line-height: 80rpx;
  215. width: 90%;
  216. background-color: #2cb8d4;
  217. color: #fff;
  218. border-radius: 50rpx;
  219. }
  220. .details .dialog .dialog_content.data-v-75db3b88 {
  221. background-color: #fff;
  222. position: absolute;
  223. bottom: 0;
  224. width: calc(100% - 60rpx);
  225. height: 50vh;
  226. overflow-y: scroll;
  227. border-top-left-radius: 20rpx;
  228. border-top-right-radius: 20rpx;
  229. padding: 30rpx;
  230. background-color: #f3f3f3;
  231. padding-bottom: 100rpx;
  232. }
  233. .details .dialog .dialog_content .lists.data-v-75db3b88 {
  234. background-color: #fff;
  235. margin-bottom: 20rpx;
  236. display: flex;
  237. justify-content: space-between;
  238. padding: 20rpx 10rpx;
  239. border-radius: 10rpx;
  240. }
  241. .details .dialog .dialog_content .lists .imgs.data-v-75db3b88 {
  242. width: 240rpx;
  243. height: 160rpx;
  244. border-radius: 20rpx;
  245. overflow: hidden;
  246. }
  247. .details .dialog .dialog_content .lists .imgs image.data-v-75db3b88 {
  248. width: 100%;
  249. height: 100%;
  250. }
  251. .details .dialog .dialog_content .lists .right.data-v-75db3b88 {
  252. flex: 1;
  253. padding-left: 30rpx;
  254. }
  255. .details .dialog .dialog_content .lists .right .list_title.data-v-75db3b88 {
  256. display: flex;
  257. justify-content: space-between;
  258. align-items: center;
  259. }
  260. .details .dialog .dialog_content .lists .right .list_title .title.data-v-75db3b88 {
  261. font-size: 34rpx;
  262. font-weight: bold;
  263. }
  264. .details .dialog .dialog_content .lists .right .list_title .time.data-v-75db3b88 {
  265. font-size: 24rpx;
  266. }
  267. .details .dialog .dialog_content .lists .right .price.data-v-75db3b88 {
  268. padding-top: 50rpx;
  269. display: flex;
  270. justify-content: space-between;
  271. }
  272. .details .dialog .dialog_content .lists .right .price .money.data-v-75db3b88 {
  273. font-size: 42rpx;
  274. color: #e61b1b;
  275. font-weight: bold;
  276. }
  277. .details .dialog .dialog_content .lists .right .price .counter.data-v-75db3b88 {
  278. display: flex;
  279. }
  280. .details .dialog .dialog_content .lists .right .price .counter view.data-v-75db3b88 {
  281. width: 60rpx;
  282. height: 60rpx;
  283. line-height: 60rpx;
  284. background-color: #f7f8fa;
  285. text-align: center;
  286. border-radius: 60rpx;
  287. font-size: 50rpx;
  288. }
  289. .details .dialog .dialog_content .lists .right .price .counter text.data-v-75db3b88 {
  290. width: 100rpx;
  291. text-align: center;
  292. line-height: 60rpx;
  293. }