feedback.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. .note-image-item-num {
  83. position: absolute;
  84. bottom: 24%;
  85. left: 50%;
  86. transform: translate(-50%, 0);
  87. color: #A7A7A7;
  88. font-size: 26rpx;
  89. }
  90. .btn-box {
  91. width: 100%;
  92. height: 170rpx;
  93. display: flex;
  94. justify-content: center;
  95. align-items: center;
  96. position: fixed;
  97. bottom: 0;
  98. left: 0;
  99. z-index: 999;
  100. background-color: #fff;
  101. padding: 0 24rpx;
  102. box-sizing: border-box;
  103. }
  104. .btn-box button {
  105. width: 100%;
  106. height: 90rpx;
  107. line-height: 90rpx;
  108. display: flex;
  109. align-items: center;
  110. justify-content: center;
  111. background-color: #E0E0E0;
  112. color: #919191;
  113. font-size: 34rpx;
  114. border-radius: 100rpx;
  115. }
  116. .active {
  117. background-color: #F2501A !important;
  118. color: #fff !important;
  119. }