details.wxss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. .toptitlebar {
  2. width: 100%;
  3. height: 410rpx;
  4. overflow: hidden;
  5. position: relative;
  6. }
  7. /* 背景虚化层 */
  8. .bg{
  9. width: 100%;
  10. height: 410rpx;
  11. filter: blur(15rpx);
  12. }
  13. .baritem {
  14. width: 100%;
  15. height: 400rpx;
  16. margin-top: 50rpx;
  17. padding: 20rpx 0rpx;
  18. position: absolute;
  19. top: 0rpx;
  20. }
  21. .baritemtop {
  22. width: 100%;
  23. height: 200rpx;
  24. display: flex;
  25. justify-content: center;
  26. align-items: center;
  27. }
  28. .themebgimg {
  29. width: 200rpx;
  30. height: 200rpx;
  31. margin-right: 30rpx;
  32. background-repeat: no-repeat;
  33. background-size: 100% 100%;
  34. }
  35. .themeinfo {
  36. width: 60%;
  37. height: 200rpx;
  38. }
  39. .themetitle {
  40. color: #fff;
  41. font-size: 40rpx;
  42. display: -webkit-box;
  43. -webkit-line-clamp: 2;/*行数n*/
  44. -webkit-box-orient: vertical;
  45. overflow: hidden;
  46. text-overflow: ellipsis;
  47. }
  48. .themeauthor {
  49. font-size: 25rpx;
  50. color: #fff;
  51. margin-top: 5rpx;
  52. }
  53. .viewinfo {
  54. color: #fff;
  55. font-size: 30rpx;
  56. margin-top: 5rpx;
  57. display: flex;
  58. justify-content: flex-start;
  59. }
  60. .viewinfoleft {
  61. margin-right: 5rpx;
  62. }
  63. .viewinforight {
  64. margin-left: 5rpx;
  65. }
  66. .baritembottom {
  67. width: 70%;
  68. height: 100rpx;
  69. display: flex;
  70. justify-content: flex-end;
  71. align-items: center;
  72. border-radius: 20rpx;
  73. float: right;
  74. margin-top: 15rpx;
  75. }
  76. .baritembottom button {
  77. width: 210rpx;
  78. height: 75rpx;
  79. text-align: center;
  80. font-size: 30rpx;
  81. color: #fff;
  82. border-radius: 20rpx;
  83. }
  84. .sharebut {
  85. background: orangered;
  86. border: 1rpx solid #fff;
  87. margin-left: 70rpx;
  88. }
  89. .collection {
  90. background: orangered;
  91. }
  92. .Performance {
  93. width: 100%;
  94. height: 500rpx;
  95. border-top-left-radius: 20rpx;
  96. border-top-right-radius: 20rpx;
  97. position: relative;
  98. top: -10rpx;
  99. }
  100. .selectbar {
  101. width: 100%;
  102. height: 100rpx;
  103. line-height: 100rpx;
  104. text-align: center;
  105. display: flex;
  106. justify-content: space-between;
  107. background: #fff;
  108. box-sizing: border-box;
  109. color: #aaa;
  110. border-radius: 15rpx;
  111. border-bottom: 1rpx solid #f1f1f1;
  112. }
  113. .detail {
  114. width: 50%;
  115. }
  116. .list {
  117. width: 50%;
  118. }
  119. .play {
  120. width: 100%;
  121. height: 100rpx;
  122. padding: 0rpx 40rpx;
  123. box-sizing: border-box;
  124. border-bottom: 1rpx solid #f1f1f1;
  125. display: flex;
  126. justify-content: space-between;
  127. align-items: center;
  128. }
  129. .playall {
  130. width: auto;
  131. text-align: center;
  132. font-size: 30rpx;
  133. }
  134. .playselect {
  135. width: auto;
  136. display: flex;
  137. justify-content: space-between;
  138. text-align: center;
  139. font-size: 30rpx;
  140. }
  141. .performanceContent {
  142. width: 100%;
  143. height: 150rpx;
  144. display: flex;
  145. box-sizing: border-box;
  146. justify-content: flex-start;
  147. align-items: center;
  148. border-bottom: 1rpx solid #f1f1f1;
  149. padding: 20rpx 20rpx;
  150. }
  151. .performanceIndex {
  152. width: 15%;
  153. height: 80rpx;
  154. text-align: center;
  155. line-height: 80rpx;
  156. color: #aaa;
  157. }
  158. .performanceInfo {
  159. width: 85%;
  160. height: 100%;
  161. }
  162. .performanceInfoTop {
  163. width: 100%;
  164. height: 50%;
  165. display: flex;
  166. justify-content: space-between;
  167. font-size: 30rpx;
  168. }
  169. .performanceInfoBottom {
  170. width: 100%;
  171. height: auto;
  172. display: flex;
  173. justify-content: flex-start;
  174. color: #aaa;
  175. font-size: 25rpx;
  176. margin-top: 20rpx;
  177. }
  178. .active{
  179. position: relative;
  180. color: #333;
  181. }
  182. .active::after{
  183. content: '';
  184. width: 80rpx;
  185. height: 5rpx;
  186. position: absolute;
  187. bottom: 0rpx;
  188. left: 150rpx;
  189. background-color: orangered;
  190. }