checkProcessReportEdit.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /* pages/deviceCheck/report/edit/checkReportEdit.wxss */
  2. page {
  3. position: fixed;
  4. width: 100%;
  5. height: 100%;
  6. overflow: hidden;
  7. }
  8. .viewBody{
  9. height: 100%;
  10. display: flex;
  11. flex-direction: column;
  12. padding-left: 10rpx;
  13. padding-right: 10rpx;
  14. }
  15. .processSuggest {
  16. font-size: 14px;
  17. padding-left: 20rpx;
  18. padding-right: 20rpx;
  19. padding-top: 20rpx;
  20. width: 100%;
  21. height: 200rpx;
  22. }
  23. .placeholder{
  24. font-size: 14px;
  25. color: lightgray;
  26. }
  27. .photoBox {
  28. width: 100%;
  29. display: flex;
  30. flex-direction: row;
  31. justify-content: center;
  32. padding-top: 40rpx;
  33. }
  34. .scroll-list {
  35. width: 96%;
  36. margin-left: auto;
  37. margin-right: auto;
  38. }
  39. .photo {
  40. width: 600rpx;
  41. height: 600rpx;
  42. }
  43. .item-img {
  44. width: 120rpx;
  45. height: 120rpx;
  46. margin: 5rpx 5rpx 5rpx 5rpx;
  47. border-radius: 12rpx;
  48. }
  49. .buttonBox {
  50. height: 100rpx;
  51. width: 100%;
  52. margin-top: 10rpx;
  53. margin-bottom: 10rpx;
  54. position: absolute;
  55. bottom: 0rpx;
  56. left: 0rpx;
  57. display: flex;
  58. flex-direction: row;
  59. justify-content: center;
  60. }
  61. .buttonBox button {
  62. width: 90%;
  63. }
  64. .report-btn {
  65. height: 80rpx;
  66. background-color: #FD7400;
  67. border-radius: 10px;
  68. display: flex;
  69. flex-direction: column;
  70. justify-content: center;
  71. margin-left: 20rpx;
  72. margin-right: 20rpx;
  73. margin-top: 20rpx;
  74. }
  75. .new-report-btn-text {
  76. text-align: center;
  77. color: whitesmoke;
  78. font-size: 1rem;
  79. }