storeOrderDelivery.wxss 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  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. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. /*自定义主题色 */
  27. .top-cont {
  28. width: 100%;
  29. height: 336rpx;
  30. position: relative;
  31. }
  32. .top-cont .bg {
  33. width: 100%;
  34. height: 100%;
  35. position: absolute;
  36. top: 0;
  37. left: 0;
  38. z-index: 1;
  39. }
  40. .top-cont .top-inner {
  41. width: 100%;
  42. height: 100%;
  43. position: absolute;
  44. top: 0;
  45. left: 0;
  46. z-index: 2;
  47. }
  48. .top-cont .top-inner .back-box {
  49. height: 88rpx;
  50. padding-left: 22rpx;
  51. display: flex;
  52. align-items: center;
  53. justify-content: space-between;
  54. padding: 0 20rpx;
  55. }
  56. .top-cont .top-inner .back-box image {
  57. width: 40rpx;
  58. height: 40rpx;
  59. }
  60. .top-cont .top-inner .back-box .title {
  61. font-size: 36rpx;
  62. font-family: PingFang SC;
  63. font-weight: 500;
  64. color: #FFFFFF;
  65. }
  66. .top-cont .top-inner .waybill-number {
  67. padding: 0 20rpx;
  68. margin-top: 66rpx;
  69. }
  70. .top-cont .top-inner .waybill-number .inner {
  71. box-sizing: border-box;
  72. height: 150rpx;
  73. background: #FFFFFF;
  74. border-radius: 16rpx;
  75. padding: 40rpx 30rpx;
  76. display: flex;
  77. flex-direction: column;
  78. justify-content: space-between;
  79. }
  80. .top-cont .top-inner .waybill-number .inner .num-box {
  81. display: flex;
  82. align-items: center;
  83. }
  84. .top-cont .top-inner .waybill-number .inner .num-box .text {
  85. font-size: 28rpx;
  86. font-family: PingFang SC;
  87. font-weight: 500;
  88. color: #111111;
  89. line-height: 1;
  90. margin-right: 30rpx;
  91. }
  92. .top-cont .top-inner .waybill-number .inner .num-box .text:last-child {
  93. margin-right: 20rpx;
  94. }
  95. .top-cont .top-inner .waybill-number .inner .num-box .copy {
  96. width: 58rpx;
  97. height: 32rpx;
  98. line-height: 32rpx;
  99. text-align: center;
  100. font-size: 22rpx;
  101. font-family: PingFang SC;
  102. font-weight: 500;
  103. color: #222222;
  104. background: #F5F5F5;
  105. border-radius: 4rpx;
  106. }
  107. .top-cont .top-inner .waybill-number .inner .kf-box {
  108. display: flex;
  109. align-items: center;
  110. }
  111. .top-cont .top-inner .waybill-number .inner .kf-box .text {
  112. font-size: 26rpx;
  113. font-family: PingFang SC;
  114. font-weight: 500;
  115. color: #999999;
  116. line-height: 1;
  117. margin-right: 20rpx;
  118. }
  119. .content {
  120. margin: 20rpx 0rpx;
  121. padding: 0 20rpx;
  122. }
  123. .content .refund-steps {
  124. background: #FFFFFF;
  125. border-radius: 16rpx;
  126. padding: 40rpx 44rpx;
  127. }
  128. .content .refund-steps .steps {
  129. padding-left: 40rpx;
  130. padding-bottom: 56rpx;
  131. position: relative;
  132. }
  133. .content .refund-steps .steps::after {
  134. content: "";
  135. width: 4rpx;
  136. height: 100%;
  137. background: #F1F1F1;
  138. position: absolute;
  139. left: 0;
  140. top: 20rpx;
  141. }
  142. .content .refund-steps .steps:last-child {
  143. padding-bottom: 0;
  144. }
  145. .content .refund-steps .steps:last-child::after {
  146. display: none;
  147. }
  148. .content .refund-steps .steps .title {
  149. position: relative;
  150. }
  151. .content .refund-steps .steps .title .text {
  152. font-size: 30rpx;
  153. font-family: PingFang SC;
  154. font-weight: 500;
  155. color: #666666;
  156. line-height: 38rpx;
  157. }
  158. .content .refund-steps .steps .title .text.black-text {
  159. color: #111111;
  160. font-weight: bold;
  161. }
  162. .content .refund-steps .steps .title .text.gray-bold {
  163. font-weight: bold;
  164. color: #666666;
  165. }
  166. .content .refund-steps .steps .title .dot {
  167. width: 16rpx;
  168. height: 16rpx;
  169. background: #EBEBEB;
  170. border-radius: 50%;
  171. position: absolute;
  172. left: -46rpx;
  173. top: 11rpx;
  174. z-index: 10;
  175. }
  176. .content .refund-steps .steps .title .dot.active {
  177. background-color: #0bb3f2;
  178. }
  179. .content .refund-steps .steps .title .img {
  180. width: 40rpx;
  181. height: 40rpx;
  182. position: absolute;
  183. left: -57rpx;
  184. top: 2rpx;
  185. z-index: 10;
  186. }
  187. .content .refund-steps .steps .desc-text {
  188. font-size: 28rpx;
  189. font-family: PingFang SC;
  190. font-weight: 500;
  191. color: #666666;
  192. line-height: 1.6;
  193. margin-top: 10rpx;
  194. }
  195. .content .refund-steps .steps .desc-text .phone {
  196. font-size: 28rpx;
  197. font-family: PingFang SC;
  198. font-weight: 500;
  199. color: #0bb3f2;
  200. line-height: 1.6;
  201. }
  202. .content .refund-steps .steps .time {
  203. font-size: 24rpx;
  204. font-family: Gilroy;
  205. font-weight: 500;
  206. color: #999999;
  207. margin-top: 10rpx;
  208. }