feedback.wxss 991 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .content {
  2. padding: 0 30rpx;
  3. }
  4. .content .list .title {
  5. height: 100rpx;
  6. line-height: 100rpx;
  7. font-size: 36rpx;
  8. font-family: PingFangSC-Medium, PingFang SC;
  9. font-weight: 500;
  10. }
  11. .content .list .box {
  12. display: grid;
  13. grid-gap: 20rpx 0rpx;
  14. grid-template-columns: repeat(1, 1fr);
  15. }
  16. .content .list .item {
  17. border-radius: 20rpx;
  18. background-color: #fff;
  19. overflow: hidden;
  20. box-sizing: border-box;
  21. }
  22. .content .list .item text {
  23. font-size: 28rpx;
  24. font-family: PingFangSC-Regular, PingFang SC;
  25. font-weight: 400;
  26. color: #333333;
  27. }
  28. .content .list .padding {
  29. padding: 16rpx 24rpx;
  30. }
  31. .content .list .item-msg {
  32. background: #FFF9F5;
  33. }
  34. .btm {
  35. height: 170rpx;
  36. position: fixed;
  37. width: 100%;
  38. left: 0;
  39. bottom: 0;
  40. /* bottom: 56rpx; */
  41. background: #fff;
  42. /* padding: 0 28rpx; */
  43. }
  44. .btm-btn {
  45. width: 100%;
  46. height: 84rpx;
  47. font-size: 36rpx;
  48. color: #FFFFFF;
  49. margin: 0 40rpx;
  50. background: #FA7D22;
  51. border-radius: 42rpx;
  52. /* margin-top: 64rpx; */
  53. }