taskDetail.wxss 2.1 KB

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