discuss.wxss 494 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* compontents/discuss/discuss.wxss */
  2. /* 评论内容展开 */
  3. .comment {
  4. position: relative;
  5. height: 0rpx;
  6. overflow: hidden;
  7. }
  8. .comment view {
  9. margin-top: 20rpx;
  10. font-size: 28rpx;
  11. }
  12. .text {
  13. position: absolute;
  14. bottom: 0;
  15. width: 100%;
  16. }
  17. .text input {
  18. width: 85%;
  19. float: left;
  20. }
  21. .text text {
  22. color: #93AAFA;
  23. }
  24. .unfold {
  25. position: absolute;
  26. right: 28rpx;
  27. bottom: 24rpx;
  28. font-size: 28rpx;
  29. color: #93AAFA;
  30. }