reportForms.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. .head {
  2. width: 100vw;
  3. height: 158rpx;
  4. background-color: #ffffff;
  5. padding: 20rpx 30rpx;
  6. box-sizing: border-box;
  7. border-bottom: 1px solid #ddd;
  8. font-size: 24rpx;
  9. font-family: PingFang SC-Regular, PingFang SC;
  10. color: #999999;
  11. .title {
  12. font-size: 28rpx;
  13. font-family: PingFang SC-Regular, PingFang SC;
  14. color: #000000;
  15. margin-bottom: 15rpx;
  16. }
  17. }
  18. .nav {
  19. width: 100vw;
  20. height: 80rpx;
  21. display: flex;
  22. align-items: center;
  23. justify-content: space-between;
  24. box-sizing: border-box;
  25. padding: 0 30rpx;
  26. font-size: 28rpx;
  27. font-family: PingFang SC-Regular, PingFang SC;
  28. color: #000000;
  29. }
  30. .item {
  31. width: 100vw;
  32. padding: 20rpx 30rpx;
  33. box-sizing: border-box;
  34. margin-bottom: 20rpx;
  35. background-color: #fff;
  36. .title {
  37. display: flex;
  38. justify-content: space-between;
  39. width: 100%;
  40. height: 42rpx;
  41. font-size: 30rpx;
  42. font-family: PingFang SC-Bold, PingFang SC;
  43. font-weight: bold;
  44. color: #000000;
  45. text {
  46. text-align: right;
  47. display: block;
  48. width: 80rpx;
  49. height: 100%;
  50. }
  51. }
  52. .group {
  53. display: flex;
  54. flex-wrap: wrap;
  55. /* justify-content: space-between; */
  56. font-size: 24rpx;
  57. font-family: PingFang SC-Regular, PingFang SC;
  58. color: #666666;
  59. >view {
  60. text {
  61. color: red;
  62. margin-right: 8rpx;
  63. }
  64. width: 33.33%;
  65. margin-top: 20rpx;
  66. input {
  67. width: 216rpx;
  68. height: 90rpx;
  69. box-sizing: border-box;
  70. margin-top: 12rpx;
  71. border: 1px solid #BBBBBB;
  72. border-radius: 16rpx;
  73. font-size: 28rpx;
  74. text-align: center;
  75. }
  76. }
  77. }
  78. }
  79. .footer {
  80. position: fixed;
  81. bottom: 0;
  82. display: flex;
  83. align-items: center;
  84. justify-content: space-between;
  85. padding: 0 30rpx;
  86. box-sizing: border-box;
  87. width: 100vw;
  88. height: 130rpx;
  89. background-color: #ffffff;
  90. z-index: 8;
  91. .change {
  92. width: 460rpx;
  93. height: 90rpx;
  94. background: #FA8C16;
  95. border-radius: 100rpx;
  96. font-size: 28rpx;
  97. font-family: PingFang SC-Bold, PingFang SC;
  98. font-weight: bold;
  99. color: #FFFFFF;
  100. }
  101. .add {
  102. font-size: 28rpx;
  103. font-family: PingFang SC-Bold, PingFang SC;
  104. font-weight: bold;
  105. color: #999999;
  106. line-height: 44px;
  107. }
  108. }