moreReply.wxss 982 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* pages/moreReply/moreReply.wxss */
  2. @import "/pages/moreReply/moreReplyItem/moreReplyItem.wxss";
  3. .viewBox {
  4. position: fixed;
  5. width: 100%;
  6. height: 100%;
  7. background-color: white;
  8. overflow: hidden;
  9. }
  10. .replyListBox {
  11. height: 90%;
  12. width: 100%;
  13. }
  14. .replyBox {
  15. height: 10%;
  16. width: 100%;
  17. display: flex;
  18. flex-direction: row;
  19. white-space: nowrap;
  20. margin-bottom: 15rpx;
  21. }
  22. .inputBox {
  23. width: 70%;
  24. height: 100%;
  25. display: inline-flex;
  26. flex-direction: row;
  27. justify-content: flex-start;
  28. align-items: center;
  29. padding-left: 20rpx;
  30. }
  31. .input {
  32. width: 100%;
  33. height: 60rpx;
  34. background-color: transparent;
  35. font-size: 30rpx;
  36. border-bottom: 1px gray solid;
  37. }
  38. .replyButton {
  39. width: 30%;
  40. height: 100%;
  41. display: inline-flex;
  42. flex-direction: row;
  43. justify-content: flex-end;
  44. align-items: center;
  45. }
  46. .scroll-box {
  47. width: 100%;
  48. height: 100%;
  49. }
  50. .scroll-list {
  51. width: 100%;
  52. display: flex;
  53. flex-direction: column;
  54. white-space: nowrap;
  55. }