wakeList.wxss 2.8 KB

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