addFeedback.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. .content {
  2. padding: 20rpx;
  3. }
  4. .border-radius {
  5. background: #FFFFFF;
  6. box-shadow: 0rpx 4rpx 14rpx 0rpx rgba(0, 0, 0, 0.05);
  7. border-radius: 24rpx;
  8. margin: 20rpx 0;
  9. }
  10. .detail {
  11. padding: 30rpx 28rpx;
  12. }
  13. .detail .top {
  14. padding-bottom: 30rpx;
  15. border-bottom: 2rpx solid #F2F2F2;
  16. }
  17. .detail .top image {
  18. width: 112rpx;
  19. height: 112rpx;
  20. /* background: #ECECEC; */
  21. border-radius: 12rpx;
  22. margin-right: 20rpx;
  23. }
  24. .detail .box-textarea {
  25. position: relative;
  26. padding-bottom: 30rpx;
  27. height: 280rpx;
  28. box-sizing: border-box;
  29. }
  30. .detail textarea {
  31. width: 100%;
  32. height: 100%;
  33. box-sizing: border-box;
  34. /* height: 280rpx;
  35. box-sizing: border-box; */
  36. padding: 0rpx 0 50rpx;
  37. }
  38. .detail .box-textarea .box-text {
  39. position: absolute;
  40. right: 0;
  41. bottom: 30rpx;
  42. font-size: 28rpx;
  43. color: #999999;
  44. }
  45. .detail .change-img {
  46. padding-top: 30rpx;
  47. border-top: 2rpx solid #F2F2F2;
  48. }
  49. .change-img .img-box {
  50. margin-top: 30rpx;
  51. display: grid;
  52. grid-gap: 20rpx 20rpx;
  53. grid-template-columns: repeat(3, 1fr);
  54. }
  55. .change-img .img-box .item {
  56. width: 200rpx;
  57. height: 200rpx;
  58. border-radius: 16px;
  59. box-sizing: border-box;
  60. overflow: hidden;
  61. position: relative;
  62. }
  63. .change-img .delete-img {
  64. position: absolute;
  65. top: -24rpx;
  66. right: -16rpx;
  67. width: 48rpx;
  68. height: 48rpx;
  69. border-radius: 50%;
  70. background-color: black;
  71. }
  72. .change-img .img-box .item.upload {
  73. border: dashed 2rpx #c6c6c6;
  74. background: #F4F4F4;
  75. }
  76. .change-img .upload image {
  77. width: 48rpx;
  78. height: 48rpx;
  79. /* background-color: #ccc; */
  80. margin-bottom: 6rpx;
  81. }
  82. .change-img .img-box video {
  83. width: 100%;
  84. height: 100%;
  85. }
  86. .change-img .img-box .icon-01 {
  87. width: 64rpx;
  88. height: 64rpx;
  89. position: absolute;
  90. }
  91. .change-img .img-box .img-content {
  92. width: 100%;
  93. height: 100%;
  94. }
  95. .btm {
  96. height: 170rpx;
  97. position: fixed;
  98. width: 100%;
  99. left: 0;
  100. bottom: 0;
  101. /* bottom: 56rpx; */
  102. background: #fff;
  103. /* padding: 0 28rpx; */
  104. }
  105. .btm-btn {
  106. width: 100%;
  107. height: 84rpx;
  108. font-size: 36rpx;
  109. color: #FFFFFF;
  110. margin: 0 40rpx;
  111. background: #FA7D22;
  112. border-radius: 42rpx;
  113. /* margin-top: 64rpx; */
  114. }