work-order.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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. margin-top: 28rpx;
  74. width: 100%;
  75. }
  76. .form-item-picker {
  77. width: 67%;
  78. }
  79. .form-item-label {
  80. width: 210rpx;
  81. text-align: right;
  82. }
  83. .form-input {
  84. border-bottom: solid 1rpx #99999980;
  85. width: 68%;
  86. }
  87. .form-icon {
  88. width: 13rpx;
  89. height: 24rpx;
  90. background-size: 100% 100%;
  91. }
  92. .form-photo {
  93. width: 44rpx;
  94. height: 40rpx;
  95. padding: 35rpx;
  96. background: #E9E9E9;
  97. }
  98. .form-image {
  99. width: 112rpx;
  100. height: 112rpx;
  101. margin-left: 10rpx;
  102. }
  103. .form-button {
  104. width: 100%;
  105. height: 97rpx;
  106. position: absolute;
  107. bottom: 97rpx;
  108. background: #508FF4;
  109. color: #FFFFFF;
  110. font-size: 28rpx;
  111. text-align: center;
  112. padding: 0 !important;
  113. margin: 0 !important;
  114. line-height: 97rpx;
  115. border-radius: 0;
  116. }
  117. .viewBox {
  118. margin-bottom: 100rpx;
  119. }
  120. .item {
  121. margin: 0 30rpx;
  122. border-bottom: solid 1rpx #C8C8C8;
  123. padding-bottom: 16rpx;
  124. }
  125. .item-status {
  126. width: 146rpx;
  127. height: 146rpx;
  128. position: absolute;
  129. right: -20rpx;
  130. margin-top: -48rpx;
  131. /* top: -20rpx; */
  132. }
  133. .item-row {
  134. margin-top: 30rpx;
  135. display: flex;
  136. flex-direction: row;
  137. align-items: center;
  138. }
  139. .item-label {
  140. font-size: 28rpx;
  141. color: #999999;
  142. }
  143. .item-value {
  144. font-size: 28rpx;
  145. color: #333333;
  146. }
  147. .item-image {
  148. width: 50rpx;
  149. height: 50rpx;
  150. }