orderdes.wxss 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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. .remind {
  28. margin-top: 36rpx;
  29. font-size: 26rpx;
  30. font-weight: 400;
  31. color: #0F0404;
  32. text-align: center;
  33. }
  34. .des-box {
  35. width: 564rpx;
  36. background: #FFFFFF;
  37. border-radius: 20rpx;
  38. margin: auto;
  39. margin-top: 30rpx;
  40. }
  41. .des-box .code-box {
  42. display: -webkit-box;
  43. display: -webkit-flex;
  44. display: flex;
  45. -webkit-box-orient: vertical;
  46. -webkit-box-direction: normal;
  47. -webkit-flex-direction: column;
  48. flex-direction: column;
  49. -webkit-box-align: center;
  50. -webkit-align-items: center;
  51. align-items: center;
  52. padding-bottom: 38rpx;
  53. }
  54. .des-box .code-box .code {
  55. margin-top: 43rpx;
  56. }
  57. .des-box .code-box .code text {
  58. font-size: 26rpx;
  59. font-weight: 400;
  60. color: #666666;
  61. margin-right: 20rpx;
  62. }
  63. .des-box .code-box .code text:nth-child(2) {
  64. color: #0F0404;
  65. }
  66. .des-box .code-box .qrcode {
  67. margin-top: 43rpx;
  68. width: 260rpx;
  69. height: 260rpx;
  70. }
  71. .des-box .code-box .qrcode-loading {
  72. margin-top: 43rpx;
  73. width: 100%;
  74. }
  75. .des-box .order-num {
  76. display: -webkit-box;
  77. display: -webkit-flex;
  78. display: flex;
  79. -webkit-box-pack: justify;
  80. -webkit-justify-content: space-between;
  81. justify-content: space-between;
  82. -webkit-box-align: center;
  83. -webkit-align-items: center;
  84. align-items: center;
  85. padding: 34rpx 31rpx;
  86. border-top: 1rpx dashed #D9D9D9;
  87. border-bottom: 1rpx dashed #D9D9D9;
  88. position: relative;
  89. }
  90. .des-box .order-num::after {
  91. content: '';
  92. width: 24rpx;
  93. height: 24rpx;
  94. border-radius: 50%;
  95. background-color: #F1F1F1;
  96. position: absolute;
  97. top: 0;
  98. left: 0;
  99. -webkit-transform: translate(-50%, -50%);
  100. transform: translate(-50%, -50%);
  101. }
  102. .des-box .order-num::before {
  103. content: '';
  104. width: 24rpx;
  105. height: 24rpx;
  106. border-radius: 50%;
  107. background-color: #F1F1F1;
  108. position: absolute;
  109. top: 0;
  110. right: 0;
  111. -webkit-transform: translate(50%, -50%);
  112. transform: translate(50%, -50%);
  113. }
  114. .des-box .order-num text:nth-child(1) {
  115. width: 60%;
  116. word-break: break-all;
  117. font-size: 26rpx;
  118. font-weight: 400;
  119. color: #666666;
  120. }
  121. .des-box .order-num text:nth-child(2) {
  122. padding: 10rpx;
  123. display: -webkit-box;
  124. display: -webkit-flex;
  125. display: flex;
  126. -webkit-box-pack: center;
  127. -webkit-justify-content: center;
  128. justify-content: center;
  129. -webkit-box-align: center;
  130. -webkit-align-items: center;
  131. align-items: center;
  132. background: #FFE5E5;
  133. border: 1rpx solid #E31818;
  134. border-radius: 20rpx;
  135. font-size: 20rpx;
  136. font-weight: 400;
  137. color: #E31818;
  138. }
  139. .des-box .des {
  140. padding: 45rpx 30rpx;
  141. border-bottom: 1rpx dashed #D9D9D9;
  142. display: -webkit-box;
  143. display: -webkit-flex;
  144. display: flex;
  145. -webkit-box-orient: vertical;
  146. -webkit-box-direction: normal;
  147. -webkit-flex-direction: column;
  148. flex-direction: column;
  149. }
  150. .des-box .des .film-name {
  151. font-size: 30rpx;
  152. font-weight: 400;
  153. color: #0F0404;
  154. }
  155. .des-box .des text {
  156. font-size: 26rpx;
  157. font-weight: 400;
  158. color: #666666;
  159. margin-right: 20rpx;
  160. white-space: nowrap;
  161. }
  162. .des-box .des .film-time text:nth-child(2) {
  163. color: #999999;
  164. }
  165. .des-box .des .film-address text:nth-child(2) {
  166. color: #999999;
  167. }
  168. .des-box .des .film-video text:nth-child(2) {
  169. color: #999999;
  170. }
  171. .des-box .des .film-seat {
  172. display: -webkit-box;
  173. display: -webkit-flex;
  174. display: flex;
  175. -webkit-box-pack: start;
  176. -webkit-justify-content: flex-start;
  177. justify-content: flex-start;
  178. -webkit-box-align: stretch;
  179. -webkit-align-items: stretch;
  180. align-items: stretch;
  181. margin-top: 10rpx;
  182. }
  183. .des-box .des .film-seat .seat-box {
  184. display: -webkit-box;
  185. display: -webkit-flex;
  186. display: flex;
  187. -webkit-flex-wrap: wrap;
  188. flex-wrap: wrap;
  189. }
  190. .des-box .des .film-seat .seat-box text {
  191. height: 40rpx;
  192. padding: 4rpx 15rpx;
  193. margin-bottom: 10rpx;
  194. background: #EBEBEB;
  195. border-radius: 4rpx;
  196. color: #999999;
  197. }
  198. .des-box .price {
  199. padding: 40rpx 30rpx;
  200. }
  201. .des-box .price text {
  202. font-size: 26rpx;
  203. font-weight: 400;
  204. color: #666666;
  205. margin-right: 20rpx;
  206. }
  207. .des-box .price text:nth-child(2) {
  208. color: #E31818;
  209. }