growUp.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /* pages/growUp/growUp.wxss */
  2. .container{
  3. padding: 0;
  4. margin: 0;
  5. }
  6. .grow-list{
  7. width: 699rpx;
  8. margin: 0 25rpx;
  9. border-left: 1rpx solid #ccc;
  10. }
  11. .grow-box{
  12. display: flex;
  13. margin-bottom: 40rpx;
  14. }
  15. .grow-title{
  16. padding-left: 30rpx;
  17. }
  18. .line-index{
  19. width: 20rpx;
  20. height: 20rpx;
  21. background: #005033;
  22. border-radius: 20rpx;
  23. position: relative;
  24. top: 20rpx;
  25. left: -10rpx;
  26. }
  27. .grow-time{
  28. font-size: 32rpx;
  29. height: 60rpx;
  30. line-height: 60rpx;
  31. }
  32. .grow-name{
  33. height: 40rpx;
  34. line-height: 40rpx;
  35. }
  36. .grow-desc{
  37. font-size: 20rpx;
  38. background: #eee;
  39. display: inline-block;
  40. height: 30rpx;
  41. line-height: 30rpx;
  42. color: #666;
  43. padding: 5rpx 10rpx;
  44. margin-top: 30rpx;
  45. }
  46. .grow-content image,.grow-content video{
  47. max-width: 400rpx;
  48. max-height: 300rpx;
  49. }
  50. .grow-content{
  51. margin: 20rpx 0;
  52. }
  53. .loading {
  54. height: 200rpx;
  55. line-height: 100rpx;
  56. background: #FFF;
  57. color: #999;
  58. text-align: center;
  59. }
  60. .img-list,
  61. .video-list,
  62. .audio-list {
  63. display: grid;
  64. justify-content: space-between;
  65. grid-template-columns: repeat(auto-fill, 150rpx);
  66. grid-gap: auto;
  67. }
  68. .audio-list {
  69. display: grid;
  70. justify-content: space-between;
  71. grid-template-columns: repeat(auto-fill, 120rpx);
  72. grid-gap: auto;
  73. }
  74. .img-list image,
  75. .video-list image {
  76. width: 150rpx;
  77. height: 150rpx;
  78. border-radius: 20rpx;
  79. margin-bottom: 20rpx;
  80. margin: 10rpx auto;
  81. border: 0.55rpx #f5f5f5 solid;
  82. }
  83. .video-img-view {
  84. position: relative;
  85. }
  86. .videoImg {
  87. opacity: 0.9;
  88. }
  89. .playImg {
  90. width: 48rpx !important;
  91. height: 48rpx !important;
  92. position: absolute;
  93. z-index: 2;
  94. left: 50%;
  95. margin-left: -24rpx !important;
  96. top: 50%;
  97. margin-top: -24rpx !important;
  98. }
  99. .audio-list image {
  100. height: 30rpx;
  101. width: 50rpx;
  102. border: 1px solid #eee;
  103. box-shadow: 0 0 20rpx #ccc;
  104. padding: 10rpx;
  105. margin-top: 20rpx;
  106. padding: 0 25rpx;
  107. border-radius: 10rpx;
  108. }
  109. .curAudioStyle {
  110. box-shadow: 0 0 20rpx #cc6031 !important;
  111. border: none;
  112. }
  113. .toTask {
  114. width: 400rpx;
  115. height: 80rpx;
  116. text-align: center;
  117. line-height: 80rpx;
  118. color: #FFF;
  119. background: #005033;
  120. border-radius: 50rpx;
  121. font-size: 32rpx;
  122. position: fixed;
  123. bottom: 40rpx;
  124. left: 50%;
  125. margin-left: -200rpx;
  126. }
  127. .done-title {
  128. font-size: 32rpx;
  129. margin-top: 60rpx;
  130. }
  131. #play-video{
  132. position: absolute;
  133. top: 40rpx;
  134. left: 100rpx;
  135. }