feedback.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. page {
  2. background-color: #FFFFFF;
  3. }
  4. .wrap {
  5. width: 100%;
  6. display: flex;
  7. flex-direction: column;
  8. padding: 20rpx 24rpx 170rpx;
  9. box-sizing: border-box;
  10. }
  11. .textarea-box {
  12. width: 100%;
  13. min-height: 392rpx;
  14. display: flex;
  15. flex-direction: column;
  16. justify-content: space-between;
  17. background-color: #F6F6F6;
  18. border-radius: 16rpx;
  19. padding: 32rpx 22rpx 18rpx;
  20. box-sizing: border-box;
  21. margin-bottom: 20rpx;
  22. }
  23. .textarea {
  24. width: 100%;
  25. font-size: 28rpx;
  26. }
  27. .placeholder {
  28. color: #A7A7A7;
  29. }
  30. .num {
  31. width: 100%;
  32. display: flex;
  33. justify-content: flex-end;
  34. align-items: center;
  35. color: #A7A7A7;
  36. font-size: 26rpx;
  37. }
  38. .input-box {
  39. width: 100%;
  40. background-color: #F6F6F6;
  41. border-radius: 16rpx;
  42. padding: 30rpx 24rpx;
  43. box-sizing: border-box;
  44. margin-bottom: 20rpx;
  45. }
  46. .input {
  47. width: 100%;
  48. font-size: 30rpx;
  49. }
  50. .note-image-box {
  51. width: 100%;
  52. display: flex;
  53. flex-wrap: wrap;
  54. }
  55. .add-img {
  56. width: 180rpx;
  57. height: 180rpx;
  58. border-radius: 12rpx;
  59. }
  60. .img {
  61. width: 180rpx;
  62. height: 180rpx;
  63. border-radius: 12rpx;
  64. }
  65. .note-image-item {
  66. width: 180rpx;
  67. height: 180rpx;
  68. margin-right: 16rpx;
  69. margin-bottom: 16rpx;
  70. position: relative;
  71. }
  72. .close-icon {
  73. position: absolute;
  74. right: 10rpx;
  75. top: 10rpx;
  76. z-index: 999;
  77. }
  78. .close-icon image {
  79. width: 29rpx;
  80. height: 29rpx;
  81. }
  82. .btn-box {
  83. width: 100%;
  84. height: 170rpx;
  85. display: flex;
  86. justify-content: center;
  87. align-items: center;
  88. position: fixed;
  89. bottom: 0;
  90. left: 0;
  91. z-index: 999;
  92. background-color: #fff;
  93. padding: 0 24rpx;
  94. box-sizing: border-box;
  95. }
  96. .btn-box button {
  97. width: 100%;
  98. height: 90rpx;
  99. line-height: 90rpx;
  100. display: flex;
  101. align-items: center;
  102. justify-content: center;
  103. background-color: #E0E0E0;
  104. color: #919191;
  105. font-size: 34rpx;
  106. border-radius: 100rpx;
  107. }
  108. .active {
  109. background-color: #F2501A !important;
  110. color: #fff !important;
  111. }