index.less 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. .authority {
  2. height: 100%;
  3. padding: 0rpx 20rpx;
  4. padding-bottom: 100px;
  5. .module {
  6. .topic {
  7. font-size: 38rpx;
  8. font-weight: bold;
  9. }
  10. .explain {
  11. margin-top: 10rpx;
  12. font-size: 24rpx;
  13. }
  14. .works {
  15. display: flex;
  16. justify-content: space-between;
  17. flex-wrap: wrap;
  18. .work {
  19. margin: 20rpx 0rpx;
  20. .cover {
  21. width: 344rpx;
  22. height: 194rpx;
  23. border-radius: 8rpx;
  24. }
  25. .title {
  26. width: 344rpx;
  27. margin-top: 6rpx;
  28. font-size: 32rpx;
  29. }
  30. }
  31. .audioBox {
  32. position: relative;
  33. .audioPlay {
  34. position: absolute;
  35. left: 0px;
  36. top: 0px;
  37. bottom: 0px;
  38. right: 0px;
  39. margin: auto;
  40. width: 220rpx;
  41. height: 174rpx;
  42. display: flex;
  43. align-items: center;
  44. justify-content: center;
  45. .audioPlayBg {
  46. width: 150rpx;
  47. height: 150rpx;
  48. }
  49. .audioPlayZhen {
  50. position: absolute;
  51. right: 30rpx;
  52. top: 16rpx;
  53. width: 32rpx;
  54. height: 40rpx;
  55. }
  56. .cover {
  57. position: absolute;
  58. width: 130rpx;
  59. height: 130rpx;
  60. border-radius: 50%;
  61. }
  62. }
  63. }
  64. }
  65. }
  66. }