logisticsInfo.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /* uni.scss */
  10. /* 页面左右间距 */
  11. /* 文字尺寸 */
  12. /* 文字尺寸 */
  13. /*文字颜色*/
  14. /* 边框颜色 */
  15. /* 图片加载中颜色 */
  16. /* 行为相关颜色 */
  17. /* 颜色变量 */
  18. /* 项目主色 */
  19. /* 文字基本颜色 */
  20. .red {
  21. color: #f60808;
  22. }
  23. .green {
  24. color: #15ab54;
  25. }
  26. .yellow {
  27. color: #f0ad4e;
  28. }
  29. .blue {
  30. color: #1f96f6;
  31. }
  32. .blank {
  33. color: #000;
  34. }
  35. .white {
  36. color: #fff;
  37. }
  38. .promain {
  39. color: #025b58;
  40. }
  41. .prosecond {
  42. color: #ed742f;
  43. }
  44. .textmain {
  45. color: #333;
  46. }
  47. .textgrey {
  48. color: #999;
  49. }
  50. .fuColor {
  51. color: #c6cadb;
  52. }
  53. .fontssm {
  54. font-size: 22rpx;
  55. }
  56. .fontsm {
  57. font-size: 24rpx;
  58. }
  59. .fontmid {
  60. font-size: 28rpx;
  61. }
  62. .fontbase {
  63. font-size: 30rpx;
  64. }
  65. /* 背景颜色 */
  66. /* 边框颜色 */
  67. /* input 样式 */
  68. .input-placeholder {
  69. color: #999999;
  70. }
  71. .navigator-hover {
  72. background: transparent !important;
  73. opacity: 1;
  74. }
  75. .uni-page-head-transparent .uni-page-head-btn {
  76. background: transparent !important;
  77. }
  78. uni-toast {
  79. z-index: 99999;
  80. }
  81. button {
  82. background: transparent;
  83. }
  84. button::after {
  85. border: 0;
  86. }
  87. page {
  88. background-color: #fff;
  89. padding: 20rpx 50rpx;
  90. }
  91. .shopshead {
  92. height: 216rpx;
  93. background: #ffffff;
  94. box-shadow: 2rpx 2rpx 30rpx 0rpx rgba(236, 236, 236, 0.5);
  95. }
  96. .shopshead image {
  97. width: 216rpx;
  98. height: 216rpx;
  99. margin-right: 30rpx;
  100. }
  101. .shopshead .shopsInfo {
  102. padding: 25rpx 0;
  103. flex: 1;
  104. height: 100%;
  105. align-items: flex-start;
  106. justify-content: space-between;
  107. }
  108. .shopshead .shopsInfo .elli {
  109. line-height: 40rpx;
  110. }
  111. .shopshead .shopsInfo .subtit {
  112. margin: 8rpx 0 53rpx;
  113. }
  114. .shopshead .shopsInfo .tips {
  115. padding: 2rpx 10rpx;
  116. text-align: center;
  117. border-radius: 19rpx;
  118. border: 1px solid #333333;
  119. font-size: 20rpx;
  120. }
  121. .list {
  122. padding: 80rpx 0;
  123. }
  124. .list .li {
  125. align-items: flex-start;
  126. }
  127. .list .li .time {
  128. width: 141rpx;
  129. padding: 0rpx 40rpx 45rpx 0;
  130. border-right: 1rpx solid #333;
  131. font-size: 24rpx;
  132. position: relative;
  133. }
  134. .list .li .time::before {
  135. content: '';
  136. position: absolute;
  137. top: 0;
  138. right: -7rpx;
  139. width: 14rpx;
  140. height: 14rpx;
  141. border-radius: 50%;
  142. background: #333333;
  143. }
  144. .list .li .add {
  145. flex: 1;
  146. margin-left: 55rpx;
  147. font-size: 26rpx;
  148. }
  149. .list .li:nth-last-of-type(1) .time {
  150. border-right: 0 solid #333;
  151. }