meeting-inspection.wxss 2.1 KB

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