myLab.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. /* pages/voyageManage/myBills/myLab.wxss */
  2. page {
  3. background: #fff;
  4. }
  5. .df {
  6. display: flex;
  7. }
  8. .jcsb {
  9. justify-content: space-between;
  10. }
  11. .jcc {
  12. justify-content: center;
  13. }
  14. .jcfe {
  15. justify-content: flex-end;
  16. }
  17. .jcsa {
  18. justify-content: space-around;
  19. }
  20. .aic {
  21. align-items: center;
  22. }
  23. .search {
  24. border: 1rpx solid grey;
  25. width: 80%;
  26. background: #fff;
  27. }
  28. .tabs {
  29. width: 100%;
  30. height: 100rpx;
  31. background: #fff;
  32. box-shadow: rgb(209, 206, 206) 5rpx 5rpx 10rpx;
  33. border-bottom: 2rpx solid grey;
  34. }
  35. .tabsview {
  36. width: 130rpx;
  37. height: 50rpx;
  38. font-size: 28rpx;
  39. text-align: center;
  40. color: #333;
  41. }
  42. .line {
  43. display: flex;
  44. justify-content: space-between;
  45. align-items: center;
  46. margin-bottom: 30rpx;
  47. color: #333;
  48. }
  49. .line-item {
  50. display: flex;
  51. align-items: center;
  52. justify-content: space-between;
  53. width: 45%;
  54. }
  55. .line-full-item {
  56. width: 100%;
  57. display: flex;
  58. align-items: center;
  59. }
  60. .line-full-title {
  61. width: 25%;
  62. }
  63. .line-title,
  64. .line-text {
  65. width: 50%;
  66. }
  67. .line-title,
  68. .line-full-title {
  69. color: #444;
  70. }
  71. .type2 .line-full-title {
  72. width: 50%;
  73. }
  74. .ship-discharge-list>view:first-child {
  75. font-size: 26rpx;
  76. }
  77. .ship-discharge-list>view>view {
  78. width: 160rpx;
  79. text-align: center;
  80. color: #444;
  81. }
  82. .truck-load-list>view:first-child {
  83. font-size: 26rpx;
  84. }
  85. .truck-load-list>view>view {
  86. width: 160rpx;
  87. text-align: center;
  88. color: #444;
  89. }
  90. .bottom-text {
  91. text-align: center;
  92. padding-top: 30rpx;
  93. padding-bottom: 50rpx;
  94. font-size: 22rpx;
  95. color: #777;
  96. }
  97. .port-btns {
  98. width: 180rpx !important;
  99. height: 70rpx;
  100. line-height: 70rpx;
  101. text-align: center;
  102. margin-bottom: 20rpx;
  103. border-radius: 10rpx;
  104. border: 1rpx solid grey;
  105. display: inline-block;
  106. }
  107. .current-port-btn {
  108. color: #fff;
  109. background: #008ebd;
  110. border: none;
  111. }
  112. .voyage-btn {
  113. height: 70rpx;
  114. line-height: 70rpx;
  115. border-radius: 10rpx;
  116. padding: 0 30rpx;
  117. margin-right: 20rpx;
  118. color: #fff;
  119. font-size: 30rpx;
  120. }
  121. .line {
  122. width: 80%;
  123. margin: 30rpx auto;
  124. font-size: 28rpx;
  125. position: relative;
  126. }
  127. .next {
  128. text-align: center;
  129. color: #fff;
  130. background: #0094FE;
  131. border-radius: 10rpx;
  132. margin: 20rpx auto;
  133. height: 70rpx;
  134. line-height: 70rpx;
  135. border-radius: 10rpx;
  136. padding: 0 30rpx;
  137. font-size: 30rpx;
  138. }
  139. .delete {
  140. position: absolute;
  141. right: 10rpx;
  142. top: 14rpx;
  143. width: 52rpx;
  144. height: 52rpx;
  145. z-index: 5;
  146. }
  147. .mask {
  148. position: absolute;
  149. top: 0;
  150. right: 0;
  151. bottom: 0;
  152. left: 0;
  153. z-index: 5;
  154. }
  155. .mask>view {
  156. width: 80vw;
  157. height: 35vw;
  158. border-radius: 3vw;
  159. box-shadow: 2rpx 2rpx 10rpx 1rpx rgb(175, 172, 172);
  160. position: fixed;
  161. bottom: 400rpx;
  162. left: 10vw;
  163. background: #fff;
  164. }
  165. picker,
  166. .d-input {
  167. border: 1rpx solid grey;
  168. padding: 0rpx 10rpx;
  169. }
  170. .upload {
  171. width: 60%;
  172. height: 100rpx;
  173. text-align: center;
  174. line-height: 100rpx;
  175. border: 1px solid grey;
  176. margin: 3vw auto;
  177. }
  178. .upload-bill-visable {
  179. position: fixed;
  180. top: 0;
  181. right: 0;
  182. bottom: 0;
  183. left: 0;
  184. background: #fff;
  185. }
  186. .col-1 {
  187. width: 29vw;
  188. }
  189. .col-2 {
  190. width: 29vw;
  191. }
  192. .col-3 {
  193. width: 15vw;
  194. }
  195. .col-4 {
  196. width: 15vw;
  197. }
  198. .list {
  199. padding: 20rpx;
  200. font-size: 28rpx;
  201. }