doTask.wxss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. .container{
  2. padding: 0;
  3. margin: 0;
  4. }
  5. .task-view{
  6. display: flex;
  7. flex-wrap: wrap;
  8. justify-content: space-between;
  9. width: 700rpx;
  10. margin: 0 auto;
  11. }
  12. .task-title{
  13. font-size: 32rpx;
  14. font-weight: 600;
  15. width: 450rpx;
  16. height: 60rpx;
  17. line-height: 60rpx;
  18. overflow: hidden;
  19. white-space: nowrap;
  20. text-overflow: ellipsis;
  21. }
  22. .task-time{
  23. width: 250rpx;
  24. height: 60rpx;
  25. line-height: 60rpx;
  26. font-size: 28rpx;
  27. text-align: right;
  28. }
  29. .task-class{
  30. color: #999;
  31. line-height: 60rpx;
  32. height: 60rpx;
  33. }
  34. .my-task{
  35. width: 700rpx;
  36. margin: 25rpx;
  37. }
  38. .my-task .title{
  39. height: 60rpx;
  40. line-height: 60rpx;
  41. }
  42. .textarea textarea{
  43. width: 650rpx;
  44. padding: 20rpx 25rpx;
  45. height: 260rpx;
  46. box-shadow: 0 10rpx 10rpx #ccc;
  47. }
  48. .wordNum{
  49. font-size: 24rpx;
  50. color: #999;
  51. text-align: right;
  52. margin-right: 25rpx;
  53. height: 60rpx;
  54. line-height: 60rpx;
  55. }
  56. .uploadImg-task-view{
  57. display: grid;
  58. justify-content: space-between;
  59. grid-template-columns: repeat(auto-fill, 140rpx);
  60. grid-gap: auto;
  61. width: 650rpx;
  62. margin: 0 auto;
  63. border-bottom: 1px dashed #ccc;
  64. padding-bottom: 40rpx;
  65. margin-bottom: 40rpx;
  66. }
  67. .new-task-img{
  68. width: 139rpx;
  69. height: 139rpx;
  70. border: 1rpx dashed #ccc;
  71. }
  72. .my-img-view{
  73. position: relative;
  74. margin: 20rpx 0 20rpx;
  75. }
  76. .del-btn{
  77. position: absolute;
  78. width: 40rpx;
  79. height: 40rpx;
  80. line-height: 40rpx;
  81. z-index: 2;
  82. background: #cc6031;
  83. color: #FFF;
  84. text-align: center;
  85. font-weight: 600;
  86. border-radius: 50rpx;
  87. top: -20rpx;
  88. left: -20rpx;
  89. border: 8rpx solid #FFF;
  90. }
  91. .new-task-img image{
  92. width: 100%;
  93. height: 100%;
  94. }
  95. .upload-btn image{
  96. height: 40rpx;
  97. width: 40rpx;
  98. }
  99. .upload-btn{
  100. width: 139rpx;
  101. height: 139rpx;
  102. border: 1rpx dashed #ccc;
  103. text-align: center;
  104. background: #f8f8f8;
  105. margin: 20rpx 0 0;
  106. color: #999;
  107. font-size: 22rpx;
  108. line-height: 36rpx;
  109. }
  110. .audio-list {
  111. display: grid;
  112. justify-content: space-between;
  113. grid-template-columns: repeat(auto-fill, 130rpx);
  114. grid-gap: auto;
  115. height: 180rpx;
  116. width: 600rpx;
  117. margin: 0 auto 20rpx;
  118. }
  119. .audio-box{
  120. position: relative;
  121. }
  122. .audio-box .del-btn{
  123. width: 30rpx ;
  124. height: 30rpx ;
  125. line-height: 30rpx ;
  126. font-size: 24rpx;
  127. top: -2rpx ;
  128. }
  129. .audio-list image {
  130. height: 30rpx;
  131. width: 50rpx;
  132. border: 1px solid #eee;
  133. box-shadow: 0 0 20rpx #ccc;
  134. padding: 10rpx;
  135. margin-top: 20rpx;
  136. padding: 0 25rpx;
  137. border-radius: 10rpx;
  138. margin-bottom: 20rpx;
  139. }
  140. .record-img{
  141. padding: 20rpx;
  142. border: 1px solid #CCC;
  143. height: 60rpx;
  144. width: 60rpx;
  145. border-radius: 50rpx;
  146. position: relative;
  147. left: 50%;
  148. margin-left: -50rpx;
  149. z-index: 2;
  150. }
  151. .record-view{
  152. text-align: center;
  153. position: relative;
  154. }
  155. .record-img image{
  156. height: 100%;
  157. width: 100%;
  158. }
  159. .close-talk{
  160. height: 80rpx;
  161. line-height: 80rpx;
  162. margin-bottom: 40rpx;
  163. }
  164. .record-bg {
  165. width: 100rpx;
  166. height: 100rpx;
  167. border-radius: 50%;
  168. left: 50%;
  169. position: absolute;
  170. margin-left: -50rpx;
  171. top: 1rpx;
  172. animation: pulse 2s infinite;
  173. z-index: 1;
  174. }
  175. @keyframes pulse {
  176. 0% {
  177. box-shadow: 0 0 4px 3px #fff;
  178. }
  179. 50% {
  180. box-shadow: 0 0 4px 3px #cc6031;
  181. }
  182. 100% {
  183. box-shadow: 0 0 4px 3px #fff;
  184. }
  185. }
  186. .curTalkStyle{
  187. border-color: #cc6031;
  188. }