order-logistics.wxss 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  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. /* 图片尺寸 */
  23. /* Border Radius */
  24. /* 水平间距 */
  25. /* 垂直间距 */
  26. /* 透明度 */
  27. /* 文章场景相关 */
  28. page {
  29. height: auto;
  30. }
  31. .logistics-container {
  32. width: 100%;
  33. height: auto;
  34. float: left;
  35. background: #F7F7F7;
  36. border-top: 1px solid #F8F8F8;
  37. }
  38. .logistics-container .logistics-batch {
  39. display: flex;
  40. flex-direction: column;
  41. margin-bottom: 24rpx;
  42. }
  43. .logistics-container .order-item {
  44. width: 702rpx;
  45. padding: 24rpx 24rpx 12rpx 24rpx;
  46. height: auto;
  47. float: left;
  48. background: #FFFFFF;
  49. margin-bottom: 20rpx;
  50. }
  51. .logistics-container .order-item .goods-title {
  52. width: 100%;
  53. height: 48rpx;
  54. float: left;
  55. margin-bottom: 12rpx;
  56. }
  57. .logistics-container .order-item .goods-title .title-logo {
  58. width: 48rpx;
  59. height: 48rpx;
  60. float: left;
  61. border-radius: 8rpx;
  62. border: 1px solid #e1e1e1;
  63. }
  64. .logistics-container .order-item .goods-title .title-logo image {
  65. border-radius: 8rpx;
  66. width: 48rpx;
  67. height: 48rpx;
  68. }
  69. .logistics-container .order-item .goods-title .title-text {
  70. float: left;
  71. margin-left: 16rpx;
  72. font-size: 28rpx;
  73. color: #333333;
  74. text-align: left;
  75. line-height: 48rpx;
  76. font-weight: bold;
  77. }
  78. .logistics-container .order-item .goods-item {
  79. width: 100%;
  80. height: auto;
  81. border-bottom: 1px solid #e1e1e1;
  82. }
  83. .logistics-container .order-item .goods-item:last-child {
  84. border-bottom: none;
  85. }
  86. .logistics-container .order-item .goods-pros-t {
  87. display: flex;
  88. align-items: center;
  89. width: 100%;
  90. height: 180rpx;
  91. padding: 20rpx 0;
  92. }
  93. .logistics-container .order-item .goods-pros-t .pros-img {
  94. width: 180rpx;
  95. height: 180rpx;
  96. border-radius: 10rpx;
  97. margin: 0 26rpx 0 0;
  98. border: 1px solid #f3f3f3;
  99. }
  100. .logistics-container .order-item .goods-pros-t .pros-img image {
  101. width: 100%;
  102. height: 100%;
  103. border-radius: 10rpx;
  104. }
  105. .logistics-container .order-item .pros-product {
  106. width: 468rpx;
  107. height: 100%;
  108. line-height: 36rpx;
  109. font-size: 26rpx;
  110. position: relative;
  111. }
  112. .logistics-container .order-item .pros-product .producttitle {
  113. width: 100%;
  114. display: inline-block;
  115. height: auto;
  116. text-overflow: ellipsis;
  117. display: -webkit-box;
  118. word-break: break-all;
  119. -webkit-box-orient: vertical;
  120. -webkit-line-clamp: 2;
  121. overflow: hidden;
  122. margin-bottom: 28rpx;
  123. }
  124. .logistics-container .order-item .pros-product .productspec {
  125. height: 36rpx;
  126. color: #999999;
  127. line-height: 36rpx;
  128. font-size: 26rpx;
  129. }
  130. .logistics-container .order-item .pros-product .productspec .color {
  131. color: #333333;
  132. }
  133. .logistics-template {
  134. width: 702rpx;
  135. height: 100%;
  136. background: #FFFFFF;
  137. float: left;
  138. padding: 24rpx 24rpx 12rpx 24rpx;
  139. }
  140. .logistics-template .logistics-content {
  141. width: 100%;
  142. padding: 20rpx 0;
  143. height: auto;
  144. }
  145. .logistics-template .logistics-content .arrow-showMore {
  146. position: absolute;
  147. right: 24rpx;
  148. z-index: 99;
  149. }
  150. .logistics-template .logistics-content .logistics-top {
  151. width: 100%;
  152. height: 40rpx;
  153. line-height: 40rpx;
  154. font-size: 28rpx;
  155. color: #333333;
  156. text-align: left;
  157. padding-bottom: 24rpx;
  158. border-bottom: 1px solid #F8F8F8;
  159. }
  160. .logistics-template .logistics-content .logistics-top .name {
  161. float: left;
  162. font-weight: bold;
  163. }
  164. .logistics-template .logistics-content .logistics-top .icon-web_xiangxiazhankai {
  165. -webkit-transform: rotate(0deg);
  166. transform: rotate(0deg);
  167. -webkit-transform-origin: center center;
  168. transform-origin: center center;
  169. float: right;
  170. font-size: 32rpx;
  171. color: #000000;
  172. /* transition: transform 0.3s ease;*/
  173. transition-property: -webkit-transform;
  174. transition-property: transform;
  175. transition-property: transform, -webkit-transform;
  176. transition-duration: 0.3s;
  177. transition-timing-function: ease;
  178. }
  179. .logistics-template .logistics-content .logistics-top .icon-web_xiangxiazhankai-active {
  180. -webkit-transform: rotate(180deg);
  181. transform: rotate(180deg);
  182. }
  183. .logistics-template .logistics-content .logistics-warp {
  184. width: 100%;
  185. overflow: hidden;
  186. }
  187. .logistics-template .logistics-content .logistics-warp .table {
  188. height: 76rpx;
  189. line-height: 76rpx;
  190. font-size: 26rpx;
  191. color: #333333;
  192. text-align: left;
  193. }
  194. .logistics-template .logistics-content .logistics-warp .expressNumber {
  195. width: 250rpx;
  196. display: inline-block;
  197. }
  198. .logistics-template .logistics-content .logistics-main-top {
  199. width: 100%;
  200. height: auto;
  201. float: left;
  202. padding-top: 24rpx;
  203. }
  204. .logistics-template .logistics-content .logistics-main-top .main-top, .logistics-template .logistics-content .logistics-main-top .main-bot {
  205. font-size: 28rpx;
  206. color: #333333;
  207. line-height: 40rpx;
  208. margin: 4rpx 0;
  209. }
  210. .logistics-template .logistics-content .logistics-main-bot {
  211. width: 100%;
  212. height: auto;
  213. font-size: 24rpx;
  214. color: #333333;
  215. line-height: 56rpx;
  216. text-align: justify;
  217. float: left;
  218. }
  219. .logistics-template .logistics-content .logistics-animation {
  220. /* transition: transform 0.3s ease;*/
  221. transition-property: -webkit-transform;
  222. transition-property: transform;
  223. transition-property: transform, -webkit-transform;
  224. transition-duration: 0.3s;
  225. transition-timing-function: ease;
  226. }
  227. .logistics-template .logistics-content .logistics-warp__wrapper {
  228. display: flex;
  229. flex-direction: column;
  230. }
  231. .logistics-template .logistics-content .logistics-warp--hide {
  232. display: none;
  233. }
  234. .logistics-template .logistics-content .clipboard {
  235. width: 80rpx;
  236. height: 40rpx;
  237. background: #fff8fd;
  238. text-align: center;
  239. font-size: 22rpx;
  240. color: #ff457b;
  241. border-radius: 7rpx;
  242. line-height: 40rpx;
  243. display: inline-block;
  244. }