fragmentsRecordItem.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. ::-webkit-scrollbar {
  2. width: 0px;
  3. height: 0px;
  4. color: transparent;
  5. }
  6. .scroll-view-head {
  7. width: 100%;
  8. height: 30rpx;
  9. }
  10. .record-bg-all, .record-bg-self {
  11. width: 670rpx;
  12. height: 168rpx;
  13. margin-left: 40rpx;
  14. border-radius: 12rpx;
  15. display: flex;
  16. flex-direction: row;
  17. overflow: hidden;
  18. }
  19. .record-bg-all {
  20. background: linear-gradient(to right, #5977f5, #715bea);
  21. }
  22. .record-bg-self {
  23. background-color: #8c5aeb;
  24. }
  25. .record-corner {
  26. width: 0px;
  27. height: 0px;
  28. border-top: 116rpx solid rgba(0, 0, 0, 0.2);
  29. border-right: 116rpx solid transparent;
  30. }
  31. .record-num-img {
  32. width: 116rpx;
  33. height: 116rpx;
  34. margin-left: -110rpx;
  35. }
  36. .record-num {
  37. width: 75rpx;
  38. height: 75rpx;
  39. margin-left: -120rpx;
  40. font-size: 44rpx;
  41. color: rgba(255, 255, 255, 0.7);
  42. line-height: 75rpx;
  43. text-align: center;
  44. }
  45. .record-placeholder {
  46. width: 116rpx;
  47. height: 116rpx;
  48. margin-left: -110rpx;
  49. }
  50. .record-avatar-bg {
  51. margin: auto 0px auto 0px;
  52. width: 120rpx;
  53. height: 120rpx;
  54. border-radius: 60rpx;
  55. background-color: white;
  56. display: flex;
  57. /* border: 8rpx solid white; */
  58. }
  59. .record-avatar {
  60. /* display: flex;
  61. flex-direction: column; */
  62. margin: auto auto;
  63. width: 104rpx;
  64. height: 104rpx;
  65. border-radius: 52rpx;
  66. }
  67. .record-content {
  68. position: absolute;
  69. height: 168rpx;
  70. left: 260rpx;
  71. right: 40rpx;
  72. display: flex;
  73. flex-direction: column;
  74. }
  75. .record-content-top {
  76. width: 100%;
  77. height: 40rpx;
  78. display: flex;
  79. flex-direction: row;
  80. margin-top: auto;
  81. }
  82. .record-content-name {
  83. width: 250rpx;
  84. overflow: hidden;
  85. line-height: 40rpx;
  86. font-size: 34rpx;
  87. color: white;
  88. }
  89. .record-content-from {
  90. width: 140rpx;
  91. overflow: hidden;
  92. line-height: 40rpx;
  93. font-size: 28rpx;
  94. text-align: right;
  95. color: white;
  96. margin-left: auto;
  97. margin-right: 44rpx;
  98. }
  99. .record-content-bottom {
  100. width: 100%;
  101. height: 48rpx;
  102. display: flex;
  103. flex-direction: row;
  104. margin-top: 16rpx;
  105. margin-bottom: auto;
  106. }
  107. .record-content-fragment {
  108. line-height: 48rpx;
  109. font-size: 34rpx;
  110. color: white;
  111. }
  112. .record-content-star {
  113. height: 48rpx;
  114. background-color: rgba(0, 0, 0, 0.15);
  115. border-radius: 24rpx;
  116. margin-left: auto;
  117. margin-right: 36rpx;
  118. display: flex;
  119. flex-direction: row;
  120. }
  121. .record-content-star-img {
  122. height: 32rpx;
  123. width: 32rpx;
  124. margin: auto 10rpx auto 16rpx;
  125. }
  126. .record-content-star-num {
  127. font-size: 32rpx;
  128. color: white;
  129. margin: auto 16rpx auto 0px;
  130. }
  131. .record-interval {
  132. width: 100%;
  133. height: 20rpx;
  134. }
  135. .bottom-button-view {
  136. width: 100%;
  137. height: 104rpx;
  138. background-color: #8c5aeb;
  139. position: absolute;
  140. bottom: 0px;
  141. display: flex;
  142. flex-direction: row;
  143. }
  144. .bottom-button-title {
  145. margin: auto 0px auto auto;
  146. font-size: 32rpx;
  147. color: white;
  148. }
  149. .bottom-button-icon {
  150. width: 32rpx;
  151. height: 32rpx;
  152. margin: auto auto auto 10rpx;
  153. }