task.wxss 750 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. .container{
  2. padding: 0;
  3. margin: 0;
  4. }
  5. page{
  6. background: #f1f1f1;
  7. }
  8. /* 作业列表 */
  9. .task-box{
  10. padding: 25rpx;
  11. display: flex;
  12. flex-wrap: wrap;
  13. border-bottom: 20rpx solid #f1f1f1;
  14. background: #FFF;
  15. }
  16. .task-box view{
  17. height: 60rpx;
  18. line-height: 60rpx;
  19. width: 700rpx;
  20. }
  21. .task-title,.task-desc{
  22. width: 550rpx !important;
  23. overflow: hidden;
  24. white-space: nowrap;
  25. text-overflow: ellipsis;
  26. }
  27. .task-desc{
  28. color: #999;
  29. }
  30. .do-task,.do-time{
  31. width: 150rpx !important;
  32. font-size: 24rpx;
  33. text-align: right;
  34. }
  35. .do-task{
  36. color: #cc6031;
  37. }
  38. .loading {
  39. height: 200rpx;
  40. line-height: 100rpx;
  41. background: #f1f1f1;
  42. color: #999;
  43. text-align: center;
  44. }
  45. /* end */