share.component.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. .content {
  2. height: 100vh;
  3. width: 100%;
  4. background-image: url("https://file-cloud.fmode.cn/Qje9D4bqol/20241220/b313ov054708770.png");
  5. background-repeat: no-repeat;
  6. background-position: center top;
  7. background-size: 100% 100%;
  8. padding: 2.5641vw;
  9. .share {
  10. display: flex;
  11. flex-direction: column;
  12. align-items: center;
  13. .share-view {
  14. min-height: 76.9231vw;
  15. .canvas,
  16. .poster {
  17. width: 76.9231vw;
  18. height: 123.0769vw;
  19. }
  20. }
  21. .share-footre {
  22. margin-top: 5.1282vw;
  23. display: flex;
  24. justify-content: space-evenly;
  25. width: 100%;
  26. user-select: none;
  27. .share-btn {
  28. cursor: pointer;
  29. font-size: 4.1026vw;
  30. display: flex;
  31. align-items: center;
  32. img {
  33. margin-right: 1.0256vw;
  34. }
  35. }
  36. .share-btn:active {
  37. color: #1890ff;
  38. }
  39. .share-icon {
  40. width: 2rem;
  41. height: 2rem;
  42. }
  43. }
  44. }
  45. .list {
  46. padding: 10px;
  47. border-radius: 4px;
  48. background: white;
  49. max-height: 500px;
  50. overflow-y: scroll;
  51. .title{
  52. margin-bottom: 6px;
  53. }
  54. .li {
  55. display: flex;
  56. justify-content: space-between;
  57. // padding: 1.0256vw 2.5641vw;
  58. background: white;
  59. border-bottom: 0.2564vw solid #e5e5e5;
  60. .li-left {
  61. flex-shrink: 0;
  62. width: 10.2564vw;
  63. .avatar {
  64. width: 9.2308vw;
  65. height: 9.2308vw;
  66. border-radius: 50%;
  67. }
  68. }
  69. .li-right {
  70. display: flex;
  71. flex: 1;
  72. margin-left: 2.5641vw;
  73. justify-content: space-between;
  74. align-items: center;
  75. .li-right-user {
  76. display: flex;
  77. flex-direction: column;
  78. .user-name{
  79. font-size: 3.5897vw;
  80. margin-bottom: 1.5385vw;
  81. }
  82. .time {
  83. font-size: 3.0769vw;
  84. color: #7d7d7d;
  85. }
  86. }
  87. }
  88. }
  89. }
  90. }