daily-inspection.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /* pages/daily-inspection/daily-inspection.wxss */
  2. .container {
  3. background-color: #F0F4F7;
  4. display: block;
  5. height: 100%;
  6. }
  7. .body {
  8. margin-top: 20rpx;
  9. margin-bottom: 70rpx;
  10. overflow-y: scroll;
  11. height: calc(100vh - 330rpx);
  12. }
  13. .history-record-buju {
  14. display: flex;
  15. justify-content: flex-end;
  16. }
  17. .history-record {
  18. margin-top: 20rpx;
  19. text-align: center;
  20. border-radius: 40rpx;
  21. font-size: 26rpx;
  22. width: 160rpx;
  23. height: 60rpx;
  24. line-height: 60rpx;
  25. margin-right: 40rpx;
  26. border: 1rpx solid #CECECE;
  27. }
  28. .inspection-project {
  29. margin-left: 40rpx;
  30. margin-right: 40rpx;
  31. background-color: #FFFFFF;
  32. border-radius: 20rpx;
  33. height: 200rpx;
  34. margin-bottom: 10rpx;
  35. }
  36. .inspection-project .project-name {
  37. line-height: 80rpx;
  38. margin-left: 30rpx;
  39. }
  40. .inspection-project .status-title {
  41. margin-top: 10rpx;
  42. font-size: 22rpx;
  43. color: #999999;
  44. line-height: 80rpx;
  45. margin-left: 30rpx;
  46. }
  47. .inspection-project .divider {
  48. margin-top: 10rpx;
  49. border: 1rpx solid #EBE8E3;
  50. margin-left: 30rpx;
  51. margin-right: 30rpx;
  52. }
  53. .inspection-project .buju {
  54. display: flex;
  55. justify-content: space-between;
  56. align-items: center;
  57. }
  58. .inspection-project .buju1 {
  59. display: flex;
  60. justify-content: space-between;
  61. align-items: center;
  62. }
  63. .inspection-project .button {
  64. margin-top: 10rpx;
  65. text-align: center;
  66. border-radius: 40rpx;
  67. font-size: 26rpx;
  68. width: 160rpx;
  69. height: 50rpx;
  70. line-height: 50rpx;
  71. border: 1rpx solid #CECECE;
  72. margin: 26rpx 30rpx 0 0;
  73. }
  74. .results {
  75. line-height: 50rpx;
  76. margin-right: 40rpx;
  77. }
  78. .submit-button {
  79. border-radius: 45rpx;
  80. background-color: #3D5C92;
  81. color: #FFFFFF;
  82. font-size: 28rpx;
  83. text-align: center;
  84. margin-top: 10rpx;
  85. position: absolute;
  86. bottom: 40rpx;
  87. left: 10%;
  88. }