detail.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. /* components/voyages/Voyages.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: 50rpx;
  114. line-height: 50rpx;
  115. border-radius: 10rpx;
  116. padding: 0 20rpx;
  117. margin-right: 20rpx;
  118. color: #fff;
  119. }
  120. .line {
  121. width: 80%;
  122. margin: 30rpx auto;
  123. font-size: 28rpx;
  124. position: relative;
  125. }
  126. .next {
  127. text-align: center;
  128. color: #fff;
  129. background: #0094FE;
  130. border-radius: 10rpx;
  131. width: 200rpx;
  132. height: 50rpx;
  133. line-height: 50rpx;
  134. font-size: 26rpx;
  135. margin: 0 auto;
  136. }
  137. .delete {
  138. position: absolute;
  139. right: 10rpx;
  140. top: 14rpx;
  141. width: 52rpx;
  142. height: 52rpx;
  143. z-index: 5;
  144. }
  145. .mask {
  146. position: fixed;
  147. top: 0;
  148. right: 0;
  149. bottom: 0;
  150. left: 0;
  151. z-index: 200;
  152. }
  153. .mask>view {
  154. width: 80vw;
  155. height: 35vw;
  156. border-radius: 3vw;
  157. box-shadow: 2rpx 2rpx 10rpx 1rpx rgb(175, 172, 172);
  158. position: fixed;
  159. bottom: 400rpx;
  160. left: 10vw;
  161. background: #fff;
  162. }
  163. picker,
  164. input {
  165. border: 1rpx solid grey;
  166. padding: 0rpx 10rpx;
  167. }
  168. .upload {
  169. width: 60%;
  170. height: 100rpx;
  171. text-align: center;
  172. line-height: 100rpx;
  173. border: 1px solid grey;
  174. margin: 3vw auto;
  175. }
  176. .upload-bill-visable {
  177. position: fixed;
  178. top: 0;
  179. right: 0;
  180. bottom: 0;
  181. left: 0;
  182. background: #fff;
  183. }