comment.component.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. .content {
  2. // background-image: url("https://file-cloud.fmode.cn/Qje9D4bqol/20241220/b313ov054708770.png");
  3. // background-repeat: no-repeat;
  4. // background-position: center top;
  5. // background-size: 100% 100%;
  6. // height: 100%;
  7. // padding-top: 2.5641vw;
  8. // width: 100%;
  9. // text-align: center;
  10. // --background:#fff;
  11. .comment-list {
  12. // background-color: #47474726;
  13. // border: 1px solid white;
  14. // margin-top: 4px;
  15. border-radius: 6px;
  16. .li {
  17. display: flex;
  18. align-items: center;
  19. justify-content: space-between;
  20. padding: 4px;
  21. border-bottom: 1px solid #eee;
  22. .li-user {
  23. display: flex;
  24. align-items: center;
  25. .avatar {
  26. width: 30px;
  27. height: 30px;
  28. margin-right: 4px;
  29. }
  30. .level {
  31. margin-left: 1.5385vw;
  32. text-align: center;
  33. font-size: 3.0769vw;
  34. border-radius: 5.1282vw;
  35. padding: 0vw 1.5385vw;
  36. color: #000;
  37. }
  38. }
  39. .li-score{
  40. font-size: 12px;
  41. span{
  42. background-color: #c509ff;
  43. padding: 2px 4px;
  44. color: white;
  45. margin-left: 2px;
  46. border-radius: 4px;
  47. }
  48. }
  49. }
  50. }
  51. }