sharePage.wxss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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. page {
  98. box-sizing: border-box;
  99. }
  100. .item {
  101. padding: 0 20rpx;
  102. width: 50%;
  103. }
  104. .item>view {
  105. width: 90rpx;
  106. text-align: justify;
  107. text-align-last: justify;
  108. margin-right: 16rpx;
  109. }
  110. .card {
  111. padding: 20rpx 30rpx;
  112. border: 2rpx solid #ddd;
  113. width: 95%;
  114. margin: 20rpx auto;
  115. border-radius: 20rpx;
  116. box-shadow: 3rpx 1rpx 5px #ddd;
  117. }
  118. .circle {
  119. width: 20rpx;
  120. height: 20rpx;
  121. border-radius: 50%;
  122. background: #999;
  123. position: relative;
  124. left: 4rpx;
  125. margin-right: 38rpx;
  126. z-index: 20;
  127. }
  128. .greyback {
  129. background: #999 !important;
  130. }
  131. .title-circle {
  132. width: 28rpx;
  133. height: 28rpx;
  134. border-radius: 50%;
  135. background: #999;
  136. position: relative;
  137. z-index: 20;
  138. }
  139. .in-text {
  140. font-size: 22rpx;
  141. color: #666;
  142. }
  143. .long-line {
  144. border: 2rpx solid #ddd;
  145. height: calc(100vh - 800rpx);
  146. position: absolute;
  147. left: 62rpx;
  148. top: 24rpx;
  149. z-index: 0;
  150. }
  151. .card-title {
  152. font-size: 26rpx;
  153. margin-bottom: 8rpx;
  154. line-height: 30rpx;
  155. }
  156. .transInfos {
  157. background: rgb(197, 56, 56);
  158. }