index.module.less 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. .container {
  2. min-height: 100vh;
  3. box-sizing: border-box;
  4. background: linear-gradient(180deg, #b8c7ff 0%, #f8f9ff 100%);
  5. }
  6. .wrap {
  7. background-image: url('./images/icon-bg.png');
  8. background-repeat: no-repeat;
  9. background-size: 100% auto;
  10. min-height: 100vh;
  11. box-sizing: border-box;
  12. }
  13. .userWrap {
  14. padding: 36px 0 0 48px;
  15. display: flex;
  16. .user {
  17. position: relative;
  18. display: flex;
  19. flex-direction: column;
  20. align-items: center;
  21. .avator {
  22. width: 80px;
  23. height: 80px;
  24. border-radius: 50%;
  25. overflow: hidden;
  26. background-color: #fff;
  27. padding: 2px;
  28. }
  29. .avator > img {
  30. display: flex;
  31. width: 100%;
  32. height: 100%;
  33. object-fit: cover;
  34. border-radius: 50%;
  35. }
  36. .tips {
  37. display: flex;
  38. justify-content: space-around;
  39. align-items: center;
  40. height: 24px;
  41. padding: 0 10px;
  42. background: linear-gradient(180deg, #ff598e 0%, #fd2d55 100%);
  43. border-radius: 22px;
  44. color: #fff;
  45. font-size: 12px;
  46. font-weight: bold;
  47. margin-top: -10px;
  48. img {
  49. width: 10px;
  50. height: 10px;
  51. margin-right: 7px;
  52. }
  53. }
  54. }
  55. }
  56. .titleWrap {
  57. padding: 26px;
  58. color: #ffffff;
  59. line-height: 33px;
  60. text-shadow: 0px 0px 4px rgba(23, 78, 255, 0.5);
  61. font-weight: 600;
  62. font-size: 24px;
  63. .liveUser {
  64. font-size: 18px;
  65. }
  66. }
  67. .content {
  68. background: rgba(255, 255, 255, 0.8);
  69. border-radius: 14px;
  70. margin: 0 16px;
  71. padding: 14px 18px;
  72. font-size: 16px;
  73. line-height: 22px;
  74. color: #333;
  75. .top {
  76. position: relative;
  77. padding-left: 14px;
  78. font-size: 16px;
  79. font-weight: 600;
  80. margin-bottom: 12px;
  81. &::before {
  82. content: '';
  83. position: absolute;
  84. left: 0;
  85. top: 12%;
  86. height: 70%;
  87. width: 4px;
  88. background-color: var(--van-primary-color);
  89. border-radius: 4px;
  90. }
  91. }
  92. .comentWrap {
  93. margin-top: 16px;
  94. background: linear-gradient(270deg, #baffe7 0%, #c0dcff 100%);
  95. border-radius: 10px;
  96. padding: 14px;
  97. display: flex;
  98. align-items: center;
  99. .contentAvator{
  100. width: 38px;
  101. height: 38px;
  102. padding: 1px;
  103. background-color: #fff;
  104. border-radius: 50%;
  105. margin-right: 10px;
  106. img{
  107. width: 100%;
  108. height: 100%;
  109. display: block;
  110. border-radius: 50%;
  111. }
  112. }
  113. .comentTitle{
  114. font-size: 15Px;
  115. font-weight: bold;
  116. }
  117. .comentDes{
  118. font-size: 12Px;
  119. }
  120. }
  121. }
  122. .wxpopup {
  123. width: 100%;
  124. height: 100vh;
  125. position: fixed;
  126. top: 0;
  127. left: 0;
  128. background: rgba(0, 0, 0, 0.5);
  129. z-index: 9999;
  130. img {
  131. width: 88%;
  132. margin: 0 6%;
  133. }
  134. }