wakeList.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. .wakeList{
  2. position: relative;
  3. height: 100%;
  4. }
  5. .wakeList .ps{
  6. height: 36rpx;
  7. background-color: rgba(216, 216, 216, 0.34);
  8. display: flex;
  9. align-items: center;
  10. justify-content: center;
  11. }
  12. .wakeList .ps image{
  13. height: 36rpx;
  14. }
  15. .wakeList .ps text{
  16. font-size: 24rpx;
  17. font-weight: 500;
  18. color: #353535;
  19. line-height: 34rpx;
  20. }
  21. .list {
  22. overflow: auto;
  23. }
  24. .list .page-view{
  25. height: 140rpx;
  26. margin: 17rpx 0;
  27. overflow: hidden;
  28. display: flex;
  29. align-items: center;
  30. position: relative;
  31. }
  32. .list .page-view view image{
  33. height: 118rpx;
  34. width: 118rpx;
  35. border-radius: 18rpx;
  36. border: 4rpx solid #353535;
  37. margin-left: 34rpx;
  38. margin-right: 30rpx;
  39. }
  40. .list .page-view .textInfo .name{
  41. display: block;
  42. font-size: 30rpx;
  43. font-weight: 500;
  44. color: #353535;
  45. line-height: 38rpx;
  46. }
  47. .list .page-view .textInfo .audioInfo{
  48. display:-webkit-box;
  49. -webkit-box-orient: vertical;
  50. -webkit-line-clamp:2;
  51. overflow:hidden;
  52. max-width: 60vw;
  53. font-size: 24rpx;
  54. color: #6547A3;
  55. line-height: 38rpx;
  56. }
  57. .list .page-view image.action{
  58. height: 28rpx;
  59. position: absolute;
  60. right: 34rpx;
  61. top: 57rpx;
  62. }
  63. .wakeDetail{
  64. width: 100vw;
  65. height: 100vh;
  66. position: fixed;
  67. top: 0;
  68. left: 0;
  69. background-color: rgba(0, 0, 0, 0.6);
  70. }
  71. .wakeDetail .wakeDetail-view{
  72. position: absolute;
  73. bottom: 0;
  74. width: 100vw;
  75. background: #FFFFFF;
  76. border-radius: 18rpx 18rpx 0px 0px;
  77. padding: 20rpx 0 60rpx;
  78. }
  79. .wakeDetail .wakeDetail-view>text{
  80. display: block;
  81. width: 100vw;
  82. padding-left: 28rpx;
  83. line-height: 82rpx;
  84. font-size: 30rpx;
  85. color: #353535;
  86. font-weight: bold;
  87. border-bottom: 1rpx solid rgba(224, 224, 224, 1);
  88. }
  89. .wakeDetail .wakeDetail-view .wakeListInfo{
  90. max-height: 442rpx;
  91. overflow: auto;
  92. padding: 0 28rpx;
  93. }
  94. .wakeListInfo .li{
  95. padding: 20rpx 0;
  96. overflow: hidden;
  97. position: relative;
  98. }
  99. .wakeListInfo .li text:nth-child(1){
  100. font-size: 24rpx;
  101. font-weight: 600;
  102. color: #999999;
  103. line-height: 48rpx;
  104. margin-right: 20rpx;
  105. }
  106. .wakeListInfo .li text:nth-child(2){
  107. font-size: 30rpx;
  108. font-weight: bold;
  109. color: #353535;
  110. line-height: 42rpx;
  111. word-break:break-all;
  112. }
  113. .wakeListInfo .li.action text:nth-child(1) {
  114. color: #353535;
  115. }
  116. .wakeListInfo .li.action text:nth-child(2) {
  117. color: rgba(101, 71, 163, 1);
  118. }
  119. .wakeListInfo .li image{
  120. height: 28rpx;
  121. position: absolute;
  122. top: 28rpx;
  123. right: 0;
  124. }
  125. .foot{
  126. width: 100vw;
  127. display: flex;
  128. justify-content: center;
  129. padding-top: 28rpx;
  130. }
  131. .foot text{
  132. display: flex;
  133. width: 240rpx;
  134. height: 80rpx;
  135. align-items: center;
  136. justify-content: center;
  137. border-radius: 40rpx;
  138. margin: 0 30rpx;
  139. font-size: 30rpx;
  140. }
  141. .foot text:nth-child(1){
  142. background-color: rgba(232, 232, 232, 1);
  143. color: #999;
  144. }
  145. .foot text:nth-child(2){
  146. background-color: rgba(101, 71, 163, 1);
  147. color: #fff;
  148. }