work-order.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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 #999999;
  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-button {
  99. width: 100%;
  100. height: 97rpx;
  101. position: absolute;
  102. bottom: 97rpx;
  103. background: #508FF4;
  104. color: #FFFFFF;
  105. font-size: 28rpx;
  106. text-align: center;
  107. padding: 0 !important;
  108. margin: 0 !important;
  109. line-height: 97rpx;
  110. border-radius: 0;
  111. }
  112. .item {
  113. margin: 0 30rpx;
  114. border-bottom: solid 1rpx #C8C8C8;
  115. padding-bottom: 16rpx;
  116. }
  117. .item-status {
  118. width: 146rpx;
  119. height: 146rpx;
  120. position: absolute;
  121. right: -20rpx;
  122. top: -20rpx;
  123. }
  124. .item-row {
  125. margin-top: 30rpx;
  126. }
  127. .item-label {
  128. font-size: 28rpx;
  129. color: #999999;
  130. }
  131. .item-value {
  132. font-size: 28rpx;
  133. color: #333333;
  134. }