taskDetail.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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,.video-list,.audio-list{
  57. display: grid;
  58. justify-content: space-between;
  59. grid-template-columns: repeat(auto-fill, 150rpx);
  60. grid-gap: auto;
  61. }
  62. .audio-list{
  63. display: grid;
  64. justify-content: space-between;
  65. grid-template-columns: repeat(auto-fill, 120rpx);
  66. grid-gap: auto;
  67. }
  68. .img-list image,.video-list image{
  69. width: 150rpx;
  70. height: 150rpx;
  71. border-radius: 20rpx;
  72. margin-bottom: 20rpx;
  73. margin: 10rpx auto;
  74. }
  75. .video-img-view{
  76. position: relative;
  77. }
  78. .videoImg{
  79. opacity: 0.9;
  80. }
  81. .playImg{
  82. width: 48rpx !important;
  83. height: 48rpx !important;
  84. position: absolute;
  85. z-index: 2;
  86. left: 50%;
  87. margin-left: -24rpx !important;
  88. top: 50%;
  89. margin-top: -24rpx !important;
  90. }
  91. .audio-list image{
  92. height: 30rpx;
  93. width: 50rpx;
  94. border: 1px solid #eee;
  95. box-shadow: 0 0 20rpx #ccc;
  96. padding: 10rpx;
  97. margin-top: 20rpx;
  98. padding: 0 25rpx;
  99. border-radius: 10rpx;
  100. }
  101. .curAudioStyle{
  102. box-shadow: 0 0 20rpx #cc6031 !important;
  103. border: none;
  104. }
  105. .toTask{
  106. width: 400rpx;
  107. height: 80rpx;
  108. text-align: center;
  109. line-height: 80rpx;
  110. color: #FFF;
  111. background: #cc6031;
  112. border-radius: 50rpx;
  113. font-size: 36rpx;
  114. position: fixed;
  115. bottom: 40rpx;
  116. left: 50%;
  117. margin-left: -200rpx;
  118. }