index.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. .box {
  2. padding: 30rpx;
  3. box-sizing: border-box;
  4. background-color: #fff;
  5. width: 100vw;
  6. .title {
  7. height: 42rpx;
  8. font-family: PingFang SC, PingFang SC;
  9. font-weight: bold;
  10. font-size: 30rpx;
  11. color: #333333;
  12. line-height: 42rpx;
  13. }
  14. .textarea-box {
  15. width: 690rpx;
  16. height: 240rpx;
  17. background: #FAFAFA;
  18. border-radius: 8rpx;
  19. border: 1rpx solid #CCCCCC;
  20. padding: 20rpx;
  21. box-sizing: border-box;
  22. margin-top: 20rpx;
  23. .textarea {
  24. width: 100%;
  25. height: 100%;
  26. font-size: 28rpx;
  27. }
  28. }
  29. .textarea-but {
  30. width: 100%;
  31. display: flex;
  32. justify-content: flex-end;
  33. margin-top: 20rpx;
  34. .custom-class {
  35. min-width: 156rpx;
  36. height: 90rpx;
  37. background: #3874F6;
  38. border-radius: 8rpx;
  39. padding: 0 15rpx;
  40. font-family: PingFang SC, PingFang SC;
  41. font-weight: bold;
  42. font-size: 32rpx;
  43. color: #FFFFFF;
  44. }
  45. }
  46. .item {
  47. display: flex;
  48. margin-top: 60rpx;
  49. .headpic {
  50. width: 80rpx;
  51. margin-right: 20rpx;
  52. flex-shrink: 0;
  53. .image,
  54. .createby {
  55. width: 80rpx;
  56. height: 80rpx;
  57. border-radius: 40rpx;
  58. overflow: hidden;
  59. }
  60. .createby {
  61. text-align: center;
  62. line-height: 80rpx;
  63. background-color: #3874F6;
  64. font-family: PingFang SC, PingFang SC;
  65. font-size: 28rpx;
  66. color: #FFFFFF;
  67. }
  68. }
  69. .content {
  70. width: 100%;
  71. .name {
  72. display: flex;
  73. align-items: center;
  74. height: 44rpx;
  75. font-family: PingFang SC, PingFang SC;
  76. font-size: 32rpx;
  77. color: #333333;
  78. .createby {
  79. flex: 1;
  80. width: 0;
  81. }
  82. .iconfont {
  83. flex-shrink: 0;
  84. font-weight: 400;
  85. color: #999999;
  86. padding-left: 20rpx;
  87. }
  88. }
  89. .text {
  90. font-family: PingFang SC, PingFang SC;
  91. font-size: 28rpx;
  92. color: #333333;
  93. line-height: 45rpx;
  94. margin-top: 20rpx;
  95. }
  96. }
  97. .bottom {
  98. display: flex;
  99. align-items: flex-end;
  100. justify-content: space-between;
  101. height: 40rpx;
  102. .time {
  103. font-family: PingFang SC, PingFang SC;
  104. font-size: 24rpx;
  105. color: #999999;
  106. }
  107. .reply {
  108. .iconfont {
  109. margin-right: 10rpx;
  110. }
  111. font-size: 28rpx;
  112. color: #333333;
  113. }
  114. }
  115. }
  116. }