commentPost.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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 .title {
  30. /* position: absolute; */
  31. top: 0;
  32. left: 0;
  33. display: block;
  34. background: #fff;
  35. font-size: 29rpx;
  36. color: #333;
  37. height:35rpx;
  38. width: 650rpx;
  39. padding: 20rpx;
  40. /* margin:10px; */
  41. border-bottom: 1px solid #ddd;
  42. overflow:hidden;
  43. }
  44. .post-comment .input-box .count {
  45. position: absolute;
  46. bottom: 20rpx;
  47. right: 20rpx;
  48. display: block;
  49. height: 30rpx;
  50. width: 50rpx;
  51. font-size: 29rpx;
  52. color: #999;
  53. }
  54. .post-comment .btns {
  55. height: 108rpx;
  56. }
  57. .post-comment .close {
  58. float: left;
  59. height: 108rpx;
  60. line-height: 108rpx;
  61. text-align: left;
  62. color: #666;
  63. padding: 0 30rpx;
  64. }
  65. .post-comment .post {
  66. float: right;
  67. height: 108rpx;
  68. line-height: 108rpx;
  69. text-align: right;
  70. padding: 0 30rpx;
  71. }
  72. .bottom-btn {
  73. position: fixed;
  74. left: 0;
  75. bottom: 0;
  76. z-index: 10;
  77. width: 750rpx;
  78. /* height: 100rpx; */
  79. display: flex;
  80. background: #fff;
  81. padding:10rpx;
  82. }
  83. .bottom-btn .r {
  84. border: 1px solid #f94b4b;
  85. background: #f94b4b;
  86. float: left;
  87. height: 100rpx;
  88. line-height: 96rpx;
  89. flex: 1;
  90. text-align: center;
  91. color: #fff;
  92. }
  93. .detail {
  94. margin-top: 20rpx;
  95. width: 750rpx;
  96. height: auto;
  97. overflow: hidden;
  98. padding: 30rpx;
  99. }