details.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  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. }
  43. .themeauthor {
  44. font-size: 25rpx;
  45. color: #fff;
  46. margin-top: 5rpx;
  47. }
  48. .viewinfo {
  49. color: #fff;
  50. font-size: 30rpx;
  51. margin-top: 5rpx;
  52. display: flex;
  53. justify-content: flex-start;
  54. }
  55. .viewinfoleft {
  56. margin-right: 5rpx;
  57. }
  58. .viewinforight {
  59. margin-left: 5rpx;
  60. }
  61. .baritembottom {
  62. width: 70%;
  63. height: 100rpx;
  64. display: flex;
  65. justify-content: flex-end;
  66. align-items: center;
  67. border-radius: 20rpx;
  68. float: right;
  69. margin-top: 15rpx;
  70. }
  71. .baritembottom button {
  72. width: 210rpx;
  73. height: 75rpx;
  74. text-align: center;
  75. font-size: 30rpx;
  76. color: #fff;
  77. border-radius: 20rpx;
  78. }
  79. .sharebut {
  80. background: orangered;
  81. border: 1rpx solid #fff;
  82. margin-left: 70rpx;
  83. }
  84. .collection {
  85. background: orangered;
  86. }
  87. .Performance {
  88. width: 100%;
  89. height: 500rpx;
  90. border-top-left-radius: 20rpx;
  91. border-top-right-radius: 20rpx;
  92. position: relative;
  93. top: -10rpx;
  94. }
  95. .selectbar {
  96. width: 100%;
  97. height: 100rpx;
  98. line-height: 100rpx;
  99. text-align: center;
  100. display: flex;
  101. justify-content: space-between;
  102. background: #fff;
  103. box-sizing: border-box;
  104. color: #aaa;
  105. border-radius: 15rpx;
  106. border-bottom: 1rpx solid #f1f1f1;
  107. }
  108. .detail {
  109. width: 50%;
  110. }
  111. .list {
  112. width: 50%;
  113. }
  114. .play {
  115. width: 100%;
  116. height: 100rpx;
  117. padding: 0rpx 40rpx;
  118. box-sizing: border-box;
  119. border-bottom: 1rpx solid #f1f1f1;
  120. display: flex;
  121. justify-content: space-between;
  122. align-items: center;
  123. }
  124. .playall {
  125. width: auto;
  126. text-align: center;
  127. font-size: 30rpx;
  128. }
  129. .playselect {
  130. width: auto;
  131. display: flex;
  132. justify-content: space-between;
  133. text-align: center;
  134. font-size: 30rpx;
  135. }
  136. .performanceContent {
  137. width: 100%;
  138. height: 150rpx;
  139. display: flex;
  140. box-sizing: border-box;
  141. justify-content: flex-start;
  142. align-items: center;
  143. border-bottom: 1rpx solid #f1f1f1;
  144. padding: 20rpx 20rpx;
  145. }
  146. .performanceIndex {
  147. width: 15%;
  148. height: 80rpx;
  149. text-align: center;
  150. line-height: 80rpx;
  151. color: #aaa;
  152. }
  153. .performanceInfo {
  154. width: 85%;
  155. height: 100%;
  156. }
  157. .performanceInfoTop {
  158. width: 100%;
  159. height: 50%;
  160. display: flex;
  161. justify-content: space-between;
  162. font-size: 30rpx;
  163. }
  164. .performanceInfoBottom {
  165. width: 100%;
  166. height: auto;
  167. display: flex;
  168. justify-content: flex-start;
  169. color: #aaa;
  170. font-size: 25rpx;
  171. margin-top: 20rpx;
  172. }
  173. .active{
  174. position: relative;
  175. color: #333;
  176. }
  177. .active::after{
  178. content: '';
  179. width: 80rpx;
  180. height: 5rpx;
  181. position: absolute;
  182. bottom: 0rpx;
  183. left: 150rpx;
  184. background-color: orangered;
  185. }