work-order.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. /* pagesPublic/pages/work-order/work-order.wxss */
  2. Page {
  3. /* 全局样式 */
  4. background: #FFFFFF;
  5. height: 100%;
  6. /* position: fixed; */
  7. }
  8. .fontColorBox,
  9. .fontColorBox1 {
  10. color: #508FF4;
  11. font-size: 34rpx;
  12. }
  13. .navBox {
  14. /* 顶部tab盒子样式 */
  15. width: 100%;
  16. height: 94rpx;
  17. background: white;
  18. display: flex;
  19. align-items: flex-end;
  20. justify-content: center;
  21. border-bottom: solid #C8C8C8 1rpx;
  22. }
  23. .navBox view:last-child {
  24. /* 最后一个tab标题的样式 */
  25. padding-left: 20%;
  26. }
  27. .titleBox {
  28. /* 未选中文字的样式 */
  29. color: #333333;
  30. font-size: 32rpx;
  31. display: flex;
  32. flex-direction: column;
  33. align-items: center;
  34. }
  35. .lineBox,
  36. .notLineBox {
  37. /* 选中及未选中底线共同样式 */
  38. width: 215rpx;
  39. height: 6rpx;
  40. margin-top: 21rpx;
  41. }
  42. .lineBox {
  43. /* 选中底线样式 */
  44. background: #508FF4;
  45. border-radius: 3rpx;
  46. }
  47. .notLineBox {
  48. /* 未选中底线样式 */
  49. background: transparent;
  50. }
  51. .swiperBox {
  52. height: 100vh;
  53. }
  54. .swiperTtemBox {
  55. /* 底部内容样式 */
  56. height: 100%;
  57. overflow: scroll;
  58. background: #FFFFFF;
  59. color: #333333;
  60. }
  61. .formBox {
  62. margin: 10rpx 30rpx;
  63. font-size: 28rpx;
  64. display: flex;
  65. flex-direction: column;
  66. justify-content: center;
  67. align-items: flex-start;
  68. }
  69. .form-item {
  70. display: flex;
  71. flex-direction: row;
  72. align-items: center;
  73. height: 100rpx;
  74. /* margin-top: 28rpx; */
  75. width: 100%;
  76. }
  77. .form-item-picker {
  78. width: 67%;
  79. }
  80. .form-item-label {
  81. width: 210rpx;
  82. color: #333333;
  83. font-size: 30rpx;
  84. font-weight: bold;
  85. text-align: right;
  86. }
  87. .form-input {
  88. font-size: 30rpx;
  89. border-bottom: solid 1rpx #99999980;
  90. width: 68%;
  91. height: 70rpx;
  92. }
  93. .form-icon {
  94. width: 13rpx;
  95. height: 24rpx;
  96. background-size: 100% 100%;
  97. }
  98. .form-photo {
  99. width: 44rpx;
  100. height: 40rpx;
  101. padding: 35rpx;
  102. border-radius: 15rpx;
  103. background: #E9E9E9;
  104. }
  105. .form-image {
  106. width: 112rpx;
  107. height: 112rpx;
  108. margin-left: 10rpx;
  109. border-radius: 10rpx;
  110. }
  111. .form-button {
  112. width: 100%;
  113. height: 97rpx;
  114. position: absolute;
  115. bottom: 97rpx;
  116. background: #508FF4;
  117. color: #FFFFFF;
  118. font-size: 28rpx;
  119. text-align: center;
  120. padding: 0 !important;
  121. margin: 0 !important;
  122. line-height: 97rpx;
  123. border-radius: 0;
  124. }
  125. .viewBox {
  126. margin-bottom: 100rpx;
  127. }
  128. .item {
  129. margin: 0 30rpx;
  130. border-bottom: solid 1rpx #C8C8C880;
  131. padding-bottom: 36rpx;
  132. }
  133. .item-status {
  134. width: 146rpx;
  135. height: 146rpx;
  136. position: absolute;
  137. right: -20rpx;
  138. margin-top: -48rpx;
  139. /* top: -20rpx; */
  140. }
  141. .item-row {
  142. margin-top: 30rpx;
  143. display: flex;
  144. flex-direction: row;
  145. align-items: center;
  146. }
  147. .item-label {
  148. font-size: 28rpx;
  149. color: #999999;
  150. }
  151. .item-value {
  152. font-size: 28rpx;
  153. color: #333333;
  154. }
  155. .item-imgbox {
  156. align-items: flex-start;
  157. }
  158. .item-image {
  159. width: 129rpx;
  160. height: 129rpx;
  161. border-radius: 10rpx;
  162. background: #E9E9E9;
  163. }