index.scss 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. .item {
  2. width: 100vw;
  3. background-color: #ffffff;
  4. margin-bottom: 20rpx;
  5. .content {
  6. padding: 20rpx 0;
  7. padding-left: 30rpx;
  8. border-bottom: 1px solid #DDD;
  9. box-sizing: border-box;
  10. .user {
  11. display: flex;
  12. width: 100%;
  13. .portrait {
  14. width: 64rpx;
  15. height: 64rpx;
  16. text-align: center;
  17. line-height: 64rpx;
  18. background: #3874F6;
  19. border-radius: 50%;
  20. margin-top: 12rpx;
  21. margin-right: 16rpx;
  22. flex-shrink: 0;
  23. font-size: 24rpx;
  24. font-family: PingFang SC-Regular, PingFang SC;
  25. color: #FFFFFF;
  26. }
  27. .right {
  28. flex: 1;
  29. .title {
  30. height: 42rpx;
  31. line-height: 42rpx;
  32. font-size: 30rpx;
  33. font-family: PingFang SC-Regular, PingFang SC;
  34. color: #333333;
  35. text {
  36. margin-left: 20rpx;
  37. font-size: 24rpx;
  38. font-family: PingFang SC-Regular, PingFang SC;
  39. color: #999999;
  40. }
  41. }
  42. .exp {
  43. font-size: 24rpx;
  44. font-family: PingFang SC-Regular, PingFang SC;
  45. color: #333333;
  46. }
  47. }
  48. }
  49. }
  50. .editor {
  51. display: flex;
  52. justify-content: space-between;
  53. align-items: center;
  54. width: 100%;
  55. height: 80rpx;
  56. .icon-but {
  57. padding-right: 30rpx;
  58. navigator {
  59. display: inline-block;
  60. width: 60rpx;
  61. height: 60rpx;
  62. line-height: 60rpx;
  63. text-align: center;
  64. margin-left: 30rpx;
  65. width: 32px;
  66. color: #707070;
  67. }
  68. }
  69. }
  70. }