waybillPickUpDetail.css 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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. body {
  27. height: 100%;
  28. overflow: hidden;
  29. display: flex;
  30. flex-direction: column;
  31. }
  32. .viewport {
  33. background-color: #ffffff;
  34. height: 100%;
  35. position: relative;
  36. }
  37. .panel {
  38. margin-top: 0.625rem;
  39. }
  40. .panel .title {
  41. display: flex;
  42. justify-content: space-between;
  43. align-items: center;
  44. height: 2.8125rem;
  45. line-height: 1;
  46. padding: 0.9375rem 1.875rem 0.9375rem 0.1875rem;
  47. position: relative;
  48. }
  49. .panel .title uni-text {
  50. padding-left: 0.3125rem;
  51. font-size: 0.875rem;
  52. color: #333;
  53. font-weight: 600;
  54. border-left: 0.125rem solid #27ba9b;
  55. }
  56. .panel .title uni-navigator {
  57. font-size: 0.75rem;
  58. color: #666;
  59. }
  60. .panel .title .bln {
  61. border-left: 0;
  62. }
  63. .panel .label {
  64. height: auto;
  65. padding: 0.1875rem;
  66. }
  67. .arrow::after {
  68. position: absolute;
  69. top: 50%;
  70. right: 0.9375rem;
  71. content: "\e6c2";
  72. color: #ccc;
  73. font-family: "erabbit" !important;
  74. font-size: 1rem;
  75. transform: translateY(-50%);
  76. }
  77. /* 商品详情 */
  78. .detail {
  79. padding-left: 0.625rem;
  80. padding-bottom: 2.4375rem;
  81. margin-bottom: 0.625rem;
  82. }
  83. .detail .content {
  84. margin-left: -0.625rem;
  85. }
  86. .detail .content .image {
  87. width: 100%;
  88. }
  89. .detail .properties {
  90. padding: 0 0.625rem;
  91. font-size: 0.9375rem;
  92. }
  93. .detail .properties .item {
  94. display: flex;
  95. flex-direction: column;
  96. line-height: 2;
  97. margin: 0.3125rem;
  98. overflow: hidden;
  99. font-size: 0.8125rem;
  100. border-radius: 0.625rem;
  101. box-sizing: border-box;
  102. background-color: #fff;
  103. color: #333;
  104. box-shadow: 0 0 0.3125rem rgba(200, 200, 200, 0.5);
  105. margin-bottom: 0.625rem;
  106. padding-bottom: 0.3125rem;
  107. }
  108. .detail .properties .item .order_no_state {
  109. display: flex;
  110. flex-direction: row;
  111. justify-content: space-between;
  112. align-items: center;
  113. background-color: #eeeeee;
  114. padding: 0.625rem;
  115. }
  116. .detail .properties .item .order_no_state .order_state {
  117. font-size: 0.75rem;
  118. }
  119. .detail .properties .item .order_no_state .order_state .state-2 {
  120. color: #2979ff;
  121. }
  122. .detail .properties .item .order_no_state .order_state .state-3 {
  123. color: #1c67da;
  124. }
  125. .detail .properties .item .order_no_state .order_state .state-4 {
  126. color: #f3a73f;
  127. }
  128. .detail .properties .item .order_no_state .order_state .state-5 {
  129. color: #18bc37;
  130. }
  131. .detail .properties .item .order_no_state .order_state .state-6 {
  132. color: #f3a73f;
  133. }
  134. .detail .properties .item .order_no_state .order_state .state-7 {
  135. color: #01b075;
  136. }
  137. .detail .properties .item .info {
  138. padding: 0.3125rem 0.625rem;
  139. }
  140. .detail .properties .item .goods {
  141. margin: 0.3125rem 0.625rem;
  142. padding: 0.3125rem;
  143. border: 0.03125rem solid #eaeaea;
  144. border-radius: 0.3125rem;
  145. }
  146. /* 底部联系客户 */
  147. .contact-client {
  148. position: fixed;
  149. left: 0;
  150. right: 0;
  151. bottom: calc((var(--window-bottom)));
  152. z-index: 1;
  153. background-color: #fff;
  154. height: 2.25rem;
  155. border-top: 0.03125rem solid #eaeaea;
  156. display: flex;
  157. justify-content: space-between;
  158. align-items: center;
  159. box-sizing: content-box;
  160. }
  161. .contact-client .buttons {
  162. display: flex;
  163. background-color: #27ba9b;
  164. flex: 1;
  165. justify-content: center;
  166. }
  167. .contact-client .buttons > uni-view {
  168. width: 100%;
  169. text-align: center;
  170. line-height: 2.25rem;
  171. font-size: 0.8125rem;
  172. color: #fff;
  173. }