commentPost.wxss 948 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. page, .container {
  2. height: 100%;
  3. background: #f4f4f4;
  4. }
  5. .post-comment {
  6. width: 750rpx;
  7. height: auto;
  8. overflow: hidden;
  9. padding: 30rpx;
  10. }
  11. .post-comment .input-box {
  12. height: 337.5rpx;
  13. width: 690rpx;
  14. position: relative;
  15. background: #fff;
  16. }
  17. .post-comment .input-box .content {
  18. position: absolute;
  19. top: 0;
  20. left: 0;
  21. display: block;
  22. background: #fff;
  23. font-size: 29rpx;
  24. color: #333;
  25. height: 300rpx;
  26. width: 650rpx;
  27. padding: 20rpx;
  28. }
  29. .post-comment .input-box .count {
  30. position: absolute;
  31. bottom: 20rpx;
  32. right: 20rpx;
  33. display: block;
  34. height: 30rpx;
  35. width: 50rpx;
  36. font-size: 29rpx;
  37. color: #999;
  38. }
  39. .post-comment .btns {
  40. height: 108rpx;
  41. }
  42. .post-comment .close {
  43. float: left;
  44. height: 108rpx;
  45. line-height: 108rpx;
  46. text-align: left;
  47. color: #666;
  48. padding: 0 30rpx;
  49. }
  50. .post-comment .post {
  51. float: right;
  52. height: 108rpx;
  53. line-height: 108rpx;
  54. text-align: right;
  55. padding: 0 30rpx;
  56. }